Sender
Structure
- id: Number
- identity: Identity
- slug: String
- username: String
Example:
json
{
"id": 1,
"identity": {
"badges": [
{
"count": 0,
"text": "",
"type": "broadcaster"
}
],
"color": "rgba(237,75,255,0.47)"
},
"slug": "eddie",
"username":"Eddie"}
Identity
Structure
- badges: Array of Badge
- color: String (RGBA format)
Example:
json
{
"badges": [
{
"count": 0,
"text": "",
"type": "broadcaster"
}
],
"color": "rgba(237,75,255,0.47)"
}
Badge
Structure
- count: Number
- text: String
- color: String (RGBA format)
Example:
json
{
"count": 0,
"text": "",
"type": "broadcaster"
}