using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// ZolozIdentificationZolozidGetModel Data Structure.
///
[Serializable]
public class ZolozIdentificationZolozidGetModel : AopObject
{
///
/// get region
///
[XmlElement("action")]
public string Action { get; set; }
///
/// bizId
///
[XmlElement("biz_id")]
public string BizId { get; set; }
///
/// 扩展字段
///
[XmlElement("extern_params")]
public string ExternParams { get; set; }
///
/// json字符串
///
[XmlElement("zcif_params")]
public string ZcifParams { get; set; }
}
}