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

com.aliyun.sdk.service.iot20180120.models.GetThingTemplateRequest 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 GetThingTemplateRequest} extends {@link RequestModel}
 *
 * 

GetThingTemplateRequest

*/ public class GetThingTemplateRequest extends Request { @Query @NameInMap("CategoryKey") private String categoryKey; @Query @NameInMap("IotInstanceId") private String iotInstanceId; @Query @NameInMap("ResourceGroupId") private String resourceGroupId; private GetThingTemplateRequest(Builder builder) { super(builder); this.categoryKey = builder.categoryKey; this.iotInstanceId = builder.iotInstanceId; this.resourceGroupId = builder.resourceGroupId; } public static Builder builder() { return new Builder(); } public static GetThingTemplateRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return categoryKey */ public String getCategoryKey() { return this.categoryKey; } /** * @return iotInstanceId */ public String getIotInstanceId() { return this.iotInstanceId; } /** * @return resourceGroupId */ public String getResourceGroupId() { return this.resourceGroupId; } public static final class Builder extends Request.Builder { private String categoryKey; private String iotInstanceId; private String resourceGroupId; private Builder() { super(); } private Builder(GetThingTemplateRequest request) { super(request); this.categoryKey = request.categoryKey; this.iotInstanceId = request.iotInstanceId; this.resourceGroupId = request.resourceGroupId; } /** * CategoryKey. */ public Builder categoryKey(String categoryKey) { this.putQueryParameter("CategoryKey", categoryKey); this.categoryKey = categoryKey; return this; } /** * IotInstanceId. */ public Builder iotInstanceId(String iotInstanceId) { this.putQueryParameter("IotInstanceId", iotInstanceId); this.iotInstanceId = iotInstanceId; return this; } /** * ResourceGroupId. */ public Builder resourceGroupId(String resourceGroupId) { this.putQueryParameter("ResourceGroupId", resourceGroupId); this.resourceGroupId = resourceGroupId; return this; } @Override public GetThingTemplateRequest build() { return new GetThingTemplateRequest(this); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy