using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// InsCreateCertificateRequest Data Structure. /// [Serializable] public class InsCreateCertificateRequest : AopObject { /// /// 扩展字段 /// [JsonProperty("biz_data")] public string BizData { 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; } /// /// 订单id /// [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; } } }