Skip to content

JsonActionResult

Properties

Name Type Description Notes
json_action_result Action [optional]
result Action alias for json_action_result

1:1 Relationships

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

Name Model Linked Via

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.json_action_result import JsonActionResult

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

# convert the object into a dict
json_action_result_dict = json_action_result_instance.to_dict()
# create an instance of JsonActionResult from a dict
json_action_result_from_dict = JsonActionResult.from_dict(json_action_result_dict)

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