/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ import type { StatusSchema } from './StatusSchema'; import type { UserSchema } from './UserSchema'; export type DealStatusHistorySchema = { user: UserSchema; changedAt: string; fromStatus: StatusSchema; toStatus: StatusSchema; nextStatusDeadline: (string | null); comment?: (string | null); };