class Google::Apis::DriveV2::GeneratedIds

A list of generated IDs which can be provided in insert requests

Attributes

ids[RW]

The IDs generated for the requesting user in the specified space. Corresponds to the JSON property `ids` @return [Array<String>]

kind[RW]

This is always drive#generatedIds Corresponds to the JSON property `kind` @return [String]

space[RW]

The type of file that can be created with these IDs. Corresponds to the JSON property `space` @return [String]

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/drive_v2/classes.rb, line 1972
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/drive_v2/classes.rb, line 1977
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