NiceAuthSessionStatus.cs 368 B

123456789
  1. namespace Domain.Entities.Developers.ValueObject;
  2. public enum NiceAuthSessionStatus
  3. {
  4. Pending = 0, // auth/url 발급 후 사용자 인증 대기 (callback 미수신)
  5. Completed = 1, // callback + result 성공 → Developer.KycVerified
  6. Failed = 2, // callback 수신했으나 result/복호화 실패
  7. Expired = 3 // 10분 ExpiresAt 초과
  8. }