/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v3"; import { remap as remap$ } from "../../lib/primitives.js"; export type DeleteApiKeyPairRequest = { /** * The ID of the API key pair. */ apiKeyPairId: string; }; /** @internal */ export type DeleteApiKeyPairRequest$Outbound = { api_key_pair_id: string; }; /** @internal */ export const DeleteApiKeyPairRequest$outboundSchema: z.ZodType< DeleteApiKeyPairRequest$Outbound, z.ZodTypeDef, DeleteApiKeyPairRequest > = z.object({ apiKeyPairId: z.string(), }).transform((v) => { return remap$(v, { apiKeyPairId: "api_key_pair_id", }); }); export function deleteApiKeyPairRequestToJSON( deleteApiKeyPairRequest: DeleteApiKeyPairRequest, ): string { return JSON.stringify( DeleteApiKeyPairRequest$outboundSchema.parse(deleteApiKeyPairRequest), ); }