Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 988 Bytes

AddAction.md

File metadata and controls

31 lines (22 loc) · 988 Bytes

AddAction

Properties

Name Type Description Notes
type DocumentActionType
parameters AddActionParameters [optional]
queue_id str Id of Queue [optional]

Example

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)

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