![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkrooms_1_0.models.QueryDevicePropertiesResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkrooms_1_0.models;
import com.aliyun.tea.*;
public class QueryDevicePropertiesResponseBody extends TeaModel {
@NameInMap("result")
public java.util.List result;
public static QueryDevicePropertiesResponseBody build(java.util.Map map) throws Exception {
QueryDevicePropertiesResponseBody self = new QueryDevicePropertiesResponseBody();
return TeaModel.build(map, self);
}
public QueryDevicePropertiesResponseBody setResult(java.util.List result) {
this.result = result;
return this;
}
public java.util.List getResult() {
return this.result;
}
public static class QueryDevicePropertiesResponseBodyResult extends TeaModel {
/**
* example:
* "dev_app_status"
*/
@NameInMap("propertyName")
public String propertyName;
/**
* example:
* "idle"
*/
@NameInMap("propertyValue")
public String propertyValue;
public static QueryDevicePropertiesResponseBodyResult build(java.util.Map map) throws Exception {
QueryDevicePropertiesResponseBodyResult self = new QueryDevicePropertiesResponseBodyResult();
return TeaModel.build(map, self);
}
public QueryDevicePropertiesResponseBodyResult setPropertyName(String propertyName) {
this.propertyName = propertyName;
return this;
}
public String getPropertyName() {
return this.propertyName;
}
public QueryDevicePropertiesResponseBodyResult setPropertyValue(String propertyValue) {
this.propertyValue = propertyValue;
return this;
}
public String getPropertyValue() {
return this.propertyValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy