Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.19 KB

File metadata and controls

31 lines (22 loc) · 1.19 KB

ContentEvaluationsValidationError

Properties

Name Type Description Notes
loc List[LocationInner]
msg str
type str

Example

from wordlift_client.models.content_evaluations_validation_error import ContentEvaluationsValidationError

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

# convert the object into a dict
content_evaluations_validation_error_dict = content_evaluations_validation_error_instance.to_dict()
# create an instance of ContentEvaluationsValidationError from a dict
content_evaluations_validation_error_from_dict = ContentEvaluationsValidationError.from_dict(content_evaluations_validation_error_dict)

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