Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/TemplateColumnInfoDTO.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

43 lines
1.4 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>
/// TemplateColumnInfoDTO Data Structure.
/// </summary>
[Serializable]
public class TemplateColumnInfoDTO : AopObject
{
/// <summary>
/// 标准栏位行为由支付宝统一定同时已经分配标准Code BALANCE会员卡余额 POINT积分 LEVEL等级 TELEPHONE联系方式 自定义栏位行为由商户定义自定义Code码只要无重复
/// </summary>
[JsonProperty("code")]
public string Code { get; set; }
/// <summary>
/// 扩展信息
/// </summary>
[JsonProperty("more_info")]
public MoreInfoDTO MoreInfo { get; set; }
/// <summary>
/// 1、openNative打开二级页面展现 more中descs 2、openWeb打开URL 3、staticinfo静态信息 注意: 不填则默认staticinfo
/// 标准code尽量使用staticinfo例如TELEPHONE商家电话栏位就只支持staticinfo
/// </summary>
[JsonProperty("operate_type")]
public string OperateType { get; set; }
/// <summary>
/// 栏目的标题
/// </summary>
[JsonProperty("title")]
public string Title { get; set; }
/// <summary>
/// 卡包详情页面,卡栏位右边展现的值 TELEPHONE栏位的商家联系电话号码由此value字段传入
/// </summary>
[JsonProperty("value")]
public string Value { get; set; }
}
}