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