Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 887 Bytes

File metadata and controls

31 lines (22 loc) · 887 Bytes

Timestamp

Properties

Name Type Description Notes
indices List[int]
seconds int
text str

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]