Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.08 KB

ConditionBase.md

File metadata and controls

29 lines (21 loc) · 1.08 KB

ConditionBase

Properties

Name Type Description Notes
name str Name of the condition being applied in the contrast, either psychological, pharmacological, or group based. [optional]
description str Long form description of how the condition is operationalized and/or specific meaning. [optional]

Example

from neurostore_sdk.models.condition_base import ConditionBase

# TODO update the JSON string below
json = "{}"
# create an instance of ConditionBase from a JSON string
condition_base_instance = ConditionBase.from_json(json)
# print the JSON string representation of the object
print ConditionBase.to_json()

# convert the object into a dict
condition_base_dict = condition_base_instance.to_dict()
# create an instance of ConditionBase from a dict
condition_base_form_dict = condition_base.from_dict(condition_base_dict)

[Back to Model list] [Back to API list] [Back to README]