Class: Google::Apis::AdminReportsV1::UsageReports::Warning::Datum

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/admin_reports_v1/classes.rb,
lib/google/apis/admin_reports_v1/representations.rb,
lib/google/apis/admin_reports_v1/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Datum

Returns a new instance of Datum.



728
729
730
# File 'lib/google/apis/admin_reports_v1/classes.rb', line 728

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#keyString

Key associated with a key-value pair to give detailed information on the warning. Corresponds to the JSON property key

Returns:

  • (String)


720
721
722
# File 'lib/google/apis/admin_reports_v1/classes.rb', line 720

def key
  @key
end

#valueString

Value associated with a key-value pair to give detailed information on the warning. Corresponds to the JSON property value

Returns:

  • (String)


726
727
728
# File 'lib/google/apis/admin_reports_v1/classes.rb', line 726

def value
  @value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



733
734
735
736
# File 'lib/google/apis/admin_reports_v1/classes.rb', line 733

def update!(**args)
  @key = args[:key] if args.key?(:key)
  @value = args[:value] if args.key?(:value)
end