Class: Google::Apis::DriveV3::GeneratedIds

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

Overview

A list of generated file IDs which can be provided in create requests.

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

Returns a new instance of GeneratedIds



1165
1166
1167
# File 'generated/google/apis/drive_v3/classes.rb', line 1165

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

Instance Attribute Details

#idsArray<String>

The IDs generated for the requesting user in the specified space. Corresponds to the JSON property ids

Returns:

  • (Array<String>)


1152
1153
1154
# File 'generated/google/apis/drive_v3/classes.rb', line 1152

def ids
  @ids
end

#kindString

Identifies what kind of resource this is. Value: the fixed string "drive# generatedIds". Corresponds to the JSON property kind

Returns:

  • (String)


1158
1159
1160
# File 'generated/google/apis/drive_v3/classes.rb', line 1158

def kind
  @kind
end

#spaceString

The type of file that can be created with these IDs. Corresponds to the JSON property space

Returns:

  • (String)


1163
1164
1165
# File 'generated/google/apis/drive_v3/classes.rb', line 1163

def space
  @space
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1170
1171
1172
1173
1174
# File 'generated/google/apis/drive_v3/classes.rb', line 1170

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