using System; using System.Collections.Generic; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// AlipaySecurityRiskContentAnalyzeModel Data Structure. /// [Serializable] public class AlipaySecurityRiskContentAnalyzeModel : AopObject { /// /// 内容的发表账户号,用于将需要检测的内容(文本、链接、图片、音视频)等和账户进行关联 /// [JsonProperty("account_id")] public string AccountId { get; set; } /// /// 账户类型: 用户: 0 商户: 1 /// [JsonProperty("account_type")] public string AccountType { get; set; } /// /// 应用主场景 /// [JsonProperty("app_main_scene")] public string AppMainScene { get; set; } /// /// 应用主场景主体ID /// [JsonProperty("app_main_scene_id")] public string AppMainSceneId { get; set; } /// /// 应用名称,用于区分内容的应用来源 /// [JsonProperty("app_name")] public string AppName { get; set; } /// /// 应用场景 /// [JsonProperty("app_scene")] public string AppScene { get; set; } /// /// 业务ID,例如发帖的帖子ID /// [JsonProperty("app_scene_data_id")] public string AppSceneDataId { get; set; } /// /// 进行识别的音频地址列表 /// [JsonProperty("audio_urls")] public List AudioUrls { get; set; } /// /// 进行识别的链接地址列表 /// [JsonProperty("link_urls")] public List LinkUrls { get; set; } /// /// 进行识别的图片地址列表 /// [JsonProperty("picture_urls")] public List PictureUrls { get; set; } /// /// 发布时间 /// [JsonProperty("publish_date")] public string PublishDate { get; set; } /// /// 文本内容 /// [JsonProperty("text")] public string Text { get; set; } /// /// 进行识别的视频地址列表 /// [JsonProperty("video_urls")] public List VideoUrls { get; set; } } }