NewGaoKaoApi/PaymentSDK/AliPay/Domain/MedicalSvTpCardBodyInfo.cs

55 lines
1.9 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>
/// MedicalSvTpCardBodyInfo Data Structure.
/// </summary>
[Serializable]
public class MedicalSvTpCardBodyInfo : AopObject
{
/// <summary>
/// 模板消息主体主要内容题,开发者自定义 备注:根据模板样式编码来确认是否可空
/// </summary>
[XmlElement("content")]
public string Content { get; set; }
/// <summary>
/// 模板消息主体内同图标URL 图片大小(长*宽,单位px328*328 备注:根据模板样式编码来确认是否可空
/// </summary>
[XmlElement("image_url")]
public string ImageUrl { get; set; }
/// <summary>
/// 模板消息主体内容的URL链接 备注:根据模板样式编码来确认是否可空
/// </summary>
[XmlElement("link_url")]
public string LinkUrl { get; set; }
/// <summary>
/// 模板消息主体内容的备注 备注:根据模板样式编码来确认是否可空
/// </summary>
[XmlElement("remark")]
public string Remark { get; set; }
/// <summary>
/// 模板消息主体内容的副内容 备注:根据模板样式编码来确认是否可空
/// </summary>
[XmlElement("sub_contenet")]
public string SubContenet { get; set; }
/// <summary>
/// 模板消息主体内容的副标题 备注:根据模板样式编码来确认是否可空
/// </summary>
[XmlElement("sub_title")]
public string SubTitle { get; set; }
/// <summary>
/// 主体内容中的标题,开发者自定义 备注:根据模板类型确定属性是否可空
/// </summary>
[XmlElement("title")]
public string Title { get; set; }
}
}