class Google::Apis::ServicemanagementV1::FlowErrorDetails

Encapsulation of flow-specific error details for debugging. Used as a details field on an error Status, not intended for external use.

Attributes

exception_type[RW]

The type of exception (as a class name). Corresponds to the JSON property `exceptionType` @return [String]

flow_step_id[RW]

The step that failed. Corresponds to the JSON property `flowStepId` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/servicemanagement_v1/classes.rb, line 1424
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/servicemanagement_v1/classes.rb, line 1429
def update!(**args)
  @exception_type = args[:exception_type] if args.key?(:exception_type)
  @flow_step_id = args[:flow_step_id] if args.key?(:flow_step_id)
end