Class: Manywho::PageContainerResponse
- Defined in:
- lib/manywho.rb
Instance Attribute Summary collapse
-
#containerType ⇒ Object
Returns the value of attribute containerType.
-
#developerName ⇒ Object
Returns the value of attribute developerName.
-
#id ⇒ Object
Returns the value of attribute id.
-
#label ⇒ Object
Returns the value of attribute label.
-
#order ⇒ Object
Returns the value of attribute order.
-
#pageContainerResponses ⇒ Object
Returns the value of attribute pageContainerResponses.
Instance Method Summary collapse
-
#initialize(jsonValue) ⇒ PageContainerResponse
constructor
A new instance of PageContainerResponse.
Methods inherited from MyStruct
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
#containerType ⇒ Object
Returns the value of attribute containerType.
495 496 497 |
# File 'lib/manywho.rb', line 495 def containerType @containerType end |
#developerName ⇒ Object
Returns the value of attribute developerName.
495 496 497 |
# File 'lib/manywho.rb', line 495 def developerName @developerName end |
#id ⇒ Object
Returns the value of attribute id.
495 496 497 |
# File 'lib/manywho.rb', line 495 def id @id end |
#label ⇒ Object
Returns the value of attribute label.
495 496 497 |
# File 'lib/manywho.rb', line 495 def label @label end |
#order ⇒ Object
Returns the value of attribute order.
495 496 497 |
# File 'lib/manywho.rb', line 495 def order @order end |
#pageContainerResponses ⇒ Object
Returns the value of attribute pageContainerResponses.
495 496 497 |
# File 'lib/manywho.rb', line 495 def pageContainerResponses @pageContainerResponses end |