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

NameTypeDescriptionNotes
codeint
kindstr
namestr
retry_afterint[optional]
sourcestr
tracingTracing

Example

fromtwitter_openapi_python_generated.models.error_extensionsimportErrorExtensions# TODO update the JSON string belowjson="{}"# create an instance of ErrorExtensions from a JSON stringerror_extensions_instance=ErrorExtensions.from_json(json)
# print the JSON string representation of the objectprint(ErrorExtensions.to_json())
# convert the object into a dicterror_extensions_dict=error_extensions_instance.to_dict()
# create an instance of ErrorExtensions from a dicterror_extensions_from_dict=ErrorExtensions.from_dict(error_extensions_dict)

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