com.aliyun.iot20180120.models.CreateConsumerGroupResponseBody 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 CreateConsumerGroupResponseBody 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 error message returned if the call fails.
*/
@NameInMap("ErrorMessage")
public String errorMessage;
/**
* The ID of the consumer group.
*
* example:
* nJRaJPn5U1JITGf******
*/
@NameInMap("GroupId")
public String groupId;
/**
* The ID of the request.
*
* example:
* 73B9DF43-7780-47DE-8BED-077729D28BD2
*/
@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 CreateConsumerGroupResponseBody build(java.util.Map map) throws Exception {
CreateConsumerGroupResponseBody self = new CreateConsumerGroupResponseBody();
return TeaModel.build(map, self);
}
public CreateConsumerGroupResponseBody setCode(String code) {
this.code = code;
return this;
}
public String getCode() {
return this.code;
}
public CreateConsumerGroupResponseBody setErrorMessage(String errorMessage) {
this.errorMessage = errorMessage;
return this;
}
public String getErrorMessage() {
return this.errorMessage;
}
public CreateConsumerGroupResponseBody setGroupId(String groupId) {
this.groupId = groupId;
return this;
}
public String getGroupId() {
return this.groupId;
}
public CreateConsumerGroupResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public CreateConsumerGroupResponseBody setSuccess(Boolean success) {
this.success = success;
return this;
}
public Boolean getSuccess() {
return this.success;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy