| Name |
Type |
Description |
Notes |
| data |
List[Tool] |
|
[optional] |
| current_page |
int |
|
[optional] |
| first_page_url |
str |
|
[optional] |
| var_from |
int |
|
[optional] |
| last_page |
int |
|
[optional] |
| last_page_url |
str |
|
[optional] |
| links |
List[object] |
|
[optional] |
| next_page_url |
str |
|
[optional] |
| path |
str |
|
[optional] |
| per_page |
int |
|
[optional] |
| prev_page_url |
str |
|
[optional] |
| to |
int |
|
[optional] |
| total |
int |
|
[optional] |
from gateway_api_sdk.models.fetch_all_tools200_response import FetchAllTools200Response
# TODO update the JSON string below
json = "{}"
# create an instance of FetchAllTools200Response from a JSON string
fetch_all_tools200_response_instance = FetchAllTools200Response.from_json(json)
# print the JSON string representation of the object
print(FetchAllTools200Response.to_json())
# convert the object into a dict
fetch_all_tools200_response_dict = fetch_all_tools200_response_instance.to_dict()
# create an instance of FetchAllTools200Response from a dict
fetch_all_tools200_response_from_dict = FetchAllTools200Response.from_dict(fetch_all_tools200_response_dict)
[Back to Model list] [Back to API list] [Back to README]