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

com.aliyun.dingtalkdoc_2_0.models.ListRecentsResponseBody 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.dingtalkdoc_2_0.models;

import com.aliyun.tea.*;

public class ListRecentsResponseBody extends TeaModel {
    /**
     * example:
     * 

true

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

nextToken

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

recentDentryList

*/ @NameInMap("recentDentryList") public java.util.List recentDentryList; public static ListRecentsResponseBody build(java.util.Map map) throws Exception { ListRecentsResponseBody self = new ListRecentsResponseBody(); return TeaModel.build(map, self); } public ListRecentsResponseBody setHasMore(Boolean hasMore) { this.hasMore = hasMore; return this; } public Boolean getHasMore() { return this.hasMore; } public ListRecentsResponseBody setNextToken(String nextToken) { this.nextToken = nextToken; return this; } public String getNextToken() { return this.nextToken; } public ListRecentsResponseBody setRecentDentryList(java.util.List recentDentryList) { this.recentDentryList = recentDentryList; return this; } public java.util.List getRecentDentryList() { return this.recentDentryList; } public static class ListRecentsResponseBodyRecentDentryListResourceSpaceInfo extends TeaModel { /** * example: *

im

*/ @NameInMap("sceneType") public String sceneType; public static ListRecentsResponseBodyRecentDentryListResourceSpaceInfo build(java.util.Map map) throws Exception { ListRecentsResponseBodyRecentDentryListResourceSpaceInfo self = new ListRecentsResponseBodyRecentDentryListResourceSpaceInfo(); return TeaModel.build(map, self); } public ListRecentsResponseBodyRecentDentryListResourceSpaceInfo setSceneType(String sceneType) { this.sceneType = sceneType; return this; } public String getSceneType() { return this.sceneType; } } public static class ListRecentsResponseBodyRecentDentryListResource extends TeaModel { /** * example: *

dentryUuid

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

driveDentryId

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

driveSpaceId

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

docx

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

name

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

spaceInfo

*/ @NameInMap("spaceInfo") public ListRecentsResponseBodyRecentDentryListResourceSpaceInfo spaceInfo; /** * example: *

https://example.com

*/ @NameInMap("url") public String url; public static ListRecentsResponseBodyRecentDentryListResource build(java.util.Map map) throws Exception { ListRecentsResponseBodyRecentDentryListResource self = new ListRecentsResponseBodyRecentDentryListResource(); return TeaModel.build(map, self); } public ListRecentsResponseBodyRecentDentryListResource setDentryUuid(String dentryUuid) { this.dentryUuid = dentryUuid; return this; } public String getDentryUuid() { return this.dentryUuid; } public ListRecentsResponseBodyRecentDentryListResource setDriveDentryId(String driveDentryId) { this.driveDentryId = driveDentryId; return this; } public String getDriveDentryId() { return this.driveDentryId; } public ListRecentsResponseBodyRecentDentryListResource setDriveSpaceId(String driveSpaceId) { this.driveSpaceId = driveSpaceId; return this; } public String getDriveSpaceId() { return this.driveSpaceId; } public ListRecentsResponseBodyRecentDentryListResource setExtension(String extension) { this.extension = extension; return this; } public String getExtension() { return this.extension; } public ListRecentsResponseBodyRecentDentryListResource setName(String name) { this.name = name; return this; } public String getName() { return this.name; } public ListRecentsResponseBodyRecentDentryListResource setSpaceInfo(ListRecentsResponseBodyRecentDentryListResourceSpaceInfo spaceInfo) { this.spaceInfo = spaceInfo; return this; } public ListRecentsResponseBodyRecentDentryListResourceSpaceInfo getSpaceInfo() { return this.spaceInfo; } public ListRecentsResponseBodyRecentDentryListResource setUrl(String url) { this.url = url; return this; } public String getUrl() { return this.url; } } public static class ListRecentsResponseBodyRecentDentryList extends TeaModel { /** * example: *

123

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

true

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

https://example.com

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

0

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

resource

*/ @NameInMap("resource") public ListRecentsResponseBodyRecentDentryListResource resource; public static ListRecentsResponseBodyRecentDentryList build(java.util.Map map) throws Exception { ListRecentsResponseBodyRecentDentryList self = new ListRecentsResponseBodyRecentDentryList(); return TeaModel.build(map, self); } public ListRecentsResponseBodyRecentDentryList setAccessTime(Long accessTime) { this.accessTime = accessTime; return this; } public Long getAccessTime() { return this.accessTime; } public ListRecentsResponseBodyRecentDentryList setDeleted(Boolean deleted) { this.deleted = deleted; return this; } public Boolean getDeleted() { return this.deleted; } public ListRecentsResponseBodyRecentDentryList setIcon(String icon) { this.icon = icon; return this; } public String getIcon() { return this.icon; } public ListRecentsResponseBodyRecentDentryList setOperateType(Integer operateType) { this.operateType = operateType; return this; } public Integer getOperateType() { return this.operateType; } public ListRecentsResponseBodyRecentDentryList setResource(ListRecentsResponseBodyRecentDentryListResource resource) { this.resource = resource; return this; } public ListRecentsResponseBodyRecentDentryListResource getResource() { return this.resource; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy