25 lines
699 B
C#
25 lines
699 B
C#
using System;
|
||
using System.Xml.Serialization;
|
||
|
||
namespace Aop.Api.Domain
|
||
{
|
||
/// <summary>
|
||
/// AlipayAccountExrateRateSyncModel Data Structure.
|
||
/// </summary>
|
||
[Serializable]
|
||
public class AlipayAccountExrateRateSyncModel : AopObject
|
||
{
|
||
/// <summary>
|
||
/// 通用接口入参,json字符串的形式。比如该openapi绑定客户汇率发布能力,则以json字符串的形式传入客户汇率
|
||
/// </summary>
|
||
[XmlElement("biz_context")]
|
||
public string BizContext { get; set; }
|
||
|
||
/// <summary>
|
||
/// 客户汇率发布
|
||
/// </summary>
|
||
[XmlElement("biz_type")]
|
||
public string BizType { get; set; }
|
||
}
|
||
}
|