using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// NewsfeedMediaGiftInfo Data Structure. /// [Serializable] public class NewsfeedMediaGiftInfo : AopObject { /// /// 地址 /// [JsonProperty("action")] public string Action { get; set; } /// /// 安卓的高度 /// [JsonProperty("adr_height")] public string AdrHeight { get; set; } /// /// 安卓缩略图 /// [JsonProperty("adr_thumb")] public string AdrThumb { get; set; } /// /// 安卓宽度 /// [JsonProperty("adr_width")] public string AdrWidth { get; set; } /// /// ios高度 /// [JsonProperty("ios_height")] public string IosHeight { get; set; } /// /// ios缩略图 /// [JsonProperty("ios_thumb")] public string IosThumb { get; set; } /// /// ios宽度 /// [JsonProperty("ios_width")] public string IosWidth { get; set; } /// /// 大图 /// [JsonProperty("theme")] public string Theme { get; set; } /// /// 红包类型all、f、m /// [JsonProperty("type")] public string Type { get; set; } } }