using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayOverseasTravelFliggyPoiCreateModel Data Structure. /// [Serializable] public class AlipayOverseasTravelFliggyPoiCreateModel : AopObject { /// /// 同步数据版本 /// [XmlElement("data_version")] public string DataVersion { get; set; } /// /// 扩展信息 /// [XmlElement("ext_info")] public string ExtInfo { get; set; } /// /// 店铺ID /// [XmlElement("global_shop_id")] public string GlobalShopId { get; set; } /// /// 飞猪POI ID /// [XmlElement("poi_data")] public FliggyPoiInfo PoiData { get; set; } /// /// 外部请求ID,做幂等 /// [XmlElement("request_id")] public string RequestId { get; set; } /// /// 支付宝端子任务类型,需回传 /// [XmlElement("task_subtype")] public string TaskSubtype { get; set; } } }