Skip to content

Commit b318ea9

Browse files
committed
- Added FAILED_TO_VERIFY as ENUM option to DomainValidationStatus object.
1 parent 2e30816 commit b318ea9

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

okta/models/domain_validation_status.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ class DomainValidationStatus(str, Enum):
4040
IN_PROGRESS = "IN_PROGRESS"
4141
NOT_STARTED = "NOT_STARTED"
4242
VERIFIED = "VERIFIED"
43+
FAILED_TO_VERIFY = "FAILED_TO_VERIFY"
4344

4445
@classmethod
4546
def from_json(cls, json_str: str) -> Self:

openapi/api.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64461,6 +64461,7 @@ components:
6446164461
- IN_PROGRESS
6446264462
- NOT_STARTED
6446364463
- VERIFIED
64464+
- FAILED_TO_VERIFY
6446464465
Duration:
6446564466
type: object
6446664467
properties:

0 commit comments

Comments
 (0)