Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/AlipayBossProdSubmerchantModifyModel.cs

84 lines
2.1 KiB
C#
Raw Permalink Normal View History

2024-04-10 13:55:27 +08:00
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AlipayBossProdSubmerchantModifyModel Data Structure.
/// </summary>
[Serializable]
public class AlipayBossProdSubmerchantModifyModel : AopObject
{
/// <summary>
/// 受理商户详细经营地址
/// </summary>
[JsonProperty("address")]
public string Address { get; set; }
/// <summary>
/// 受理商户简称
/// </summary>
[JsonProperty("alias_name")]
public string AliasName { get; set; }
/// <summary>
/// 受理商户营业执照编号
/// </summary>
[JsonProperty("business_license")]
public string BusinessLicense { get; set; }
/// <summary>
/// 受理商户城市编码
/// </summary>
[JsonProperty("city_code")]
public string CityCode { get; set; }
/// <summary>
/// 受理商户联系人名称
/// </summary>
[JsonProperty("contact_name")]
public string ContactName { get; set; }
/// <summary>
/// 受理商户区县编码
/// </summary>
[JsonProperty("district_code")]
public string DistrictCode { get; set; }
/// <summary>
/// 受理商户编号与sub_merchant_id二选一必传
/// </summary>
[JsonProperty("external_id")]
public string ExternalId { get; set; }
/// <summary>
/// 受理商户身份证编号
/// </summary>
[JsonProperty("id_card")]
public string IdCard { get; set; }
/// <summary>
/// 受理商户省份编码
/// </summary>
[JsonProperty("province_code")]
public string ProvinceCode { get; set; }
/// <summary>
/// 受理商户客服电话
/// </summary>
[JsonProperty("service_phone")]
public string ServicePhone { get; set; }
/// <summary>
/// 受理商户来源机构标识填写受理机构在支付宝的pid
/// </summary>
[JsonProperty("source")]
public string Source { get; set; }
/// <summary>
/// 本次修改受理商户的支付宝识别号同请求传入的sub_merchant_id字段与external_id二选一必传
/// </summary>
[JsonProperty("sub_merchant_id")]
public string SubMerchantId { get; set; }
}
}