Class: Appwrite::Models::Membership
- Inherits:
-
Object
- Object
- Appwrite::Models::Membership
- Defined in:
- lib/appwrite/models/membership.rb
Instance Attribute Summary collapse
-
#confirm ⇒ Object
readonly
Returns the value of attribute confirm.
-
#email ⇒ Object
readonly
Returns the value of attribute email.
-
#id ⇒ Object
readonly
Returns the value of attribute id.
-
#invited ⇒ Object
readonly
Returns the value of attribute invited.
-
#joined ⇒ Object
readonly
Returns the value of attribute joined.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
-
#roles ⇒ Object
readonly
Returns the value of attribute roles.
-
#team_id ⇒ Object
readonly
Returns the value of attribute team_id.
-
#user_id ⇒ Object
readonly
Returns the value of attribute user_id.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(id:, user_id:, team_id:, name:, email:, invited:, joined:, confirm:, roles:) ⇒ Membership
constructor
A new instance of Membership.
- #to_map ⇒ Object
Constructor Details
#initialize(id:, user_id:, team_id:, name:, email:, invited:, joined:, confirm:, roles:) ⇒ Membership
Returns a new instance of Membership.
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
# File 'lib/appwrite/models/membership.rb', line 16 def initialize( id:, user_id:, team_id:, name:, email:, invited:, joined:, confirm:, roles: ) @id = id @user_id = user_id @team_id = team_id @name = name @email = email @invited = invited @joined = joined @confirm = confirm @roles = roles end |
Instance Attribute Details
#confirm ⇒ Object (readonly)
Returns the value of attribute confirm.
13 14 15 |
# File 'lib/appwrite/models/membership.rb', line 13 def confirm @confirm end |
#email ⇒ Object (readonly)
Returns the value of attribute email.
10 11 12 |
# File 'lib/appwrite/models/membership.rb', line 10 def email @email end |
#id ⇒ Object (readonly)
Returns the value of attribute id.
6 7 8 |
# File 'lib/appwrite/models/membership.rb', line 6 def id @id end |
#invited ⇒ Object (readonly)
Returns the value of attribute invited.
11 12 13 |
# File 'lib/appwrite/models/membership.rb', line 11 def invited @invited end |
#joined ⇒ Object (readonly)
Returns the value of attribute joined.
12 13 14 |
# File 'lib/appwrite/models/membership.rb', line 12 def joined @joined end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
9 10 11 |
# File 'lib/appwrite/models/membership.rb', line 9 def name @name end |
#roles ⇒ Object (readonly)
Returns the value of attribute roles.
14 15 16 |
# File 'lib/appwrite/models/membership.rb', line 14 def roles @roles end |
#team_id ⇒ Object (readonly)
Returns the value of attribute team_id.
8 9 10 |
# File 'lib/appwrite/models/membership.rb', line 8 def team_id @team_id end |
#user_id ⇒ Object (readonly)
Returns the value of attribute user_id.
7 8 9 |
# File 'lib/appwrite/models/membership.rb', line 7 def user_id @user_id end |
Class Method Details
.from(map:) ⇒ Object
38 39 40 41 42 43 44 45 46 47 48 49 50 |
# File 'lib/appwrite/models/membership.rb', line 38 def self.from(map:) Membership.new( id: map["$id"], user_id: map["userId"], team_id: map["teamId"], name: map["name"], email: map["email"], invited: map["invited"], joined: map["joined"], confirm: map["confirm"], roles: map["roles"] ) end |
Instance Method Details
#to_map ⇒ Object
52 53 54 55 56 57 58 59 60 61 62 63 64 |
# File 'lib/appwrite/models/membership.rb', line 52 def to_map { "$id": @id, "userId": @user_id, "teamId": @team_id, "name": @name, "email": @email, "invited": @invited, "joined": @joined, "confirm": @confirm, "roles": @roles } end |