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