Class: Google::Apis::AdminReportsV1::UsageReports::Warning::Datum
- Inherits:
-
Object
- Object
- Google::Apis::AdminReportsV1::UsageReports::Warning::Datum
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/admin_reports_v1/classes.rb,
generated/google/apis/admin_reports_v1/representations.rb,
generated/google/apis/admin_reports_v1/representations.rb
Instance Attribute Summary collapse
-
#key ⇒ String
Key associated with a key-value pair to give detailed information on the warning.
-
#value ⇒ String
Value associated with a key-value pair to give detailed information on the warning.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Datum
constructor
A new instance of Datum.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Datum
Returns a new instance of Datum
575 576 577 |
# File 'generated/google/apis/admin_reports_v1/classes.rb', line 575 def initialize(**args) update!(**args) end |
Instance Attribute Details
#key ⇒ String
Key associated with a key-value pair to give detailed information on the
warning.
Corresponds to the JSON property key
567 568 569 |
# File 'generated/google/apis/admin_reports_v1/classes.rb', line 567 def key @key end |
#value ⇒ String
Value associated with a key-value pair to give detailed information on the
warning.
Corresponds to the JSON property value
573 574 575 |
# File 'generated/google/apis/admin_reports_v1/classes.rb', line 573 def value @value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
580 581 582 583 |
# File 'generated/google/apis/admin_reports_v1/classes.rb', line 580 def update!(**args) @key = args[:key] if args.key?(:key) @value = args[:value] if args.key?(:value) end |