import * as z from "zod/v3"; import * as shared from "../shared/index.js"; export type UnlinkConnectionUpdateConnection = { /** * The current authorization status of the data connection. */ status?: shared.DataConnectionStatus | undefined; }; export type UnlinkConnectionRequest = { /** * Unique identifier for a company. */ companyId: string; /** * Unique identifier for a connection. */ connectionId: string; requestBody?: UnlinkConnectionUpdateConnection | undefined; }; /** @internal */ export type UnlinkConnectionUpdateConnection$Outbound = { status?: string | undefined; }; /** @internal */ export declare const UnlinkConnectionUpdateConnection$outboundSchema: z.ZodType; export declare function unlinkConnectionUpdateConnectionToJSON(unlinkConnectionUpdateConnection: UnlinkConnectionUpdateConnection): string; /** @internal */ export type UnlinkConnectionRequest$Outbound = { companyId: string; connectionId: string; RequestBody?: UnlinkConnectionUpdateConnection$Outbound | undefined; }; /** @internal */ export declare const UnlinkConnectionRequest$outboundSchema: z.ZodType; export declare function unlinkConnectionRequestToJSON(unlinkConnectionRequest: UnlinkConnectionRequest): string; //# sourceMappingURL=unlinkconnection.d.ts.map