All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalkresident_1_0.models.ListUncheckUsersRequest Maven / Gradle / Ivy

The newest version!
// 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy