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

com.aliyun.sdk.service.ververica20220718.models.CreateFolderResponseBody 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 CreateFolderResponseBody} extends {@link TeaModel}
 *
 * 

CreateFolderResponseBody

*/ public class CreateFolderResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("data") private Folder data; @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 CreateFolderResponseBody(Builder builder) { this.data = builder.data; 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 CreateFolderResponseBody create() { return builder().build(); } /** * @return data */ public Folder getData() { return this.data; } /** * @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 Folder data; private String errorCode; private String errorMessage; private Integer httpCode; private String requestId; private Boolean success; /** * data. */ public Builder data(Folder data) { this.data = data; return this; } /** * 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 CreateFolderResponseBody build() { return new CreateFolderResponseBody(this); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy