Class: Google::Apis::DriveactivityV2::Move

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

An object was moved.

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) ⇒ Move

Returns a new instance of Move.



923
924
925
# File 'generated/google/apis/driveactivity_v2/classes.rb', line 923

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

Instance Attribute Details

#added_parentsArray<Google::Apis::DriveactivityV2::TargetReference>

The added parent object(s). Corresponds to the JSON property addedParents



916
917
918
# File 'generated/google/apis/driveactivity_v2/classes.rb', line 916

def added_parents
  @added_parents
end

#removed_parentsArray<Google::Apis::DriveactivityV2::TargetReference>

The removed parent object(s). Corresponds to the JSON property removedParents



921
922
923
# File 'generated/google/apis/driveactivity_v2/classes.rb', line 921

def removed_parents
  @removed_parents
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



928
929
930
931
# File 'generated/google/apis/driveactivity_v2/classes.rb', line 928

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