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

25 lines
751 B
C#
Raw Normal View History

2020-10-07 20:25:03 +08:00
using System;
using Newtonsoft.Json;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AlipayAccountExrateAllclientrateQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayAccountExrateAllclientrateQueryModel : AopObject
{
/// <summary>
/// 客户id客户和报价中心签约时约定的信息
/// </summary>
[JsonProperty("client_id")]
public string ClientId { get; set; }
/// <summary>
/// 子协议扩展号同一个客户不同业务场景下需要不同的客户报价通过profile_id区分。正常情况下可能每个客户只有一个默认的profile_id
/// </summary>
[JsonProperty("profile_id")]
public string ProfileId { get; set; }
}
}