Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.03 KB

File metadata and controls

31 lines (22 loc) · 1.03 KB

ModuleEntry

Properties

Name Type Description Notes
client_event_info ClientEventInfo [optional]
feedback_info FeedbackInfo [optional]
item_content ItemContentUnion

Example

from twitter_openapi_python_generated.models.module_entry import ModuleEntry

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

# convert the object into a dict
module_entry_dict = module_entry_instance.to_dict()
# create an instance of ModuleEntry from a dict
module_entry_from_dict = ModuleEntry.from_dict(module_entry_dict)

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