Class: Google::Cloud::Support::V2::Escalation
- Inherits:
-
Object
- Object
- Google::Cloud::Support::V2::Escalation
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/support/v2/escalation.rb
Overview
An escalation of a support case.
Defined Under Namespace
Modules: Reason
Instance Attribute Summary collapse
-
#justification ⇒ ::String
Required.
-
#reason ⇒ ::Google::Cloud::Support::V2::Escalation::Reason
Required.
Instance Attribute Details
#justification ⇒ ::String
Returns Required. A free text description to accompany the reason
field above.
Provides additional context on why the case is being escalated.
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
# File 'proto_docs/google/cloud/support/v2/escalation.rb', line 32 class Escalation include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # An enum detailing the possible reasons a case may be escalated. module Reason # The escalation reason is in an unknown state or has not been specified. REASON_UNSPECIFIED = 0 # The case is taking too long to resolve. RESOLUTION_TIME = 1 # The support agent does not have the expertise required to successfully # resolve the issue. TECHNICAL_EXPERTISE = 2 # The issue is having a significant business impact. BUSINESS_IMPACT = 3 end end |
#reason ⇒ ::Google::Cloud::Support::V2::Escalation::Reason
Returns Required. The reason why the Case is being escalated.
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
# File 'proto_docs/google/cloud/support/v2/escalation.rb', line 32 class Escalation include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # An enum detailing the possible reasons a case may be escalated. module Reason # The escalation reason is in an unknown state or has not been specified. REASON_UNSPECIFIED = 0 # The case is taking too long to resolve. RESOLUTION_TIME = 1 # The support agent does not have the expertise required to successfully # resolve the issue. TECHNICAL_EXPERTISE = 2 # The issue is having a significant business impact. BUSINESS_IMPACT = 3 end end |