| 12345678910111213141516171819202122232425 |
- using System.Text.Json.Serialization;
- namespace Infrastructure.Kyc.Nice.Dto;
- /// <summary>
- /// POST /ido/intc/v1.0/auth/url 응답. 가이드 §2-2.
- /// </summary>
- internal sealed class NiceUrlResponse
- {
- [JsonPropertyName("result_code")]
- public string? ResultCode { get; set; }
- [JsonPropertyName("result_message")]
- public string? ResultMessage { get; set; }
- [JsonPropertyName("request_no")]
- public string? RequestNo { get; set; }
- /// <summary>표준창 URL (10분 유효).</summary>
- [JsonPropertyName("auth_url")]
- public string? AuthUrl { get; set; }
- [JsonPropertyName("transaction_id")]
- public string? TransactionId { get; set; }
- }
|