Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/MerchantApplyResultRecord.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

42 lines
1.0 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// MerchantApplyResultRecord Data Structure.
/// </summary>
[Serializable]
public class MerchantApplyResultRecord : AopObject
{
/// <summary>
/// 签约产品名称
/// </summary>
[JsonProperty("prod_name")]
public string ProdName { get; set; }
/// <summary>
/// 如审核失败,表示该字段引发的审核失败
/// </summary>
[JsonProperty("prop_input_key")]
public string PropInputKey { get; set; }
/// <summary>
/// 认证、产品签约审核失败原因
/// </summary>
[JsonProperty("result_msg")]
public string ResultMsg { get; set; }
/// <summary>
/// 认证审核、产品签约审核状态
/// </summary>
[JsonProperty("result_status")]
public string ResultStatus { get; set; }
/// <summary>
/// 详情类型CETIFY为认证PROD为产品签约COMMENT为认证审核批注
/// </summary>
[JsonProperty("result_type")]
public string ResultType { get; set; }
}
}