Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.07 KB

File metadata and controls

32 lines (23 loc) · 1.07 KB

CreateFileShareVM

Properties

Name Type Description Notes
expires datetime [optional]
name str [optional]
permission FilePermissionCRUDVM [optional]
t str

Example

from fastreport_cloud_sdk.models.create_file_share_vm import CreateFileShareVM

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

# convert the object into a dict
create_file_share_vm_dict = create_file_share_vm_instance.to_dict()
# create an instance of CreateFileShareVM from a dict
create_file_share_vm_form_dict = create_file_share_vm.from_dict(create_file_share_vm_dict)

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