-
Notifications
You must be signed in to change notification settings - Fork 143
Expand file tree
/
Copy pathteam.py
More file actions
32 lines (20 loc) · 854 Bytes
/
team.py
File metadata and controls
32 lines (20 loc) · 854 Bytes
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
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
from typing import List, Optional
from .._models import BaseModel
__all__ = ["Team", "AdminPriorityLevel"]
class AdminPriorityLevel(BaseModel):
primary_admin_ids: Optional[List[int]] = None
"""The primary admin ids for the team"""
secondary_admin_ids: Optional[List[int]] = None
"""The secondary admin ids for the team"""
class Team(BaseModel):
id: Optional[str] = None
"""The id of the team"""
admin_ids: Optional[List[int]] = None
"""The list of admin IDs that are a part of the team."""
admin_priority_level: Optional[AdminPriorityLevel] = None
"""Admin priority levels for the team"""
name: Optional[str] = None
"""The name of the team"""
type: Optional[str] = None
"""Value is always "team" """