CtaClientEventInfo

June 7, 2024 ยท View on GitHub

Properties

NameTypeDescriptionNotes
actionstr

Example

from twitter_openapi_python_generated.models.cta_client_event_info import CtaClientEventInfo

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

# convert the object into a dict
cta_client_event_info_dict = cta_client_event_info_instance.to_dict()
# create an instance of CtaClientEventInfo from a dict
cta_client_event_info_from_dict = CtaClientEventInfo.from_dict(cta_client_event_info_dict)

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