Teams
albert.resources.teams
Attributes:
| Name | Type | Description |
|---|---|---|
TeamRole |
|
TeamMember
Bases: BaseAlbertModel
A user belonging to a team.
Attributes:
| Name | Type | Description |
|---|---|---|
id |
str
|
The Albert user ID. |
name |
str | None
|
The display name of the user. |
role |
TeamRole | None
|
The team role. Must be |
Show JSON schema:
{
"description": "A user belonging to a team.\n\nAttributes\n----------\nid : str\n The Albert user ID.\nname : str | None\n The display name of the user.\nrole : TeamRole | None\n The team role. Must be ``\"TeamOwner\"`` or ``\"TeamViewer\"``.",
"properties": {
"id": {
"title": "Id",
"type": "string"
},
"name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Name"
},
"fgc": {
"anyOf": [
{
"enum": [
"TeamOwner",
"TeamViewer"
],
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Fgc"
}
},
"required": [
"id"
],
"title": "TeamMember",
"type": "object"
}
Fields: