Name |
Type |
Description |
Notes |
message |
str |
Folder move message |
[optional] |
from formkiq_client.models.index_folder_move_response import IndexFolderMoveResponse
# TODO update the JSON string below
json = "{}"
# create an instance of IndexFolderMoveResponse from a JSON string
index_folder_move_response_instance = IndexFolderMoveResponse.from_json(json)
# print the JSON string representation of the object
print(IndexFolderMoveResponse.to_json())
# convert the object into a dict
index_folder_move_response_dict = index_folder_move_response_instance.to_dict()
# create an instance of IndexFolderMoveResponse from a dict
index_folder_move_response_from_dict = IndexFolderMoveResponse.from_dict(index_folder_move_response_dict)
[Back to Model list] [Back to API list] [Back to README]