ListSpacesResponse
ListSpacesResponse documentation for Python SDK
Response containing a list of spaces and optional pagination token.
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| spaces | List[Space] | The list of spaces matching the query criteria. | [optional] |
| next_token | str | Pagination token for retrieving the next set of results. Only present if there are more results available. | [optional] |
Example
from goodmem_client.models.list_spaces_response import ListSpacesResponse
# TODO update the JSON string below
json = "{}"
# create an instance of ListSpacesResponse from a JSON string
list_spaces_response_instance = ListSpacesResponse.from_json(json)
# print the JSON string representation of the object
print(ListSpacesResponse.to_json())
# convert the object into a dict
list_spaces_response_dict = list_spaces_response_instance.to_dict()
# create an instance of ListSpacesResponse from a dict
list_spaces_response_from_dict = ListSpacesResponse.from_dict(list_spaces_response_dict)↑ Back to Python SDK ↑ Back to Python SDK ↑ Back to Python SDK