// Interface automatically generated by schemas-to-ts import { YogaPriceComponent } from './yoga-price-component'; import { YogaDiscountComponent } from './yoga-discount-component'; import { YogaBlogPostsComponent } from './yoga-blog-posts-component'; import { YogaSubscribeNowComponent } from './yoga-subscribe-now-component'; import { YogaFooter } from './yoga-footer'; import { YogaCommon } from './yoga-common'; import { YogaPriceComponent_Plain } from './yoga-price-component'; import { YogaDiscountComponent_Plain } from './yoga-discount-component'; import { YogaBlogPostsComponent_Plain } from './yoga-blog-posts-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 PricesPage { id: number; attributes: { createdAt: Date; updatedAt: Date; publishedAt?: Date; header?: string; description?: string; price?: { data: YogaPriceComponent }; discount?: { data: YogaDiscountComponent }; blogs?: { data: YogaBlogPostsComponent }; subscribe?: { data: YogaSubscribeNowComponent }; footer?: { data: YogaFooter }; common?: { data: YogaCommon }; }; } export interface PricesPage_Plain { id: number; createdAt: Date; updatedAt: Date; publishedAt?: Date; header?: string; description?: string; price?: YogaPriceComponent_Plain; discount?: YogaDiscountComponent_Plain; blogs?: YogaBlogPostsComponent_Plain; subscribe?: YogaSubscribeNowComponent_Plain; footer?: YogaFooter_Plain; common?: YogaCommon_Plain; } export interface PricesPage_NoRelations { id: number; createdAt: Date; updatedAt: Date; publishedAt?: Date; header?: string; description?: string; price?: number; discount?: number; blogs?: number; subscribe?: number; footer?: number; common?: number; } export interface PricesPage_AdminPanelLifeCycle { id: number; createdAt: Date; updatedAt: Date; publishedAt?: Date; header?: string; description?: string; price?: AdminPanelRelationPropertyModification; discount?: AdminPanelRelationPropertyModification; blogs?: AdminPanelRelationPropertyModification; subscribe?: AdminPanelRelationPropertyModification; footer?: AdminPanelRelationPropertyModification; common?: AdminPanelRelationPropertyModification; }