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

CrawlerHTTPValidationError

Properties

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

Example

from wordlift_client.models.crawler_http_validation_error import CrawlerHTTPValidationError

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

# convert the object into a dict
crawler_http_validation_error_dict = crawler_http_validation_error_instance.to_dict()
# create an instance of CrawlerHTTPValidationError from a dict
crawler_http_validation_error_from_dict = CrawlerHTTPValidationError.from_dict(crawler_http_validation_error_dict)

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