import * as z from "zod/v4-mini"; export type CreateCreditNoteLineItemRequest = { /** * amount is the monetary amount to be credited for this line item */ amount: string; /** * display_name is an optional human-readable name for this credit note line item */ displayName?: string | undefined; /** * invoice_line_item_id is the unique identifier of the invoice line item being credited */ invoiceLineItemId: string; metadata?: { [k: string]: string; } | undefined; }; /** @internal */ export type CreateCreditNoteLineItemRequest$Outbound = { amount: string; display_name?: string | undefined; invoice_line_item_id: string; metadata?: { [k: string]: string; } | undefined; }; /** @internal */ export declare const CreateCreditNoteLineItemRequest$outboundSchema: z.ZodMiniType; export declare function createCreditNoteLineItemRequestToJSON(createCreditNoteLineItemRequest: CreateCreditNoteLineItemRequest): string; //# sourceMappingURL=create-credit-note-line-item-request.d.ts.map