NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayOpenAuthAppCancelMode...

31 lines
777 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.Domain
{
/// <summary>
/// AlipayOpenAuthAppCancelModel Data Structure.
/// </summary>
[Serializable]
public class AlipayOpenAuthAppCancelModel : 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; }
}
}