18 lines
419 B
C#
18 lines
419 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Response
|
|
{
|
|
/// <summary>
|
|
/// AlipayInsAutoAutoinsprodUserCertifyResponse.
|
|
/// </summary>
|
|
public class AlipayInsAutoAutoinsprodUserCertifyResponse : AopResponse
|
|
{
|
|
/// <summary>
|
|
/// 验证结果
|
|
/// </summary>
|
|
[XmlElement("agent_cert_result")]
|
|
public string AgentCertResult { get; set; }
|
|
}
|
|
}
|