Class: Google::Apis::DriveV2::GeneratedIds
- Inherits:
-
Object
- Object
- Google::Apis::DriveV2::GeneratedIds
- 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 list of generated IDs which can be provided in insert requests
Instance Attribute Summary collapse
-
#ids ⇒ Array<String>
The IDs generated for the requesting user in the specified space.
-
#kind ⇒ String
This is always drive#generatedIds Corresponds to the JSON property
kind
. -
#space ⇒ String
The type of file that can be created with these IDs.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GeneratedIds
constructor
A new instance of GeneratedIds.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GeneratedIds
Returns a new instance of GeneratedIds
2289 2290 2291 |
# File 'generated/google/apis/drive_v2/classes.rb', line 2289 def initialize(**args) update!(**args) end |
Instance Attribute Details
#ids ⇒ Array<String>
The IDs generated for the requesting user in the specified space.
Corresponds to the JSON property ids
2277 2278 2279 |
# File 'generated/google/apis/drive_v2/classes.rb', line 2277 def ids @ids end |
#kind ⇒ String
This is always drive#generatedIds
Corresponds to the JSON property kind
2282 2283 2284 |
# File 'generated/google/apis/drive_v2/classes.rb', line 2282 def kind @kind end |
#space ⇒ String
The type of file that can be created with these IDs.
Corresponds to the JSON property space
2287 2288 2289 |
# File 'generated/google/apis/drive_v2/classes.rb', line 2287 def space @space end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2294 2295 2296 2297 2298 |
# File 'generated/google/apis/drive_v2/classes.rb', line 2294 def update!(**args) @ids = args[:ids] if args.key?(:ids) @kind = args[:kind] if args.key?(:kind) @space = args[:space] if args.key?(:space) end |