Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.17 KB

File metadata and controls

30 lines (21 loc) · 1.17 KB

PostCreateBookmarkRequest

Properties

Name Type Description Notes
query_id str [default to 'aoDbu3RHznuiSkQ9aNM67Q']
variables PostCreateBookmarkRequestVariables

Example

from twitter_openapi_python_generated.models.post_create_bookmark_request import PostCreateBookmarkRequest

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

# convert the object into a dict
post_create_bookmark_request_dict = post_create_bookmark_request_instance.to_dict()
# create an instance of PostCreateBookmarkRequest from a dict
post_create_bookmark_request_from_dict = PostCreateBookmarkRequest.from_dict(post_create_bookmark_request_dict)

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