Class: Appwrite::Models::Membership

Inherits:
Object
  • Object
show all
Defined in:
lib/appwrite/models/membership.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

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

#confirmObject (readonly)

Returns the value of attribute confirm.



13
14
15
# File 'lib/appwrite/models/membership.rb', line 13

def confirm
  @confirm
end

#emailObject (readonly)

Returns the value of attribute email.



10
11
12
# File 'lib/appwrite/models/membership.rb', line 10

def email
  @email
end

#idObject (readonly)

Returns the value of attribute id.



6
7
8
# File 'lib/appwrite/models/membership.rb', line 6

def id
  @id
end

#invitedObject (readonly)

Returns the value of attribute invited.



11
12
13
# File 'lib/appwrite/models/membership.rb', line 11

def invited
  @invited
end

#joinedObject (readonly)

Returns the value of attribute joined.



12
13
14
# File 'lib/appwrite/models/membership.rb', line 12

def joined
  @joined
end

#nameObject (readonly)

Returns the value of attribute name.



9
10
11
# File 'lib/appwrite/models/membership.rb', line 9

def name
  @name
end

#rolesObject (readonly)

Returns the value of attribute roles.



14
15
16
# File 'lib/appwrite/models/membership.rb', line 14

def roles
  @roles
end

#team_idObject (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_idObject (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_mapObject



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