Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.2 KB

File metadata and controls

32 lines (23 loc) · 1.2 KB

GetSearchKeyword2XXResponse

Properties

Name Type Description Notes
page float [optional]
total_pages float [optional]
total_results float [optional]
results List[Keyword] [optional]

Example

from seerr.models.get_search_keyword2_xx_response import GetSearchKeyword2XXResponse

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

# convert the object into a dict
get_search_keyword2_xx_response_dict = get_search_keyword2_xx_response_instance.to_dict()
# create an instance of GetSearchKeyword2XXResponse from a dict
get_search_keyword2_xx_response_from_dict = GetSearchKeyword2XXResponse.from_dict(get_search_keyword2_xx_response_dict)

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