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

Constructor Details

#initialize(**args) ⇒ DriveReference

Returns a new instance of DriveReference.



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

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)


710
711
712
# File 'generated/google/apis/driveactivity_v2/classes.rb', line 710

def name
  @name
end

#titleString

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

Returns:

  • (String)


715
716
717
# File 'generated/google/apis/driveactivity_v2/classes.rb', line 715

def title
  @title
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



722
723
724
725
# File 'generated/google/apis/driveactivity_v2/classes.rb', line 722

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