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.

24 lines
752 B
C#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
namespace Aop.Api.Response
{
/// <summary>
/// AlipayMobilePublicInfoModifyResponse.
/// </summary>
public class AlipayMobilePublicInfoModifyResponse : AopResponse
{
/// <summary>
/// 服务窗审核状态描述,如果审核驳回则有相关的驳回理由
/// </summary>
[XmlElement("audit_desc")]
public string AuditDesc { get; set; }
/// <summary>
/// 服务窗审核状态对于系统商而言只有三个状态AUDITING审核中AUDIT_FAILED审核驳回AUDIT_SUCCESS审核通过。
/// </summary>
[XmlElement("audit_status")]
public string AuditStatus { get; set; }
}
}