blob: 1afe71f57bd1f65961a3f6635d251089e6468664 [file]
/* generated using openapi-typescript-codegen -- do no edit */
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
/**
* Pydantic model that represents an entry for the end of a step
*/
export type EndEntryModel = {
type?: string;
end_time: string;
action: string;
result: Record<string, any> | null;
exception: string | null;
state: Record<string, any>;
};