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

com.aliyun.dingtalkedu_1_0.models.DeviceHeartbeatResponseBody Maven / Gradle / Ivy

// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkedu_1_0.models;

import com.aliyun.tea.*;

public class DeviceHeartbeatResponseBody extends TeaModel {
    // 指令
    @NameInMap("command")
    public Integer command;

    public static DeviceHeartbeatResponseBody build(java.util.Map map) throws Exception {
        DeviceHeartbeatResponseBody self = new DeviceHeartbeatResponseBody();
        return TeaModel.build(map, self);
    }

    public DeviceHeartbeatResponseBody setCommand(Integer command) {
        this.command = command;
        return this;
    }
    public Integer getCommand() {
        return this.command;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy