using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// OrderLogisticsInfo Data Structure. /// [Serializable] public class OrderLogisticsInfo : AopObject { /// /// 消费者下单线下服务时,填写的服务地址 /// [JsonProperty("address")] public string Address { get; set; } /// /// 联系人 /// [JsonProperty("contact_name")] public string ContactName { get; set; } /// /// 订单的物流扩展信息,包括服务开始时间、服务结束时间 /// [JsonProperty("ext_info")] public OrderLogisticsExtInfo ExtInfo { get; set; } /// /// 消费者地址纬度(高德坐标系) /// [JsonProperty("latitude")] public string Latitude { get; set; } /// /// 消费者地址经度(高德坐标系) /// [JsonProperty("longitude")] public string Longitude { get; set; } /// /// 商家电话绑定的消费者手机号(阿里小号) /// [JsonProperty("merchant_bind_mobile")] public string MerchantBindMobile { get; set; } /// /// 联系电话 /// [JsonProperty("mobile")] public string Mobile { get; set; } } }