com.aliyun.sdk.service.iot20180120.models.QueryEdgeInstanceChannelResponseBody 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 QueryEdgeInstanceChannelResponseBody} extends {@link TeaModel}
*
* QueryEdgeInstanceChannelResponseBody
*/
public class QueryEdgeInstanceChannelResponseBody 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 QueryEdgeInstanceChannelResponseBody(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 QueryEdgeInstanceChannelResponseBody 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 QueryEdgeInstanceChannelResponseBody build() {
return new QueryEdgeInstanceChannelResponseBody(this);
}
}
public static class Config extends TeaModel {
@NameInMap("ConfigId")
private String configId;
@NameInMap("Content")
private String content;
@NameInMap("Format")
private String format;
@NameInMap("Key")
private String key;
private Config(Builder builder) {
this.configId = builder.configId;
this.content = builder.content;
this.format = builder.format;
this.key = builder.key;
}
public static Builder builder() {
return new Builder();
}
public static Config create() {
return builder().build();
}
/**
* @return configId
*/
public String getConfigId() {
return this.configId;
}
/**
* @return content
*/
public String getContent() {
return this.content;
}
/**
* @return format
*/
public String getFormat() {
return this.format;
}
/**
* @return key
*/
public String getKey() {
return this.key;
}
public static final class Builder {
private String configId;
private String content;
private String format;
private String key;
/**
* ConfigId.
*/
public Builder configId(String configId) {
this.configId = configId;
return this;
}
/**
* Content.
*/
public Builder content(String content) {
this.content = content;
return this;
}
/**
* Format.
*/
public Builder format(String format) {
this.format = format;
return this;
}
/**
* Key.
*/
public Builder key(String key) {
this.key = key;
return this;
}
public Config build() {
return new Config(this);
}
}
}
public static class ConfigList extends TeaModel {
@NameInMap("Config")
private java.util.List < Config> config;
private ConfigList(Builder builder) {
this.config = builder.config;
}
public static Builder builder() {
return new Builder();
}
public static ConfigList create() {
return builder().build();
}
/**
* @return config
*/
public java.util.List < Config> getConfig() {
return this.config;
}
public static final class Builder {
private java.util.List < Config> config;
/**
* Config.
*/
public Builder config(java.util.List < Config> config) {
this.config = config;
return this;
}
public ConfigList build() {
return new ConfigList(this);
}
}
}
public static class Channel extends TeaModel {
@NameInMap("ChannelId")
private String channelId;
@NameInMap("ChannelName")
private String channelName;
@NameInMap("ConfigList")
private ConfigList configList;
@NameInMap("GmtCreate")
private String gmtCreate;
@NameInMap("GmtCreateTimestamp")
private Long gmtCreateTimestamp;
@NameInMap("GmtModified")
private String gmtModified;
@NameInMap("GmtModifiedTimestamp")
private Long gmtModifiedTimestamp;
private Channel(Builder builder) {
this.channelId = builder.channelId;
this.channelName = builder.channelName;
this.configList = builder.configList;
this.gmtCreate = builder.gmtCreate;
this.gmtCreateTimestamp = builder.gmtCreateTimestamp;
this.gmtModified = builder.gmtModified;
this.gmtModifiedTimestamp = builder.gmtModifiedTimestamp;
}
public static Builder builder() {
return new Builder();
}
public static Channel create() {
return builder().build();
}
/**
* @return channelId
*/
public String getChannelId() {
return this.channelId;
}
/**
* @return channelName
*/
public String getChannelName() {
return this.channelName;
}
/**
* @return configList
*/
public ConfigList getConfigList() {
return this.configList;
}
/**
* @return gmtCreate
*/
public String getGmtCreate() {
return this.gmtCreate;
}
/**
* @return gmtCreateTimestamp
*/
public Long getGmtCreateTimestamp() {
return this.gmtCreateTimestamp;
}
/**
* @return gmtModified
*/
public String getGmtModified() {
return this.gmtModified;
}
/**
* @return gmtModifiedTimestamp
*/
public Long getGmtModifiedTimestamp() {
return this.gmtModifiedTimestamp;
}
public static final class Builder {
private String channelId;
private String channelName;
private ConfigList configList;
private String gmtCreate;
private Long gmtCreateTimestamp;
private String gmtModified;
private Long gmtModifiedTimestamp;
/**
* ChannelId.
*/
public Builder channelId(String channelId) {
this.channelId = channelId;
return this;
}
/**
* ChannelName.
*/
public Builder channelName(String channelName) {
this.channelName = channelName;
return this;
}
/**
* ConfigList.
*/
public Builder configList(ConfigList configList) {
this.configList = configList;
return this;
}
/**
* GmtCreate.
*/
public Builder gmtCreate(String gmtCreate) {
this.gmtCreate = gmtCreate;
return this;
}
/**
* GmtCreateTimestamp.
*/
public Builder gmtCreateTimestamp(Long gmtCreateTimestamp) {
this.gmtCreateTimestamp = gmtCreateTimestamp;
return this;
}
/**
* GmtModified.
*/
public Builder gmtModified(String gmtModified) {
this.gmtModified = gmtModified;
return this;
}
/**
* GmtModifiedTimestamp.
*/
public Builder gmtModifiedTimestamp(Long gmtModifiedTimestamp) {
this.gmtModifiedTimestamp = gmtModifiedTimestamp;
return this;
}
public Channel build() {
return new Channel(this);
}
}
}
public static class ChannelList extends TeaModel {
@NameInMap("Channel")
private java.util.List < Channel> channel;
private ChannelList(Builder builder) {
this.channel = builder.channel;
}
public static Builder builder() {
return new Builder();
}
public static ChannelList create() {
return builder().build();
}
/**
* @return channel
*/
public java.util.List < Channel> getChannel() {
return this.channel;
}
public static final class Builder {
private java.util.List < Channel> channel;
/**
* Channel.
*/
public Builder channel(java.util.List < Channel> channel) {
this.channel = channel;
return this;
}
public ChannelList build() {
return new ChannelList(this);
}
}
}
public static class Data extends TeaModel {
@NameInMap("ChannelList")
private ChannelList channelList;
@NameInMap("CurrentPage")
private Integer currentPage;
@NameInMap("PageSize")
private Integer pageSize;
@NameInMap("Total")
private Integer total;
private Data(Builder builder) {
this.channelList = builder.channelList;
this.currentPage = builder.currentPage;
this.pageSize = builder.pageSize;
this.total = builder.total;
}
public static Builder builder() {
return new Builder();
}
public static Data create() {
return builder().build();
}
/**
* @return channelList
*/
public ChannelList getChannelList() {
return this.channelList;
}
/**
* @return currentPage
*/
public Integer getCurrentPage() {
return this.currentPage;
}
/**
* @return pageSize
*/
public Integer getPageSize() {
return this.pageSize;
}
/**
* @return total
*/
public Integer getTotal() {
return this.total;
}
public static final class Builder {
private ChannelList channelList;
private Integer currentPage;
private Integer pageSize;
private Integer total;
/**
* ChannelList.
*/
public Builder channelList(ChannelList channelList) {
this.channelList = channelList;
return this;
}
/**
* CurrentPage.
*/
public Builder currentPage(Integer currentPage) {
this.currentPage = currentPage;
return this;
}
/**
* PageSize.
*/
public Builder pageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
/**
* Total.
*/
public Builder total(Integer total) {
this.total = total;
return this;
}
public Data build() {
return new Data(this);
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy