NewGaoKaoApi/PaymentSDK/AliPay/Domain/ApplyCodeRequest.cs

37 lines
1.1 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>
/// ApplyCodeRequest Data Structure.
/// </summary>
[Serializable]
public class ApplyCodeRequest : AopObject
{
/// <summary>
/// 通码的业务身份,能唯一定位通码业务,包含码上的数据、路由规则
/// </summary>
[XmlElement("biz_code")]
public string BizCode { get; set; }
/// <summary>
/// biz_id唯一业务id用于业务请求的幂等标志
/// </summary>
[XmlElement("biz_id")]
public string BizId { get; set; }
/// <summary>
/// context_data发码的上下文信息比如pidurl等。此值为一个Map<string, string>类型的json串字符传入规则如下 {"key1":"val2","key2":"val2"}。
/// </summary>
[XmlElement("context_data")]
public string ContextData { get; set; }
/// <summary>
/// logo_urllogo图片地址
/// </summary>
[XmlElement("logo_url")]
public string LogoUrl { get; set; }
}
}