using System; using System.Xml.Serialization; namespace Alipay.AopSdk.Core.Response { /// /// ZolozIdentificationCustomerCertifyzhubInitializeResponse. /// public class ZolozIdentificationCustomerCertifyzhubInitializeResponse : AopResponse { /// /// 业务单据号,用于核对和排查 /// [XmlElement("biz_id")] public string BizId { get; set; } /// /// 人脸服务端返回码 /// [XmlElement("zim_code")] public string ZimCode { get; set; } /// /// 唯一标识一次人脸服务的id /// [XmlElement("zim_id")] public string ZimId { get; set; } /// /// 人脸服务端返回信息 /// [XmlElement("zim_msg")] public string ZimMsg { get; set; } } }