Files
Fulfillment-Frontend/src/client/models/DealStatusHistorySchema.ts
2025-02-07 20:07:10 +04:00

16 lines
452 B
TypeScript

/* 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);
};