// Interface automatically generated by schemas-to-ts import { Media } from '../components/shared/Media'; import { Media_Plain } from '../components/shared/Media'; import { AdminPanelRelationPropertyModification } from '../common/AdminPanelRelationPropertyModification'; export interface About { id: number; attributes: { createdAt: Date; updatedAt: Date; publishedAt?: Date; title?: string; description?: any; image?: { data: Media }; }; } export interface About_Plain { id: number; createdAt: Date; updatedAt: Date; publishedAt?: Date; title?: string; description?: any; image?: Media_Plain; } export interface About_NoRelations { id: number; createdAt: Date; updatedAt: Date; publishedAt?: Date; title?: string; description?: any; image?: number; } export interface About_AdminPanelLifeCycle { id: number; createdAt: Date; updatedAt: Date; publishedAt?: Date; title?: string; description?: any; image?: AdminPanelRelationPropertyModification; }