Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 961 Bytes

File metadata and controls

33 lines (24 loc) · 961 Bytes

Extensions

Properties

Name Type Description Notes
code int
kind str
name str
source str
tracing Tracing

Example

from twitter_openapi_python_generated.models.extensions import Extensions

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

# convert the object into a dict
extensions_dict = extensions_instance.to_dict()
# create an instance of Extensions from a dict
extensions_from_dict = Extensions.from_dict(extensions_dict)

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