Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.05 KB

File metadata and controls

32 lines (23 loc) · 1.05 KB

PatchedDomainRequest

Domain Serializer

Properties

Name Type Description Notes
domain str [optional]
is_primary bool [optional]
tenant UUID [optional]

Example

from authentik_client.models.patched_domain_request import PatchedDomainRequest

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

# convert the object into a dict
patched_domain_request_dict = patched_domain_request_instance.to_dict()
# create an instance of PatchedDomainRequest from a dict
patched_domain_request_from_dict = PatchedDomainRequest.from_dict(patched_domain_request_dict)

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