Show / Hide Table of Contents

Class TeamDrive.CapabilitiesData

Capabilities the current user has on this Team Drive.

Inheritance
System.Object
TeamDrive.CapabilitiesData
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Drive.v3.Data
Assembly: Google.Apis.Drive.v3.dll
Syntax
public class CapabilitiesData

Properties

CanAddChildren

Whether the current user can add children to folders in this Team Drive.

Declaration
[JsonProperty("canAddChildren")]
public virtual bool? CanAddChildren { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

CanChangeCopyRequiresWriterPermissionRestriction

Whether the current user can change the copyRequiresWriterPermission restriction of this Team Drive.

Declaration
[JsonProperty("canChangeCopyRequiresWriterPermissionRestriction")]
public virtual bool? CanChangeCopyRequiresWriterPermissionRestriction { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

CanChangeDomainUsersOnlyRestriction

Whether the current user can change the domainUsersOnly restriction of this Team Drive.

Declaration
[JsonProperty("canChangeDomainUsersOnlyRestriction")]
public virtual bool? CanChangeDomainUsersOnlyRestriction { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

CanChangeTeamDriveBackground

Whether the current user can change the background of this Team Drive.

Declaration
[JsonProperty("canChangeTeamDriveBackground")]
public virtual bool? CanChangeTeamDriveBackground { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

CanChangeTeamMembersOnlyRestriction

Whether the current user can change the teamMembersOnly restriction of this Team Drive.

Declaration
[JsonProperty("canChangeTeamMembersOnlyRestriction")]
public virtual bool? CanChangeTeamMembersOnlyRestriction { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

CanComment

Whether the current user can comment on files in this Team Drive.

Declaration
[JsonProperty("canComment")]
public virtual bool? CanComment { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

CanCopy

Whether the current user can copy files in this Team Drive.

Declaration
[JsonProperty("canCopy")]
public virtual bool? CanCopy { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

CanDeleteChildren

Whether the current user can delete children from folders in this Team Drive.

Declaration
[JsonProperty("canDeleteChildren")]
public virtual bool? CanDeleteChildren { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

CanDeleteTeamDrive

Whether the current user can delete this Team Drive. Attempting to delete the Team Drive may still fail if there are untrashed items inside the Team Drive.

Declaration
[JsonProperty("canDeleteTeamDrive")]
public virtual bool? CanDeleteTeamDrive { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

CanDownload

Whether the current user can download files in this Team Drive.

Declaration
[JsonProperty("canDownload")]
public virtual bool? CanDownload { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

CanEdit

Whether the current user can edit files in this Team Drive

Declaration
[JsonProperty("canEdit")]
public virtual bool? CanEdit { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

CanListChildren

Whether the current user can list the children of folders in this Team Drive.

Declaration
[JsonProperty("canListChildren")]
public virtual bool? CanListChildren { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

CanManageMembers

Whether the current user can add members to this Team Drive or remove them or change their role.

Declaration
[JsonProperty("canManageMembers")]
public virtual bool? CanManageMembers { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

CanReadRevisions

Whether the current user can read the revisions resource of files in this Team Drive.

Declaration
[JsonProperty("canReadRevisions")]
public virtual bool? CanReadRevisions { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

CanRemoveChildren

Deprecated - use canDeleteChildren or canTrashChildren instead.

Declaration
[JsonProperty("canRemoveChildren")]
public virtual bool? CanRemoveChildren { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

CanRename

Whether the current user can rename files or folders in this Team Drive.

Declaration
[JsonProperty("canRename")]
public virtual bool? CanRename { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

CanRenameTeamDrive

Whether the current user can rename this Team Drive.

Declaration
[JsonProperty("canRenameTeamDrive")]
public virtual bool? CanRenameTeamDrive { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

CanShare

Whether the current user can share files or folders in this Team Drive.

Declaration
[JsonProperty("canShare")]
public virtual bool? CanShare { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

CanTrashChildren

Whether the current user can trash children from folders in this Team Drive.

Declaration
[JsonProperty("canTrashChildren")]
public virtual bool? CanTrashChildren { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>
Back to top