Tracing

June 7, 2024 ยท View on GitHub

Properties

NameTypeDescriptionNotes
trace_idstr

Example

from twitter_openapi_python_generated.models.tracing import Tracing

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

# convert the object into a dict
tracing_dict = tracing_instance.to_dict()
# create an instance of Tracing from a dict
tracing_from_dict = Tracing.from_dict(tracing_dict)

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