NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayPassInstanceUpdateMod...

49 lines
1.7 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>
/// AlipayPassInstanceUpdateModel Data Structure.
/// </summary>
[Serializable]
public class AlipayPassInstanceUpdateModel : AopObject
{
/// <summary>
/// 代理商代替商户发放卡券后再代替商户更新卡券时此值为商户的pid/appid
/// </summary>
[XmlElement("channel_id")]
public string ChannelId { get; set; }
/// <summary>
/// 商户指定卡券唯一值卡券JSON模板中fileInfo->serialNumber字段对应的值
/// </summary>
[XmlElement("serial_number")]
public string SerialNumber { get; set; }
/// <summary>
/// 券状态支持更新为USED、CLOSED两种状态
/// </summary>
[XmlElement("status")]
public string Status { get; set; }
/// <summary>
/// 模版动态参数信息:对应模板中$变量名$的动态参数见模板创建接口返回值中的tpl_params字段
/// </summary>
[XmlElement("tpl_params")]
public string TplParams { get; set; }
/// <summary>
/// 核销码串值【当状态变更为USED时建议传】。该值正常为模板中核销区域Operation对应的message值。
/// </summary>
[XmlElement("verify_code")]
public string VerifyCode { get; set; }
/// <summary>
/// 核销方式该值正常为模板中核销区域Operation对应的format值。verify_code和verify_type需同时传入。
/// </summary>
[XmlElement("verify_type")]
public string VerifyType { get; set; }
}
}