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"; /** * JournalEntries */ export type GetJournalEntryResponse = { /** * 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: JournalEntry; }; /** @internal */ export declare const GetJournalEntryResponse$inboundSchema: z.ZodType; /** @internal */ export type GetJournalEntryResponse$Outbound = { status_code: number; status: string; service: string; resource: string; operation: string; data: JournalEntry$Outbound; }; /** @internal */ export declare const GetJournalEntryResponse$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 GetJournalEntryResponse$ { /** @deprecated use `GetJournalEntryResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetJournalEntryResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetJournalEntryResponse$Outbound` instead. */ type Outbound = GetJournalEntryResponse$Outbound; } export declare function getJournalEntryResponseToJSON(getJournalEntryResponse: GetJournalEntryResponse): string; export declare function getJournalEntryResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getjournalentryresponse.d.ts.map