NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayOpenPublicGroupModify...

33 lines
926 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>
/// AlipayOpenPublicGroupModifyModel Data Structure.
/// </summary>
[Serializable]
public class AlipayOpenPublicGroupModifyModel : AopObject
{
/// <summary>
/// 分组ID整型值
/// </summary>
[XmlElement("group_id")]
public string GroupId { get; set; }
/// <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; }
}
}