Class: Manywho::MapElementInvokeResponse
- Defined in:
- lib/manywho.rb
Instance Attribute Summary collapse
-
#developerName ⇒ Object
Returns the value of attribute developerName.
-
#mapElementId ⇒ Object
Returns the value of attribute mapElementId.
-
#outcomeResponses ⇒ Object
Returns the value of attribute outcomeResponses.
-
#pageResponse ⇒ Object
Returns the value of attribute pageResponse.
-
#rootFaults ⇒ Object
Returns the value of attribute rootFaults.
Instance Method Summary collapse
-
#initialize(jsonValue) ⇒ MapElementInvokeResponse
constructor
A new instance of MapElementInvokeResponse.
Methods inherited from MyStruct
Constructor Details
#initialize(jsonValue) ⇒ MapElementInvokeResponse
Returns a new instance of MapElementInvokeResponse.
437 438 439 440 441 442 443 444 445 446 447 |
# File 'lib/manywho.rb', line 437 def initialize(jsonValue) super(jsonValue) @pageResponse = PageResponse.new(@pageResponse) if (@outcomeResponses != nil) endArray = [] @outcomeResponses.each do |outputResponse| endArray += [OutcomeResponse.new(outputResponse)] end @outcomeResponses = endArray end end |
Instance Attribute Details
#developerName ⇒ Object
Returns the value of attribute developerName.
434 435 436 |
# File 'lib/manywho.rb', line 434 def developerName @developerName end |
#mapElementId ⇒ Object
Returns the value of attribute mapElementId.
434 435 436 |
# File 'lib/manywho.rb', line 434 def mapElementId @mapElementId end |
#outcomeResponses ⇒ Object
Returns the value of attribute outcomeResponses.
434 435 436 |
# File 'lib/manywho.rb', line 434 def outcomeResponses @outcomeResponses end |
#pageResponse ⇒ Object
Returns the value of attribute pageResponse.
434 435 436 |
# File 'lib/manywho.rb', line 434 def pageResponse @pageResponse end |
#rootFaults ⇒ Object
Returns the value of attribute rootFaults.
434 435 436 |
# File 'lib/manywho.rb', line 434 def rootFaults @rootFaults end |