Class: Google::Apis::DriveV2::About::MaxUploadSize
- Inherits:
-
Object
- Object
- Google::Apis::DriveV2::About::MaxUploadSize
- 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
Instance Attribute Summary collapse
-
#size ⇒ Fixnum
The max upload size for this type.
-
#type ⇒ String
The file type.
Instance Method Summary collapse
-
#initialize(**args) ⇒ MaxUploadSize
constructor
A new instance of MaxUploadSize.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ MaxUploadSize
Returns a new instance of MaxUploadSize
344 345 346 |
# File 'generated/google/apis/drive_v2/classes.rb', line 344 def initialize(**args) update!(**args) end |
Instance Attribute Details
#size ⇒ Fixnum
The max upload size for this type.
Corresponds to the JSON property size
337 338 339 |
# File 'generated/google/apis/drive_v2/classes.rb', line 337 def size @size end |
#type ⇒ String
The file type.
Corresponds to the JSON property type
342 343 344 |
# File 'generated/google/apis/drive_v2/classes.rb', line 342 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
349 350 351 352 |
# File 'generated/google/apis/drive_v2/classes.rb', line 349 def update!(**args) @size = args[:size] if args.key?(:size) @type = args[:type] if args.key?(:type) end |