Class: Manywho::EngineInitializationRequest

Inherits:
MyStruct
  • Object
show all
Defined in:
lib/manywho.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from MyStruct

#to_json

Constructor Details

#initialize(jsonValue) ⇒ EngineInitializationRequest

Returns a new instance of EngineInitializationRequest.



354
355
356
357
358
359
360
361
362
363
364
365
# File 'lib/manywho.rb', line 354

def initialize(jsonValue)
    super(jsonValue)
    #@flowId = FlowIdentifier.new(@flowId)
    if (@inputs != nil)
        endArray = []
        @inputs.each do |input|
            endArray += [EngineValue(input)]
        end
        @inputs = endArray
    end
    
end

Instance Attribute Details

#annotationsObject

Returns the value of attribute annotations.



351
352
353
# File 'lib/manywho.rb', line 351

def annotations
  @annotations
end

#flowIdObject

Returns the value of attribute flowId.



351
352
353
# File 'lib/manywho.rb', line 351

def flowId
  @flowId
end

#inputsObject

Returns the value of attribute inputs.



351
352
353
# File 'lib/manywho.rb', line 351

def inputs
  @inputs
end

#modeObject

Returns the value of attribute mode.



351
352
353
# File 'lib/manywho.rb', line 351

def mode
  @mode
end