Class: Google::Apis::WorkflowexecutionsV1::VariableData

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

Overview

VariableData contains the variable data for this step.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ VariableData

Returns a new instance of VariableData.



840
841
842
# File 'lib/google/apis/workflowexecutions_v1/classes.rb', line 840

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

Instance Attribute Details

#variablesHash<String,Object>

Variables that are associated with this step. Corresponds to the JSON property variables

Returns:

  • (Hash<String,Object>)


838
839
840
# File 'lib/google/apis/workflowexecutions_v1/classes.rb', line 838

def variables
  @variables
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



845
846
847
# File 'lib/google/apis/workflowexecutions_v1/classes.rb', line 845

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