接口文件

This commit is contained in:
“wanyongkang”
2024-04-10 13:55:27 +08:00
parent fff6bee06a
commit ed3b2c653e
3190 changed files with 268248 additions and 1 deletions

View File

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