Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.11 KB

CommonFile.md

File metadata and controls

33 lines (24 loc) · 1.11 KB

CommonFile

Object representing a file used in a request or response context

Properties

Name Type Description Notes
s_file_name str The name of the file
s_file_url str The URL used to reach the File [optional]
s_file_base64 bytearray The Base64 encoded binary content of the File [optional]
e_file_source str The source of the File

Example

from eZmaxApi.models.common_file import CommonFile

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

# convert the object into a dict
common_file_dict = common_file_instance.to_dict()
# create an instance of CommonFile from a dict
common_file_form_dict = common_file.from_dict(common_file_dict)

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