Timestamp

June 7, 2024 ยท View on GitHub

Properties

NameTypeDescriptionNotes
indicesList[int]
secondsint
textstr

Example

from twitter_openapi_python_generated.models.timestamp import Timestamp

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

# convert the object into a dict
timestamp_dict = timestamp_instance.to_dict()
# create an instance of Timestamp from a dict
timestamp_from_dict = Timestamp.from_dict(timestamp_dict)

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