
com.alipay.api.domain.AlipayInsScenePolicySurrenderApplyModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk Show documentation
Show all versions of alipay-sdk Show documentation
baidu push client api with maven
The newest version!
package com.alipay.api.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 退保受理
*
* @author auto create
* @since 1.0, 2017-01-24 19:46:50
*/
public class AlipayInsScenePolicySurrenderApplyModel extends AlipayObject {
private static final long serialVersionUID = 5858832756789548923L;
/**
* 退保扩展参数 ;标准json格式
*/
@ApiField("biz_data")
private String bizData;
/**
* 蚂蚁保险平台生成的保单号
*/
@ApiField("policy_no")
private String policyNo;
public String getBizData() {
return this.bizData;
}
public void setBizData(String bizData) {
this.bizData = bizData;
}
public String getPolicyNo() {
return this.policyNo;
}
public void setPolicyNo(String policyNo) {
this.policyNo = policyNo;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy