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