Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.08 KB

File metadata and controls

30 lines (21 loc) · 1.08 KB

ObjectStorageReference

Properties

Name Type Description Notes
file_path str File path in object storage.
owner OwnerReference Owner of the file. [optional]

Example

from saturn_api.models.object_storage_reference import ObjectStorageReference

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

# convert the object into a dict
object_storage_reference_dict = object_storage_reference_instance.to_dict()
# create an instance of ObjectStorageReference from a dict
object_storage_reference_from_dict = ObjectStorageReference.from_dict(object_storage_reference_dict)

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