forked from webflow/webflow-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherror_code.py
More file actions
38 lines (36 loc) · 1014 Bytes
/
Copy patherror_code.py
File metadata and controls
38 lines (36 loc) · 1014 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
33
34
35
36
37
38
# This file was auto-generated by Fern from our API Definition.
import typing
ErrorCode = typing.Union[
typing.Literal[
"bad_request",
"collection_not_found",
"conflict",
"duplicate_collection",
"duplicate_user_email",
"ecommerce_not_enabled",
"forbidden",
"forms_require_republish",
"incompatible_webhook_filter",
"internal_error",
"invalid_auth_version",
"invalid_credentials",
"invalid_domain",
"invalid_user_email",
"item_not_found",
"missing_scopes",
"no_domains",
"not_authorized",
"not_enterprise_plan_site",
"not_enterprise_plan_workspace",
"order_not_found",
"resource_not_found",
"too_many_requests",
"unsupported_version",
"unsupported_webhook_trigger_type",
"user_limit_reached",
"user_not_found",
"users_not_enabled",
"validation_error",
],
typing.Any,
]