Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.09 KB

File metadata and controls

29 lines (20 loc) · 1.09 KB

MonitorHTTPValidationError

Properties

Name Type Description Notes
detail List[MonitorValidationError] [optional]

Example

from wordlift_client.models.monitor_http_validation_error import MonitorHTTPValidationError

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

# convert the object into a dict
monitor_http_validation_error_dict = monitor_http_validation_error_instance.to_dict()
# create an instance of MonitorHTTPValidationError from a dict
monitor_http_validation_error_from_dict = MonitorHTTPValidationError.from_dict(monitor_http_validation_error_dict)

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