Class: Google::Apis::DriveV2::About::QuotaBytesByService
- Inherits:
-
Object
- Object
- Google::Apis::DriveV2::About::QuotaBytesByService
- 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
-
#bytes_used ⇒ Fixnum
The storage quota bytes used by the service.
-
#service_name ⇒ String
The service's name, e.g.
Instance Method Summary collapse
-
#initialize(**args) ⇒ QuotaBytesByService
constructor
A new instance of QuotaBytesByService.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ QuotaBytesByService
Returns a new instance of QuotaBytesByService
369 370 371 |
# File 'generated/google/apis/drive_v2/classes.rb', line 369 def initialize(**args) update!(**args) end |
Instance Attribute Details
#bytes_used ⇒ Fixnum
The storage quota bytes used by the service.
Corresponds to the JSON property bytesUsed
362 363 364 |
# File 'generated/google/apis/drive_v2/classes.rb', line 362 def bytes_used @bytes_used end |
#service_name ⇒ String
The service's name, e.g. DRIVE, GMAIL, or PHOTOS.
Corresponds to the JSON property serviceName
367 368 369 |
# File 'generated/google/apis/drive_v2/classes.rb', line 367 def service_name @service_name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
374 375 376 377 |
# File 'generated/google/apis/drive_v2/classes.rb', line 374 def update!(**args) @bytes_used = args[:bytes_used] if args.key?(:bytes_used) @service_name = args[:service_name] if args.key?(:service_name) end |