import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Links, Links$Outbound } from "./links.js"; import { Log, Log$Outbound } from "./log.js"; import { Meta, Meta$Outbound } from "./meta.js"; /** * Logs */ export type GetLogsResponse = { /** * HTTP Response Status Code */ statusCode: number; /** * HTTP Response Status */ status: string; data: Array; /** * Response metadata */ meta?: Meta | undefined; /** * Links to navigate to previous or next pages through the API */ links?: Links | undefined; }; /** @internal */ export declare const GetLogsResponse$inboundSchema: z.ZodType; /** @internal */ export type GetLogsResponse$Outbound = { status_code: number; status: string; data: Array; meta?: Meta$Outbound | undefined; links?: Links$Outbound | undefined; }; /** @internal */ export declare const GetLogsResponse$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 GetLogsResponse$ { /** @deprecated use `GetLogsResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetLogsResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetLogsResponse$Outbound` instead. */ type Outbound = GetLogsResponse$Outbound; } export declare function getLogsResponseToJSON(getLogsResponse: GetLogsResponse): string; export declare function getLogsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getlogsresponse.d.ts.map