Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1 KB

File metadata and controls

30 lines (21 loc) · 1 KB

TimelinePinEntry

Properties

Name Type Description Notes
entry TimelineAddEntry
type InstructionType

Example

from twitter_openapi_python_generated.models.timeline_pin_entry import TimelinePinEntry

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

# convert the object into a dict
timeline_pin_entry_dict = timeline_pin_entry_instance.to_dict()
# create an instance of TimelinePinEntry from a dict
timeline_pin_entry_from_dict = TimelinePinEntry.from_dict(timeline_pin_entry_dict)

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