Class: Google::Apis::DriveV2::ChildReference
- Inherits:
-
Object
- Object
- Google::Apis::DriveV2::ChildReference
- 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
-
#child_link ⇒ String
A link to the child.
-
#id ⇒ String
The ID of the child.
-
#kind ⇒ String
This is always drive#childReference.
-
#self_link ⇒ String
A link back to this reference.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ChildReference
constructor
A new instance of ChildReference.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ChildReference
Returns a new instance of ChildReference.
1023 1024 1025 |
# File 'generated/google/apis/drive_v2/classes.rb', line 1023 def initialize(**args) update!(**args) end |
Instance Attribute Details
#child_link ⇒ String
A link to the child.
Corresponds to the JSON property childLink
1006 1007 1008 |
# File 'generated/google/apis/drive_v2/classes.rb', line 1006 def child_link @child_link end |
#id ⇒ String
The ID of the child.
Corresponds to the JSON property id
1011 1012 1013 |
# File 'generated/google/apis/drive_v2/classes.rb', line 1011 def id @id end |
#kind ⇒ String
This is always drive#childReference.
Corresponds to the JSON property kind
1016 1017 1018 |
# File 'generated/google/apis/drive_v2/classes.rb', line 1016 def kind @kind end |
#self_link ⇒ String
A link back to this reference.
Corresponds to the JSON property selfLink
1021 1022 1023 |
# File 'generated/google/apis/drive_v2/classes.rb', line 1021 def self_link @self_link end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1028 1029 1030 1031 1032 1033 |
# File 'generated/google/apis/drive_v2/classes.rb', line 1028 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 |