// 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 YogaSingleService { id: number; attributes: { createdAt: Date; updatedAt: Date; publishedAt?: Date; header?: string; description?: string; buttonLink?: string; image?: { data: Media }; imageAlt?: string; name?: string; article?: string; locale: string; localizations?: { data: YogaSingleService[] }; }; } export interface YogaSingleService_Plain { id: number; createdAt: Date; updatedAt: Date; publishedAt?: Date; header?: string; description?: string; buttonLink?: string; image?: Media_Plain; imageAlt?: string; name?: string; article?: string; locale: string; localizations?: YogaSingleService_Plain[]; } export interface YogaSingleService_NoRelations { id: number; createdAt: Date; updatedAt: Date; publishedAt?: Date; header?: string; description?: string; buttonLink?: string; image?: number; imageAlt?: string; name?: string; article?: string; locale: string; localizations?: YogaSingleService[]; } export interface YogaSingleService_AdminPanelLifeCycle { id: number; createdAt: Date; updatedAt: Date; publishedAt?: Date; header?: string; description?: string; buttonLink?: string; image?: AdminPanelRelationPropertyModification; imageAlt?: string; name?: string; article?: string; locale: string; localizations?: YogaSingleService[]; }