using System;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// AntMerchantExpandIndirectOnlineModifyModel Data Structure.
///
[Serializable]
public class AntMerchantExpandIndirectOnlineModifyModel : AopObject
{
///
/// 商户地址信息
///
[JsonProperty("address_info")]
public List AddressInfo { get; set; }
///
/// 商户简称
///
[JsonProperty("alias_name")]
public string AliasName { get; set; }
///
/// 签约受理机构pid
///
[JsonProperty("bank_pid")]
public string BankPid { 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; }
///
/// 商户联系人信息
///
[JsonProperty("contact_info")]
public List ContactInfo { get; set; }
///
/// 支付机构pid/source id;服务商PID;
///
[JsonProperty("isv_pid")]
public string IsvPid { get; set; }
///
/// 商户的支付宝账号
///
[JsonProperty("logon_id")]
public List LogonId { get; set; }
///
/// mcc编码
///
[JsonProperty("mcc")]
public string Mcc { 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; }
///
/// 商户在银行端的签约时间
///
[JsonProperty("sign_bank_time")]
public string SignBankTime { get; set; }
///
/// 站点信息
///
[JsonProperty("site_info")]
public List SiteInfo { get; set; }
///
/// 商户在支付宝入驻成功后,生成的支付宝内全局唯一的商户编号
///
[JsonProperty("sub_merchant_id")]
public string SubMerchantId { get; set; }
///
/// 商户在受理机构的唯一代码,该代号在该机构下保持唯一;extenalID;
///
[JsonProperty("unique_id_by_bank")]
public string UniqueIdByBank { get; set; }
///
/// 商户在支付机构的的唯一代码;服务商对该商户分配的ID;
///
[JsonProperty("unique_id_by_isv")]
public string UniqueIdByIsv { get; set; }
}
}