class Google::Apis::AnalyticsdataV1beta::QuotaStatus
Current state for a particular quota group.
Attributes
consumed[RW]
Quota consumed by this request. Corresponds to the JSON property `consumed` @return [Fixnum]
remaining[RW]
Quota remaining after this request. Corresponds to the JSON property `remaining` @return [Fixnum]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/analyticsdata_v1beta/classes.rb, line 1404 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/analyticsdata_v1beta/classes.rb, line 1409 def update!(**args) @consumed = args[:consumed] if args.key?(:consumed) @remaining = args[:remaining] if args.key?(:remaining) end