NewGaoKaoApi/PaymentSDK/AliPay/Response/AlipayUserAgreementUserveri...

18 lines
578 B
C#
Raw Permalink Blame History

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>
/// AlipayUserAgreementUserverifyApplyResponse.
/// </summary>
public class AlipayUserAgreementUserverifyApplyResponse : AopResponse
{
/// <summary>
/// 用户验证申请token其格式和内容由支付宝定义。在鉴权确认的过程中商户可根据申请操作成功时返回的申请token获取后续的买家结果
/// </summary>
[XmlElement("apply_token")]
public string ApplyToken { get; set; }
}
}