Class: Google::Apis::DriveV2::File::Labels

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/drive_v2/classes.rb,
lib/google/apis/drive_v2/representations.rb,
lib/google/apis/drive_v2/representations.rb

Overview

A group of labels for the file.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Labels

Returns a new instance of Labels.



2903
2904
2905
# File 'lib/google/apis/drive_v2/classes.rb', line 2903

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#hiddenBoolean Also known as: hidden?

Deprecated. Corresponds to the JSON property hidden

Returns:

  • (Boolean)


2866
2867
2868
# File 'lib/google/apis/drive_v2/classes.rb', line 2866

def hidden
  @hidden
end

#modifiedBoolean Also known as: modified?

Whether the file has been modified by this user. Corresponds to the JSON property modified

Returns:

  • (Boolean)


2872
2873
2874
# File 'lib/google/apis/drive_v2/classes.rb', line 2872

def modified
  @modified
end

#restrictedBoolean Also known as: restricted?

Deprecated - use copyRequiresWriterPermission instead. Corresponds to the JSON property restricted

Returns:

  • (Boolean)


2878
2879
2880
# File 'lib/google/apis/drive_v2/classes.rb', line 2878

def restricted
  @restricted
end

#starredBoolean Also known as: starred?

Whether this file is starred by the user. Corresponds to the JSON property starred

Returns:

  • (Boolean)


2884
2885
2886
# File 'lib/google/apis/drive_v2/classes.rb', line 2884

def starred
  @starred
end

#trashedBoolean Also known as: trashed?

Whether the file has been trashed, either explicitly or from a trashed parent folder. Only the owner may trash a file. The trashed item is excluded from all files.list responses returned for any user who does not own the file. However, all users with access to the file can see the trashed item metadata in an API response. All users with access can copy, download, export, and share the file. Corresponds to the JSON property trashed

Returns:

  • (Boolean)


2894
2895
2896
# File 'lib/google/apis/drive_v2/classes.rb', line 2894

def trashed
  @trashed
end

#viewedBoolean Also known as: viewed?

Whether this file has been viewed by this user. Corresponds to the JSON property viewed

Returns:

  • (Boolean)


2900
2901
2902
# File 'lib/google/apis/drive_v2/classes.rb', line 2900

def viewed
  @viewed
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2908
2909
2910
2911
2912
2913
2914
2915
# File 'lib/google/apis/drive_v2/classes.rb', line 2908

def update!(**args)
  @hidden = args[:hidden] if args.key?(:hidden)
  @modified = args[:modified] if args.key?(:modified)
  @restricted = args[:restricted] if args.key?(:restricted)
  @starred = args[:starred] if args.key?(:starred)
  @trashed = args[:trashed] if args.key?(:trashed)
  @viewed = args[:viewed] if args.key?(:viewed)
end