Class: Google::Apis::DriveV2::ChildReference

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

Overview

A reference to a folder's child.

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

Returns a new instance of ChildReference



960
961
962
# File 'generated/google/apis/drive_v2/classes.rb', line 960

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

Instance Attribute Details

A link to the child. Corresponds to the JSON property childLink

Returns:

  • (String)


943
944
945
# File 'generated/google/apis/drive_v2/classes.rb', line 943

def child_link
  @child_link
end

#idString

The ID of the child. Corresponds to the JSON property id

Returns:

  • (String)


948
949
950
# File 'generated/google/apis/drive_v2/classes.rb', line 948

def id
  @id
end

#kindString

This is always drive#childReference. Corresponds to the JSON property kind

Returns:

  • (String)


953
954
955
# File 'generated/google/apis/drive_v2/classes.rb', line 953

def kind
  @kind
end

A link back to this reference. Corresponds to the JSON property selfLink

Returns:

  • (String)


958
959
960
# File 'generated/google/apis/drive_v2/classes.rb', line 958

def self_link
  @self_link
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



965
966
967
968
969
970
# File 'generated/google/apis/drive_v2/classes.rb', line 965

def update!(**args)
  @child_link = args[:child_link] if args.key?(:child_link)
  @id = args[:id] if args.key?(:id)
  @kind = args[:kind] if args.key?(:kind)
  @self_link = args[:self_link] if args.key?(:self_link)
end