NewGaoKaoApi/PaymentSDK/AliPay/Domain/TradePrecreateConfirmTradeM...

49 lines
1.3 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;
namespace Aop.Api.Domain
{
/// <summary>
/// TradePrecreateConfirmTradeMerchantInfo Data Structure.
/// </summary>
[Serializable]
public class TradePrecreateConfirmTradeMerchantInfo : AopObject
{
/// <summary>
/// 商户所在的城市编码
/// </summary>
[XmlElement("city_code")]
public string CityCode { get; set; }
/// <summary>
/// 商户所在城市简体中文名
/// </summary>
[XmlElement("city_name_sc")]
public string CityNameSc { get; set; }
/// <summary>
/// 直连商户ID
/// </summary>
[XmlElement("id")]
public string Id { get; set; }
/// <summary>
/// 直连商户MCC
/// </summary>
[XmlElement("mcc")]
public string Mcc { get; set; }
/// <summary>
/// 商户类型 企业取值ENTERPRISE 个人取值: PERSONAL 个体工商户取值: PERSONAL_BUSINESS
/// </summary>
[XmlElement("merchant_type")]
public string MerchantType { get; set; }
/// <summary>
/// 直连商户名称
/// </summary>
[XmlElement("name")]
public string Name { get; set; }
}
}