Class: Manywho::EngineInvokeResponse
- Defined in:
- lib/manywho.rb
Instance Attribute Summary collapse
-
#annotations ⇒ Object
Returns the value of attribute annotations.
-
#authorizationContext ⇒ Object
Returns the value of attribute authorizationContext.
-
#currentMapElementId ⇒ Object
Returns the value of attribute currentMapElementId.
-
#invokeType ⇒ Object
Returns the value of attribute invokeType.
-
#joinFlowUrl ⇒ Object
Returns the value of attribute joinFlowUrl.
-
#mapElementInvokeResponses ⇒ Object
Returns the value of attribute mapElementInvokeResponses.
-
#outputs ⇒ Object
Returns the value of attribute outputs.
-
#preCommitStateValues ⇒ Object
Returns the value of attribute preCommitStateValues.
-
#runFlowUrl ⇒ Object
Returns the value of attribute runFlowUrl.
-
#stateId ⇒ Object
Returns the value of attribute stateId.
-
#stateLog ⇒ Object
Returns the value of attribute stateLog.
-
#stateToken ⇒ Object
Returns the value of attribute stateToken.
-
#stateValues ⇒ Object
Returns the value of attribute stateValues.
-
#statusCode ⇒ Object
Returns the value of attribute statusCode.
Instance Method Summary collapse
-
#initialize(jsonValue) ⇒ EngineInvokeResponse
constructor
A new instance of EngineInvokeResponse.
Methods inherited from MyStruct
Constructor Details
#initialize(jsonValue) ⇒ EngineInvokeResponse
Returns a new instance of EngineInvokeResponse.
395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 |
# File 'lib/manywho.rb', line 395 def initialize(jsonValue) super(jsonValue) if (@mapElementInvokeResponses != nil) endArray = [] @mapElementInvokeResponses.each do |invokeResponse| endArray += [MapElementInvokeResponse.new(invokeResponse)] end @mapElementInvokeResponses = endArray end if (@preCommitStateValues != nil) endArray = [] @preCommitStateValues.each do |preComitStateValue| endArray += [EngineValue.new(preComitStateValue)] end @preCommitStateValues = endArray end if (@stateValues != nil) endArray = [] @stateValues.each do |stateValue| endArray += [EngineValue.new(stateValue)] end @stateValues = endArray end if (@outputs != nil) endArray = [] @outputs.each do |output| endArray += [EngineValue.new(output)] end @outputs = endArray end @authorizationContext = AuthorizationContext.new(@authorizationContext) end |
Instance Attribute Details
#annotations ⇒ Object
Returns the value of attribute annotations.
390 391 392 |
# File 'lib/manywho.rb', line 390 def annotations @annotations end |
#authorizationContext ⇒ Object
Returns the value of attribute authorizationContext.
390 391 392 |
# File 'lib/manywho.rb', line 390 def @authorizationContext end |
#currentMapElementId ⇒ Object
Returns the value of attribute currentMapElementId.
390 391 392 |
# File 'lib/manywho.rb', line 390 def currentMapElementId @currentMapElementId end |
#invokeType ⇒ Object
Returns the value of attribute invokeType.
390 391 392 |
# File 'lib/manywho.rb', line 390 def invokeType @invokeType end |
#joinFlowUrl ⇒ Object
Returns the value of attribute joinFlowUrl.
390 391 392 |
# File 'lib/manywho.rb', line 390 def joinFlowUrl @joinFlowUrl end |
#mapElementInvokeResponses ⇒ Object
Returns the value of attribute mapElementInvokeResponses.
390 391 392 |
# File 'lib/manywho.rb', line 390 def mapElementInvokeResponses @mapElementInvokeResponses end |
#outputs ⇒ Object
Returns the value of attribute outputs.
390 391 392 |
# File 'lib/manywho.rb', line 390 def outputs @outputs end |
#preCommitStateValues ⇒ Object
Returns the value of attribute preCommitStateValues.
390 391 392 |
# File 'lib/manywho.rb', line 390 def preCommitStateValues @preCommitStateValues end |
#runFlowUrl ⇒ Object
Returns the value of attribute runFlowUrl.
390 391 392 |
# File 'lib/manywho.rb', line 390 def runFlowUrl @runFlowUrl end |
#stateId ⇒ Object
Returns the value of attribute stateId.
390 391 392 |
# File 'lib/manywho.rb', line 390 def stateId @stateId end |
#stateLog ⇒ Object
Returns the value of attribute stateLog.
390 391 392 |
# File 'lib/manywho.rb', line 390 def stateLog @stateLog end |
#stateToken ⇒ Object
Returns the value of attribute stateToken.
390 391 392 |
# File 'lib/manywho.rb', line 390 def stateToken @stateToken end |
#stateValues ⇒ Object
Returns the value of attribute stateValues.
390 391 392 |
# File 'lib/manywho.rb', line 390 def stateValues @stateValues end |
#statusCode ⇒ Object
Returns the value of attribute statusCode.
390 391 392 |
# File 'lib/manywho.rb', line 390 def statusCode @statusCode end |