using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayUserAgreementAuthApplyModel Data Structure.
///
[Serializable]
public class AlipayUserAgreementAuthApplyModel : AopObject
{
///
/// 支付宝系统中用以唯一标识用户签约记录的编号。
///
[XmlElement("agreement_no")]
public string AgreementNo { get; set; }
///
/// 支付宝给用户下发短信校验码; 用户在商户提供页面中回填该校验码,商户调支付宝的鉴权确认接口,完全最终的鉴权确认
///
[XmlElement("auth_confirm_type")]
public string AuthConfirmType { get; set; }
///
/// 鉴权申请的场景,目前可传入的值:AUTH/PAY
///
[XmlElement("auth_scene")]
public string AuthScene { get; set; }
}
}