import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type LinkedInvoiceItem = { /** * ID of the linked item. A reference to the [invoice item](https://developers.apideck.com/apis/accounting/reference#tag/Invoice-Items) that was used to create this line item */ id?: string | null | undefined; /** * User defined item code */ code?: string | null | undefined; /** * User defined item name */ name?: string | null | undefined; }; /** @internal */ export declare const LinkedInvoiceItem$inboundSchema: z.ZodType; /** @internal */ export type LinkedInvoiceItem$Outbound = { id?: string | null | undefined; code?: string | null | undefined; name?: string | null | undefined; }; /** @internal */ export declare const LinkedInvoiceItem$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 LinkedInvoiceItem$ { /** @deprecated use `LinkedInvoiceItem$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `LinkedInvoiceItem$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `LinkedInvoiceItem$Outbound` instead. */ type Outbound = LinkedInvoiceItem$Outbound; } export declare function linkedInvoiceItemToJSON(linkedInvoiceItem: LinkedInvoiceItem): string; export declare function linkedInvoiceItemFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=linkedinvoiceitem.d.ts.map