NewGaoKaoApi/PaymentSDK/AliPay/Response/AntMerchantExpandShopQueryR...

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