Files
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

54 lines
1.4 KiB
C#
Raw Permalink 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>
/// Context Data Structure.
/// </summary>
[Serializable]
public class Context : AopObject
{
/// <summary>
/// 底部链接描述文字,如“查看详情”
/// </summary>
[JsonProperty("action_name")]
public string ActionName { get; set; }
/// <summary>
/// 模板中占位符的值及文字颜色value和color都为必填项color为当前文字颜色
/// </summary>
[JsonProperty("first")]
public Keyword First { get; set; }
/// <summary>
/// 顶部色条的色值
/// </summary>
[JsonProperty("head_color")]
public string HeadColor { get; set; }
/// <summary>
/// 模板中占位符的值及文字颜色value和color都为必填项color为当前文字颜色
/// </summary>
[JsonProperty("keyword1")]
public Keyword Keyword1 { get; set; }
/// <summary>
/// 模板中占位符的值及文字颜色value和color都为必填项color为当前文字颜色
/// </summary>
[JsonProperty("keyword2")]
public Keyword Keyword2 { get; set; }
/// <summary>
/// 模板中占位符的值及文字颜色value和color都为必填项color为当前文字颜色
/// </summary>
[JsonProperty("remark")]
public Keyword Remark { get; set; }
/// <summary>
/// 点击消息后承接页的地址
/// </summary>
[JsonProperty("url")]
public string Url { get; set; }
}
}