Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.09 KB

File metadata and controls

29 lines (20 loc) · 1.09 KB

FinderSearchPostV2Response

Properties

Name Type Description Notes
posts List[FinderSearchPostItem] [optional]

Example

from kenar_api_client.models.finder_search_post_v2_response import FinderSearchPostV2Response

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

# convert the object into a dict
finder_search_post_v2_response_dict = finder_search_post_v2_response_instance.to_dict()
# create an instance of FinderSearchPostV2Response from a dict
finder_search_post_v2_response_from_dict = FinderSearchPostV2Response.from_dict(finder_search_post_v2_response_dict)

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