AlipayCommerceLogisticsFaceMatchModel.cs 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. using Newtonsoft.Json;
  2. namespace Essensoft.AspNetCore.Alipay.Domain
  3. {
  4. /// <summary>
  5. /// AlipayCommerceLogisticsFaceMatchModel Data Structure.
  6. /// </summary>
  7. public class AlipayCommerceLogisticsFaceMatchModel : AlipayObject
  8. {
  9. /// <summary>
  10. /// 业务类型标识,比如 刷脸开柜,刷脸支付, 值由支付宝分配
  11. /// </summary>
  12. [JsonProperty("biz_type")]
  13. public string BizType { get; set; }
  14. /// <summary>
  15. /// 人脸集合标识-对于自提柜刷脸开柜验证场景,对应 柜子编号,注意不是格口的编号 ,
  16. /// </summary>
  17. [JsonProperty("face_group")]
  18. public string FaceGroup { get; set; }
  19. /// <summary>
  20. /// 刷脸取件用户的人脸图片字节数组进行Base64编码后的字符串
  21. /// </summary>
  22. [JsonProperty("face_image")]
  23. public string FaceImage { get; set; }
  24. /// <summary>
  25. /// 识别的人脸矩形,格式为 "left,top,width,height"
  26. /// </summary>
  27. [JsonProperty("face_rectangle")]
  28. public string FaceRectangle { get; set; }
  29. /// <summary>
  30. /// 商户编码-物流体系里的编码
  31. /// </summary>
  32. [JsonProperty("merchant_code")]
  33. public string MerchantCode { get; set; }
  34. }
  35. }