Skip to content

Latest commit

 

History

History
45 lines (36 loc) · 1.5 KB

File metadata and controls

45 lines (36 loc) · 1.5 KB

FileVM

Properties

Name Type Description Notes
id str [optional]
created_time datetime [optional]
creator_user_id str [optional]
edited_time datetime [optional]
editor_user_id str [optional]
name str [optional]
parent_id str [optional]
tags List[str] [optional]
icon bytearray [optional]
type FileType [optional]
size int [optional]
subscription_id str [optional]
status FileStatus [optional]
status_reason FileStatusReason [optional]
error_message str [optional]
is_deleted bool [optional]
t str

Example

from fastreport_cloud_sdk.models.file_vm import FileVM

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

# convert the object into a dict
file_vm_dict = file_vm_instance.to_dict()
# create an instance of FileVM from a dict
file_vm_form_dict = file_vm.from_dict(file_vm_dict)

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