Class: Manywho::MapElementInvokeResponse

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) ⇒ 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

#developerNameObject

Returns the value of attribute developerName.



434
435
436
# File 'lib/manywho.rb', line 434

def developerName
  @developerName
end

#mapElementIdObject

Returns the value of attribute mapElementId.



434
435
436
# File 'lib/manywho.rb', line 434

def mapElementId
  @mapElementId
end

#outcomeResponsesObject

Returns the value of attribute outcomeResponses.



434
435
436
# File 'lib/manywho.rb', line 434

def outcomeResponses
  @outcomeResponses
end

#pageResponseObject

Returns the value of attribute pageResponse.



434
435
436
# File 'lib/manywho.rb', line 434

def pageResponse
  @pageResponse
end

#rootFaultsObject

Returns the value of attribute rootFaults.



434
435
436
# File 'lib/manywho.rb', line 434

def rootFaults
  @rootFaults
end