Class: Google::Apis::DriveV2::About::MaxUploadSize

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ MaxUploadSize

Returns a new instance of MaxUploadSize.



390
391
392
# File 'lib/google/apis/drive_v2/classes.rb', line 390

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

Instance Attribute Details

#sizeFixnum

The max upload size for this type. Corresponds to the JSON property size

Returns:

  • (Fixnum)


383
384
385
# File 'lib/google/apis/drive_v2/classes.rb', line 383

def size
  @size
end

#typeString

The file type. Corresponds to the JSON property type

Returns:

  • (String)


388
389
390
# File 'lib/google/apis/drive_v2/classes.rb', line 388

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



395
396
397
398
# File 'lib/google/apis/drive_v2/classes.rb', line 395

def update!(**args)
  @size = args[:size] if args.key?(:size)
  @type = args[:type] if args.key?(:type)
end