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

com.aliyun.dingtalkhrm_1_0.models.QueryDismissionStaffIdListResponseBody Maven / Gradle / Ivy

There is a newer version: 2.1.67
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkhrm_1_0.models;

import com.aliyun.tea.*;

public class QueryDismissionStaffIdListResponseBody extends TeaModel {
    @NameInMap("hasMore")
    public Boolean hasMore;

    @NameInMap("nextToken")
    public Long nextToken;

    @NameInMap("userIdList")
    public java.util.List userIdList;

    public static QueryDismissionStaffIdListResponseBody build(java.util.Map map) throws Exception {
        QueryDismissionStaffIdListResponseBody self = new QueryDismissionStaffIdListResponseBody();
        return TeaModel.build(map, self);
    }

    public QueryDismissionStaffIdListResponseBody setHasMore(Boolean hasMore) {
        this.hasMore = hasMore;
        return this;
    }
    public Boolean getHasMore() {
        return this.hasMore;
    }

    public QueryDismissionStaffIdListResponseBody setNextToken(Long nextToken) {
        this.nextToken = nextToken;
        return this;
    }
    public Long getNextToken() {
        return this.nextToken;
    }

    public QueryDismissionStaffIdListResponseBody setUserIdList(java.util.List userIdList) {
        this.userIdList = userIdList;
        return this;
    }
    public java.util.List getUserIdList() {
        return this.userIdList;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy