UNPKG

palette-sdk-typescript

Version:

TypeScript SDK for Spectro Cloud Palette API

38 lines 965 B
/** * Copyright (c) Spectro Cloud * SPDX-License-Identifier: Apache-2.0 */ /** * Generated by orval v7.17.0 🍺 * Do not edit manually. * Palette APIs - 4.8 * OpenAPI spec version: v1 */ /** * Product invoice data */ export type InvoiceProductData = { /** Allocated credits */ allocatedCredits?: number; /** Total amount */ amount?: number; /** Credits to be billed */ billableCredits?: number; /** Credits that are exceeds the allocated credits */ breachedCredits?: number; /** Applied discount */ discount?: number; /** Allocated free credits */ freeCredits?: number; /** Allowed overage limit in percentage */ overageLimitPercentage?: number; /** Tier name */ tierName?: string; /** Tier price */ tierPrice?: number; /** Total used credits */ totalUsedCredits?: number; /** Used credits */ usedCredits?: number; }; //# sourceMappingURL=invoiceProductData.d.ts.map