/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v3"; export type RunManagedBankFeedAdHocSyncRequest = { /** * Unique identifier for a company. */ companyId: string; /** * Unique identifier for a connection. */ connectionId: string; /** * The ID of the source bank account. */ sourceAccountId: string; }; /** @internal */ export type RunManagedBankFeedAdHocSyncRequest$Outbound = { companyId: string; connectionId: string; sourceAccountId: string; }; /** @internal */ export const RunManagedBankFeedAdHocSyncRequest$outboundSchema: z.ZodType< RunManagedBankFeedAdHocSyncRequest$Outbound, z.ZodTypeDef, RunManagedBankFeedAdHocSyncRequest > = z.object({ companyId: z.string(), connectionId: z.string(), sourceAccountId: z.string(), }); export function runManagedBankFeedAdHocSyncRequestToJSON( runManagedBankFeedAdHocSyncRequest: RunManagedBankFeedAdHocSyncRequest, ): string { return JSON.stringify( RunManagedBankFeedAdHocSyncRequest$outboundSchema.parse( runManagedBankFeedAdHocSyncRequest, ), ); }