import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type IntegrationsControllerGetChatOAuthUrlRequest = { /** * A header for idempotency purposes */ idempotencyKey?: string | undefined; generateChatOauthUrlRequestDto: components.GenerateChatOauthUrlRequestDto; }; export type IntegrationsControllerGetChatOAuthUrlResponse = { headers: { [k: string]: Array; }; result: components.GenerateChatOAuthUrlResponseDto; }; /** @internal */ export type IntegrationsControllerGetChatOAuthUrlRequest$Outbound = { "idempotency-key"?: string | undefined; GenerateChatOauthUrlRequestDto: components.GenerateChatOauthUrlRequestDto$Outbound; }; /** @internal */ export declare const IntegrationsControllerGetChatOAuthUrlRequest$outboundSchema: z.ZodType; export declare function integrationsControllerGetChatOAuthUrlRequestToJSON(integrationsControllerGetChatOAuthUrlRequest: IntegrationsControllerGetChatOAuthUrlRequest): string; /** @internal */ export declare const IntegrationsControllerGetChatOAuthUrlResponse$inboundSchema: z.ZodType; export declare function integrationsControllerGetChatOAuthUrlResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=integrationscontrollergetchatoauthurl.d.ts.map