We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63e833a commit 7610c60Copy full SHA for 7610c60
workos/types/api_keys/api_keys.py
@@ -1,4 +1,4 @@
1
-from typing import Literal, Optional
+from typing import Literal, Optional, Sequence
2
3
from workos.types.workos_model import WorkOSModel
4
@@ -15,6 +15,6 @@ class ApiKey(WorkOSModel):
15
name: str
16
obfuscated_value: str
17
last_used_at: Optional[str] = None
18
- permissions: list[str]
+ permissions: Sequence[str]
19
created_at: str
20
updated_at: str
0 commit comments