Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.22 KB

File metadata and controls

33 lines (24 loc) · 1.22 KB

WebPageImportsValidationError

Properties

Name Type Description Notes
loc List[LocationInner]
msg str
type str
input object [optional]
ctx object [optional]

Example

from wordlift_client.models.web_page_imports_validation_error import WebPageImportsValidationError

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

# convert the object into a dict
web_page_imports_validation_error_dict = web_page_imports_validation_error_instance.to_dict()
# create an instance of WebPageImportsValidationError from a dict
web_page_imports_validation_error_from_dict = WebPageImportsValidationError.from_dict(web_page_imports_validation_error_dict)

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