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