-
Notifications
You must be signed in to change notification settings - Fork 143
Expand file tree
/
Copy pathadmin.py
More file actions
56 lines (38 loc) · 1.55 KB
/
admin.py
File metadata and controls
56 lines (38 loc) · 1.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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
53
54
55
56
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
from typing import List, Optional
from ..._models import BaseModel
__all__ = ["Admin", "TeamPriorityLevel"]
class TeamPriorityLevel(BaseModel):
primary_team_ids: Optional[List[int]] = None
"""The primary team ids for the team"""
secondary_team_ids: Optional[List[int]] = None
"""The secondary team ids for the team"""
class Admin(BaseModel):
id: Optional[str] = None
"""The id representing the admin."""
avatar: Optional[str] = None
"""Image for the associated team or teammate"""
away_mode_enabled: Optional[bool] = None
"""Identifies if this admin is currently set in away mode."""
away_mode_reassign: Optional[bool] = None
"""
Identifies if this admin is set to automatically reassign new conversations to
the apps default inbox.
"""
email: Optional[str] = None
"""The email of the admin."""
has_inbox_seat: Optional[bool] = None
"""
Identifies if this admin has a paid inbox seat to restrict/allow features that
require them.
"""
job_title: Optional[str] = None
"""The job title of the admin."""
name: Optional[str] = None
"""The name of the admin."""
team_ids: Optional[List[int]] = None
"""This object represents the avatar associated with the admin."""
team_priority_level: Optional[TeamPriorityLevel] = None
"""Admin priority levels for teams"""
type: Optional[str] = None
"""String representing the object's type. Always has the value `admin`."""