CellListResponse
Properties
| Name |
Type |
Description |
Notes |
| data |
List[object] |
|
[optional] |
| cursor |
str |
|
[optional] |
Example
from odm_api.models.cell_list_response import CellListResponse
# TODO update the JSON string below
json = "{}"
# create an instance of CellListResponse from a JSON string
cell_list_response_instance = CellListResponse.from_json(json)
# print the JSON string representation of the object
print(CellListResponse.to_json())
# convert the object into a dict
cell_list_response_dict = cell_list_response_instance.to_dict()
# create an instance of CellListResponse from a dict
cell_list_response_from_dict = CellListResponse.from_dict(cell_list_response_dict)
[Back to Model list] [Back to API list] [Back to README]