Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 961 Bytes

File metadata and controls

29 lines (20 loc) · 961 Bytes

ConversationControl

Properties

Name Type Description Notes
mode str

Example

from twitter_openapi_python_generated.models.conversation_control import ConversationControl

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

# convert the object into a dict
conversation_control_dict = conversation_control_instance.to_dict()
# create an instance of ConversationControl from a dict
conversation_control_from_dict = ConversationControl.from_dict(conversation_control_dict)

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