import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type LinkedLedgerAccountInput = { /** * The unique identifier for the account. */ id?: string | undefined; /** * The nominal code of the account. */ nominalCode?: string | null | undefined; /** * The code assigned to the account. */ code?: string | null | undefined; }; /** @internal */ export declare const LinkedLedgerAccountInput$inboundSchema: z.ZodType; /** @internal */ export type LinkedLedgerAccountInput$Outbound = { id?: string | undefined; nominal_code?: string | null | undefined; code?: string | null | undefined; }; /** @internal */ export declare const LinkedLedgerAccountInput$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 LinkedLedgerAccountInput$ { /** @deprecated use `LinkedLedgerAccountInput$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `LinkedLedgerAccountInput$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `LinkedLedgerAccountInput$Outbound` instead. */ type Outbound = LinkedLedgerAccountInput$Outbound; } export declare function linkedLedgerAccountInputToJSON(linkedLedgerAccountInput: LinkedLedgerAccountInput): string; export declare function linkedLedgerAccountInputFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=linkedledgeraccountinput.d.ts.map