class Google::Apis::DriveV3::GeneratedIds

A list of generated file IDs which can be provided in create 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]

Identifies what kind of resource this is. Value: the fixed string “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 lib/google/apis/drive_v3/classes.rb, line 2121
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/drive_v3/classes.rb, line 2126
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