Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.05 KB

File metadata and controls

34 lines (25 loc) · 1.05 KB

ErrorExtensions

Properties

Name Type Description Notes
code int
kind str
name str
retry_after int [optional]
source str
tracing Tracing

Example

from twitter_openapi_python_generated.models.error_extensions import ErrorExtensions

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

# convert the object into a dict
error_extensions_dict = error_extensions_instance.to_dict()
# create an instance of ErrorExtensions from a dict
error_extensions_from_dict = ErrorExtensions.from_dict(error_extensions_dict)

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