Appearance
FileCreate
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| filename | str | ||
| uses | str | ||
| project_id | str |
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)