Class: Google::Apis::CloudsupportV2::Escalation

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

Overview

An escalation of a support case.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Escalation

Returns a new instance of Escalation.



754
755
756
# File 'lib/google/apis/cloudsupport_v2/classes.rb', line 754

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

Instance Attribute Details

#justificationString

Required. A free text description to accompany the reason field above. Provides additional context on why the case is being escalated. Corresponds to the JSON property justification

Returns:

  • (String)


747
748
749
# File 'lib/google/apis/cloudsupport_v2/classes.rb', line 747

def justification
  @justification
end

#reasonString

Required. The reason why the Case is being escalated. Corresponds to the JSON property reason

Returns:

  • (String)


752
753
754
# File 'lib/google/apis/cloudsupport_v2/classes.rb', line 752

def reason
  @reason
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



759
760
761
762
# File 'lib/google/apis/cloudsupport_v2/classes.rb', line 759

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