You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fromsaturn_api.models.object_storage_presigned_partimportObjectStoragePresignedPart# TODO update the JSON string belowjson="{}"# create an instance of ObjectStoragePresignedPart from a JSON stringobject_storage_presigned_part_instance=ObjectStoragePresignedPart.from_json(json)
# print the JSON string representation of the objectprint(ObjectStoragePresignedPart.to_json())
# convert the object into a dictobject_storage_presigned_part_dict=object_storage_presigned_part_instance.to_dict()
# create an instance of ObjectStoragePresignedPart from a dictobject_storage_presigned_part_from_dict=ObjectStoragePresignedPart.from_dict(object_storage_presigned_part_dict)