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

com.aliyun.iot20180120.models.RefreshStudioAppTokenOpenRequest Maven / Gradle / Ivy

There is a newer version: 6.0.0
Show newest version
// 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