/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: c449811e00ea */ import * as z from "zod"; export type RestoreRequest = { asset_ids: Array; versions?: Array | undefined; notification_url?: string | undefined; }; export const RestoreRequest$zodSchema: z.ZodType = z.object({ asset_ids: z.array(z.string()).describe( "The unique and immutable asset IDs of backed up assets to restore.", ), notification_url: z.string().optional().describe( "The URL that will receive notification when restore is complete.", ), versions: z.array(z.string()).optional().describe( "If you specify versions, the number of versions in the array must exactly match the number of asset_ids.", ), });