import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type CreateSessionResponseData = { sessionUri: string; sessionToken: string; }; /** * Session created */ export type CreateSessionResponse = { /** * HTTP Response Status Code */ statusCode: number; /** * HTTP Response Status */ status: string; data: CreateSessionResponseData; }; /** @internal */ export declare const CreateSessionResponseData$inboundSchema: z.ZodType; /** @internal */ export type CreateSessionResponseData$Outbound = { session_uri: string; session_token: string; }; /** @internal */ export declare const CreateSessionResponseData$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace CreateSessionResponseData$ { /** @deprecated use `CreateSessionResponseData$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `CreateSessionResponseData$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `CreateSessionResponseData$Outbound` instead. */ type Outbound = CreateSessionResponseData$Outbound; } export declare function createSessionResponseDataToJSON(createSessionResponseData: CreateSessionResponseData): string; export declare function createSessionResponseDataFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const CreateSessionResponse$inboundSchema: z.ZodType; /** @internal */ export type CreateSessionResponse$Outbound = { status_code: number; status: string; data: CreateSessionResponseData$Outbound; }; /** @internal */ export declare const CreateSessionResponse$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace CreateSessionResponse$ { /** @deprecated use `CreateSessionResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `CreateSessionResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `CreateSessionResponse$Outbound` instead. */ type Outbound = CreateSessionResponse$Outbound; } export declare function createSessionResponseToJSON(createSessionResponse: CreateSessionResponse): string; export declare function createSessionResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=createsessionresponse.d.ts.map