using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// AlipayInsScenePolicySurrenderApplyModel Data Structure. /// [Serializable] public class AlipayInsScenePolicySurrenderApplyModel : AopObject { /// /// 退保扩展参数 ;标准json格式 /// [JsonProperty("biz_data")] public string BizData { get; set; } /// /// 蚂蚁保险平台生成的保单号 /// [JsonProperty("policy_no")] public string PolicyNo { get; set; } } }