com.aliyun.sdk.service.iot20180120.models.BatchDeleteDeviceGroupRelationsResponseBody 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 BatchDeleteDeviceGroupRelationsResponseBody} extends {@link TeaModel}
*
* BatchDeleteDeviceGroupRelationsResponseBody
*/
public class BatchDeleteDeviceGroupRelationsResponseBody extends TeaModel {
@NameInMap("AlreadyRelatedGroupDeviceCount")
private Integer alreadyRelatedGroupDeviceCount;
@NameInMap("Code")
private String code;
@NameInMap("ErrorMessage")
private String errorMessage;
@NameInMap("RequestId")
private String requestId;
@NameInMap("Success")
private Boolean success;
@NameInMap("SuccessDeviceCount")
private Integer successDeviceCount;
@NameInMap("ValidDeviceCount")
private Integer validDeviceCount;
private BatchDeleteDeviceGroupRelationsResponseBody(Builder builder) {
this.alreadyRelatedGroupDeviceCount = builder.alreadyRelatedGroupDeviceCount;
this.code = builder.code;
this.errorMessage = builder.errorMessage;
this.requestId = builder.requestId;
this.success = builder.success;
this.successDeviceCount = builder.successDeviceCount;
this.validDeviceCount = builder.validDeviceCount;
}
public static Builder builder() {
return new Builder();
}
public static BatchDeleteDeviceGroupRelationsResponseBody create() {
return builder().build();
}
/**
* @return alreadyRelatedGroupDeviceCount
*/
public Integer getAlreadyRelatedGroupDeviceCount() {
return this.alreadyRelatedGroupDeviceCount;
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return errorMessage
*/
public String getErrorMessage() {
return this.errorMessage;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return success
*/
public Boolean getSuccess() {
return this.success;
}
/**
* @return successDeviceCount
*/
public Integer getSuccessDeviceCount() {
return this.successDeviceCount;
}
/**
* @return validDeviceCount
*/
public Integer getValidDeviceCount() {
return this.validDeviceCount;
}
public static final class Builder {
private Integer alreadyRelatedGroupDeviceCount;
private String code;
private String errorMessage;
private String requestId;
private Boolean success;
private Integer successDeviceCount;
private Integer validDeviceCount;
/**
* AlreadyRelatedGroupDeviceCount.
*/
public Builder alreadyRelatedGroupDeviceCount(Integer alreadyRelatedGroupDeviceCount) {
this.alreadyRelatedGroupDeviceCount = alreadyRelatedGroupDeviceCount;
return this;
}
/**
* Code.
*/
public Builder code(String code) {
this.code = code;
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;
}
/**
* SuccessDeviceCount.
*/
public Builder successDeviceCount(Integer successDeviceCount) {
this.successDeviceCount = successDeviceCount;
return this;
}
/**
* ValidDeviceCount.
*/
public Builder validDeviceCount(Integer validDeviceCount) {
this.validDeviceCount = validDeviceCount;
return this;
}
public BatchDeleteDeviceGroupRelationsResponseBody build() {
return new BatchDeleteDeviceGroupRelationsResponseBody(this);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy