import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { JournalEntry, JournalEntry$Outbound } from "./journalentry.js"; import { Links, Links$Outbound } from "./links.js"; import { Meta, Meta$Outbound } from "./meta.js"; /** * JournalEntry */ export type GetJournalEntriesResponse = { /** * HTTP Response Status Code */ statusCode: number; /** * HTTP Response Status */ status: string; /** * Apideck ID of service provider */ service: string; /** * Unified API resource name */ resource: string; /** * Operation performed */ operation: 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 GetJournalEntriesResponse$inboundSchema: z.ZodType; /** @internal */ export type GetJournalEntriesResponse$Outbound = { status_code: number; status: string; service: string; resource: string; operation: string; data: Array; meta?: Meta$Outbound | undefined; links?: Links$Outbound | undefined; }; /** @internal */ export declare const GetJournalEntriesResponse$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 GetJournalEntriesResponse$ { /** @deprecated use `GetJournalEntriesResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetJournalEntriesResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetJournalEntriesResponse$Outbound` instead. */ type Outbound = GetJournalEntriesResponse$Outbound; } export declare function getJournalEntriesResponseToJSON(getJournalEntriesResponse: GetJournalEntriesResponse): string; export declare function getJournalEntriesResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getjournalentriesresponse.d.ts.map