using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// AlipayMsaasPromotionCpainfoCreateModel Data Structure. /// [Serializable] public class AlipayMsaasPromotionCpainfoCreateModel : AopObject { /// /// 唯一应用 /// [JsonProperty("app_id")] public string AppId { get; set; } /// /// 应用版本 /// [JsonProperty("app_version")] public string AppVersion { get; set; } /// /// bundle_id /// [JsonProperty("bundle_id")] public string BundleId { get; set; } /// /// 渠道名称 /// [JsonProperty("channel_id")] public string ChannelId { get; set; } /// /// 调试数据 /// [JsonProperty("debug")] public string Debug { get; set; } /// /// 扩展信息 /// [JsonProperty("extend")] public string Extend { get; set; } /// /// IDFA /// [JsonProperty("idfa")] public string Idfa { get; set; } /// /// IOS版本 /// [JsonProperty("ios_version")] public string IosVersion { get; set; } /// /// MAC /// [JsonProperty("mac")] public string Mac { get; set; } } }