com.aliyun.sdk.service.iot20180120.models.QueryStudioAppPageListOpenResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alibabacloud-iot20180120 Show documentation
Show all versions of alibabacloud-iot20180120 Show documentation
Alibaba Cloud Iot (20180120) Async SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.iot20180120.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link QueryStudioAppPageListOpenResponseBody} extends {@link TeaModel}
*
* QueryStudioAppPageListOpenResponseBody
*/
public class QueryStudioAppPageListOpenResponseBody extends TeaModel {
@NameInMap("Code")
private String code;
@NameInMap("Data")
private Data data;
@NameInMap("ErrorMessage")
private String errorMessage;
@NameInMap("RequestId")
private String requestId;
@NameInMap("Success")
private Boolean success;
private QueryStudioAppPageListOpenResponseBody(Builder builder) {
this.code = builder.code;
this.data = builder.data;
this.errorMessage = builder.errorMessage;
this.requestId = builder.requestId;
this.success = builder.success;
}
public static Builder builder() {
return new Builder();
}
public static QueryStudioAppPageListOpenResponseBody create() {
return builder().build();
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return data
*/
public Data getData() {
return this.data;
}
/**
* @return errorMessage
*/
public String getErrorMessage() {
return this.errorMessage;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return success
*/
public Boolean getSuccess() {
return this.success;
}
public static final class Builder {
private String code;
private Data data;
private String errorMessage;
private String requestId;
private Boolean success;
/**
* Code.
*/
public Builder code(String code) {
this.code = code;
return this;
}
/**
* Data.
*/
public Builder data(Data data) {
this.data = data;
return this;
}
/**
* ErrorMessage.
*/
public Builder errorMessage(String errorMessage) {
this.errorMessage = errorMessage;
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 QueryStudioAppPageListOpenResponseBody build() {
return new QueryStudioAppPageListOpenResponseBody(this);
}
}
public static class PageInfo extends TeaModel {
@NameInMap("GmtCreate")
private String gmtCreate;
@NameInMap("GmtModified")
private String gmtModified;
@NameInMap("Id")
private Integer id;
@NameInMap("IsHidden")
private Integer isHidden;
@NameInMap("IsHome")
private Integer isHome;
@NameInMap("IsLoginPage")
private Integer isLoginPage;
@NameInMap("Name")
private String name;
@NameInMap("PageId")
private String pageId;
@NameInMap("Path")
private String path;
private PageInfo(Builder builder) {
this.gmtCreate = builder.gmtCreate;
this.gmtModified = builder.gmtModified;
this.id = builder.id;
this.isHidden = builder.isHidden;
this.isHome = builder.isHome;
this.isLoginPage = builder.isLoginPage;
this.name = builder.name;
this.pageId = builder.pageId;
this.path = builder.path;
}
public static Builder builder() {
return new Builder();
}
public static PageInfo create() {
return builder().build();
}
/**
* @return gmtCreate
*/
public String getGmtCreate() {
return this.gmtCreate;
}
/**
* @return gmtModified
*/
public String getGmtModified() {
return this.gmtModified;
}
/**
* @return id
*/
public Integer getId() {
return this.id;
}
/**
* @return isHidden
*/
public Integer getIsHidden() {
return this.isHidden;
}
/**
* @return isHome
*/
public Integer getIsHome() {
return this.isHome;
}
/**
* @return isLoginPage
*/
public Integer getIsLoginPage() {
return this.isLoginPage;
}
/**
* @return name
*/
public String getName() {
return this.name;
}
/**
* @return pageId
*/
public String getPageId() {
return this.pageId;
}
/**
* @return path
*/
public String getPath() {
return this.path;
}
public static final class Builder {
private String gmtCreate;
private String gmtModified;
private Integer id;
private Integer isHidden;
private Integer isHome;
private Integer isLoginPage;
private String name;
private String pageId;
private String path;
/**
* GmtCreate.
*/
public Builder gmtCreate(String gmtCreate) {
this.gmtCreate = gmtCreate;
return this;
}
/**
* GmtModified.
*/
public Builder gmtModified(String gmtModified) {
this.gmtModified = gmtModified;
return this;
}
/**
* Id.
*/
public Builder id(Integer id) {
this.id = id;
return this;
}
/**
* IsHidden.
*/
public Builder isHidden(Integer isHidden) {
this.isHidden = isHidden;
return this;
}
/**
* IsHome.
*/
public Builder isHome(Integer isHome) {
this.isHome = isHome;
return this;
}
/**
* IsLoginPage.
*/
public Builder isLoginPage(Integer isLoginPage) {
this.isLoginPage = isLoginPage;
return this;
}
/**
* Name.
*/
public Builder name(String name) {
this.name = name;
return this;
}
/**
* PageId.
*/
public Builder pageId(String pageId) {
this.pageId = pageId;
return this;
}
/**
* Path.
*/
public Builder path(String path) {
this.path = path;
return this;
}
public PageInfo build() {
return new PageInfo(this);
}
}
}
public static class List extends TeaModel {
@NameInMap("PageInfo")
private java.util.List < PageInfo> pageInfo;
private List(Builder builder) {
this.pageInfo = builder.pageInfo;
}
public static Builder builder() {
return new Builder();
}
public static List create() {
return builder().build();
}
/**
* @return pageInfo
*/
public java.util.List < PageInfo> getPageInfo() {
return this.pageInfo;
}
public static final class Builder {
private java.util.List < PageInfo> pageInfo;
/**
* PageInfo.
*/
public Builder pageInfo(java.util.List < PageInfo> pageInfo) {
this.pageInfo = pageInfo;
return this;
}
public List build() {
return new List(this);
}
}
}
public static class Data extends TeaModel {
@NameInMap("List")
private List list;
@NameInMap("PageNo")
private Integer pageNo;
@NameInMap("PageSize")
private Integer pageSize;
@NameInMap("Total")
private Integer total;
@NameInMap("TotalPage")
private Integer totalPage;
private Data(Builder builder) {
this.list = builder.list;
this.pageNo = builder.pageNo;
this.pageSize = builder.pageSize;
this.total = builder.total;
this.totalPage = builder.totalPage;
}
public static Builder builder() {
return new Builder();
}
public static Data create() {
return builder().build();
}
/**
* @return list
*/
public List getList() {
return this.list;
}
/**
* @return pageNo
*/
public Integer getPageNo() {
return this.pageNo;
}
/**
* @return pageSize
*/
public Integer getPageSize() {
return this.pageSize;
}
/**
* @return total
*/
public Integer getTotal() {
return this.total;
}
/**
* @return totalPage
*/
public Integer getTotalPage() {
return this.totalPage;
}
public static final class Builder {
private List list;
private Integer pageNo;
private Integer pageSize;
private Integer total;
private Integer totalPage;
/**
* List.
*/
public Builder list(List list) {
this.list = list;
return this;
}
/**
* PageNo.
*/
public Builder pageNo(Integer pageNo) {
this.pageNo = pageNo;
return this;
}
/**
* PageSize.
*/
public Builder pageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
/**
* Total.
*/
public Builder total(Integer total) {
this.total = total;
return this;
}
/**
* TotalPage.
*/
public Builder totalPage(Integer totalPage) {
this.totalPage = totalPage;
return this;
}
public Data build() {
return new Data(this);
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy