NewGaoKaoApi/PaymentSDK/AliPay/Domain/UpdateCodeRequest.cs

37 lines
1.2 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.Domain
{
/// <summary>
/// UpdateCodeRequest Data Structure.
/// </summary>
[Serializable]
public class UpdateCodeRequest : AopObject
{
/// <summary>
/// 执行动作,如:绑定-BIND解绑-UNBIND
/// </summary>
[XmlElement("action")]
public string Action { get; set; }
/// <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; }
}
}