Response for folder action endpoints.
| Name | Type | Description | Notes |
|---|---|---|---|
| folder_id | UUID | ||
| action | FolderAction | ||
| workflow_id | str |
from ksapi.models.folder_action_response import FolderActionResponse
# TODO update the JSON string below
json = "{}"
# create an instance of FolderActionResponse from a JSON string
folder_action_response_instance = FolderActionResponse.from_json(json)
# print the JSON string representation of the object
print(FolderActionResponse.to_json())
# convert the object into a dict
folder_action_response_dict = folder_action_response_instance.to_dict()
# create an instance of FolderActionResponse from a dict
folder_action_response_from_dict = FolderActionResponse.from_dict(folder_action_response_dict)