Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 941 Bytes

File metadata and controls

30 lines (21 loc) · 941 Bytes

ValidationMessage

Properties

Name Type Description Notes
message str
severity str

Example

from cyperf.models.validation_message import ValidationMessage

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

# convert the object into a dict
validation_message_dict = validation_message_instance.to_dict()
# create an instance of ValidationMessage from a dict
validation_message_from_dict = ValidationMessage.from_dict(validation_message_dict)

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