/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v3"; export type DeleteSourceAccountRequest = { /** * Unique identifier for a company. */ companyId: string; /** * Unique identifier for a connection. */ connectionId: string; /** * Unique identifier for an account. */ accountId: string; }; /** @internal */ export type DeleteSourceAccountRequest$Outbound = { companyId: string; connectionId: string; accountId: string; }; /** @internal */ export const DeleteSourceAccountRequest$outboundSchema: z.ZodType< DeleteSourceAccountRequest$Outbound, z.ZodTypeDef, DeleteSourceAccountRequest > = z.object({ companyId: z.string(), connectionId: z.string(), accountId: z.string(), }); export function deleteSourceAccountRequestToJSON( deleteSourceAccountRequest: DeleteSourceAccountRequest, ): string { return JSON.stringify( DeleteSourceAccountRequest$outboundSchema.parse(deleteSourceAccountRequest), ); }