17 lines
		
	
	
		
			500 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			500 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
/* generated using openapi-typescript-codegen -- do not edit */
 | 
						|
/* istanbul ignore file */
 | 
						|
/* tslint:disable */
 | 
						|
/* eslint-disable */
 | 
						|
import type { AttributeSchema } from './AttributeSchema';
 | 
						|
import type { CardTagSchema } from './CardTagSchema';
 | 
						|
import type { ModuleSchema } from './ModuleSchema';
 | 
						|
export type FullProjectSchema = {
 | 
						|
    name: string;
 | 
						|
    id: number;
 | 
						|
    attributes: Array<AttributeSchema>;
 | 
						|
    modules: Array<ModuleSchema>;
 | 
						|
    tags: Array<CardTagSchema>;
 | 
						|
    boardsCount: number;
 | 
						|
};
 | 
						|
 |