using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// MerchantApplyResultRecord Data Structure.
///
[Serializable]
public class MerchantApplyResultRecord : AopObject
{
///
/// 签约产品名称
///
[JsonProperty("prod_name")]
public string ProdName { get; set; }
///
/// 如审核失败,表示该字段引发的审核失败
///
[JsonProperty("prop_input_key")]
public string PropInputKey { get; set; }
///
/// 认证、产品签约审核失败原因
///
[JsonProperty("result_msg")]
public string ResultMsg { get; set; }
///
/// 认证审核、产品签约审核状态
///
[JsonProperty("result_status")]
public string ResultStatus { get; set; }
///
/// 详情类型,CETIFY为认证,PROD为产品签约,COMMENT为认证审核批注
///
[JsonProperty("result_type")]
public string ResultType { get; set; }
}
}