Skip to content

FileCreate

Properties

NameTypeDescriptionNotes
filenamestr
usesstr
project_idstr

Example

python
from syntheticusers.models.file_create import FileCreate

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

# convert the object into a dict
file_create_dict = file_create_instance.to_dict()
# create an instance of FileCreate from a dict
file_create_from_dict = FileCreate.from_dict(file_create_dict)

[Back to API list] [Back to SDK]

Released under the MIT License.