import * as z from "zod/v3"; import * as shared from "../shared/index.js"; export type UpdateSourceAccountRequest = { /** * Unique identifier for a company. */ companyId: string; /** * Unique identifier for a connection. */ connectionId: string; /** * Unique identifier for an account. */ accountId: string; sourceAccount?: shared.SourceAccount | undefined; }; /** @internal */ export type UpdateSourceAccountRequest$Outbound = { companyId: string; connectionId: string; accountId: string; SourceAccount?: shared.SourceAccount$Outbound | undefined; }; /** @internal */ export declare const UpdateSourceAccountRequest$outboundSchema: z.ZodType; export declare function updateSourceAccountRequestToJSON(updateSourceAccountRequest: UpdateSourceAccountRequest): string; //# sourceMappingURL=updatesourceaccount.d.ts.map