NewGaoKaoApi/PaymentSDK/AliPay/Domain/FaceExtParams.cs

19 lines
479 B
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>
/// FaceExtParams Data Structure.
/// </summary>
[Serializable]
public class FaceExtParams : AopObject
{
/// <summary>
/// 业务类型7基于1:N人脸搜索的刷脸支付场景8基于姓名和身份证号的刷脸支付场景。
/// </summary>
[XmlElement("biz_type")]
public string BizType { get; set; }
}
}