Skip to content

Latest commit

 

History

History
41 lines (32 loc) · 1.37 KB

File metadata and controls

41 lines (32 loc) · 1.37 KB

ClientContainer

Properties

Name Type Description Notes
type str
source str
status str
created_at datetime.date
updated_at datetime.date
id float
name str
owner str
platform str
url str
business_units List[ClientBusinessUnit]
custom_properties List[ClientCustomProperty]
criticality str

Example

from watchtowr_api_sdk.models.client_container import ClientContainer

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

# convert the object into a dict
client_container_dict = client_container_instance.to_dict()
# create an instance of ClientContainer from a dict
client_container_from_dict = ClientContainer.from_dict(client_container_dict)

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