using System;
using System.Xml.Serialization;
using System.Collections.Generic;
using Top.Api;
namespace DingTalk.Api.Response
{
///
/// OapiFinanceFaceVerificationQueryResponse.
///
public class OapiFinanceFaceVerificationQueryResponse : DingTalkResponse
{
///
/// 错误码
///
[XmlElement("errcode")]
public long Errcode { get; set; }
///
/// 错误信息
///
[XmlElement("errmsg")]
public string Errmsg { get; set; }
///
/// 查询结果
///
[XmlElement("result")]
public OpenFaceVerificationQueryResultDomain Result { get; set; }
///
/// 是否成功
///
[XmlElement("success")]
public bool Success { get; set; }
///
/// OpenFaceVerificationQueryResultDomain Data Structure.
///
[Serializable]
public class OpenFaceVerificationQueryResultDomain : TopObject
{
///
/// 人脸照片,BASE64编码
///
[XmlElement("alive_photo")]
public string AlivePhoto { get; set; }
}
}
}