using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Response
{
///
/// AntMerchantExpandPersonalApplyResponse.
///
public class AntMerchantExpandPersonalApplyResponse : AopResponse
{
///
/// 支付宝端商户入驻申请单据号
///
[JsonProperty("order_no")]
public string OrderNo { get; set; }
///
/// 外部入驻申请单据号
///
[JsonProperty("out_biz_no")]
public string OutBizNo { get; set; }
}
}