yogastic/yoga-cms/generated-strapi-interfaces/api/yoga-our-services-component.ts
2025-01-19 21:57:33 +01:00

51 lines
1.6 KiB
TypeScript

// Interface automatically generated by schemas-to-ts
import { YogaSingleService } from './yoga-single-service';
import { YogaSingleService_Plain } from './yoga-single-service';
import { AdminPanelRelationPropertyModification } from '../common/AdminPanelRelationPropertyModification';
export interface YogaOurServicesComponent {
id: number;
attributes: {
createdAt: Date; updatedAt: Date; publishedAt?: Date; title?: string;
header?: string;
description?: string;
services: { data: YogaSingleService[] };
name?: string;
locale: string;
localizations?: { data: YogaOurServicesComponent[] };
};
}
export interface YogaOurServicesComponent_Plain {
id: number;
createdAt: Date; updatedAt: Date; publishedAt?: Date; title?: string;
header?: string;
description?: string;
services: YogaSingleService_Plain[];
name?: string;
locale: string;
localizations?: YogaOurServicesComponent_Plain[];
}
export interface YogaOurServicesComponent_NoRelations {
id: number;
createdAt: Date; updatedAt: Date; publishedAt?: Date; title?: string;
header?: string;
description?: string;
services: number[];
name?: string;
locale: string;
localizations?: YogaOurServicesComponent[];
}
export interface YogaOurServicesComponent_AdminPanelLifeCycle {
id: number;
createdAt: Date; updatedAt: Date; publishedAt?: Date; title?: string;
header?: string;
description?: string;
services: AdminPanelRelationPropertyModification<YogaSingleService_Plain>;
name?: string;
locale: string;
localizations?: YogaOurServicesComponent[];
}