Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 949 Bytes

File metadata and controls

29 lines (20 loc) · 949 Bytes

SearchToolsRequest

Properties

Name Type Description Notes
query str [optional]

Example

from gateway_api_sdk.models.search_tools_request import SearchToolsRequest

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

# convert the object into a dict
search_tools_request_dict = search_tools_request_instance.to_dict()
# create an instance of SearchToolsRequest from a dict
search_tools_request_from_dict = SearchToolsRequest.from_dict(search_tools_request_dict)

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