NewGaoKaoApi/PaymentSDK/AliPay/Response/AlipayMobilePublicLabelQuer...

32 lines
733 B
C#

using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Response
{
/// <summary>
/// AlipayMobilePublicLabelQueryResponse.
/// </summary>
public class AlipayMobilePublicLabelQueryResponse : AopResponse
{
/// <summary>
/// 结果码
/// </summary>
[XmlElement("code")]
public string Code { get; set; }
/// <summary>
/// 所有标签
/// </summary>
[XmlArray("labels")]
[XmlArrayItem("string")]
public List<string> Labels { get; set; }
/// <summary>
/// 结果信息
/// </summary>
[XmlElement("msg")]
public string Msg { get; set; }
}
}