// Interface automatically generated by schemas-to-ts import { YogaContactUs } from './yoga-contact-us'; import { YogaGoogleMapsComponent } from './yoga-google-maps-component'; import { YogaSubscribeNowComponent } from './yoga-subscribe-now-component'; import { YogaFooter } from './yoga-footer'; import { YogaCommon } from './yoga-common'; import { YogaContactUs_Plain } from './yoga-contact-us'; import { YogaGoogleMapsComponent_Plain } from './yoga-google-maps-component'; import { YogaSubscribeNowComponent_Plain } from './yoga-subscribe-now-component'; import { YogaFooter_Plain } from './yoga-footer'; import { YogaCommon_Plain } from './yoga-common'; import { AdminPanelRelationPropertyModification } from '../common/AdminPanelRelationPropertyModification'; export interface ContactPage { id: number; attributes: { createdAt: Date; updatedAt: Date; publishedAt?: Date; header?: string; description?: string; contactUs?: { data: YogaContactUs }; google_maps?: { data: YogaGoogleMapsComponent }; subscribe?: { data: YogaSubscribeNowComponent }; footer?: { data: YogaFooter }; common?: { data: YogaCommon }; }; } export interface ContactPage_Plain { id: number; createdAt: Date; updatedAt: Date; publishedAt?: Date; header?: string; description?: string; contactUs?: YogaContactUs_Plain; google_maps?: YogaGoogleMapsComponent_Plain; subscribe?: YogaSubscribeNowComponent_Plain; footer?: YogaFooter_Plain; common?: YogaCommon_Plain; } export interface ContactPage_NoRelations { id: number; createdAt: Date; updatedAt: Date; publishedAt?: Date; header?: string; description?: string; contactUs?: number; google_maps?: number; subscribe?: number; footer?: number; common?: number; } export interface ContactPage_AdminPanelLifeCycle { id: number; createdAt: Date; updatedAt: Date; publishedAt?: Date; header?: string; description?: string; contactUs?: AdminPanelRelationPropertyModification; google_maps?: AdminPanelRelationPropertyModification; subscribe?: AdminPanelRelationPropertyModification; footer?: AdminPanelRelationPropertyModification; common?: AdminPanelRelationPropertyModification; }