SearchResults results of a successful search
Name | Type | Description | Notes |
---|---|---|---|
data | List[Repository] | [optional] | |
ok | bool | [optional] |
from clientapi_forgejo.models.search_results import SearchResults
# TODO update the JSON string below
json = "{}"
# create an instance of SearchResults from a JSON string
search_results_instance = SearchResults.from_json(json)
# print the JSON string representation of the object
print(SearchResults.to_json())
# convert the object into a dict
search_results_dict = search_results_instance.to_dict()
# create an instance of SearchResults from a dict
search_results_from_dict = SearchResults.from_dict(search_results_dict)