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