
com.aliyun.dingtalkedu_1_0.models.PageQueryDevicesRequest 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 PageQueryDevicesRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 10
*/
@NameInMap("maxResults")
public Long maxResults;
/**
* This parameter is required.
*
* example:
* 1
*/
@NameInMap("nextToken")
public String nextToken;
/**
* This parameter is required.
*
* example:
* VIDEO_CALL
*/
@NameInMap("type")
public String type;
public static PageQueryDevicesRequest build(java.util.Map map) throws Exception {
PageQueryDevicesRequest self = new PageQueryDevicesRequest();
return TeaModel.build(map, self);
}
public PageQueryDevicesRequest setMaxResults(Long maxResults) {
this.maxResults = maxResults;
return this;
}
public Long getMaxResults() {
return this.maxResults;
}
public PageQueryDevicesRequest setNextToken(String nextToken) {
this.nextToken = nextToken;
return this;
}
public String getNextToken() {
return this.nextToken;
}
public PageQueryDevicesRequest setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy