
com.aliyun.dingtalkcontact_1_0.models.SearchDepartmentResponseBody Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkcontact_1_0.models;
import com.aliyun.tea.*;
public class SearchDepartmentResponseBody extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("hasMore")
public Boolean hasMore;
@NameInMap("list")
public java.util.List list;
/**
* This parameter is required.
*/
@NameInMap("totalCount")
public Long totalCount;
public static SearchDepartmentResponseBody build(java.util.Map map) throws Exception {
SearchDepartmentResponseBody self = new SearchDepartmentResponseBody();
return TeaModel.build(map, self);
}
public SearchDepartmentResponseBody setHasMore(Boolean hasMore) {
this.hasMore = hasMore;
return this;
}
public Boolean getHasMore() {
return this.hasMore;
}
public SearchDepartmentResponseBody setList(java.util.List list) {
this.list = list;
return this;
}
public java.util.List getList() {
return this.list;
}
public SearchDepartmentResponseBody setTotalCount(Long totalCount) {
this.totalCount = totalCount;
return this;
}
public Long getTotalCount() {
return this.totalCount;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy