| Name | Type | Description | Notes |
|---|---|---|---|
| file_path | str | File path in object storage. | |
| owner | OwnerReference | Owner of the file. Defaults to authenticated user/group. | [optional] |
| size | int | Size of the file. | [optional] |
| part_size | int | Multipart upload size. | [optional] |
| copy_source | ObjectStorageReference | Object storage reference to copy. | [optional] |
from saturn_api.models.object_storage_upload_create import ObjectStorageUploadCreate
# TODO update the JSON string below
json = "{}"
# create an instance of ObjectStorageUploadCreate from a JSON string
object_storage_upload_create_instance = ObjectStorageUploadCreate.from_json(json)
# print the JSON string representation of the object
print(ObjectStorageUploadCreate.to_json())
# convert the object into a dict
object_storage_upload_create_dict = object_storage_upload_create_instance.to_dict()
# create an instance of ObjectStorageUploadCreate from a dict
object_storage_upload_create_from_dict = ObjectStorageUploadCreate.from_dict(object_storage_upload_create_dict)