UNPKG

chatkitty

Version:
33 lines (25 loc) 1.47 kB
# ChatRuntimeResource ## 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] **_links** | [**Array<Link>**](Link.md) | Hypermedia control links for this resource | [optional] [default to undefined] ## Example ```typescript import { ChatRuntimeResource } from 'chatkitty'; const instance: ChatRuntimeResource = { type, id, dependencies, environment_variables, initialization_script, version, _links, }; ``` [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)