com.aliyun.sdk.service.iot20180120.models.QueryStudioAppListResponseBody 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 QueryStudioAppListResponseBody} extends {@link TeaModel}
*
* QueryStudioAppListResponseBody
*/
public class QueryStudioAppListResponseBody 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 QueryStudioAppListResponseBody(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 QueryStudioAppListResponseBody 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 QueryStudioAppListResponseBody build() {
return new QueryStudioAppListResponseBody(this);
}
}
public static class AppInfo extends TeaModel {
@NameInMap("AppId")
private String appId;
@NameInMap("AppKey")
private String appKey;
@NameInMap("AppSecret")
private String appSecret;
@NameInMap("Description")
private String description;
@NameInMap("GmtCreate")
private String gmtCreate;
@NameInMap("GmtModified")
private String gmtModified;
@NameInMap("GmtRelease")
private String gmtRelease;
@NameInMap("Name")
private String name;
@NameInMap("ProjectId")
private String projectId;
@NameInMap("Type")
private String type;
private AppInfo(Builder builder) {
this.appId = builder.appId;
this.appKey = builder.appKey;
this.appSecret = builder.appSecret;
this.description = builder.description;
this.gmtCreate = builder.gmtCreate;
this.gmtModified = builder.gmtModified;
this.gmtRelease = builder.gmtRelease;
this.name = builder.name;
this.projectId = builder.projectId;
this.type = builder.type;
}
public static Builder builder() {
return new Builder();
}
public static AppInfo create() {
return builder().build();
}
/**
* @return appId
*/
public String getAppId() {
return this.appId;
}
/**
* @return appKey
*/
public String getAppKey() {
return this.appKey;
}
/**
* @return appSecret
*/
public String getAppSecret() {
return this.appSecret;
}
/**
* @return description
*/
public String getDescription() {
return this.description;
}
/**
* @return gmtCreate
*/
public String getGmtCreate() {
return this.gmtCreate;
}
/**
* @return gmtModified
*/
public String getGmtModified() {
return this.gmtModified;
}
/**
* @return gmtRelease
*/
public String getGmtRelease() {
return this.gmtRelease;
}
/**
* @return name
*/
public String getName() {
return this.name;
}
/**
* @return projectId
*/
public String getProjectId() {
return this.projectId;
}
/**
* @return type
*/
public String getType() {
return this.type;
}
public static final class Builder {
private String appId;
private String appKey;
private String appSecret;
private String description;
private String gmtCreate;
private String gmtModified;
private String gmtRelease;
private String name;
private String projectId;
private String type;
/**
* AppId.
*/
public Builder appId(String appId) {
this.appId = appId;
return this;
}
/**
* AppKey.
*/
public Builder appKey(String appKey) {
this.appKey = appKey;
return this;
}
/**
* AppSecret.
*/
public Builder appSecret(String appSecret) {
this.appSecret = appSecret;
return this;
}
/**
* Description.
*/
public Builder description(String description) {
this.description = description;
return this;
}
/**
* GmtCreate.
*/
public Builder gmtCreate(String gmtCreate) {
this.gmtCreate = gmtCreate;
return this;
}
/**
* GmtModified.
*/
public Builder gmtModified(String gmtModified) {
this.gmtModified = gmtModified;
return this;
}
/**
* GmtRelease.
*/
public Builder gmtRelease(String gmtRelease) {
this.gmtRelease = gmtRelease;
return this;
}
/**
* Name.
*/
public Builder name(String name) {
this.name = name;
return this;
}
/**
* ProjectId.
*/
public Builder projectId(String projectId) {
this.projectId = projectId;
return this;
}
/**
* Type.
*/
public Builder type(String type) {
this.type = type;
return this;
}
public AppInfo build() {
return new AppInfo(this);
}
}
}
public static class List extends TeaModel {
@NameInMap("AppInfo")
private java.util.List < AppInfo> appInfo;
private List(Builder builder) {
this.appInfo = builder.appInfo;
}
public static Builder builder() {
return new Builder();
}
public static List create() {
return builder().build();
}
/**
* @return appInfo
*/
public java.util.List < AppInfo> getAppInfo() {
return this.appInfo;
}
public static final class Builder {
private java.util.List < AppInfo> appInfo;
/**
* AppInfo.
*/
public Builder appInfo(java.util.List < AppInfo> appInfo) {
this.appInfo = appInfo;
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