UNPKG

chatkitty

Version:
31 lines (23 loc) 1.34 kB
# ChatRuntimeProperties ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **type** | **string** | The type of this runtime. Always NODEJS | [default to undefined] **id** | **number** | 64-bit integer identifier associated with this resource | [default to undefined] **dependencies** | [**Array<ChatRuntimeDependencyProperties>**](ChatRuntimeDependencyProperties.md) | The NPM dependencies version of this runtime | [default to undefined] **environment_variables** | **{ [key: string]: string; }** | Environment variable set for this runtime. Accessible in the initialization script and chat functions associated with this runtime | [default to undefined] **initialization_script** | [**ChatRuntimeScriptProperties**](ChatRuntimeScriptProperties.md) | | [optional] [default to undefined] **version** | **string** | The semantic version of this runtime | [default to undefined] ## Example ```typescript import { ChatRuntimeProperties } from 'chatkitty'; const instance: ChatRuntimeProperties = { type, id, dependencies, environment_variables, initialization_script, version, }; ``` [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)