using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// InsCertificateApiDTO Data Structure. /// [Serializable] public class InsCertificateApiDTO : AopObject { /// /// 扩展字段 /// [JsonProperty("biz_data")] public string BizData { get; set; } /// /// 保险凭证号 /// [JsonProperty("certificate_no")] public string CertificateNo { get; set; } /// /// 保险凭证类型 /// [JsonProperty("certificate_type")] public string CertificateType { get; set; } /// /// 生效时间 /// [JsonProperty("effect_time")] public string EffectTime { get; set; } /// /// 失效时间 /// [JsonProperty("expire_time")] public string ExpireTime { get; set; } /// /// 面值 /// [JsonProperty("face_value")] public string FaceValue { get; set; } /// /// 机构保单号 /// [JsonProperty("ins_policy_no")] public string InsPolicyNo { get; set; } /// /// 机构id /// [JsonProperty("inst_id")] public string InstId { get; set; } /// /// 订单号 /// [JsonProperty("order_id")] public string OrderId { get; set; } /// /// 订单来源 /// [JsonProperty("order_source")] public string OrderSource { get; set; } /// /// 外部业务单号 /// [JsonProperty("out_biz_no")] public string OutBizNo { get; set; } /// /// 拥有人uid /// [JsonProperty("owner_uid")] public string OwnerUid { get; set; } /// /// 保险凭证状态 /// [JsonProperty("status")] public long Status { get; set; } /// /// 使用时间 /// [JsonProperty("use_time")] public string UseTime { get; set; } /// /// 使用人uid /// [JsonProperty("user_uid")] public string UserUid { get; set; } } }