NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayOpenAuthAppApplyModel.cs

31 lines
808 B
C#
Raw 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.Domain
{
/// <summary>
/// AlipayOpenAuthAppApplyModel Data Structure.
/// </summary>
[Serializable]
public class AlipayOpenAuthAppApplyModel : AopObject
{
/// <summary>
/// 授权方应用在蚂蚁开放平台的应用ID
/// </summary>
[XmlElement("auth_app_id")]
public string AuthAppId { get; set; }
/// <summary>
/// 授权场景固定值PLATFORM_APP_AUTH
/// </summary>
[XmlElement("auth_scene")]
public string AuthScene { get; set; }
/// <summary>
/// 当前登录账号的支付宝userId
/// </summary>
[XmlElement("operator_user_id")]
public string OperatorUserId { get; set; }
}
}