import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type InvoiceResponse = { /** * A unique identifier for an object. */ id?: string | undefined; /** * The third-party API ID of original entity */ downstreamId?: string | null | undefined; }; /** @internal */ export declare const InvoiceResponse$inboundSchema: z.ZodType; /** @internal */ export type InvoiceResponse$Outbound = { id?: string | undefined; downstream_id?: string | null | undefined; }; /** @internal */ export declare const InvoiceResponse$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 InvoiceResponse$ { /** @deprecated use `InvoiceResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `InvoiceResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `InvoiceResponse$Outbound` instead. */ type Outbound = InvoiceResponse$Outbound; } export declare function invoiceResponseToJSON(invoiceResponse: InvoiceResponse): string; export declare function invoiceResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=invoiceresponse.d.ts.map