Class: Google::Apis::DriveV3::Label
- Inherits:
-
Object
- Object
- Google::Apis::DriveV3::Label
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/drive_v3/classes.rb,
lib/google/apis/drive_v3/representations.rb,
lib/google/apis/drive_v3/representations.rb
Overview
Representation of label and label fields.
Instance Attribute Summary collapse
-
#fields ⇒ Hash<String,Google::Apis::DriveV3::LabelField>
A map of the fields on the label, keyed by the field's ID.
-
#id ⇒ String
The ID of the label.
-
#kind ⇒ String
This is always drive#label Corresponds to the JSON property
kind
. -
#revision_id ⇒ String
The revision ID of the label.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Label
constructor
A new instance of Label.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Label
Returns a new instance of Label.
2326 2327 2328 |
# File 'lib/google/apis/drive_v3/classes.rb', line 2326 def initialize(**args) update!(**args) end |
Instance Attribute Details
#fields ⇒ Hash<String,Google::Apis::DriveV3::LabelField>
A map of the fields on the label, keyed by the field's ID.
Corresponds to the JSON property fields
2309 2310 2311 |
# File 'lib/google/apis/drive_v3/classes.rb', line 2309 def fields @fields end |
#id ⇒ String
The ID of the label.
Corresponds to the JSON property id
2314 2315 2316 |
# File 'lib/google/apis/drive_v3/classes.rb', line 2314 def id @id end |
#kind ⇒ String
This is always drive#label
Corresponds to the JSON property kind
2319 2320 2321 |
# File 'lib/google/apis/drive_v3/classes.rb', line 2319 def kind @kind end |
#revision_id ⇒ String
The revision ID of the label.
Corresponds to the JSON property revisionId
2324 2325 2326 |
# File 'lib/google/apis/drive_v3/classes.rb', line 2324 def revision_id @revision_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2331 2332 2333 2334 2335 2336 |
# File 'lib/google/apis/drive_v3/classes.rb', line 2331 def update!(**args) @fields = args[:fields] if args.key?(:fields) @id = args[:id] if args.key?(:id) @kind = args[:kind] if args.key?(:kind) @revision_id = args[:revision_id] if args.key?(:revision_id) end |