Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 803 Bytes

File metadata and controls

29 lines (20 loc) · 803 Bytes

Tracing

Properties

Name Type Description Notes
trace_id str

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]