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