NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayOverseasTravelRateCur...

25 lines
744 B
C#
Raw 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>
/// AlipayOverseasTravelRateCurrencyBatchqueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayOverseasTravelRateCurrencyBatchqueryModel : AopObject
{
/// <summary>
/// 业务类型: 1.MBARCODE支持境外当面付的币种 2.CLASS_RATE支持分级汇率的币种 3.为空时默认查询所有的币种;
/// </summary>
[XmlElement("biz_type")]
public string BizType { get; set; }
/// <summary>
/// 业务扩展参数
/// </summary>
[XmlElement("extend_param")]
public string ExtendParam { get; set; }
}
}