class Manywho::MapElementInvokeResponse

Attributes

developerName[RW]
mapElementId[RW]
outcomeResponses[RW]
pageResponse[RW]
rootFaults[RW]

Public Class Methods

new(jsonValue) click to toggle source
Calls superclass method Manywho::MyStruct::new
# 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