NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayAccountExrateRateSync...

25 lines
699 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>
/// 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; }
}
}