import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Request to cancel an existing position journal */ export type CancelPositionJournalRequestCreate = { /** * The name of the position journal to cancel */ name: string; /** * The reason for canceling the position journal Maximum of 100 characters are supported */ reason?: string | undefined; }; /** @internal */ export declare const CancelPositionJournalRequestCreate$inboundSchema: z.ZodType; /** @internal */ export type CancelPositionJournalRequestCreate$Outbound = { name: string; reason?: string | undefined; }; /** @internal */ export declare const CancelPositionJournalRequestCreate$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 CancelPositionJournalRequestCreate$ { /** @deprecated use `CancelPositionJournalRequestCreate$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `CancelPositionJournalRequestCreate$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `CancelPositionJournalRequestCreate$Outbound` instead. */ type Outbound = CancelPositionJournalRequestCreate$Outbound; } export declare function cancelPositionJournalRequestCreateToJSON(cancelPositionJournalRequestCreate: CancelPositionJournalRequestCreate): string; export declare function cancelPositionJournalRequestCreateFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=cancelpositionjournalrequestcreate.d.ts.map