palette-sdk-typescript
Version:
TypeScript SDK for Spectro Cloud Palette API
30 lines • 904 B
TypeScript
/**
* 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
*/
import type { Address } from './address';
import type { InvoiceBillingPeriod } from './invoiceBillingPeriod';
import type { InvoiceCredits } from './invoiceCredits';
import type { Time } from './time';
import type { InvoiceSpecPaymentUnit } from './invoiceSpecPaymentUnit';
import type { InvoicePlan } from './invoicePlan';
/**
* Invoice specification
*/
export type InvoiceSpec = {
address?: Address;
billingPeriod?: InvoiceBillingPeriod;
credits?: InvoiceCredits;
/** Environment type [Trial,MonthlyOnDemand,AnnualSubscription,OnPrem] */
envType?: string;
month?: Time;
paymentUnit?: InvoiceSpecPaymentUnit;
plan?: InvoicePlan;
};
//# sourceMappingURL=invoiceSpec.d.ts.map