33 lines
968 B
C#
33 lines
968 B
C#
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; }
|
||
}
|
||
}
|