Class: Google::Apis::DriveactivityV2::TargetReference
- Inherits:
-
Object
- Object
- Google::Apis::DriveactivityV2::TargetReference
- 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 the target of activity.
Instance Attribute Summary collapse
-
#drive ⇒ Google::Apis::DriveactivityV2::DriveReference
A lightweight reference to a shared drive.
-
#drive_item ⇒ Google::Apis::DriveactivityV2::DriveItemReference
A lightweight reference to a Drive item, such as a file or folder.
-
#team_drive ⇒ Google::Apis::DriveactivityV2::TeamDriveReference
This item is deprecated; please see
DriveReference
instead.
Instance Method Summary collapse
-
#initialize(**args) ⇒ TargetReference
constructor
A new instance of TargetReference.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ TargetReference
Returns a new instance of TargetReference.
1638 1639 1640 |
# File 'lib/google/apis/driveactivity_v2/classes.rb', line 1638 def initialize(**args) update!(**args) end |
Instance Attribute Details
#drive ⇒ Google::Apis::DriveactivityV2::DriveReference
A lightweight reference to a shared drive.
Corresponds to the JSON property drive
1626 1627 1628 |
# File 'lib/google/apis/driveactivity_v2/classes.rb', line 1626 def drive @drive end |
#drive_item ⇒ Google::Apis::DriveactivityV2::DriveItemReference
A lightweight reference to a Drive item, such as a file or folder.
Corresponds to the JSON property driveItem
1631 1632 1633 |
# File 'lib/google/apis/driveactivity_v2/classes.rb', line 1631 def drive_item @drive_item end |
#team_drive ⇒ Google::Apis::DriveactivityV2::TeamDriveReference
This item is deprecated; please see DriveReference
instead.
Corresponds to the JSON property teamDrive
1636 1637 1638 |
# File 'lib/google/apis/driveactivity_v2/classes.rb', line 1636 def team_drive @team_drive end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1643 1644 1645 1646 1647 |
# File 'lib/google/apis/driveactivity_v2/classes.rb', line 1643 def update!(**args) @drive = args[:drive] if args.key?(:drive) @drive_item = args[:drive_item] if args.key?(:drive_item) @team_drive = args[:team_drive] if args.key?(:team_drive) end |