NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayOverseasTravelRateBat...

33 lines
1011 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;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipayOverseasTravelRateBatchqueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayOverseasTravelRateBatchqueryModel : AopObject
{
/// <summary>
/// 货币代码列表货币代码遵循ISO标准alpha- 3币种代码用英文半角逗号分隔支持的币种可以联系支付宝技术支持。
/// </summary>
[XmlArray("currencies")]
[XmlArrayItem("string")]
public List<string> Currencies { get; set; }
/// <summary>
/// 业务扩展参数,用于商户的特 定业务信息的传递,json格式
/// </summary>
[XmlElement("extend_param")]
public string ExtendParam { get; set; }
/// <summary>
/// 蚂蚁统一会员ID
/// </summary>
[XmlElement("user_id")]
public string UserId { get; set; }
}
}