Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1017 Bytes

File metadata and controls

33 lines (24 loc) · 1017 Bytes

FilesVMBase

Properties

Name Type Description Notes
files List[FileVM] [optional]
count int [optional]
skip int [optional]
take int [optional]
t str

Example

from fastreport_cloud_sdk.models.files_vm_base import FilesVMBase

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

# convert the object into a dict
files_vm_base_dict = files_vm_base_instance.to_dict()
# create an instance of FilesVMBase from a dict
files_vm_base_form_dict = files_vm_base.from_dict(files_vm_base_dict)

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