NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayOpenPublicPersonalize...

28 lines
880 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>
/// AlipayOpenPublicPersonalizedExtensionCreateModel Data Structure.
/// </summary>
[Serializable]
public class AlipayOpenPublicPersonalizedExtensionCreateModel : AopObject
{
/// <summary>
/// 扩展区列表最大条数为3
/// </summary>
[XmlArray("areas")]
[XmlArrayItem("extension_area")]
public List<ExtensionArea> Areas { get; set; }
/// <summary>
/// 标签规则目前限定只能传入1条在扩展区上线后满足该标签规则的用户进入生活号首页将看到该套扩展区。
/// </summary>
[XmlArray("label_rule")]
[XmlArrayItem("label_rule")]
public List<LabelRule> LabelRule { get; set; }
}
}