Skip to content

Latest commit

History

History
38 lines (29 loc) · 1.25 KB

File metadata and controls

38 lines (29 loc) · 1.25 KB

ErrorResponse

Properties

NameTypeDescriptionNotes
codeint
extensionsErrorExtensions
kindstr
locationsList[Location]
messagestr
namestr
pathList[ErrorResponsePathInner]
retry_afterint[optional]
sourcestr
tracingTracing

Example

fromtwitter_openapi_python_generated.models.error_responseimportErrorResponse# TODO update the JSON string belowjson="{}"# create an instance of ErrorResponse from a JSON stringerror_response_instance=ErrorResponse.from_json(json)
# print the JSON string representation of the objectprint(ErrorResponse.to_json())
# convert the object into a dicterror_response_dict=error_response_instance.to_dict()
# create an instance of ErrorResponse from a dicterror_response_from_dict=ErrorResponse.from_dict(error_response_dict)

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