com.aliyun.iot20180120.models.GetSpeechDeviceDetailRequest 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 GetSpeechDeviceDetailRequest extends TeaModel {
@NameInMap("IotId")
public String iotId;
@NameInMap("IotInstanceId")
public String iotInstanceId;
public static GetSpeechDeviceDetailRequest build(java.util.Map map) throws Exception {
GetSpeechDeviceDetailRequest self = new GetSpeechDeviceDetailRequest();
return TeaModel.build(map, self);
}
public GetSpeechDeviceDetailRequest setIotId(String iotId) {
this.iotId = iotId;
return this;
}
public String getIotId() {
return this.iotId;
}
public GetSpeechDeviceDetailRequest setIotInstanceId(String iotInstanceId) {
this.iotInstanceId = iotInstanceId;
return this;
}
public String getIotInstanceId() {
return this.iotInstanceId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy