Files
Fulfillment-Frontend/src/client/models/CardGeneralInfoSchema.ts

19 lines
515 B
TypeScript

/* generated using openapi-typescript-codegen -- do not edit */
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
import type { UserSchema } from './UserSchema';
export type CardGeneralInfoSchema = {
attributes?: Record<string, (boolean | string | number | null)>;
name: string;
isDeleted: boolean;
isCompleted: boolean;
comment: string;
manager?: (UserSchema | null);
boardId: number;
statusId: number;
clientId: (number | null);
tags: Array<string>;
};