class Google::Apis::AnalyticsdataV1alpha::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_v1alpha/classes.rb, line 1243 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_v1alpha/classes.rb, line 1248 def update!(**args) @consumed = args[:consumed] if args.key?(:consumed) @remaining = args[:remaining] if args.key?(:remaining) end