com.aliyun.dingtalkedu_1_0.models.PageQueryDevicesResponseBody 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 PageQueryDevicesResponseBody extends TeaModel {
@NameInMap("list")
public java.util.List list;
/**
* example:
* 2
*/
@NameInMap("nextToken")
public String nextToken;
/**
* example:
* 1300
*/
@NameInMap("totalCount")
public Long totalCount;
public static PageQueryDevicesResponseBody build(java.util.Map map) throws Exception {
PageQueryDevicesResponseBody self = new PageQueryDevicesResponseBody();
return TeaModel.build(map, self);
}
public PageQueryDevicesResponseBody setList(java.util.List list) {
this.list = list;
return this;
}
public java.util.List getList() {
return this.list;
}
public PageQueryDevicesResponseBody setNextToken(String nextToken) {
this.nextToken = nextToken;
return this;
}
public String getNextToken() {
return this.nextToken;
}
public PageQueryDevicesResponseBody setTotalCount(Long totalCount) {
this.totalCount = totalCount;
return this;
}
public Long getTotalCount() {
return this.totalCount;
}
public static class PageQueryDevicesResponseBodyList extends TeaModel {
/**
* example:
* 1696753792000
*/
@NameInMap("gmtExpiry")
public Long gmtExpiry;
/**
* example:
* model1
*/
@NameInMap("model")
public String model;
/**
* example:
* 三年级1班班牌
*/
@NameInMap("name")
public String name;
/**
* example:
* fadf-8008
*/
@NameInMap("sn")
public String sn;
/**
* example:
* VIDEO_CALL
*/
@NameInMap("type")
public String type;
public static PageQueryDevicesResponseBodyList build(java.util.Map map) throws Exception {
PageQueryDevicesResponseBodyList self = new PageQueryDevicesResponseBodyList();
return TeaModel.build(map, self);
}
public PageQueryDevicesResponseBodyList setGmtExpiry(Long gmtExpiry) {
this.gmtExpiry = gmtExpiry;
return this;
}
public Long getGmtExpiry() {
return this.gmtExpiry;
}
public PageQueryDevicesResponseBodyList setModel(String model) {
this.model = model;
return this;
}
public String getModel() {
return this.model;
}
public PageQueryDevicesResponseBodyList setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public PageQueryDevicesResponseBodyList setSn(String sn) {
this.sn = sn;
return this;
}
public String getSn() {
return this.sn;
}
public PageQueryDevicesResponseBodyList setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
}
}