Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

ValidationResult

Properties

NameTypeDescriptionNotes
pathstrJSON path or pointer of the failing field when available.[optional]
messagestrHuman-readable validation message.[optional]
severitystrValidation severity label when provided by validator.[optional]

Example

from ce_rise_hex_core_sdk.models.validation_result import ValidationResult

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

# convert the object into a dict
validation_result_dict = validation_result_instance.to_dict()
# create an instance of ValidationResult from a dict
validation_result_from_dict = ValidationResult.from_dict(validation_result_dict)

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