NewGaoKaoApi/PaymentSDK/AliPay/Response/AlipayUserPassInstancebatch...

26 lines
929 B
C#
Raw 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;
using System.Collections.Generic;
namespace Aop.Api.Response
{
/// <summary>
/// AlipayUserPassInstancebatchAddResponse.
/// </summary>
public class AlipayUserPassInstancebatchAddResponse : AopResponse
{
/// <summary>
/// opType表示操作类型目前固定为ADD。errorCode和errorMsg对应错误信息。passList是券实例列表仅当发券成功才有值其中 serialNumber唯一核销凭证串号必须由动态传参指定 passId券唯一id order券在大礼包中的顺序
/// </summary>
[XmlArray("result")]
[XmlArrayItem("string")]
public List<string> Result { get; set; }
/// <summary>
/// 操作结果标识true成功false失败。
/// </summary>
[XmlElement("success")]
public string Success { get; set; }
}
}