| Name | Type | Description | Notes |
|---|---|---|---|
| type | str | ||
| source | str | ||
| status | str | ||
| created_at | ModelDate | ||
| updated_at | ModelDate | ||
| deleted_at | ModelDate | ||
| id | float | ||
| name | str | ||
| business_units | List[ClientBusinessUnit] | ||
| live | bool |
from watchtowr_api.models.client_domain import ClientDomain
# TODO update the JSON string below
json = "{}"
# create an instance of ClientDomain from a JSON string
client_domain_instance = ClientDomain.from_json(json)
# print the JSON string representation of the object
print(ClientDomain.to_json())
# convert the object into a dict
client_domain_dict = client_domain_instance.to_dict()
# create an instance of ClientDomain from a dict
client_domain_from_dict = ClientDomain.from_dict(client_domain_dict)