using System.Text.Json.Serialization; namespace Infrastructure.Kyc.Nice.Dto; /// /// POST /ido/intc/v1.0/auth/url 응답. 가이드 §2-2. /// 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; } /// 표준창 URL (10분 유효). [JsonPropertyName("auth_url")] public string? AuthUrl { get; set; } [JsonPropertyName("transaction_id")] public string? TransactionId { get; set; } }