Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Response/AlipayPassInstanceAddResponse.cs

23 lines
748 B
C#
Raw Normal View History

2020-10-07 20:25:03 +08:00
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; }
}
}