Class: Google::Apis::CloudsupportV2beta::Escalation
- Inherits:
-
Object
- Object
- Google::Apis::CloudsupportV2beta::Escalation
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudsupport_v2beta/classes.rb,
lib/google/apis/cloudsupport_v2beta/representations.rb,
lib/google/apis/cloudsupport_v2beta/representations.rb
Overview
An escalation of a support case.
Instance Attribute Summary collapse
-
#justification ⇒ String
Required.
-
#reason ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Escalation
constructor
A new instance of Escalation.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Escalation
Returns a new instance of Escalation.
697 698 699 |
# File 'lib/google/apis/cloudsupport_v2beta/classes.rb', line 697 def initialize(**args) update!(**args) end |
Instance Attribute Details
#justification ⇒ String
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
690 691 692 |
# File 'lib/google/apis/cloudsupport_v2beta/classes.rb', line 690 def justification @justification end |
#reason ⇒ String
Required. The reason why the Case is being escalated.
Corresponds to the JSON property reason
695 696 697 |
# File 'lib/google/apis/cloudsupport_v2beta/classes.rb', line 695 def reason @reason end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
702 703 704 705 |
# File 'lib/google/apis/cloudsupport_v2beta/classes.rb', line 702 def update!(**args) @justification = args[:justification] if args.key?(:justification) @reason = args[:reason] if args.key?(:reason) end |