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

82 lines
2.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 System.Collections.Generic;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// TemplateStyleInfoDTO Data Structure.
/// </summary>
[Serializable]
public class TemplateStyleInfoDTO : AopObject
{
/// <summary>
/// 背景图片Id通过接口alipay.offline.material.image.upload上传图片 图片说明2M以内格式bmp、png、jpeg、jpg、gif 尺寸不小于1020*643px
/// 图片不得有圆角,不得拉伸变形
/// </summary>
[JsonProperty("background_id")]
public string BackgroundId { get; set; }
/// <summary>
/// 背景色
/// </summary>
[JsonProperty("bg_color")]
public string BgColor { get; set; }
/// <summary>
/// 品牌商名称
/// </summary>
[JsonProperty("brand_name")]
public string BrandName { get; set; }
/// <summary>
/// 钱包端显示名称(字符串长度)
/// </summary>
[JsonProperty("card_show_name")]
public string CardShowName { get; set; }
/// <summary>
/// 注意:此字段已废弃。 卡片颜色
/// </summary>
[JsonProperty("color")]
public string Color { get; set; }
/// <summary>
/// 特色信息,用于领卡预览
/// </summary>
[JsonProperty("feature_descriptions")]
public List<string> FeatureDescriptions { get; set; }
/// <summary>
/// 设置是否在卡面展示(个人头像)图片信息,默认不展示; 当前仅用于身份验证信息类型的个人头像图片; 图片id随创建卡/更新卡时传入; 详见会员卡产品文档。
/// </summary>
[JsonProperty("front_image_enable")]
public bool FrontImageEnable { get; set; }
/// <summary>
/// 设置是否在卡面展示文案信息,默认不展示; 文案信息分行展示最多展示3行文案每行文案分为label和value两部分 文案实际内容随创建卡/更新卡时传入; 详见会员卡产品说明文档。
/// </summary>
[JsonProperty("front_text_list_enable")]
public bool FrontTextListEnable { get; set; }
/// <summary>
/// logo的图片ID通过接口alipay.offline.material.image.upload上传图片 图片说明1M以内格式bmp、png、jpeg、jpg、gif 尺寸不小于500*500px的正方形
/// 请优先使用商家LOGO
/// </summary>
[JsonProperty("logo_id")]
public string LogoId { get; set; }
/// <summary>
/// 标语
/// </summary>
[JsonProperty("slogan")]
public string Slogan { get; set; }
/// <summary>
/// 标语图片, 通过接口alipay.offline.material.image.upload上传图片
/// </summary>
[JsonProperty("slogan_img_id")]
public string SloganImgId { get; set; }
}
}