blob: 071d0843a5b631674d117f0f8f1ae6cf7cc67072 [file]
/* 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>;
};