NewGaoKaoApi/PaymentSDK/AliPay/Response/ZhimaCreditContractPrincipa...

24 lines
842 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>
/// ZhimaCreditContractPrincipalQueryResponse.
/// </summary>
public class ZhimaCreditContractPrincipalQueryResponse : AopResponse
{
/// <summary>
/// 是否需要授权。仅当mode=1时需要进行处理此时用户需要手动在手机上完成授权操作商户可在机具上给出相关提示请在手机上确认。
/// </summary>
[XmlElement("need_auth")]
public string NeedAuth { get; set; }
/// <summary>
/// 扫码模式下返回的url。此时需要商户将该url转换为二维码用户用支付宝扫码即可进行接下来的业务流程。
/// </summary>
[XmlElement("url")]
public string Url { get; set; }
}
}