Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 945 Bytes

AddFolderRequest.md

File metadata and controls

29 lines (20 loc) · 945 Bytes

AddFolderRequest

Properties

Name Type Description Notes
path str Path of Folder to create [optional]

Example

from formkiq_client.models.add_folder_request import AddFolderRequest

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

# convert the object into a dict
add_folder_request_dict = add_folder_request_instance.to_dict()
# create an instance of AddFolderRequest from a dict
add_folder_request_from_dict = AddFolderRequest.from_dict(add_folder_request_dict)

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