class Google::Apis::AdminReportsV1::UsageReports::Warning
Attributes
code[RW]
Machine readable code or warning type. The warning code value is `200`. Corresponds to the JSON property `code` @return [String]
data[RW]
Key-value pairs to give detailed information on the warning. Corresponds to the JSON property `data` @return [Array<Google::Apis::AdminReportsV1::UsageReports::Warning::Datum>]
message[RW]
The human readable messages for a warning are: - Data is not available warning
-
Sorry, data for date yyyy-mm-dd for application “`application name`” is not
available. - Partial data is available warning - Data for date yyyy-mm-dd for application “`application name`” is not available right now, please try again after a few hours. Corresponds to the JSON property `message` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/admin_reports_v1/classes.rb, line 700 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/admin_reports_v1/classes.rb, line 705 def update!(**args) @code = args[:code] if args.key?(:code) @data = args[:data] if args.key?(:data) @message = args[:message] if args.key?(:message) end