Class: Appwrite::Models::Team
- Inherits:
-
Object
- Object
- Appwrite::Models::Team
- Defined in:
- lib/appwrite/models/team.rb
Instance Attribute Summary collapse
-
#created_at ⇒ Object
readonly
Returns the value of attribute created_at.
-
#id ⇒ Object
readonly
Returns the value of attribute id.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
-
#total ⇒ Object
readonly
Returns the value of attribute total.
-
#updated_at ⇒ Object
readonly
Returns the value of attribute updated_at.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(id:, created_at:, updated_at:, name:, total:) ⇒ Team
constructor
A new instance of Team.
- #to_map ⇒ Object
Constructor Details
#initialize(id:, created_at:, updated_at:, name:, total:) ⇒ Team
Returns a new instance of Team.
12 13 14 15 16 17 18 19 20 21 22 23 24 |
# File 'lib/appwrite/models/team.rb', line 12 def initialize( id:, created_at:, updated_at:, name:, total: ) @id = id @created_at = created_at @updated_at = updated_at @name = name @total = total end |
Instance Attribute Details
#created_at ⇒ Object (readonly)
Returns the value of attribute created_at.
7 8 9 |
# File 'lib/appwrite/models/team.rb', line 7 def created_at @created_at end |
#id ⇒ Object (readonly)
Returns the value of attribute id.
6 7 8 |
# File 'lib/appwrite/models/team.rb', line 6 def id @id end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
9 10 11 |
# File 'lib/appwrite/models/team.rb', line 9 def name @name end |
#total ⇒ Object (readonly)
Returns the value of attribute total.
10 11 12 |
# File 'lib/appwrite/models/team.rb', line 10 def total @total end |
#updated_at ⇒ Object (readonly)
Returns the value of attribute updated_at.
8 9 10 |
# File 'lib/appwrite/models/team.rb', line 8 def updated_at @updated_at end |
Class Method Details
Instance Method Details
#to_map ⇒ Object
36 37 38 39 40 41 42 43 44 |
# File 'lib/appwrite/models/team.rb', line 36 def to_map { "$id": @id, "$createdAt": @created_at, "$updatedAt": @updated_at, "name": @name, "total": @total } end |