NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayCommerceLogisticsFace...

43 lines
1.3 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;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipayCommerceLogisticsFaceMatchModel Data Structure.
/// </summary>
[Serializable]
public class AlipayCommerceLogisticsFaceMatchModel : AopObject
{
/// <summary>
/// 业务类型标识,比如 刷脸开柜,刷脸支付, 值由支付宝分配
/// </summary>
[XmlElement("biz_type")]
public string BizType { get; set; }
/// <summary>
/// 人脸集合标识-对于自提柜刷脸开柜验证场景,对应 柜子编号,注意不是格口的编号
/// </summary>
[XmlElement("face_group")]
public string FaceGroup { get; set; }
/// <summary>
/// 刷脸取件用户的人脸图片字节数组进行Base64编码后的字符串
/// </summary>
[XmlElement("face_image")]
public string FaceImage { get; set; }
/// <summary>
/// 识别的人脸矩形,格式为 "left,top,width,height"
/// </summary>
[XmlElement("face_rectangle")]
public string FaceRectangle { get; set; }
/// <summary>
/// 商户编码-物流体系里的编码
/// </summary>
[XmlElement("merchant_code")]
public string MerchantCode { get; set; }
}
}