shout
Contains the Shout object, which represents a group's shout.
Shout
¶
Represents a Group Shout.
Attributes:
Name | Type | Description |
---|---|---|
body |
str
|
The text of the shout. |
created |
datetime
|
When the shout was created. |
updated |
datetime
|
When the shout was updated. |
poster |
PartialUser
|
Who posted the shout. |
Source code in roblox/shout.py
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 |
|
__init__(client, data)
¶
Parameters:
Name | Type | Description | Default |
---|---|---|---|
client |
Client
|
Client object. |
required |
data |
dict
|
The data from the request. |
required |
Source code in roblox/shout.py
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 |
|