NewGaoKaoApi/PaymentSDK/AliPay/Response/ZhimaAuthInfoAuthqueryRespo...

24 lines
621 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.Response
{
/// <summary>
/// ZhimaAuthInfoAuthqueryResponse.
/// </summary>
public class ZhimaAuthInfoAuthqueryResponse : AopResponse
{
/// <summary>
/// 是否已经授权; authorizedtrue 表示已授权, authorizedfalse表示未授权
/// </summary>
[XmlElement("authorized")]
public bool Authorized { get; set; }
/// <summary>
/// 当前授权业务查询标识
/// </summary>
[XmlElement("open_id")]
public string OpenId { get; set; }
}
}