com.alipay.api.domain.AlipayInsSceneEcommerceClaimCancelModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk-java Show documentation
Show all versions of alipay-sdk-java Show documentation
Alipay openapi SDK for Java
Copyright © 2018 杭州蚂蚁金服
All rights reserved.
版权所有 (C)杭州蚂蚁金服
http://open.alipay.com
package com.alipay.api.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 电商理赔报案取消
*
* @author auto create
* @since 1.0, 2024-03-20 11:21:51
*/
public class AlipayInsSceneEcommerceClaimCancelModel extends AlipayObject {
private static final long serialVersionUID = 6754417453854896152L;
/**
* 取消原因
*/
@ApiField("cancel_reason")
private String cancelReason;
/**
* 报案单号
*/
@ApiField("claim_report_no")
private String claimReportNo;
/**
* 合作商标识
*/
@ApiField("partner_org_id")
private String partnerOrgId;
public String getCancelReason() {
return this.cancelReason;
}
public void setCancelReason(String cancelReason) {
this.cancelReason = cancelReason;
}
public String getClaimReportNo() {
return this.claimReportNo;
}
public void setClaimReportNo(String claimReportNo) {
this.claimReportNo = claimReportNo;
}
public String getPartnerOrgId() {
return this.partnerOrgId;
}
public void setPartnerOrgId(String partnerOrgId) {
this.partnerOrgId = partnerOrgId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy