using System;
using System.Xml.Serialization;
namespace Alipay.AopSdk.Core.Response
{
///
/// ZolozIdentificationCustomerEnrollcertifyInitializeResponse.
///
public class ZolozIdentificationCustomerEnrollcertifyInitializeResponse : AopResponse
{
///
/// 业务单据号,用于核对和排查
///
[XmlElement("biz_id")]
public string BizId { get; set; }
///
/// 人脸注册id
///
[XmlElement("zim_id")]
public string ZimId { get; set; }
}
}