NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayOpenPublicMatchuserLa...

33 lines
981 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>
/// AlipayOpenPublicMatchuserLabelCreateModel Data Structure.
/// </summary>
[Serializable]
public class AlipayOpenPublicMatchuserLabelCreateModel : AopObject
{
/// <summary>
/// 标签id调用创建标签接口会返回label_id
/// </summary>
[XmlElement("label_id")]
public string LabelId { get; set; }
/// <summary>
/// 标签值由开发者自主指定标签值类型要满足创建标签接口中data_type参数的限定。
/// </summary>
[XmlElement("label_value")]
public string LabelValue { get; set; }
/// <summary>
/// 支付宝用户匹配器列表最多传入10条
/// </summary>
[XmlArray("matchers")]
[XmlArrayItem("matcher")]
public List<Matcher> Matchers { get; set; }
}
}