![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkedu_1_0.models.CancelOrderResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkedu_1_0.models;
import com.aliyun.tea.*;
public class CancelOrderResponseBody extends TeaModel {
/**
* This parameter is required.
*
* example:
* false
*/
@NameInMap("needRetry")
public Boolean needRetry;
/**
* This parameter is required.
*
* example:
* refund
*/
@NameInMap("tradeAction")
public String tradeAction;
public static CancelOrderResponseBody build(java.util.Map map) throws Exception {
CancelOrderResponseBody self = new CancelOrderResponseBody();
return TeaModel.build(map, self);
}
public CancelOrderResponseBody setNeedRetry(Boolean needRetry) {
this.needRetry = needRetry;
return this;
}
public Boolean getNeedRetry() {
return this.needRetry;
}
public CancelOrderResponseBody setTradeAction(String tradeAction) {
this.tradeAction = tradeAction;
return this;
}
public String getTradeAction() {
return this.tradeAction;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy