using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// InsCreateCertificateRequest Data Structure. /// [Serializable] public class InsCreateCertificateRequest : AopObject { /// /// 扩展字段 /// [XmlElement("biz_data")] public string BizData { get; set; } /// /// 保险凭证类型 /// [XmlElement("certificate_type")] public string CertificateType { get; set; } /// /// 生效时间 /// [XmlElement("effect_time")] public string EffectTime { get; set; } /// /// 失效时间 /// [XmlElement("expire_time")] public string ExpireTime { get; set; } /// /// 面值 /// [XmlElement("face_value")] public string FaceValue { get; set; } /// /// 电子保单号 /// [XmlElement("ins_policy_no")] public string InsPolicyNo { get; set; } /// /// 机构id /// [XmlElement("inst_id")] public string InstId { get; set; } /// /// 订单id /// [XmlElement("order_id")] public string OrderId { get; set; } /// /// 订单来源 /// [XmlElement("order_source")] public string OrderSource { get; set; } /// /// 外部业务单号 /// [XmlElement("out_biz_no")] public string OutBizNo { get; set; } /// /// 拥有人uid /// [XmlElement("owner_uid")] public string OwnerUid { get; set; } } }