com.aliyun.dingtalkresident_1_0.models.ListUncheckUsersRequest 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.dingtalkresident_1_0.models;
import com.aliyun.tea.*;
public class ListUncheckUsersRequest extends TeaModel {
/**
* example:
* 10
*/
@NameInMap("maxResults")
public Integer maxResults;
/**
* example:
* 0
*/
@NameInMap("nextToken")
public Integer nextToken;
/**
* example:
* 1652698991669
*/
@NameInMap("startTime")
public Long startTime;
/**
* example:
* 1
*/
@NameInMap("status")
public Integer status;
public static ListUncheckUsersRequest build(java.util.Map map) throws Exception {
ListUncheckUsersRequest self = new ListUncheckUsersRequest();
return TeaModel.build(map, self);
}
public ListUncheckUsersRequest setMaxResults(Integer maxResults) {
this.maxResults = maxResults;
return this;
}
public Integer getMaxResults() {
return this.maxResults;
}
public ListUncheckUsersRequest setNextToken(Integer nextToken) {
this.nextToken = nextToken;
return this;
}
public Integer getNextToken() {
return this.nextToken;
}
public ListUncheckUsersRequest setStartTime(Long startTime) {
this.startTime = startTime;
return this;
}
public Long getStartTime() {
return this.startTime;
}
public ListUncheckUsersRequest setStatus(Integer status) {
this.status = status;
return this;
}
public Integer getStatus() {
return this.status;
}
}