com.alipay.api.response.AlipayCommerceLogisticsOrderIstdcancelPreconsultResponse Maven / Gradle / Ivy
package com.alipay.api.response;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.commerce.logistics.order.istdcancel.preconsult response.
*
* @author auto create
* @since 1.0, 2024-09-02 10:20:28
*/
public class AlipayCommerceLogisticsOrderIstdcancelPreconsultResponse extends AlipayResponse {
private static final long serialVersionUID = 2268445299826488637L;
/**
* 是否允许取消
*/
@ApiField("allow_cancel")
private Boolean allowCancel;
/**
* 取消金额
*/
@ApiField("cancel_fee")
private String cancelFee;
public void setAllowCancel(Boolean allowCancel) {
this.allowCancel = allowCancel;
}
public Boolean getAllowCancel( ) {
return this.allowCancel;
}
public void setCancelFee(String cancelFee) {
this.cancelFee = cancelFee;
}
public String getCancelFee( ) {
return this.cancelFee;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy