NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayOverseasTravelRateQue...

49 lines
1.7 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>
/// AlipayOverseasTravelRateQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayOverseasTravelRateQueryModel : AopObject
{
/// <summary>
/// 用户当前所在国家的国家码ISO-3166标准三位数字国家码currency、countryCode、longitude & latitude三者不能同时为空
/// </summary>
[XmlElement("country_code")]
public string CountryCode { get; set; }
/// <summary>
/// 货币代码ISO标准alpha- 3币种代码currency、countryCode、longitude & latitude三者不能同时为空
/// </summary>
[XmlElement("currency")]
public string Currency { get; set; }
/// <summary>
/// 业务扩展参数,用于商户的特定业务信息的传递,json格式
/// </summary>
[XmlElement("extend_param")]
public string ExtendParam { get; set; }
/// <summary>
/// 用户当前定位纬度currency、countryCode、longitude & latitude三者不能同时为空
/// </summary>
[XmlElement("latitude")]
public string Latitude { get; set; }
/// <summary>
/// 用户当前定位经度currency、countryCode、longitude & latitude三者不能同时为空
/// </summary>
[XmlElement("longitude")]
public string Longitude { get; set; }
/// <summary>
/// 蚂蚁统一会员ID唯一如有该字段可以获取该币种对应会员等级的汇率
/// </summary>
[XmlElement("user_id")]
public string UserId { get; set; }
}
}