Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/AlipayOpenPublicPersonalizedExtensionCreateModel.cs

27 lines
748 B
C#
Raw Normal View History

2020-10-07 20:25:03 +08:00
using System;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AlipayOpenPublicPersonalizedExtensionCreateModel Data Structure.
/// </summary>
[Serializable]
public class AlipayOpenPublicPersonalizedExtensionCreateModel : AopObject
{
/// <summary>
/// 扩展区列表最大条数为3
/// </summary>
[JsonProperty("areas")]
public List<ExtensionArea> Areas { get; set; }
/// <summary>
/// 标签规则目前限定只能传入1条在扩展区上线后满足该标签规则的用户进入生活号首页将看到该套扩展区。
/// </summary>
[JsonProperty("label_rule")]
public List<LabelRule> LabelRule { get; set; }
}
}