NewGaoKaoApi/PaymentSDK/AliPay/Domain/TopicItem.cs

37 lines
1.0 KiB
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;
namespace Aop.Api.Domain
{
/// <summary>
/// TopicItem Data Structure.
/// </summary>
[Serializable]
public class TopicItem : AopObject
{
/// <summary>
/// 内容图片url, 尺寸为300*300最大不超过3M支持格式:.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>
/// 跳转链接点击营销位内容图片跳到的链接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; }
}
}