Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1010 Bytes

AddFolderResponse.md

File metadata and controls

30 lines (21 loc) · 1010 Bytes

AddFolderResponse

Properties

Name Type Description Notes
message str Response Message [optional]
index_key str Folder Index Key [optional]

Example

from formkiq_client.models.add_folder_response import AddFolderResponse

# TODO update the JSON string below
json = "{}"
# create an instance of AddFolderResponse from a JSON string
add_folder_response_instance = AddFolderResponse.from_json(json)
# print the JSON string representation of the object
print(AddFolderResponse.to_json())

# convert the object into a dict
add_folder_response_dict = add_folder_response_instance.to_dict()
# create an instance of AddFolderResponse from a dict
add_folder_response_from_dict = AddFolderResponse.from_dict(add_folder_response_dict)

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