Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.19 KB

File metadata and controls

38 lines (29 loc) · 1.19 KB

ClientDomain

Properties

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

Example

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)

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