import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Request to cancel a Cash Journal transfer schedule */ export type CancelCashJournalScheduleRequestCreate = { /** * A comment as to why the Cash Journal schedule is being canceled */ comment?: string | undefined; /** * The name of the Cash Journal transfer schedule to cancel */ name: string; }; /** @internal */ export declare const CancelCashJournalScheduleRequestCreate$inboundSchema: z.ZodType; /** @internal */ export type CancelCashJournalScheduleRequestCreate$Outbound = { comment?: string | undefined; name: string; }; /** @internal */ export declare const CancelCashJournalScheduleRequestCreate$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 CancelCashJournalScheduleRequestCreate$ { /** @deprecated use `CancelCashJournalScheduleRequestCreate$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `CancelCashJournalScheduleRequestCreate$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `CancelCashJournalScheduleRequestCreate$Outbound` instead. */ type Outbound = CancelCashJournalScheduleRequestCreate$Outbound; } export declare function cancelCashJournalScheduleRequestCreateToJSON(cancelCashJournalScheduleRequestCreate: CancelCashJournalScheduleRequestCreate): string; export declare function cancelCashJournalScheduleRequestCreateFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=cancelcashjournalschedulerequestcreate.d.ts.map