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

com.aliyun.quickbi_public20220101.models.CancelCollectionResponseBody Maven / Gradle / Ivy

There is a newer version: 1.6.0
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.quickbi_public20220101.models;

import com.aliyun.tea.*;

public class CancelCollectionResponseBody extends TeaModel {
    /**
     * 

The ID of the request.

*/ @NameInMap("RequestId") public String requestId; /** *

The execution result of the interface is returned. Valid values:

*
*

* true: The request was successful.

*

* false: The request fails.

*/ @NameInMap("Result") public Boolean result; /** *

Indicates whether the request is successful. Valid values:

*
*

* true: The request was successful.

*

* false: The request failed.

*/ @NameInMap("Success") public Boolean success; public static CancelCollectionResponseBody build(java.util.Map map) throws Exception { CancelCollectionResponseBody self = new CancelCollectionResponseBody(); return TeaModel.build(map, self); } public CancelCollectionResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public CancelCollectionResponseBody setResult(Boolean result) { this.result = result; return this; } public Boolean getResult() { return this.result; } public CancelCollectionResponseBody setSuccess(Boolean success) { this.success = success; return this; } public Boolean getSuccess() { return this.success; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy