using System; using System.Xml.Serialization; using System.Collections.Generic; using Aop.Api.Domain; namespace Aop.Api.Response { /// /// AntMerchantExpandShopQueryResponse. /// public class AntMerchantExpandShopQueryResponse : AopResponse { /// /// 品牌id /// [XmlElement("brand_id")] public string BrandId { get; set; } /// /// 经营地址。 /// [XmlElement("business_address")] public AddressInfo BusinessAddress { get; set; } /// /// 店铺经营时间。 /// [XmlArray("business_time")] [XmlArrayItem("shop_business_time")] public List BusinessTime { get; set; } /// /// 营业执照图片url。返回值为一个有访问时限的链接 /// [XmlElement("cert_image")] public string CertImage { get; set; } /// /// 营业执照名称,值为营业执照或统一社会信用代码证上的名称。 /// [XmlElement("cert_name")] public string CertName { get; set; } /// /// 证件号码 /// [XmlElement("cert_no")] public string CertNo { get; set; } /// /// 证件类型,取值范围:201:营业执照;2011:多证合一(统一社会信用代码)。 /// [XmlElement("cert_type")] public string CertType { get; set; } /// /// 联系人信息。 /// [XmlArray("contact_infos")] [XmlArrayItem("contact_info")] public List ContactInfos { get; set; } /// /// 店铺联系手机 /// [XmlElement("contact_mobile")] public string ContactMobile { get; set; } /// /// 店铺的联系固话 /// [XmlElement("contact_phone")] public string ContactPhone { get; set; } /// /// 扩展信息列表。key值需要向对应行业的bd进行申请。 /// [XmlArray("ext_infos")] [XmlArrayItem("shop_ext_info")] public List ExtInfos { get; set; } /// /// 商户角色id,表示将要开的店属于哪个商户角色。对于直连开店场景,是商户pid;对于间连开店场景(线上、线下、直付通),是商户smid /// [XmlElement("ip_role_id")] public string IpRoleId { get; set; } /// /// 法人身份证号。 /// [XmlElement("legal_cert_no")] public string LegalCertNo { get; set; } /// /// 法人名称。 /// [XmlElement("legal_name")] public string LegalName { get; set; } /// /// 营业执照授权函。返回值为一个有访问时限的链接 /// [XmlElement("license_auth_letter_image")] public string LicenseAuthLetterImage { get; set; } /// /// 备注 /// [XmlElement("memo")] public string Memo { get; set; } /// /// 门头照,返回值为一个有访问时限的链接 /// [XmlArray("out_door_images")] [XmlArrayItem("string")] public List OutDoorImages { get; set; } /// /// 行业特殊资质。 /// [XmlArray("qualifications")] [XmlArrayItem("industry_qualification_info")] public List Qualifications { get; set; } /// /// 场景 /// [XmlElement("scene")] public string Scene { get; set; } /// /// 结算支付宝账号的登录号 /// [XmlElement("settle_alipay_logon_id")] public string SettleAlipayLogonId { get; set; } /// /// 店铺类目,取值参见文件https://mif-pub.alipayobjects.com/ShopCategory.xlsx 中的三级门店类目 /// [XmlElement("shop_category")] public string ShopCategory { get; set; } /// /// 蚂蚁店铺id /// [XmlElement("shop_id")] public string ShopId { get; set; } /// /// 店铺名称。 /// [XmlElement("shop_name")] public string ShopName { get; set; } /// /// 店铺经营类型,01表示直营,02表示加盟 /// [XmlElement("shop_type")] public string ShopType { get; set; } /// /// 门店编号,表示该门店在该商户角色id(直连pid,间连smid)下,由商户自己定义的外部门店编号 /// [XmlElement("store_id")] public string StoreId { get; set; } } }