Variable InvoiceLineSchemaConst
InvoiceLineSchema: Struct<
{
amount: typeof String$;
created_at: typeof String$;
currency_amount: typeof String$;
currency_amount_before_tax: typeof String$;
currency_tax: typeof String$;
description: typeof String$;
discount: Struct<
{ type: Literal<["absolute", "relative"]>; value: typeof String$ },
>;
id: typeof Number$;
imputation_dates: NullOr<
Struct<{ end_date: typeof String$; start_date: typeof String$ }>,
>;
label: typeof String$;
product: NullOr<Struct<{ id: typeof Number$; url: typeof String$ }>>;
quantity: typeof String$;
raw_currency_unit_price: typeof String$;
section_rank: NullOr<typeof Number$>;
tax: typeof String$;
unit: NullOr<typeof String$>;
updated_at: typeof String$;
vat_rate: typeof String$;
},
> = ...
Invoice line for a customer invoice.