com.aliyun.iot20180120.models.RefreshStudioAppTokenOpenRequest 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
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.iot20180120.models;
import com.aliyun.tea.*;
public class RefreshStudioAppTokenOpenRequest extends TeaModel {
@NameInMap("AppId")
public String appId;
@NameInMap("IotInstanceId")
public String iotInstanceId;
@NameInMap("ProjectId")
public String projectId;
public static RefreshStudioAppTokenOpenRequest build(java.util.Map map) throws Exception {
RefreshStudioAppTokenOpenRequest self = new RefreshStudioAppTokenOpenRequest();
return TeaModel.build(map, self);
}
public RefreshStudioAppTokenOpenRequest setAppId(String appId) {
this.appId = appId;
return this;
}
public String getAppId() {
return this.appId;
}
public RefreshStudioAppTokenOpenRequest setIotInstanceId(String iotInstanceId) {
this.iotInstanceId = iotInstanceId;
return this;
}
public String getIotInstanceId() {
return this.iotInstanceId;
}
public RefreshStudioAppTokenOpenRequest setProjectId(String projectId) {
this.projectId = projectId;
return this;
}
public String getProjectId() {
return this.projectId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy