Skip to content

Commit 60ab60a

Browse files
- Added FAILED_TO_VERIFY as ENUM option to DomainValidationStatus object. (#512)
1 parent ae8e288 commit 60ab60a

2 files changed

Lines changed: 2 additions & 0 deletions

File tree

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
@@ -64512,6 +64512,7 @@ components:
6451264512
- IN_PROGRESS
6451364513
- NOT_STARTED
6451464514
- VERIFIED
64515+
- FAILED_TO_VERIFY
6451564516
Duration:
6451664517
type: object
6451764518
properties:

0 commit comments

Comments
 (0)