import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Request to force reject a pending cash journal */ export type ForceRejectCashJournalRequestCreate = { /** * The name of the cash journal to force reject */ name: string; /** * The optional reason for force rejecting a cash journal */ reason?: string | undefined; }; /** @internal */ export declare const ForceRejectCashJournalRequestCreate$inboundSchema: z.ZodType; /** @internal */ export type ForceRejectCashJournalRequestCreate$Outbound = { name: string; reason?: string | undefined; }; /** @internal */ export declare const ForceRejectCashJournalRequestCreate$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 ForceRejectCashJournalRequestCreate$ { /** @deprecated use `ForceRejectCashJournalRequestCreate$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ForceRejectCashJournalRequestCreate$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ForceRejectCashJournalRequestCreate$Outbound` instead. */ type Outbound = ForceRejectCashJournalRequestCreate$Outbound; } export declare function forceRejectCashJournalRequestCreateToJSON(forceRejectCashJournalRequestCreate: ForceRejectCashJournalRequestCreate): string; export declare function forceRejectCashJournalRequestCreateFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=forcerejectcashjournalrequestcreate.d.ts.map