ErrorExtensions

September 29, 2024 ยท View on GitHub

Properties

NameTypeDescriptionNotes
codeint
kindstr
namestr
retry_afterint[optional]
sourcestr
tracingTracing

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]