CRResponse
Properties
| Name |
Type |
Description |
Notes |
| count_selected |
int |
Count of Cells selected with all queries and filters. |
|
| count_available |
int |
Count of all available Cells limited by Study and SLP queries and filters. |
|
| ratio |
float |
Ratio value |
|
Example
from odm_api.models.cr_response import CRResponse
# TODO update the JSON string below
json = "{}"
# create an instance of CRResponse from a JSON string
cr_response_instance = CRResponse.from_json(json)
# print the JSON string representation of the object
print(CRResponse.to_json())
# convert the object into a dict
cr_response_dict = cr_response_instance.to_dict()
# create an instance of CRResponse from a dict
cr_response_from_dict = CRResponse.from_dict(cr_response_dict)
[Back to Model list] [Back to API list] [Back to README]