Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1 KB

File metadata and controls

29 lines (20 loc) · 1 KB

SearchCollectionsRequest

Properties

Name Type Description Notes
query str [optional]

Example

from gateway_api_sdk.models.search_collections_request import SearchCollectionsRequest

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

# convert the object into a dict
search_collections_request_dict = search_collections_request_instance.to_dict()
# create an instance of SearchCollectionsRequest from a dict
search_collections_request_from_dict = SearchCollectionsRequest.from_dict(search_collections_request_dict)

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