NewGaoKaoApi/PaymentSDK/AliPay/Domain/AgentOrganization.cs

31 lines
796 B
C#
Raw 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>
/// AgentOrganization Data Structure.
/// </summary>
[Serializable]
public class AgentOrganization : AopObject
{
/// <summary>
/// 经代下面二级商户id
/// </summary>
[XmlElement("agent_merchant_id")]
public string AgentMerchantId { get; set; }
/// <summary>
/// 代理机构(ISV)蚂蚁编码组织入驻蚂蚁生成的cid
/// </summary>
[XmlElement("cid")]
public string Cid { get; set; }
/// <summary>
/// 代理机构(ISV)蚂蚁全称,组织入驻蚂蚂蚁的全称
/// </summary>
[XmlElement("cid_name")]
public string CidName { get; set; }
}
}