Class: Appwrite::Models::ContinentList
- Inherits:
-
Object
- Object
- Appwrite::Models::ContinentList
- Defined in:
- lib/appwrite/models/continent_list.rb
Instance Attribute Summary collapse
-
#continents ⇒ Object
readonly
Returns the value of attribute continents.
-
#total ⇒ Object
readonly
Returns the value of attribute total.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(total:, continents:) ⇒ ContinentList
constructor
A new instance of ContinentList.
- #to_map ⇒ Object
Constructor Details
#initialize(total:, continents:) ⇒ ContinentList
Returns a new instance of ContinentList.
9 10 11 12 13 14 15 |
# File 'lib/appwrite/models/continent_list.rb', line 9 def initialize( total:, continents: ) @total = total @continents = continents end |
Instance Attribute Details
#continents ⇒ Object (readonly)
Returns the value of attribute continents.
7 8 9 |
# File 'lib/appwrite/models/continent_list.rb', line 7 def continents @continents end |
#total ⇒ Object (readonly)
Returns the value of attribute total.
6 7 8 |
# File 'lib/appwrite/models/continent_list.rb', line 6 def total @total end |
Class Method Details
.from(map:) ⇒ Object
17 18 19 20 21 22 |
# File 'lib/appwrite/models/continent_list.rb', line 17 def self.from(map:) ContinentList.new( total: map["total"], continents: map["continents"].map { |it| Continent.from(map: it) } ) end |
Instance Method Details
#to_map ⇒ Object
24 25 26 27 28 29 |
# File 'lib/appwrite/models/continent_list.rb', line 24 def to_map { "total": @total, "continents": @continents.map { |it| it.to_map } } end |