NewGaoKaoApi/PaymentSDK/AliPay/Response/AntMerchantExpandOrderQuery...

44 lines
1.2 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Response
{
/// <summary>
/// AntMerchantExpandOrderQueryResponse.
/// </summary>
public class AntMerchantExpandOrderQueryResponse : AopResponse
{
/// <summary>
/// 申请单创建时间
/// </summary>
[XmlElement("apply_time")]
public string ApplyTime { get; set; }
/// <summary>
/// 返回申请单相关参数。当前返回内容有cardAliasNosmid
/// </summary>
[XmlElement("ext_info")]
public string ExtInfo { get; set; }
/// <summary>
/// 商户角色id。审核通过后生成。间连商户或平台商二级商户业务中本字段表示smid
/// </summary>
[XmlArray("ip_role_id")]
[XmlArrayItem("string")]
public List<string> IpRoleId { get; set; }
/// <summary>
/// 商户名称
/// </summary>
[XmlElement("merchant_name")]
public string MerchantName { get; set; }
/// <summary>
/// 申请单状态。99:已完结;-1:失败;031:已提交审核
/// </summary>
[XmlElement("status")]
public string Status { get; set; }
}
}