NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayOpenAgentSignstatusQu...

27 lines
787 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.Domain
{
/// <summary>
/// AlipayOpenAgentSignstatusQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayOpenAgentSignstatusQueryModel : AopObject
{
/// <summary>
/// isv要查询签约状态的商户账号是支付宝账号pid2088开头
/// </summary>
[XmlElement("pid")]
public string Pid { get; set; }
/// <summary>
/// isv要查询商户签约状态的产品码产品码是支付宝内部对产品的唯一标识
/// </summary>
[XmlArray("product_codes")]
[XmlArrayItem("string")]
public List<string> ProductCodes { get; set; }
}
}