using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayOpenAuthAppApplyModel Data Structure. /// [Serializable] public class AlipayOpenAuthAppApplyModel : AopObject { /// /// 授权方应用在蚂蚁开放平台的应用ID /// [XmlElement("auth_app_id")] public string AuthAppId { get; set; } /// /// 授权场景,固定值PLATFORM_APP_AUTH /// [XmlElement("auth_scene")] public string AuthScene { get; set; } /// /// 当前登录账号的支付宝userId /// [XmlElement("operator_user_id")] public string OperatorUserId { get; set; } } }