/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v3"; export type GetLatestManagedBankFeedSyncRequest = { /** * 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 GetLatestManagedBankFeedSyncRequest$Outbound = { companyId: string; connectionId: string; sourceAccountId: string; }; /** @internal */ export const GetLatestManagedBankFeedSyncRequest$outboundSchema: z.ZodType< GetLatestManagedBankFeedSyncRequest$Outbound, z.ZodTypeDef, GetLatestManagedBankFeedSyncRequest > = z.object({ companyId: z.string(), connectionId: z.string(), sourceAccountId: z.string(), }); export function getLatestManagedBankFeedSyncRequestToJSON( getLatestManagedBankFeedSyncRequest: GetLatestManagedBankFeedSyncRequest, ): string { return JSON.stringify( GetLatestManagedBankFeedSyncRequest$outboundSchema.parse( getLatestManagedBankFeedSyncRequest, ), ); }