import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type GetContextResponseDto = { /** * Context type (e.g., tenant, app, workspace) */ type: string; /** * Unique identifier for this context */ id: string; /** * Custom data associated with this context */ data: { [k: string]: any; }; /** * Creation timestamp */ createdAt: string; /** * Last update timestamp */ updatedAt: string; }; /** @internal */ export declare const GetContextResponseDto$inboundSchema: z.ZodType; export declare function getContextResponseDtoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getcontextresponsedto.d.ts.map