30 lines
782 B
C#
30 lines
782 B
C#
|
|
using System;
|
||
|
|
using Newtonsoft.Json;
|
||
|
|
|
||
|
|
namespace Alipay.AopSdk.Core.Domain
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// MedicalSvTpCardActionInfo Data Structure.
|
||
|
|
/// </summary>
|
||
|
|
[Serializable]
|
||
|
|
public class MedicalSvTpCardActionInfo : AopObject
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 模板消息中行动编码,动态参数信息 备注:行动点编码根据模板类型定义
|
||
|
|
/// </summary>
|
||
|
|
[JsonProperty("action_code")]
|
||
|
|
public string ActionCode { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 模板消息中行动名称,开发者自定义
|
||
|
|
/// </summary>
|
||
|
|
[JsonProperty("action_name")]
|
||
|
|
public string ActionName { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 模板消息中实际操作链接,开发者自定义
|
||
|
|
/// </summary>
|
||
|
|
[JsonProperty("action_url")]
|
||
|
|
public string ActionUrl { get; set; }
|
||
|
|
}
|
||
|
|
}
|