NewGaoKaoApi/PaymentSDK/AliPay/Domain/ExchangeRate.cs

31 lines
885 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>
/// ExchangeRate Data Structure.
/// </summary>
[Serializable]
public class ExchangeRate : AopObject
{
/// <summary>
/// 兑换汇率的基本币种。biz_scene是LOCAL场景下该参数返回为空。
/// </summary>
[XmlElement("base_currency")]
public string BaseCurrency { get; set; }
/// <summary>
/// 兑换汇率对应的兑换目标币种. LOCAL场景下为空
/// </summary>
[XmlElement("exchange_currency")]
public string ExchangeCurrency { get; set; }
/// <summary>
/// 转账币种兑换结算币种的汇率。biz_scene是LOCAL场景下该参数返回空。
/// </summary>
[XmlElement("rate")]
public long Rate { get; set; }
}
}