Class: Google::Apis::DriveactivityV2::DriveReference

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

Overview

A lightweight reference to a shared drive.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ DriveReference

Returns a new instance of DriveReference.



720
721
722
# File 'generated/google/apis/driveactivity_v2/classes.rb', line 720

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

Instance Attribute Details

#nameString

The resource name of the shared drive. The format is "COLLECTION_ID/DRIVE_ID". Clients should not assume a specific collection ID for this resource name. Corresponds to the JSON property name

Returns:

  • (String)


713
714
715
# File 'generated/google/apis/driveactivity_v2/classes.rb', line 713

def name
  @name
end

#titleString

The title of the shared drive. Corresponds to the JSON property title

Returns:

  • (String)


718
719
720
# File 'generated/google/apis/driveactivity_v2/classes.rb', line 718

def title
  @title
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



725
726
727
728
# File 'generated/google/apis/driveactivity_v2/classes.rb', line 725

def update!(**args)
  @name = args[:name] if args.key?(:name)
  @title = args[:title] if args.key?(:title)
end