com.aliyun.datalake20200710.models.ListCatalogsResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of datalake20200710 Show documentation
Show all versions of datalake20200710 Show documentation
Alibaba Cloud DataLake (20200710) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.datalake20200710.models;
import com.aliyun.tea.*;
public class ListCatalogsResponseBody extends TeaModel {
@NameInMap("Catalogs")
public java.util.List catalogs;
@NameInMap("Code")
public String code;
@NameInMap("Message")
public String message;
@NameInMap("NextPageToken")
public String nextPageToken;
@NameInMap("RequestId")
public String requestId;
@NameInMap("Success")
public Boolean success;
public static ListCatalogsResponseBody build(java.util.Map map) throws Exception {
ListCatalogsResponseBody self = new ListCatalogsResponseBody();
return TeaModel.build(map, self);
}
public ListCatalogsResponseBody setCatalogs(java.util.List catalogs) {
this.catalogs = catalogs;
return this;
}
public java.util.List getCatalogs() {
return this.catalogs;
}
public ListCatalogsResponseBody setCode(String code) {
this.code = code;
return this;
}
public String getCode() {
return this.code;
}
public ListCatalogsResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public ListCatalogsResponseBody setNextPageToken(String nextPageToken) {
this.nextPageToken = nextPageToken;
return this;
}
public String getNextPageToken() {
return this.nextPageToken;
}
public ListCatalogsResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public ListCatalogsResponseBody setSuccess(Boolean success) {
this.success = success;
return this;
}
public Boolean getSuccess() {
return this.success;
}
}