You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
878 B
C#

using System;
using System.Xml.Serialization;
namespace Aop.Api.Response
{
/// <summary>
/// AlipayMsaasMediarecogVoiceMediaaudioUploadResponse.
/// </summary>
public class AlipayMsaasMediarecogVoiceMediaaudioUploadResponse : AopResponse
{
/// <summary>
/// 扩展字段
/// </summary>
[XmlElement("extinfo_a")]
public string ExtinfoA { get; set; }
/// <summary>
/// 扩展字段
/// </summary>
[XmlElement("extinfo_b")]
public string ExtinfoB { get; set; }
/// <summary>
/// 结果memo
/// </summary>
[XmlElement("result_memo")]
public string ResultMemo { get; set; }
/// <summary>
/// 结果状态
/// </summary>
[XmlElement("result_status")]
public string ResultStatus { get; set; }
}
}