Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.02 KB

File metadata and controls

33 lines (24 loc) · 1.02 KB

OutputFileVM

Properties

Name Type Description Notes
file_name str [optional]
folder_id str [optional]
type FileKind [optional]
is_temporary bool [optional]
t str

Example

from fastreport_cloud_sdk.models.output_file_vm import OutputFileVM

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

# convert the object into a dict
output_file_vm_dict = output_file_vm_instance.to_dict()
# create an instance of OutputFileVM from a dict
output_file_vm_form_dict = output_file_vm.from_dict(output_file_vm_dict)

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