NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayMarketingToolFengdieT...

33 lines
968 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>
/// AlipayMarketingToolFengdieTemplateSendModel Data Structure.
/// </summary>
[Serializable]
public class AlipayMarketingToolFengdieTemplateSendModel : AopObject
{
/// <summary>
/// 企业 VIP 用户的ID以 2088 开头的ID
/// </summary>
[XmlElement("operator")]
public string Operator { get; set; }
/// <summary>
/// 欲分配站点模板的空间业务 ID 列表
/// </summary>
[XmlArray("space_ids")]
[XmlArrayItem("string")]
public List<string> SpaceIds { get; set; }
/// <summary>
/// 欲分配的站点模板的名称,可以在模板包的 package.json 文件中找到 name 字段
/// </summary>
[XmlElement("template_name")]
public string TemplateName { get; set; }
}
}