Skip to content

ActionGroup

Properties

Name Type Description Notes
action_protocol_id int [optional]
experiment_id int [optional]
group_caption str [optional]
group_id int [optional]
group_repeating_protocol str [optional]

1:1 Relationships

All the listed relationships are available as properties on the model instance

Name Model Linked Via
experiment Experiment experiment_id

Implicit Relationships

All the listed relationships are available as properties on the model instance

Name Model API Operation Parameter

Parameterized Relationships

All the listed relationships are available as methods on the model instance.

Parameters written in bold are taken automatically from the model instance, when calling the method you have to supply the non-bold parameters

Name Model API Operation Parameters
## Example
from plantscreen.models.action_group import ActionGroup

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

# convert the object into a dict
action_group_dict = action_group_instance.to_dict()
# create an instance of ActionGroup from a dict
action_group_from_dict = ActionGroup.from_dict(action_group_dict)

Back to API Endpoints Back to Models [Back to README]