using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayPcreditHuabeiSelleradmitRealtimeCertifyModel Data Structure.
///
[Serializable]
public class AlipayPcreditHuabeiSelleradmitRealtimeCertifyModel : AopObject
{
///
/// 支付宝id
///
[XmlElement("alipay_id")]
public string AlipayId { get; set; }
///
/// 请求来源应用名
///
[XmlElement("from_app")]
public string FromApp { get; set; }
///
/// 店铺所属行业
///
[XmlElement("industry")]
public string Industry { get; set; }
///
/// 店铺主营类目,多个逗号分隔
///
[XmlElement("main_category")]
public string MainCategory { get; set; }
///
/// 卖家店铺归属平台
///
[XmlElement("platform")]
public string Platform { get; set; }
///
/// 卖家准入场景
///
[XmlElement("seller_admit_scene")]
public string SellerAdmitScene { get; set; }
///
/// 卖家店铺id
///
[XmlElement("seller_id")]
public string SellerId { get; set; }
}
}