Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/MedicalSvTpCardBodyInfo.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

54 lines
1.7 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// MedicalSvTpCardBodyInfo Data Structure.
/// </summary>
[Serializable]
public class MedicalSvTpCardBodyInfo : AopObject
{
/// <summary>
/// 模板消息主体主要内容题,开发者自定义 备注:根据模板样式编码来确认是否可空
/// </summary>
[JsonProperty("content")]
public string Content { get; set; }
/// <summary>
/// 模板消息主体内同图标URL 图片大小(长*宽,单位px328*328 备注:根据模板样式编码来确认是否可空
/// </summary>
[JsonProperty("image_url")]
public string ImageUrl { get; set; }
/// <summary>
/// 模板消息主体内容的URL链接 备注:根据模板样式编码来确认是否可空
/// </summary>
[JsonProperty("link_url")]
public string LinkUrl { get; set; }
/// <summary>
/// 模板消息主体内容的备注 备注:根据模板样式编码来确认是否可空
/// </summary>
[JsonProperty("remark")]
public string Remark { get; set; }
/// <summary>
/// 模板消息主体内容的副内容 备注:根据模板样式编码来确认是否可空
/// </summary>
[JsonProperty("sub_contenet")]
public string SubContenet { get; set; }
/// <summary>
/// 模板消息主体内容的副标题 备注:根据模板样式编码来确认是否可空
/// </summary>
[JsonProperty("sub_title")]
public string SubTitle { get; set; }
/// <summary>
/// 主体内容中的标题,开发者自定义 备注:根据模板类型确定属性是否可空
/// </summary>
[JsonProperty("title")]
public string Title { get; set; }
}
}