com.aliyun.dingtalkedu_1_0.models.DeviceHeartbeatResponseBody 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.dingtalkedu_1_0.models;
import com.aliyun.tea.*;
public class DeviceHeartbeatResponseBody extends TeaModel {
/**
* This parameter is required.
*
* example:
* 0心跳正常,1增量更新,2上传日志,3全量更新
*/
@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;
}
}