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

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

There is a newer version: 2.1.88
Show 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 ListUncheckUsersResponseBody extends TeaModel {
    /**
     * 

This parameter is required.

* * example: *

true

*/ @NameInMap("hasMore") public Boolean hasMore; /** *

This parameter is required.

* * example: *

10

*/ @NameInMap("nextToken") public Long nextToken; @NameInMap("values") public java.util.List values; public static ListUncheckUsersResponseBody build(java.util.Map map) throws Exception { ListUncheckUsersResponseBody self = new ListUncheckUsersResponseBody(); return TeaModel.build(map, self); } public ListUncheckUsersResponseBody setHasMore(Boolean hasMore) { this.hasMore = hasMore; return this; } public Boolean getHasMore() { return this.hasMore; } public ListUncheckUsersResponseBody setNextToken(Long nextToken) { this.nextToken = nextToken; return this; } public Long getNextToken() { return this.nextToken; } public ListUncheckUsersResponseBody setValues(java.util.List values) { this.values = values; return this; } public java.util.List getValues() { return this.values; } public static class ListUncheckUsersResponseBodyValues extends TeaModel { /** * example: *

5345345

*/ @NameInMap("deptId") public Long deptId; /** * example: *

"{"startTime":"1654746593623","endTime":"1656042593623"}"

*/ @NameInMap("extension") public String extension; /** * example: *

1652683318162

*/ @NameInMap("gmtCreate") public Long gmtCreate; /** * example: *

1652683318162

*/ @NameInMap("gmtModified") public Long gmtModified; /** * example: *

true

*/ @NameInMap("isPropertyOwner") public Boolean isPropertyOwner; /** * example: *

张工

*/ @NameInMap("name") public String name; /** * example: *

1

*/ @NameInMap("status") public Integer status; /** * example: *

312423423

*/ @NameInMap("unionId") public Long unionId; public static ListUncheckUsersResponseBodyValues build(java.util.Map map) throws Exception { ListUncheckUsersResponseBodyValues self = new ListUncheckUsersResponseBodyValues(); return TeaModel.build(map, self); } public ListUncheckUsersResponseBodyValues setDeptId(Long deptId) { this.deptId = deptId; return this; } public Long getDeptId() { return this.deptId; } public ListUncheckUsersResponseBodyValues setExtension(String extension) { this.extension = extension; return this; } public String getExtension() { return this.extension; } public ListUncheckUsersResponseBodyValues setGmtCreate(Long gmtCreate) { this.gmtCreate = gmtCreate; return this; } public Long getGmtCreate() { return this.gmtCreate; } public ListUncheckUsersResponseBodyValues setGmtModified(Long gmtModified) { this.gmtModified = gmtModified; return this; } public Long getGmtModified() { return this.gmtModified; } public ListUncheckUsersResponseBodyValues setIsPropertyOwner(Boolean isPropertyOwner) { this.isPropertyOwner = isPropertyOwner; return this; } public Boolean getIsPropertyOwner() { return this.isPropertyOwner; } public ListUncheckUsersResponseBodyValues setName(String name) { this.name = name; return this; } public String getName() { return this.name; } public ListUncheckUsersResponseBodyValues setStatus(Integer status) { this.status = status; return this; } public Integer getStatus() { return this.status; } public ListUncheckUsersResponseBodyValues setUnionId(Long unionId) { this.unionId = unionId; return this; } public Long getUnionId() { return this.unionId; } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy