Class: Google::Apis::DriveV2::File::Labels
- Inherits:
-
Object
- Object
- Google::Apis::DriveV2::File::Labels
- 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
-
#hidden ⇒ Boolean
(also: #hidden?)
Output only.
-
#modified ⇒ Boolean
(also: #modified?)
Output only.
-
#restricted ⇒ Boolean
(also: #restricted?)
Output only.
-
#starred ⇒ Boolean
(also: #starred?)
Whether this file is starred by the user.
-
#trashed ⇒ Boolean
(also: #trashed?)
Whether this file has been trashed.
-
#viewed ⇒ Boolean
(also: #viewed?)
Whether this file has been viewed by this user.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Labels
constructor
A new instance of Labels.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Labels
Returns a new instance of Labels.
2973 2974 2975 |
# File 'lib/google/apis/drive_v2/classes.rb', line 2973 def initialize(**args) update!(**args) end |
Instance Attribute Details
#hidden ⇒ Boolean Also known as:
Output only. Deprecated.
Corresponds to the JSON property hidden
2939 2940 2941 |
# File 'lib/google/apis/drive_v2/classes.rb', line 2939 def hidden @hidden end |
#modified ⇒ Boolean Also known as: modified?
Output only. Whether the file has been modified by this user.
Corresponds to the JSON property modified
2945 2946 2947 |
# File 'lib/google/apis/drive_v2/classes.rb', line 2945 def modified @modified end |
#restricted ⇒ Boolean Also known as: restricted?
Output only. Deprecated: Use copyRequiresWriterPermission
instead.
Corresponds to the JSON property restricted
2951 2952 2953 |
# File 'lib/google/apis/drive_v2/classes.rb', line 2951 def restricted @restricted end |
#starred ⇒ Boolean Also known as: starred?
Whether this file is starred by the user.
Corresponds to the JSON property starred
2957 2958 2959 |
# File 'lib/google/apis/drive_v2/classes.rb', line 2957 def starred @starred end |
#trashed ⇒ Boolean Also known as: trashed?
Whether this file has been trashed. This label applies to all users accessing
the file; however, only owners are allowed to see and untrash files.
Corresponds to the JSON property trashed
2964 2965 2966 |
# File 'lib/google/apis/drive_v2/classes.rb', line 2964 def trashed @trashed end |
#viewed ⇒ Boolean Also known as: viewed?
Whether this file has been viewed by this user.
Corresponds to the JSON property viewed
2970 2971 2972 |
# File 'lib/google/apis/drive_v2/classes.rb', line 2970 def viewed @viewed end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2978 2979 2980 2981 2982 2983 2984 2985 |
# File 'lib/google/apis/drive_v2/classes.rb', line 2978 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 |