mirror of
https://github.com/Unleash/unleash.git
synced 2025-10-27 11:02:16 +01:00
29 lines
862 B
TypeScript
29 lines
862 B
TypeScript
/**
|
|
* Generated by Orval
|
|
* Do not edit manually.
|
|
* See `gen:api` script in package.json
|
|
*/
|
|
|
|
export interface DetailedInvoicesLineSchema {
|
|
/** Optional consumption associated with the line item */
|
|
consumption?: number;
|
|
/** Currency code */
|
|
currency: string;
|
|
/** Description of the line item */
|
|
description: string;
|
|
/** Optional end date for the metered period */
|
|
endDate?: string;
|
|
/** Optional limit associated with the line item */
|
|
limit?: number;
|
|
/** Lookup key identifying the product/pricing */
|
|
lookupKey: string;
|
|
/** Quantity of the item */
|
|
quantity: number;
|
|
/** Optional start date for the metered period */
|
|
startDate?: string;
|
|
/** Total amount for this line item in minor currency units */
|
|
totalAmount: number;
|
|
/** Unit price for usage line items */
|
|
unitPrice?: number;
|
|
}
|