palette-sdk-typescript
Version:
TypeScript SDK for Spectro Cloud Palette API
34 lines • 939 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 { PlanCost } from './planCost';
import type { DeveloperCredit } from './developerCredit';
import type { Time } from './time';
import type { PlanCredit } from './planCredit';
import type { PlanLimit } from './planLimit';
import type { PlanRenewal } from './planRenewal';
import type { TierPrice } from './tierPrice';
import type { PlanSpecType } from './planSpecType';
/**
* Plan specifications
*/
export type PlanSpec = {
cost?: PlanCost;
developerCredits?: DeveloperCredit;
expiry: Time;
freeCredits?: PlanCredit[];
planLimit?: PlanLimit;
renewal?: PlanRenewal;
slaCredits?: PlanCredit[];
start: Time;
tierPricing?: TierPrice;
type: PlanSpecType;
};
//# sourceMappingURL=planSpec.d.ts.map