Skip to content

Latest commit

 

History

History
41 lines (32 loc) · 1.51 KB

File metadata and controls

41 lines (32 loc) · 1.51 KB

FetchAllTools200Response

Properties

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]

Example

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]