Class: Appwrite::Models::TopicList
- Inherits:
-
Object
- Object
- Appwrite::Models::TopicList
- Defined in:
- lib/appwrite/models/topic_list.rb
Instance Attribute Summary collapse
-
#topics ⇒ Object
readonly
Returns the value of attribute topics.
-
#total ⇒ Object
readonly
Returns the value of attribute total.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(total:, topics:) ⇒ TopicList
constructor
A new instance of TopicList.
- #to_map ⇒ Object
Constructor Details
#initialize(total:, topics:) ⇒ TopicList
Returns a new instance of TopicList.
9 10 11 12 13 14 15 |
# File 'lib/appwrite/models/topic_list.rb', line 9 def initialize( total:, topics: ) @total = total @topics = topics end |
Instance Attribute Details
#topics ⇒ Object (readonly)
Returns the value of attribute topics.
7 8 9 |
# File 'lib/appwrite/models/topic_list.rb', line 7 def topics @topics end |
#total ⇒ Object (readonly)
Returns the value of attribute total.
6 7 8 |
# File 'lib/appwrite/models/topic_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/topic_list.rb', line 24 def to_map { "total": @total, "topics": @topics.map { |it| it.to_map } } end |