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