NewGaoKaoApi/PaymentSDK/AliPay/Domain/ExRefRateInfoVO.cs

55 lines
1.5 KiB
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>
/// ExRefRateInfoVO Data Structure.
/// </summary>
[Serializable]
public class ExRefRateInfoVO : AopObject
{
/// <summary>
/// 货币对
/// </summary>
[XmlElement("currency_pair")]
public string CurrencyPair { get; set; }
/// <summary>
/// 基础币种
/// </summary>
[XmlElement("datum_currency")]
public string DatumCurrency { get; set; }
/// <summary>
/// 牌价类型表示站在用户角度对目标币种的交易方向01表示买入02表示卖出
/// </summary>
[XmlElement("price_type")]
public string PriceType { get; set; }
/// <summary>
/// 报价日期格式为YYYYMMDD
/// </summary>
[XmlElement("pub_date")]
public string PubDate { get; set; }
/// <summary>
/// 报价时间
/// </summary>
[XmlElement("pub_time")]
public string PubTime { get; set; }
/// <summary>
/// 汇率表示一单位基准币种等于多少目标币种小数点后最多精确到8位
/// </summary>
[XmlElement("rate")]
public string Rate { get; set; }
/// <summary>
/// 目标币种
/// </summary>
[XmlElement("target_currency")]
public string TargetCurrency { get; set; }
}
}