NewGaoKaoApi/PaymentSDK/AliPay/Domain/UpdateCodeResult.cs

49 lines
1.5 KiB
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>
/// UpdateCodeResult Data Structure.
/// </summary>
[Serializable]
public class UpdateCodeResult : AopObject
{
/// <summary>
/// biz_id唯一业务id用于业务请求的幂等标志
/// </summary>
[XmlElement("biz_id")]
public string BizId { get; set; }
/// <summary>
/// 码值对应码平台的tokenhttps://qr.alipay.com/${token} 中的token
/// </summary>
[XmlElement("code_token")]
public string CodeToken { get; set; }
/// <summary>
/// context_data发码的上下文信息比如子业务code场景code等。此值为一个Map<string, string>类型的json串字符传入规则如下 {"key1":"val2","key2":"val2"}。必填业务字段SUB_BIZ_TYPESCENE等具体咨询对接技术人员
/// </summary>
[XmlElement("context_data")]
public string ContextData { get; set; }
/// <summary>
/// 错误码
/// </summary>
[XmlElement("error_code")]
public string ErrorCode { get; set; }
/// <summary>
/// 错误描述
/// </summary>
[XmlElement("error_message")]
public string ErrorMessage { get; set; }
/// <summary>
/// 是否成功
/// </summary>
[XmlElement("success")]
public bool Success { get; set; }
}
}