NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayCommerceEducateLocalf...

91 lines
2.5 KiB
C#
Raw 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;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipayCommerceEducateLocalfaceCompareSyncModel Data Structure.
/// </summary>
[Serializable]
public class AlipayCommerceEducateLocalfaceCompareSyncModel : AopObject
{
/// <summary>
/// 客户端BehaviourLog-> aesCypher 参数
/// </summary>
[XmlElement("aes_cypher")]
public string AesCypher { get; set; }
/// <summary>
/// 参照示例传入
/// </summary>
[XmlElement("alg_ver")]
public string AlgVer { get; set; }
/// <summary>
/// 客户端BehaviourLog->imageBlob参数
/// </summary>
[XmlElement("auth_img")]
public string AuthImg { get; set; }
/// <summary>
/// SCHOOL_PAYMENT: 校园刷脸支付 SCHOOL_ENTRANCE_GUARD:校园门禁
/// </summary>
[XmlElement("biz_code")]
public string BizCode { get; set; }
/// <summary>
/// 业务流水唯一ID,isv自定义保证唯一性
/// </summary>
[XmlElement("biz_id")]
public string BizId { get; set; }
/// <summary>
/// 拓展参数
/// </summary>
[XmlElement("ext_info")]
public string ExtInfo { get; set; }
/// <summary>
/// 2D或者3D默认2D
/// </summary>
[XmlElement("face_data_type")]
public string FaceDataType { get; set; }
/// <summary>
/// 参数来源填写特征文件中对应的face_id 人脸本地1:N比对后的用户ID
/// </summary>
[XmlElement("fuid")]
public string Fuid { get; set; }
/// <summary>
/// 必须是由支付宝业务方分配的英文简称(例如:yikeshixx),不能是中文
/// </summary>
[XmlElement("isv_name")]
public string IsvName { get; set; }
/// <summary>
/// 国家统一分配的学校社会信用代码(institution_id)
/// </summary>
[XmlElement("organize_id")]
public string OrganizeId { get; set; }
/// <summary>
/// 图片质量分
/// </summary>
[XmlElement("quality")]
public string Quality { get; set; }
/// <summary>
/// 人脸坐标点
/// </summary>
[XmlElement("rect")]
public string Rect { get; set; }
/// <summary>
/// 人脸本地比对分
/// </summary>
[XmlElement("score")]
public string Score { get; set; }
}
}