All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.sdk.service.iot20180120.models.QueryDeviceGroupInfoRequest Maven / Gradle / Ivy

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 QueryDeviceGroupInfoRequest} extends {@link RequestModel}
 *
 * 

QueryDeviceGroupInfoRequest

*/ public class QueryDeviceGroupInfoRequest extends Request { @Query @NameInMap("GroupId") @Validation(required = true) private String groupId; @Query @NameInMap("GroupType") private String groupType; @Query @NameInMap("IotInstanceId") private String iotInstanceId; private QueryDeviceGroupInfoRequest(Builder builder) { super(builder); this.groupId = builder.groupId; this.groupType = builder.groupType; this.iotInstanceId = builder.iotInstanceId; } public static Builder builder() { return new Builder(); } public static QueryDeviceGroupInfoRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return groupId */ public String getGroupId() { return this.groupId; } /** * @return groupType */ public String getGroupType() { return this.groupType; } /** * @return iotInstanceId */ public String getIotInstanceId() { return this.iotInstanceId; } public static final class Builder extends Request.Builder { private String groupId; private String groupType; private String iotInstanceId; private Builder() { super(); } private Builder(QueryDeviceGroupInfoRequest request) { super(request); this.groupId = request.groupId; this.groupType = request.groupType; this.iotInstanceId = request.iotInstanceId; } /** * GroupId. */ public Builder groupId(String groupId) { this.putQueryParameter("GroupId", groupId); this.groupId = groupId; return this; } /** * GroupType. */ public Builder groupType(String groupType) { this.putQueryParameter("GroupType", groupType); this.groupType = groupType; return this; } /** * IotInstanceId. */ public Builder iotInstanceId(String iotInstanceId) { this.putQueryParameter("IotInstanceId", iotInstanceId); this.iotInstanceId = iotInstanceId; return this; } @Override public QueryDeviceGroupInfoRequest build() { return new QueryDeviceGroupInfoRequest(this); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy