39 lines
1.2 KiB
TypeScript
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>;
|
|
}
|