63 lines
1.7 KiB
TypeScript
63 lines
1.7 KiB
TypeScript
// Interface automatically generated by schemas-to-ts
|
|
|
|
import { Media } from '../components/shared/Media';
|
|
import { Media_Plain } from '../components/shared/Media';
|
|
import { AdminPanelRelationPropertyModification } from '../common/AdminPanelRelationPropertyModification';
|
|
|
|
export interface YogaAboutUsComponent {
|
|
id: number;
|
|
attributes: {
|
|
createdAt: Date; updatedAt: Date; publishedAt?: Date; title?: string;
|
|
header?: string;
|
|
description?: string;
|
|
content?: string;
|
|
buttonText?: string;
|
|
image?: { data: Media };
|
|
name?: string;
|
|
buttonLink?: string;
|
|
locale: string;
|
|
localizations?: { data: YogaAboutUsComponent[] };
|
|
};
|
|
}
|
|
export interface YogaAboutUsComponent_Plain {
|
|
id: number;
|
|
createdAt: Date; updatedAt: Date; publishedAt?: Date; title?: string;
|
|
header?: string;
|
|
description?: string;
|
|
content?: string;
|
|
buttonText?: string;
|
|
image?: Media_Plain;
|
|
name?: string;
|
|
buttonLink?: string;
|
|
locale: string;
|
|
localizations?: YogaAboutUsComponent_Plain[];
|
|
}
|
|
|
|
export interface YogaAboutUsComponent_NoRelations {
|
|
id: number;
|
|
createdAt: Date; updatedAt: Date; publishedAt?: Date; title?: string;
|
|
header?: string;
|
|
description?: string;
|
|
content?: string;
|
|
buttonText?: string;
|
|
image?: number;
|
|
name?: string;
|
|
buttonLink?: string;
|
|
locale: string;
|
|
localizations?: YogaAboutUsComponent[];
|
|
}
|
|
|
|
export interface YogaAboutUsComponent_AdminPanelLifeCycle {
|
|
id: number;
|
|
createdAt: Date; updatedAt: Date; publishedAt?: Date; title?: string;
|
|
header?: string;
|
|
description?: string;
|
|
content?: string;
|
|
buttonText?: string;
|
|
image?: AdminPanelRelationPropertyModification<Media_Plain>;
|
|
name?: string;
|
|
buttonLink?: string;
|
|
locale: string;
|
|
localizations?: YogaAboutUsComponent[];
|
|
}
|