NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayOpenPublicGroupCreate...

27 lines
770 B
C#
Raw Permalink 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>
/// AlipayOpenPublicGroupCreateModel Data Structure.
/// </summary>
[Serializable]
public class AlipayOpenPublicGroupCreateModel : AopObject
{
/// <summary>
/// 标签规则满足该规则的粉丝将被圈定标签id不能重复
/// </summary>
[XmlArray("label_rule")]
[XmlArrayItem("complex_label_rule")]
public List<ComplexLabelRule> LabelRule { get; set; }
/// <summary>
/// 分组名称,仅支持中文、字母、数字、下划线的组合。
/// </summary>
[XmlElement("name")]
public string Name { get; set; }
}
}