using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Response { /// /// AlipayMsaasMediarecogVoiceMediaaudioUploadResponse. /// public class AlipayMsaasMediarecogVoiceMediaaudioUploadResponse : AopResponse { /// /// 扩展字段 /// [JsonProperty("extinfo_a")] public string ExtinfoA { get; set; } /// /// 扩展字段 /// [JsonProperty("extinfo_b")] public string ExtinfoB { get; set; } /// /// 结果memo /// [JsonProperty("result_memo")] public string ResultMemo { get; set; } /// /// 结果状态 /// [JsonProperty("result_status")] public string ResultStatus { get; set; } } }