yogastic/yoga-cms/generated-strapi-interfaces/api/yoga-faq-component.ts
Schneider Roland 3e3dbed6e6 add faq page
2025-01-31 21:42:52 +01:00

39 lines
1.2 KiB
TypeScript

// Interface automatically generated by schemas-to-ts
import { YogaFaqQa } from './yoga-faq-qa';
import { YogaFaqQa_Plain } from './yoga-faq-qa';
import { AdminPanelRelationPropertyModification } from '../common/AdminPanelRelationPropertyModification';
export interface YogaFaqComponent {
id: number;
attributes: {
createdAt: Date; updatedAt: Date; publishedAt?: Date; title?: string;
header?: string;
description?: string;
questionsAndAnswers: { data: YogaFaqQa[] };
};
}
export interface YogaFaqComponent_Plain {
id: number;
createdAt: Date; updatedAt: Date; publishedAt?: Date; title?: string;
header?: string;
description?: string;
questionsAndAnswers: YogaFaqQa_Plain[];
}
export interface YogaFaqComponent_NoRelations {
id: number;
createdAt: Date; updatedAt: Date; publishedAt?: Date; title?: string;
header?: string;
description?: string;
questionsAndAnswers: number[];
}
export interface YogaFaqComponent_AdminPanelLifeCycle {
id: number;
createdAt: Date; updatedAt: Date; publishedAt?: Date; title?: string;
header?: string;
description?: string;
questionsAndAnswers: AdminPanelRelationPropertyModification<YogaFaqQa_Plain>;
}