Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.48 KB

File metadata and controls

37 lines (28 loc) · 1.48 KB

DomainResponse

The properties that define an individual domain.

Properties

Name Type Description Notes
brand_id str The ID number of the brand [optional]
certificate_source_type DomainCertificateSourceType [optional]
dns_records List[DNSRecord] [optional]
domain str Custom domain name [optional]
id str Unique ID of the domain [optional]
public_certificate DomainCertificateMetadata [optional]
validation_status DomainValidationStatus [optional]
links DomainLinks [optional]

Example

from okta.models.domain_response import DomainResponse

# TODO update the JSON string below
json = "{}"
# create an instance of DomainResponse from a JSON string
domain_response_instance = DomainResponse.from_json(json)
# print the JSON string representation of the object
print(DomainResponse.to_json())

# convert the object into a dict
domain_response_dict = domain_response_instance.to_dict()
# create an instance of DomainResponse from a dict
domain_response_from_dict = DomainResponse.from_dict(domain_response_dict)

[Back to Model list] [Back to API list] [Back to README]