using System;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// AntMerchantExpandIndirectCreateModel Data Structure.
///
[Serializable]
public class AntMerchantExpandIndirectCreateModel : AopObject
{
///
/// 商户地址信息
///
[JsonProperty("address_info")]
public List AddressInfo { get; set; }
///
/// 商户简称
///
[JsonProperty("alias_name")]
public string AliasName { get; set; }
///
/// 商户对应银行所开立的结算卡信息
///
[JsonProperty("bankcard_info")]
public List BankcardInfo { get; set; }
///
/// 商户证件编号(企业或者个体工商户提供营业执照,事业单位提供事证号)
///
[JsonProperty("business_license")]
public string BusinessLicense { get; set; }
///
/// 商户证件类型,取值范围:NATIONAL_LEGAL:营业执照;NATIONAL_LEGAL_MERGE:营业执照(多证合一);INST_RGST_CTF:事业单位法人证书
///
[JsonProperty("business_license_type")]
public string BusinessLicenseType { get; set; }
///
/// 商户经营类目,参考文档:https://doc.open.alipay.com/doc2/detail?&docType=1&articleId=105444
///
[JsonProperty("category_id")]
public string CategoryId { get; set; }
///
/// 商户联系人信息
///
[JsonProperty("contact_info")]
public List ContactInfo { get; set; }
///
/// 商户编号,由机构定义,需要保证在机构下唯一
///
[JsonProperty("external_id")]
public string ExternalId { get; set; }
///
/// 商户的支付宝账号
///
[JsonProperty("logon_id")]
public List LogonId { get; set; }
///
/// 商户备注信息,可填写额外信息
///
[JsonProperty("memo")]
public string Memo { get; set; }
///
/// 商户名称
///
[JsonProperty("name")]
public string Name { get; set; }
///
/// 商户的支付二维码中信息,用于营销活动
///
[JsonProperty("pay_code_info")]
public List PayCodeInfo { get; set; }
///
/// 商户客服电话
///
[JsonProperty("service_phone")]
public string ServicePhone { get; set; }
///
/// 商户来源机构标识,填写机构在支付宝的pid
///
[JsonProperty("source")]
public string Source { get; set; }
}
}