Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 808 Bytes

File metadata and controls

29 lines (20 loc) · 808 Bytes

Errors

Properties

Name Type Description Notes
errors List[Error]

Example

from twitter_openapi_python_generated.models.errors import Errors

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

# convert the object into a dict
errors_dict = errors_instance.to_dict()
# create an instance of Errors from a dict
errors_from_dict = Errors.from_dict(errors_dict)

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