using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayOverseasTravelRateRateinfoQueryModel Data Structure. /// [Serializable] public class AlipayOverseasTravelRateRateinfoQueryModel : AopObject { /// /// 用户当前所在国家的国家码,ISO-3166标准三位数字国家码。 1.currency、country_code、longitude&latitude三者不能同时为空; 2.同时存在时优先级:currency>country_code>longitude&latitude; /// [XmlElement("country_code")] public string CountryCode { get; set; } /// /// 货币代码,ISO标准alpha-3币种代码 1.currency、country_code、longitude&latitude三者不能同时为空 2.同时存在时优先级:currency>country_code>longitude&latitude; /// [XmlElement("currency")] public string Currency { get; set; } /// /// 币种金额:不传的时候默认100,单位元 /// [XmlElement("currency_amount")] public string CurrencyAmount { get; set; } /// /// 业务扩展参数 /// [XmlElement("extend_param")] public string ExtendParam { get; set; } /// /// 纬度;currency、country_code、longitude & latitude三者不能同时为空,同时存在时优先级:currency>country_code>longitude&latitude; /// [XmlElement("latitude")] public string Latitude { get; set; } /// /// 经度; 1.currency、country_code、longitude&latitude三者不能同时为空; 2.同时存在时优先级:currency>country_code>longitude&latitude; /// [XmlElement("longitude")] public string Longitude { get; set; } /// /// 蚂蚁统一会员ID /// [XmlElement("user_id")] public string UserId { get; set; } } }