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

com.aliyun.sdk.service.ververica20220718.models.DeleteFolderResponseBody Maven / Gradle / Ivy

The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ververica20220718.models;

import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;

/**
 * {@link DeleteFolderResponseBody} extends {@link TeaModel}
 *
 * 

DeleteFolderResponseBody

*/ public class DeleteFolderResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("errorCode") private String errorCode; @com.aliyun.core.annotation.NameInMap("errorMessage") private String errorMessage; @com.aliyun.core.annotation.NameInMap("httpCode") private Integer httpCode; @com.aliyun.core.annotation.NameInMap("requestId") private String requestId; @com.aliyun.core.annotation.NameInMap("success") private Boolean success; private DeleteFolderResponseBody(Builder builder) { this.errorCode = builder.errorCode; this.errorMessage = builder.errorMessage; this.httpCode = builder.httpCode; this.requestId = builder.requestId; this.success = builder.success; } public static Builder builder() { return new Builder(); } public static DeleteFolderResponseBody create() { return builder().build(); } /** * @return errorCode */ public String getErrorCode() { return this.errorCode; } /** * @return errorMessage */ public String getErrorMessage() { return this.errorMessage; } /** * @return httpCode */ public Integer getHttpCode() { return this.httpCode; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return success */ public Boolean getSuccess() { return this.success; } public static final class Builder { private String errorCode; private String errorMessage; private Integer httpCode; private String requestId; private Boolean success; /** * errorCode. */ public Builder errorCode(String errorCode) { this.errorCode = errorCode; return this; } /** * errorMessage. */ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; return this; } /** * httpCode. */ public Builder httpCode(Integer httpCode) { this.httpCode = httpCode; return this; } /** * requestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * success. */ public Builder success(Boolean success) { this.success = success; return this; } public DeleteFolderResponseBody build() { return new DeleteFolderResponseBody(this); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy