com.aliyun.sdk.service.iot20180120.models.BatchGetEdgeInstanceChannelResponseBody 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 BatchGetEdgeInstanceChannelResponseBody} extends {@link TeaModel}
*
* BatchGetEdgeInstanceChannelResponseBody
*/
public class BatchGetEdgeInstanceChannelResponseBody 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 BatchGetEdgeInstanceChannelResponseBody(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 BatchGetEdgeInstanceChannelResponseBody 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 BatchGetEdgeInstanceChannelResponseBody build() {
return new BatchGetEdgeInstanceChannelResponseBody(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;
private Channel(Builder builder) {
this.channelId = builder.channelId;
this.channelName = builder.channelName;
this.configList = builder.configList;
}
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;
}
public static final class Builder {
private String channelId;
private String channelName;
private ConfigList configList;
/**
* 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;
}
public Channel build() {
return new Channel(this);
}
}
}
public static class Data extends TeaModel {
@NameInMap("Channel")
private java.util.List < Channel> channel;
private Data(Builder builder) {
this.channel = builder.channel;
}
public static Builder builder() {
return new Builder();
}
public static Data 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 Data build() {
return new Data(this);
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy