import * as z from "zod/v4-mini"; export type CustomerPortalOrdersGenerateInvoiceSecurity = { customerSession?: string | undefined; memberSession?: string | undefined; }; export type CustomerPortalOrdersGenerateInvoiceRequest = { /** * The order ID. */ id: string; }; /** @internal */ export type CustomerPortalOrdersGenerateInvoiceSecurity$Outbound = { customer_session?: string | undefined; member_session?: string | undefined; }; /** @internal */ export declare const CustomerPortalOrdersGenerateInvoiceSecurity$outboundSchema: z.ZodMiniType; export declare function customerPortalOrdersGenerateInvoiceSecurityToJSON(customerPortalOrdersGenerateInvoiceSecurity: CustomerPortalOrdersGenerateInvoiceSecurity): string; /** @internal */ export type CustomerPortalOrdersGenerateInvoiceRequest$Outbound = { id: string; }; /** @internal */ export declare const CustomerPortalOrdersGenerateInvoiceRequest$outboundSchema: z.ZodMiniType; export declare function customerPortalOrdersGenerateInvoiceRequestToJSON(customerPortalOrdersGenerateInvoiceRequest: CustomerPortalOrdersGenerateInvoiceRequest): string; //# sourceMappingURL=customerportalordersgenerateinvoice.d.ts.map