NewGaoKaoApi/PaymentSDK/AliPay/Response/ZhimaCustomerAuthMutualview...

48 lines
1.6 KiB
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>
/// ZhimaCustomerAuthMutualviewApplyResponse.
/// </summary>
public class ZhimaCustomerAuthMutualviewApplyResponse : AopResponse
{
/// <summary>
/// 查询用户信用状态的id
/// </summary>
[XmlElement("auth_id")]
public string AuthId { get; set; }
/// <summary>
/// 取消授权结果true为成功false为失败其他值表示非取消授权的操作
/// </summary>
[XmlElement("cancel_result")]
public string CancelResult { get; set; }
/// <summary>
/// 用于展示本次查询结果的描述,例如信用良好,信用一般
/// </summary>
[XmlElement("describe")]
public string Describe { get; set; }
/// <summary>
/// 本次业务操作的错误码
/// </summary>
[XmlElement("error_code")]
public string ErrorCode { get; set; }
/// <summary>
/// 本次业务操作的错误描述
/// </summary>
[XmlElement("error_message")]
public string ErrorMessage { get; set; }
/// <summary>
/// 此值接口提供方不做消费,仅用来给商户端透传的字段;用于商户端在调用此接口时回传到自己的业务逻辑中,用于自己的业务逻辑校验使用的; 此值的来源参见接口入参中的ext_biz_param中
/// </summary>
[XmlElement("outer_sign")]
public string OuterSign { get; set; }
}
}