| Name | Type |
|---|---|
id |
string |
name |
string |
kind |
StepKind |
args |
Args |
detail |
string |
startTime |
Date |
endTime |
Date |
steps |
Array<StepOutput> |
import type { StepOutput } from '@knowledge-stack/ksapi'
// TODO: Update the object below with actual values
const example = {
"id": null,
"name": null,
"kind": null,
"args": null,
"detail": null,
"startTime": null,
"endTime": null,
"steps": null,
} satisfies StepOutput
console.log(example)
// Convert the instance to a JSON string
const exampleJSON: string = JSON.stringify(example)
console.log(exampleJSON)
// Parse the JSON string back to an object
const exampleParsed = JSON.parse(exampleJSON) as StepOutput
console.log(exampleParsed)[Back to top] [Back to API list] [Back to Model list] [Back to README]