Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Response/AlipayPassInstanceAddResponse.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

23 lines
748 B
C#
Raw 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 Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Response
{
/// <summary>
/// AlipayPassInstanceAddResponse.
/// </summary>
public class AlipayPassInstanceAddResponse : AopResponse
{
/// <summary>
/// 接口调用返回结果信息 serialNumber唯一核销凭证串号必须由动态传参指定 passId券唯一id operation本次调用的操作类型ADD errorCode处理结果码错误码
/// errorMsg处理结果说明错误说明
/// </summary>
[JsonProperty("result")]
public string Result { get; set; }
/// <summary>
/// 操作成功标识【true成功false失败】
/// </summary>
[JsonProperty("success")]
public string Success { get; set; }
}
}