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.30
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 {
    // 是否仍有数据
    @NameInMap("hasMore")
    public Boolean hasMore;

    // 下一个数据序号
    @NameInMap("nextToken")
    public Long nextToken;

    // result
    @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 {
        // 部门ID
        @NameInMap("deptId")
        public Long deptId;

        // 扩展信息
        @NameInMap("extension")
        public String extension;

        // 邀请时间
        @NameInMap("gmtCreate")
        public Long gmtCreate;

        // 邀请更新时间
        @NameInMap("gmtModified")
        public Long gmtModified;

        // 是否产权人
        @NameInMap("isPropertyOwner")
        public Boolean isPropertyOwner;

        // 用户名
        @NameInMap("name")
        public String name;

        // 状态
        @NameInMap("status")
        public Integer status;

        // 用户ID
        @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 - 2024 Weber Informatics LLC | Privacy Policy