All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalkedu_1_0.models.CancelOrderResponseBody Maven / Gradle / Ivy

There is a newer version: 2.1.88
Show newest version
// 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