Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 816 Bytes

File metadata and controls

29 lines (20 loc) · 816 Bytes

Callback

Properties

Name Type Description Notes
endpoint str

Example

from twitter_openapi_python_generated.models.callback import Callback

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

# convert the object into a dict
callback_dict = callback_instance.to_dict()
# create an instance of Callback from a dict
callback_from_dict = Callback.from_dict(callback_dict)

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