NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayMarketingFacetofaceDe...

25 lines
986 B
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>
/// AlipayMarketingFacetofaceDecodeUseModel Data Structure.
/// </summary>
[Serializable]
public class AlipayMarketingFacetofaceDecodeUseModel : AopObject
{
/// <summary>
/// 付款码码值
/// </summary>
[XmlElement("dynamic_id")]
public string DynamicId { get; set; }
/// <summary>
/// 外部业务号用于标识这笔解码请求对同一个码的重复解码请求sence_no必须与上一次保持一致每次请求的sence_no必须不一样如alipay.marketing.facetoface.decode.use接口配合alipay.trade.pay统一收单交易支付接口一并使用时alipay.trade.pay接口的extend_params属性中必须设置DYNAMIC_TOKEN_OUT_BIZ_NO且值必须与sence_no保持一致。
/// </summary>
[XmlElement("sence_no")]
public string SenceNo { get; set; }
}
}