Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.05 KB

CreateBookmarkResponseData.md

File metadata and controls

29 lines (20 loc) · 1.05 KB

CreateBookmarkResponseData

Properties

Name Type Description Notes
tweet_bookmark_put str

Example

from twitter_openapi_python_generated.models.create_bookmark_response_data import CreateBookmarkResponseData

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

# convert the object into a dict
create_bookmark_response_data_dict = create_bookmark_response_data_instance.to_dict()
# create an instance of CreateBookmarkResponseData from a dict
create_bookmark_response_data_from_dict = CreateBookmarkResponseData.from_dict(create_bookmark_response_data_dict)

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