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