| Name | Type | Description | Notes |
|---|---|---|---|
| current_page | int | [optional] | |
| data | List[SearchCollections200ResponseDataInner] | [optional] | |
| first_page_url | str | [optional] | |
| var_from | int | [optional] | |
| last_page | int | [optional] | |
| last_page_url | str | [optional] | |
| links | List[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.search_collections200_response import SearchCollections200Response
# TODO update the JSON string below
json = "{}"
# create an instance of SearchCollections200Response from a JSON string
search_collections200_response_instance = SearchCollections200Response.from_json(json)
# print the JSON string representation of the object
print(SearchCollections200Response.to_json())
# convert the object into a dict
search_collections200_response_dict = search_collections200_response_instance.to_dict()
# create an instance of SearchCollections200Response from a dict
search_collections200_response_from_dict = SearchCollections200Response.from_dict(search_collections200_response_dict)