Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.06 KB

AddFolderShareResponse.md

File metadata and controls

30 lines (21 loc) · 1.06 KB

AddFolderShareResponse

Properties

Name Type Description Notes
message str API Response message [optional]
share_key str Share Identifier [optional]

Example

from formkiq_client.models.add_folder_share_response import AddFolderShareResponse

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

# convert the object into a dict
add_folder_share_response_dict = add_folder_share_response_instance.to_dict()
# create an instance of AddFolderShareResponse from a dict
add_folder_share_response_from_dict = AddFolderShareResponse.from_dict(add_folder_share_response_dict)

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