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