com.aliyun.dingtalkedu_1_0.models.QueryDeviceResponseBody 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 QueryDeviceResponseBody extends TeaModel {
/**
* example:
* 1680227019000
*/
@NameInMap("gmtExpiry")
public Long gmtExpiry;
/**
* example:
* model1
*/
@NameInMap("model")
public String model;
/**
* example:
* 三年级1班班牌
*/
@NameInMap("name")
public String name;
/**
* example:
* fada-8008
*/
@NameInMap("sn")
public String sn;
/**
* example:
* VIDEO_CALL
*/
@NameInMap("type")
public String type;
public static QueryDeviceResponseBody build(java.util.Map map) throws Exception {
QueryDeviceResponseBody self = new QueryDeviceResponseBody();
return TeaModel.build(map, self);
}
public QueryDeviceResponseBody setGmtExpiry(Long gmtExpiry) {
this.gmtExpiry = gmtExpiry;
return this;
}
public Long getGmtExpiry() {
return this.gmtExpiry;
}
public QueryDeviceResponseBody setModel(String model) {
this.model = model;
return this;
}
public String getModel() {
return this.model;
}
public QueryDeviceResponseBody setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public QueryDeviceResponseBody setSn(String sn) {
this.sn = sn;
return this;
}
public String getSn() {
return this.sn;
}
public QueryDeviceResponseBody setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
}