using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// AlipayEcoMycarDataExternalSendModel Data Structure. /// [Serializable] public class AlipayEcoMycarDataExternalSendModel : AopObject { /// /// external_system_name /// [JsonProperty("external_system_name")] public string ExternalSystemName { get; set; } /// /// is_transfer_uid /// [JsonProperty("is_transfer_uid")] public string IsTransferUid { get; set; } /// /// operate_type /// [JsonProperty("operate_type")] public string OperateType { get; set; } /// /// send_data /// [JsonProperty("send_data")] public string SendData { get; set; } } }