NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayAccountExrateAllclien...

25 lines
792 B
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>
/// AlipayAccountExrateAllclientrateQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayAccountExrateAllclientrateQueryModel : AopObject
{
/// <summary>
/// 客户id客户和报价中心签约时约定的信息
/// </summary>
[XmlElement("client_id")]
public string ClientId { get; set; }
/// <summary>
/// 子协议扩展号同一个客户不同业务场景下需要不同的客户报价通过profile_id区分。正常情况下可能每个客户只有一个默认的profile_id
/// </summary>
[XmlElement("profile_id")]
public string ProfileId { get; set; }
}
}