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