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

com.aliyun.dingtalkrooms_1_0.models.QueryDevicePropertiesResponseBody Maven / Gradle / Ivy

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