NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayMsaasMediarecogAftsXn...

45 lines
1.2 KiB
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>
/// AlipayMsaasMediarecogAftsXnnIdentifyModel Data Structure.
/// </summary>
[Serializable]
public class AlipayMsaasMediarecogAftsXnnIdentifyModel : AopObject
{
/// <summary>
/// 算法业务标识id调用对应算法前请联系接口负责人获取
/// </summary>
[XmlElement("biz_id")]
public string BizId { get; set; }
/// <summary>
/// 入参图片信息,
/// </summary>
[XmlArray("image_info_list")]
[XmlArrayItem("image_info")]
public List<ImageInfo> ImageInfoList { get; set; }
/// <summary>
/// config
/// </summary>
[XmlElement("params")]
public string Params { get; set; }
/// <summary>
/// 分类算法传入Common_Classify 检测算法传入Common_Detect 1.1版本后已废除
/// </summary>
[XmlElement("request_type")]
public string RequestType { get; set; }
/// <summary>
/// 蚂蚁统一会员ID
/// </summary>
[XmlElement("user_id")]
public string UserId { get; set; }
}
}