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