Class: Manywho::EngineInitializationRequest
- Defined in:
- lib/manywho-sdk.rb
Instance Attribute Summary collapse
- 
  
    
      #annotations  ⇒ Object 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Returns the value of attribute annotations. 
- 
  
    
      #flowId  ⇒ Object 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Returns the value of attribute flowId. 
- 
  
    
      #inputs  ⇒ Object 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Returns the value of attribute inputs. 
- 
  
    
      #mode  ⇒ Object 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Returns the value of attribute mode. 
Instance Method Summary collapse
- 
  
    
      #initialize(jsonValue)  ⇒ EngineInitializationRequest 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of EngineInitializationRequest. 
Methods inherited from MyStruct
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-sdk.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
#annotations ⇒ Object
Returns the value of attribute annotations.
| 351 352 353 | # File 'lib/manywho-sdk.rb', line 351 def annotations @annotations end | 
#flowId ⇒ Object
Returns the value of attribute flowId.
| 351 352 353 | # File 'lib/manywho-sdk.rb', line 351 def flowId @flowId end | 
#inputs ⇒ Object
Returns the value of attribute inputs.
| 351 352 353 | # File 'lib/manywho-sdk.rb', line 351 def inputs @inputs end | 
#mode ⇒ Object
Returns the value of attribute mode.
| 351 352 353 | # File 'lib/manywho-sdk.rb', line 351 def mode @mode end |