// Interface automatically generated by schemas-to-ts import { YogaSingleService } from './yoga-single-service'; import { YogaSingleService_Plain } from './yoga-single-service'; import { AdminPanelRelationPropertyModification } from '../common/AdminPanelRelationPropertyModification'; export interface YogaOurServicesComponent { id: number; attributes: { createdAt: Date; updatedAt: Date; publishedAt?: Date; title?: string; header?: string; description?: string; services: { data: YogaSingleService[] }; name?: string; locale: string; localizations?: { data: YogaOurServicesComponent[] }; }; } export interface YogaOurServicesComponent_Plain { id: number; createdAt: Date; updatedAt: Date; publishedAt?: Date; title?: string; header?: string; description?: string; services: YogaSingleService_Plain[]; name?: string; locale: string; localizations?: YogaOurServicesComponent_Plain[]; } export interface YogaOurServicesComponent_NoRelations { id: number; createdAt: Date; updatedAt: Date; publishedAt?: Date; title?: string; header?: string; description?: string; services: number[]; name?: string; locale: string; localizations?: YogaOurServicesComponent[]; } export interface YogaOurServicesComponent_AdminPanelLifeCycle { id: number; createdAt: Date; updatedAt: Date; publishedAt?: Date; title?: string; header?: string; description?: string; services: AdminPanelRelationPropertyModification; name?: string; locale: string; localizations?: YogaOurServicesComponent[]; }