UNPKG

chatkitty

Version:
33 lines (25 loc) 1.38 kB
# ChatFunctionInvocationResource ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **id** | **number** | 64-bit integer identifier associated with this resource | [default to undefined] **args** | **{ [key: string]: object; }** | The function arguments passed into this function for this invocation | [default to undefined] **created_time** | **string** | The ISO date-time of this invocation when the function was called | [default to undefined] **result** | **{ [key: string]: object; }** | The result of this invocation when it completed | [default to undefined] **status** | **string** | The running status of this invocation | [default to undefined] **version_number** | **number** | The version number of this function version when this invocation occured | [default to undefined] **_links** | [**Array<Link>**](Link.md) | Hypermedia control links for this resource | [optional] [default to undefined] ## Example ```typescript import { ChatFunctionInvocationResource } from 'chatkitty'; const instance: ChatFunctionInvocationResource = { id, args, created_time, result, status, version_number, _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)