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