ExtractedLabResult
| Name |
Type |
Description |
Notes |
| lab_result_test_name |
str |
|
[optional] |
| lab_result_test_value |
float |
|
[optional] |
| lab_result_test_unit |
str |
|
[optional] |
| lab_result_batch_name |
str |
The name of the lab result batch. This is only set if the lab results were loaded via `include=labResultBatches` |
[optional] |
| full_lab_result_test_name |
str |
|
[optional] |
| passed |
bool |
|
[optional] |
| tags |
List[str] |
T3 analyzes each lab result, and creates a normalized list of tags for each lab result. Examples: - ['delta9', 'thc'] - ['total', 'cbd'] - ['terpene', 'limonene'] |
[optional] |
from t3api.models.extracted_lab_result import ExtractedLabResult
# TODO update the JSON string below
json = "{}"
# create an instance of ExtractedLabResult from a JSON string
extracted_lab_result_instance = ExtractedLabResult.from_json(json)
# print the JSON string representation of the object
print(ExtractedLabResult.to_json())
# convert the object into a dict
extracted_lab_result_dict = extracted_lab_result_instance.to_dict()
# create an instance of ExtractedLabResult from a dict
extracted_lab_result_from_dict = ExtractedLabResult.from_dict(extracted_lab_result_dict)
[Back to Model list] [Back to API list] [Back to README]