using System;
using System.Xml.Serialization;
namespace Aop.Api.Response
{
///
/// AntMerchantExpandShopConsultResponse.
///
public class AntMerchantExpandShopConsultResponse : AopResponse
{
///
/// 资金账户是否审核。当调用没有报错时,本值才有参考意义
///
[XmlElement("account_audit")]
public bool AccountAudit { get; set; }
///
/// 咨询申请单id
///
[XmlElement("order_id")]
public string OrderId { get; set; }
///
/// 是否风控审核。当调用没有报错时,本值才有参考意义
///
[XmlElement("risk_audit")]
public bool RiskAudit { get; set; }
}
}