18 lines
410 B
C#
18 lines
410 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Response
|
|
{
|
|
/// <summary>
|
|
/// AlipayUserCertdocCertverifyPreconsultResponse.
|
|
/// </summary>
|
|
public class AlipayUserCertdocCertverifyPreconsultResponse : AopResponse
|
|
{
|
|
/// <summary>
|
|
/// 申请验证ID
|
|
/// </summary>
|
|
[XmlElement("verify_id")]
|
|
public string VerifyId { get; set; }
|
|
}
|
|
}
|