Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.12 KB

File metadata and controls

32 lines (23 loc) · 1.12 KB

TimelineAddToModule

Properties

Name Type Description Notes
module_entry_id str
module_items List[ModuleItem]
prepend bool [optional]
type InstructionType

Example

from twitter_openapi_python_generated.models.timeline_add_to_module import TimelineAddToModule

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

# convert the object into a dict
timeline_add_to_module_dict = timeline_add_to_module_instance.to_dict()
# create an instance of TimelineAddToModule from a dict
timeline_add_to_module_from_dict = TimelineAddToModule.from_dict(timeline_add_to_module_dict)

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