using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// AlipayMsaasMediarecogVoiceMediaaudioUploadModel Data Structure. /// [Serializable] public class AlipayMsaasMediarecogVoiceMediaaudioUploadModel : AopObject { /// /// base64编码的声音数据 /// [JsonProperty("data")] public string Data { get; set; } /// /// 扩展字段 /// [JsonProperty("extinfo_a")] public string ExtinfoA { get; set; } /// /// 扩展字段 /// [JsonProperty("extinfo_b")] public string ExtinfoB { get; set; } /// /// 扩展字段 /// [JsonProperty("extinfo_c")] public string ExtinfoC { get; set; } /// /// 扩展字段 /// [JsonProperty("extinfo_d")] public string ExtinfoD { get; set; } /// /// 时间戳 /// [JsonProperty("labeltime")] public string Labeltime { get; set; } /// /// 媒体名称 /// [JsonProperty("vname")] public string Vname { get; set; } /// /// 媒体类型 /// [JsonProperty("vtype")] public string Vtype { get; set; } } }