The properties that define an individual domain.
| 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] |
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)