Class: Manywho::PageContainerResponse

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

Returns a new instance of PageContainerResponse.



497
498
499
500
501
502
503
504
505
506
# File 'lib/manywho.rb', line 497

def initialize(jsonValue)
    super(jsonValue)
    if (@pageContainerResponses != nil)
        endArray = []
        @pageContainerResponses.each do |pContainer|
            endArray += [PageContainerResponse.new(pContainer)]
        end
        @pageContainerResponses = endArray
    end
end

Instance Attribute Details

#containerTypeObject

Returns the value of attribute containerType.



495
496
497
# File 'lib/manywho.rb', line 495

def containerType
  @containerType
end

#developerNameObject

Returns the value of attribute developerName.



495
496
497
# File 'lib/manywho.rb', line 495

def developerName
  @developerName
end

#idObject

Returns the value of attribute id.



495
496
497
# File 'lib/manywho.rb', line 495

def id
  @id
end

#labelObject

Returns the value of attribute label.



495
496
497
# File 'lib/manywho.rb', line 495

def label
  @label
end

#orderObject

Returns the value of attribute order.



495
496
497
# File 'lib/manywho.rb', line 495

def order
  @order
end

#pageContainerResponsesObject

Returns the value of attribute pageContainerResponses.



495
496
497
# File 'lib/manywho.rb', line 495

def pageContainerResponses
  @pageContainerResponses
end