import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { UnifiedId, UnifiedId$Outbound } from "./unifiedid.js"; /** * JournalEntries */ export type UpdateJournalEntryResponse = { /** * 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: UnifiedId; }; /** @internal */ export declare const UpdateJournalEntryResponse$inboundSchema: z.ZodType; /** @internal */ export type UpdateJournalEntryResponse$Outbound = { status_code: number; status: string; service: string; resource: string; operation: string; data: UnifiedId$Outbound; }; /** @internal */ export declare const UpdateJournalEntryResponse$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 UpdateJournalEntryResponse$ { /** @deprecated use `UpdateJournalEntryResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `UpdateJournalEntryResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `UpdateJournalEntryResponse$Outbound` instead. */ type Outbound = UpdateJournalEntryResponse$Outbound; } export declare function updateJournalEntryResponseToJSON(updateJournalEntryResponse: UpdateJournalEntryResponse): string; export declare function updateJournalEntryResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=updatejournalentryresponse.d.ts.map