NewGaoKaoApi/PaymentSDK/AliPay/Domain/SsdataDataserviceRiskAudioQ...

33 lines
1008 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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; }
}
}