Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.06 KB

File metadata and controls

32 lines (23 loc) · 1.06 KB

FolderActionResponse

Response for folder action endpoints.

Properties

Name Type Description Notes
folder_id UUID
action FolderAction
workflow_id str

Example

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)

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