Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.64 KB

File metadata and controls

32 lines (23 loc) · 1.64 KB

ClientCustomProperty

Properties

Name Type Description Notes
id float
key str The key of the custom property. Key provided must not be empty and must be unique for the model type. If is_preset is true, key must belong to one of watchTowr's preset custom properties. Accepted preset keys include: 'Criticality'.
value str The value of the custom property. Any string value is accepted if preset is false. If existing custom property's preset is true, the value supplied must belong to one of the valid watchTowr preset values. Accepted values are 'Low', 'Medium', 'High', 'Unknown' for key: 'Criticality'.
is_preset bool Indicates whether this is a watchTowr preset custom property.

Example

from watchtowr_api_sdk.models.client_custom_property import ClientCustomProperty

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

# convert the object into a dict
client_custom_property_dict = client_custom_property_instance.to_dict()
# create an instance of ClientCustomProperty from a dict
client_custom_property_from_dict = ClientCustomProperty.from_dict(client_custom_property_dict)

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