blob: fc16b4e8eb5b49b574f599d390e92fbf3e035c7e [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>;
sequence_id: number;
};