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