com.aliyun.iot20180120.models.QueryTopicRouteTableResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of iot20180120 Show documentation
Show all versions of iot20180120 Show documentation
Alibaba Cloud IoT Platform (20180120) SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.iot20180120.models;
import com.aliyun.tea.*;
public class QueryTopicRouteTableResponseBody extends TeaModel {
/**
* The error code returned if the call fails. For more information, see Error codes.
*
* example:
* iot.system.SystemException
*/
@NameInMap("Code")
public String code;
/**
* The list of destination topics returned if the call is successful.
*/
@NameInMap("DstTopics")
public QueryTopicRouteTableResponseBodyDstTopics dstTopics;
/**
* The error message returned if the call fails.
*/
@NameInMap("ErrorMessage")
public String errorMessage;
/**
* The ID of the request.
*
* example:
* FCC27691-9151-4B93-9622-9C90F30542EC
*/
@NameInMap("RequestId")
public String requestId;
/**
* Indicates whether the call was successful.
*
* - true: The call was successful.
* - false: The call failed.
*
*
* example:
* true
*/
@NameInMap("Success")
public Boolean success;
public static QueryTopicRouteTableResponseBody build(java.util.Map map) throws Exception {
QueryTopicRouteTableResponseBody self = new QueryTopicRouteTableResponseBody();
return TeaModel.build(map, self);
}
public QueryTopicRouteTableResponseBody setCode(String code) {
this.code = code;
return this;
}
public String getCode() {
return this.code;
}
public QueryTopicRouteTableResponseBody setDstTopics(QueryTopicRouteTableResponseBodyDstTopics dstTopics) {
this.dstTopics = dstTopics;
return this;
}
public QueryTopicRouteTableResponseBodyDstTopics getDstTopics() {
return this.dstTopics;
}
public QueryTopicRouteTableResponseBody setErrorMessage(String errorMessage) {
this.errorMessage = errorMessage;
return this;
}
public String getErrorMessage() {
return this.errorMessage;
}
public QueryTopicRouteTableResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public QueryTopicRouteTableResponseBody setSuccess(Boolean success) {
this.success = success;
return this;
}
public Boolean getSuccess() {
return this.success;
}
public static class QueryTopicRouteTableResponseBodyDstTopics extends TeaModel {
@NameInMap("Topic")
public java.util.List> topic;
public static QueryTopicRouteTableResponseBodyDstTopics build(java.util.Map map) throws Exception {
QueryTopicRouteTableResponseBodyDstTopics self = new QueryTopicRouteTableResponseBodyDstTopics();
return TeaModel.build(map, self);
}
public QueryTopicRouteTableResponseBodyDstTopics setTopic(java.util.List> topic) {
this.topic = topic;
return this;
}
public java.util.List> getTopic() {
return this.topic;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy