| /* generated using openapi-typescript-codegen -- do no edit */ | |
| /* istanbul ignore file */ | |
| /* tslint:disable */ | |
| /* eslint-disable */ | |
| import type { BeginEntryModel } from './BeginEntryModel'; | |
| import type { EndEntryModel } from './EndEntryModel'; | |
| import type { Span } from './Span'; | |
| /** | |
| * Log of astep -- has a start and an end. | |
| */ | |
| export type Step = { | |
| step_start_log: BeginEntryModel; | |
| step_end_log: (EndEntryModel | null); | |
| spans: Array<Span>; | |
| }; | |