Class: Google::Apis::WorkflowsV1::StateError

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

Overview

Describes an error related to the current state of the workflow.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ StateError

Returns a new instance of StateError.



324
325
326
# File 'lib/google/apis/workflows_v1/classes.rb', line 324

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

Instance Attribute Details

#detailsString

Provides specifics about the error. Corresponds to the JSON property details

Returns:

  • (String)


317
318
319
# File 'lib/google/apis/workflows_v1/classes.rb', line 317

def details
  @details
end

#typeString

The type of this state error. Corresponds to the JSON property type

Returns:

  • (String)


322
323
324
# File 'lib/google/apis/workflows_v1/classes.rb', line 322

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



329
330
331
332
# File 'lib/google/apis/workflows_v1/classes.rb', line 329

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