friends
Contains classes related to Roblox friend data and parsing.
Friend
¶
Bases: User
Represents a friend.
Attributes:
Name | Type | Description |
---|---|---|
is_online |
Optional[bool]
|
Whether the user is currently online. |
presence_type |
Optional[int]
|
Their presence type. Don't use this. |
is_deleted |
bool
|
Whether the account is deleted. |
friend_frequent_rank |
int
|
Unknown |
Source code in roblox/friends.py
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
|
__init__(client, data)
¶
Parameters:
Name | Type | Description | Default |
---|---|---|---|
data |
dict
|
The data we get back from the endpoint. |
required |
client |
Client
|
The Client object, which is passed to all objects this Client generates. |
required |
Source code in roblox/friends.py
26 27 28 29 30 31 32 33 34 35 36 37 |
|