Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/ButtonObject.cs

46 lines
1.8 KiB
C#
Raw Normal View History

2020-10-07 20:25:03 +08:00
using System;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// ButtonObject Data Structure.
/// </summary>
[Serializable]
public class ButtonObject : AopObject
{
/// <summary>
/// 当actionType为link时该参数为url链接 当actionType为out时该参数为用户自定义参数 当actionType为tel时该参数为电话号码。
/// 当action_type为map时该参数为查看地图的关键字。 当action_type为consumption时该参数可不传。 该参数最长255个字符不允许冒号等特殊字符。
/// </summary>
[JsonProperty("action_param")]
public string ActionParam { get; set; }
/// <summary>
/// 菜单类型: out——事件型菜单 link——链接型菜单 tel——点击拨打电话 map——点击查看地图 consumption——点击查看用户与生活号管理员账号之间的消费记录
/// </summary>
[JsonProperty("action_type")]
public string ActionType { get; set; }
/// <summary>
/// icon图片url必须是http协议的url尺寸为60X60最大不超过5M请先调用
/// <a href="https://docs.open.alipay.com/api_3/alipay.offline.material.image.upload"> 图片上传接口</a>获得图片url
/// </summary>
[JsonProperty("icon")]
public string Icon { get; set; }
/// <summary>
/// 菜单名称icon菜单名称不超过5个汉字文本菜单名称不超过9个汉字编码格式为GBK
/// </summary>
[JsonProperty("name")]
public string Name { get; set; }
/// <summary>
/// 二级菜单数组若sub_button为空则一级菜单必须指定action_type和action_param的值二级菜单个数可以为1~5个。
/// </summary>
[JsonProperty("sub_button")]
public List<SubButton> SubButton { get; set; }
}
}