Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1 KB

File metadata and controls

33 lines (24 loc) · 1 KB

FileCreateVM

Properties

Name Type Description Notes
name str [optional]
tags List[str] [optional]
icon bytearray [optional]
content bytearray [optional]
t str

Example

from fastreport_cloud_sdk.models.file_create_vm import FileCreateVM

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

# convert the object into a dict
file_create_vm_dict = file_create_vm_instance.to_dict()
# create an instance of FileCreateVM from a dict
file_create_vm_form_dict = file_create_vm.from_dict(file_create_vm_dict)

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