51 lines
1.7 KiB
C#
51 lines
1.7 KiB
C#
using System;
|
||
using System.Xml.Serialization;
|
||
using System.Collections.Generic;
|
||
|
||
namespace Aop.Api.Domain
|
||
{
|
||
/// <summary>
|
||
/// AlipayOpenPublicTopicCreateModel Data Structure.
|
||
/// </summary>
|
||
[Serializable]
|
||
public class AlipayOpenPublicTopicCreateModel : AopObject
|
||
{
|
||
/// <summary>
|
||
/// 营销位图片url, 尺寸为996*450,最大不超过5M,支持格式:.jpg、.png ,请先调用<a href="https://docs.open.alipay.com/api_3/alipay.offline.material.image.upload"> 图片上传接口</a>获得图片url。营销位需要展示头图时,必须填写该参数。
|
||
/// </summary>
|
||
[XmlElement("img_url")]
|
||
public string ImgUrl { get; set; }
|
||
|
||
/// <summary>
|
||
/// 跳转类型,网页:HTTP、小程序:APP,不传默认HTTP
|
||
/// </summary>
|
||
[XmlElement("link_type")]
|
||
public string LinkType { get; set; }
|
||
|
||
/// <summary>
|
||
/// 营销位跳转地址,点击营销位头图跳到的链接url。营销位需要展示头图时,必须填写该参数。
|
||
/// </summary>
|
||
[XmlElement("link_url")]
|
||
public string LinkUrl { get; set; }
|
||
|
||
/// <summary>
|
||
/// 营销位描述。营销位需要展示头图时,必须填写该参数。
|
||
/// </summary>
|
||
[XmlElement("sub_title")]
|
||
public string SubTitle { get; set; }
|
||
|
||
/// <summary>
|
||
/// 营销位名称
|
||
/// </summary>
|
||
[XmlElement("title")]
|
||
public string Title { get; set; }
|
||
|
||
/// <summary>
|
||
/// 营销位内容,数量限制:大于4个,小于8个
|
||
/// </summary>
|
||
[XmlArray("topic_items")]
|
||
[XmlArrayItem("topic_item")]
|
||
public List<TopicItem> TopicItems { get; set; }
|
||
}
|
||
}
|