59 lines
2.3 KiB
TypeScript
59 lines
2.3 KiB
TypeScript
// 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 { 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 { 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 };
|
|
};
|
|
}
|
|
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;
|
|
}
|
|
|
|
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;
|
|
}
|
|
|
|
export interface PricesPage_AdminPanelLifeCycle {
|
|
id: number;
|
|
createdAt: Date; updatedAt: Date; publishedAt?: Date; header?: string;
|
|
description?: string;
|
|
price?: AdminPanelRelationPropertyModification<YogaPriceComponent_Plain>;
|
|
discount?: AdminPanelRelationPropertyModification<YogaDiscountComponent_Plain>;
|
|
blogs?: AdminPanelRelationPropertyModification<YogaBlogPostsComponent_Plain>;
|
|
subscribe?: AdminPanelRelationPropertyModification<YogaSubscribeNowComponent_Plain>;
|
|
footer?: AdminPanelRelationPropertyModification<YogaFooter_Plain>;
|
|
}
|