Domain Serializer
| Name | Type | Description | Notes |
|---|---|---|---|
| domain | str | ||
| is_primary | bool | [optional] | |
| tenant | UUID |
from authentik_client.models.domain_request import DomainRequest
# TODO update the JSON string below
json = "{}"
# create an instance of DomainRequest from a JSON string
domain_request_instance = DomainRequest.from_json(json)
# print the JSON string representation of the object
print(DomainRequest.to_json())
# convert the object into a dict
domain_request_dict = domain_request_instance.to_dict()
# create an instance of DomainRequest from a dict
domain_request_from_dict = DomainRequest.from_dict(domain_request_dict)