Name | Type | Description | Notes |
---|---|---|---|
type | DocumentActionType | ||
parameters | AddActionParameters | [optional] | |
queue_id | str | Id of Queue | [optional] |
from formkiq_client.models.add_action import AddAction
# TODO update the JSON string below
json = "{}"
# create an instance of AddAction from a JSON string
add_action_instance = AddAction.from_json(json)
# print the JSON string representation of the object
print(AddAction.to_json())
# convert the object into a dict
add_action_dict = add_action_instance.to_dict()
# create an instance of AddAction from a dict
add_action_from_dict = AddAction.from_dict(add_action_dict)