using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// ZolozIdentificationCustomerEnrollCancelModel Data Structure. /// [Serializable] public class ZolozIdentificationCustomerEnrollCancelModel : AopObject { /// /// 商户请求的唯一标志,该标识作为对账的关键信息,商户要保证其唯一性 /// [XmlElement("biz_id")] public string BizId { get; set; } /// /// 商户的用户id /// [XmlElement("user_id")] public string UserId { get; set; } } }