/**
 * A URL was successfully prepared for the client to upload/download the object.
 */
export interface Z3GetPresignedUrlResponse {
    /**
     * The URL that the client should use for uploading/downloading the object.
     */
    signedUrl: string;
}
