@sap-ai-sdk/ai-api
Version:
SAP Cloud SDK for AI is the official Software Development Kit (SDK) for **SAP AI Core**, **SAP Generative AI Hub**, and **Orchestration Service**.
24 lines • 638 B
TypeScript
import type { BckndServiceServicePlanItemMetadata } from './bcknd-service-service-plan-item-metadata.js';
/**
* Representation of the 'BckndServiceServicePlanItem' schema.
*/
export type BckndServiceServicePlanItem = {
/**
* description of the service plan
*/
description?: string;
/**
* if the service plan free
*/
free?: boolean;
/**
* id of the service plan
*/
id?: string;
/**
* name of the service plan
*/
name?: string;
metadata?: BckndServiceServicePlanItemMetadata;
} & Record<string, any>;
//# sourceMappingURL=bcknd-service-service-plan-item.d.ts.map