![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkmail_1_0.models.ListMailFoldersResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkmail_1_0.models;
import com.aliyun.tea.*;
public class ListMailFoldersResponseBody extends TeaModel {
@NameInMap("folders")
public java.util.List folders;
public static ListMailFoldersResponseBody build(java.util.Map map) throws Exception {
ListMailFoldersResponseBody self = new ListMailFoldersResponseBody();
return TeaModel.build(map, self);
}
public ListMailFoldersResponseBody setFolders(java.util.List folders) {
this.folders = folders;
return this;
}
public java.util.List getFolders() {
return this.folders;
}
public static class ListMailFoldersResponseBodyFolders extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("childFolderCount")
public Integer childFolderCount;
/**
* This parameter is required.
*/
@NameInMap("displayName")
public String displayName;
@NameInMap("extensions")
public java.util.Map extensions;
/**
* This parameter is required.
*/
@NameInMap("id")
public String id;
/**
* This parameter is required.
*/
@NameInMap("parentFolderId")
public String parentFolderId;
/**
* This parameter is required.
*/
@NameInMap("totalItemCount")
public Integer totalItemCount;
/**
* This parameter is required.
*/
@NameInMap("unreadItemCount")
public Integer unreadItemCount;
public static ListMailFoldersResponseBodyFolders build(java.util.Map map) throws Exception {
ListMailFoldersResponseBodyFolders self = new ListMailFoldersResponseBodyFolders();
return TeaModel.build(map, self);
}
public ListMailFoldersResponseBodyFolders setChildFolderCount(Integer childFolderCount) {
this.childFolderCount = childFolderCount;
return this;
}
public Integer getChildFolderCount() {
return this.childFolderCount;
}
public ListMailFoldersResponseBodyFolders setDisplayName(String displayName) {
this.displayName = displayName;
return this;
}
public String getDisplayName() {
return this.displayName;
}
public ListMailFoldersResponseBodyFolders setExtensions(java.util.Map extensions) {
this.extensions = extensions;
return this;
}
public java.util.Map getExtensions() {
return this.extensions;
}
public ListMailFoldersResponseBodyFolders setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public ListMailFoldersResponseBodyFolders setParentFolderId(String parentFolderId) {
this.parentFolderId = parentFolderId;
return this;
}
public String getParentFolderId() {
return this.parentFolderId;
}
public ListMailFoldersResponseBodyFolders setTotalItemCount(Integer totalItemCount) {
this.totalItemCount = totalItemCount;
return this;
}
public Integer getTotalItemCount() {
return this.totalItemCount;
}
public ListMailFoldersResponseBodyFolders setUnreadItemCount(Integer unreadItemCount) {
this.unreadItemCount = unreadItemCount;
return this;
}
public Integer getUnreadItemCount() {
return this.unreadItemCount;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy