NewGaoKaoApi/PaymentSDK/AliPay/Response/AlipayOpenInviteOrderQueryR...

27 lines
730 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;
using Aop.Api.Domain;
namespace Aop.Api.Response
{
/// <summary>
/// AlipayOpenInviteOrderQueryResponse.
/// </summary>
public class AlipayOpenInviteOrderQueryResponse : AopResponse
{
/// <summary>
/// 商家支付宝账号对应的ID2088开头
/// </summary>
[XmlElement("merchant_pid")]
public string MerchantPid { get; set; }
/// <summary>
/// 产品签约状态对象
/// </summary>
[XmlArray("sign_status_list")]
[XmlArrayItem("product_invite_status_info")]
public List<ProductInviteStatusInfo> SignStatusList { get; set; }
}
}