Class: Google::Apis::DriveV3::Label

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Label

Returns a new instance of Label.



2587
2588
2589
# File 'lib/google/apis/drive_v3/classes.rb', line 2587

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

Instance Attribute Details

#fieldsHash<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

Returns:



2570
2571
2572
# File 'lib/google/apis/drive_v3/classes.rb', line 2570

def fields
  @fields
end

#idString

The ID of the label. Corresponds to the JSON property id

Returns:

  • (String)


2575
2576
2577
# File 'lib/google/apis/drive_v3/classes.rb', line 2575

def id
  @id
end

#kindString

This is always drive#label Corresponds to the JSON property kind

Returns:

  • (String)


2580
2581
2582
# File 'lib/google/apis/drive_v3/classes.rb', line 2580

def kind
  @kind
end

#revision_idString

The revision ID of the label. Corresponds to the JSON property revisionId

Returns:

  • (String)


2585
2586
2587
# File 'lib/google/apis/drive_v3/classes.rb', line 2585

def revision_id
  @revision_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2592
2593
2594
2595
2596
2597
# File 'lib/google/apis/drive_v3/classes.rb', line 2592

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