Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.26 KB

File metadata and controls

33 lines (24 loc) · 1.26 KB

FinderGetUserPostsResponsePost

Properties

Name Type Description Notes
category str [optional]
images List[str] [optional]
is_phone_hidden bool [optional]
title str [optional]
token str [optional]

Example

from kenar_api_client.models.finder_get_user_posts_response_post import FinderGetUserPostsResponsePost

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

# convert the object into a dict
finder_get_user_posts_response_post_dict = finder_get_user_posts_response_post_instance.to_dict()
# create an instance of FinderGetUserPostsResponsePost from a dict
finder_get_user_posts_response_post_from_dict = FinderGetUserPostsResponsePost.from_dict(finder_get_user_posts_response_post_dict)

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