class Google::Apis::DriveV2::About::QuotaBytesByService

Attributes

bytes_used[RW]

The storage quota bytes used by the service. Corresponds to the JSON property `bytesUsed` @return [Fixnum]

service_name[RW]

The service's name, e.g. DRIVE, GMAIL, or PHOTOS. Corresponds to the JSON property `serviceName` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/drive_v2/classes.rb, line 414
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_v2/classes.rb, line 419
def update!(**args)
  @bytes_used = args[:bytes_used] if args.key?(:bytes_used)
  @service_name = args[:service_name] if args.key?(:service_name)
end