Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/AlipayPassInstanceUpdateModel.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

48 lines
1.5 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AlipayPassInstanceUpdateModel Data Structure.
/// </summary>
[Serializable]
public class AlipayPassInstanceUpdateModel : AopObject
{
/// <summary>
/// 代理商代替商户发放卡券后再代替商户更新卡券时此值为商户的pid/appid
/// </summary>
[JsonProperty("channel_id")]
public string ChannelId { get; set; }
/// <summary>
/// 商户指定卡券唯一值卡券JSON模板中fileInfo->serialNumber字段对应的值
/// </summary>
[JsonProperty("serial_number")]
public string SerialNumber { get; set; }
/// <summary>
/// 券状态支持更新为USED、CLOSED两种状态
/// </summary>
[JsonProperty("status")]
public string Status { get; set; }
/// <summary>
/// 模版动态参数信息:对应模板中$变量名$的动态参数见模板创建接口返回值中的tpl_params字段
/// </summary>
[JsonProperty("tpl_params")]
public string TplParams { get; set; }
/// <summary>
/// 核销码串值【当状态变更为USED时建议传】
/// </summary>
[JsonProperty("verify_code")]
public string VerifyCode { get; set; }
/// <summary>
/// 核销方式目前支持wave声波方式、qrcode二维码方式、barcode条码方式、input文本方式即手工输入方式。verify_code和verify_type需同时传入
/// </summary>
[JsonProperty("verify_type")]
public string VerifyType { get; set; }
}
}