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

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

Overview

A lightweight reference to a shared drive.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ DriveReference

Returns a new instance of DriveReference.



802
803
804
# File 'lib/google/apis/driveactivity_v2/classes.rb', line 802

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)


795
796
797
# File 'lib/google/apis/driveactivity_v2/classes.rb', line 795

def name
  @name
end

#titleString

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

Returns:

  • (String)


800
801
802
# File 'lib/google/apis/driveactivity_v2/classes.rb', line 800

def title
  @title
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



807
808
809
810
# File 'lib/google/apis/driveactivity_v2/classes.rb', line 807

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