33 lines
1008 B
C#
33 lines
1008 B
C#
using System;
|
||
using System.Xml.Serialization;
|
||
using System.Collections.Generic;
|
||
|
||
namespace Aop.Api.Domain
|
||
{
|
||
/// <summary>
|
||
/// SsdataDataserviceRiskAudioQueryModel Data Structure.
|
||
/// </summary>
|
||
[Serializable]
|
||
public class SsdataDataserviceRiskAudioQueryModel : AopObject
|
||
{
|
||
/// <summary>
|
||
/// 调用识别服务的用户id,与使用ssdata.dataservice.risk.audio.set的creator一致
|
||
/// </summary>
|
||
[XmlElement("checker")]
|
||
public string Checker { get; set; }
|
||
|
||
/// <summary>
|
||
/// 用户音频请求唯一识别码
|
||
/// </summary>
|
||
[XmlElement("request_id")]
|
||
public string RequestId { get; set; }
|
||
|
||
/// <summary>
|
||
/// 风险类型,1-涉政模型, 2-涉黄模型。与ssdata.dataservice.risk.audio.verify接口传数据时的参数保持一致。
|
||
/// </summary>
|
||
[XmlArray("risk_type")]
|
||
[XmlArrayItem("string")]
|
||
public List<string> RiskType { get; set; }
|
||
}
|
||
}
|