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

com.aliyun.dingtalkdoc_1_0.models.GetWorkspaceResponseBody 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_1_0.models;

import com.aliyun.tea.*;

public class GetWorkspaceResponseBody extends TeaModel {
    /**
     * 

This parameter is required.

*/ @NameInMap("isDeleted") public Boolean isDeleted; /** *

This parameter is required.

*/ @NameInMap("owner") public String owner; @NameInMap("rootDentryUuid") public String rootDentryUuid; /** *

This parameter is required.

*/ @NameInMap("url") public String url; public static GetWorkspaceResponseBody build(java.util.Map map) throws Exception { GetWorkspaceResponseBody self = new GetWorkspaceResponseBody(); return TeaModel.build(map, self); } public GetWorkspaceResponseBody setIsDeleted(Boolean isDeleted) { this.isDeleted = isDeleted; return this; } public Boolean getIsDeleted() { return this.isDeleted; } public GetWorkspaceResponseBody setOwner(String owner) { this.owner = owner; return this; } public String getOwner() { return this.owner; } public GetWorkspaceResponseBody setRootDentryUuid(String rootDentryUuid) { this.rootDentryUuid = rootDentryUuid; return this; } public String getRootDentryUuid() { return this.rootDentryUuid; } public GetWorkspaceResponseBody setUrl(String url) { this.url = url; return this; } public String getUrl() { return this.url; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy