Class: Google::Apis::DriveactivityV2::Move
- Inherits:
-
Object
- Object
- Google::Apis::DriveactivityV2::Move
- 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
An object was moved.
Instance Attribute Summary collapse
-
#added_parents ⇒ Array<Google::Apis::DriveactivityV2::TargetReference>
The added parent object(s).
-
#removed_parents ⇒ Array<Google::Apis::DriveactivityV2::TargetReference>
The removed parent object(s).
Instance Method Summary collapse
-
#initialize(**args) ⇒ Move
constructor
A new instance of Move.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Move
Returns a new instance of Move.
920 921 922 |
# File 'generated/google/apis/driveactivity_v2/classes.rb', line 920 def initialize(**args) update!(**args) end |
Instance Attribute Details
#added_parents ⇒ Array<Google::Apis::DriveactivityV2::TargetReference>
The added parent object(s).
Corresponds to the JSON property addedParents
913 914 915 |
# File 'generated/google/apis/driveactivity_v2/classes.rb', line 913 def added_parents @added_parents end |
#removed_parents ⇒ Array<Google::Apis::DriveactivityV2::TargetReference>
The removed parent object(s).
Corresponds to the JSON property removedParents
918 919 920 |
# File 'generated/google/apis/driveactivity_v2/classes.rb', line 918 def removed_parents @removed_parents end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
925 926 927 928 |
# File 'generated/google/apis/driveactivity_v2/classes.rb', line 925 def update!(**args) @added_parents = args[:added_parents] if args.key?(:added_parents) @removed_parents = args[:removed_parents] if args.key?(:removed_parents) end |