yogastic/yoga-cms/generated-strapi-interfaces/api/yoga-achivement.ts
2025-01-26 11:06:15 +01:00

35 lines
1.0 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 YogaAchivement {
id: number;
attributes: {
createdAt: Date; updatedAt: Date; publishedAt?: Date; title?: string;
image?: { data: Media };
name?: string;
};
}
export interface YogaAchivement_Plain {
id: number;
createdAt: Date; updatedAt: Date; publishedAt?: Date; title?: string;
image?: Media_Plain;
name?: string;
}
export interface YogaAchivement_NoRelations {
id: number;
createdAt: Date; updatedAt: Date; publishedAt?: Date; title?: string;
image?: number;
name?: string;
}
export interface YogaAchivement_AdminPanelLifeCycle {
id: number;
createdAt: Date; updatedAt: Date; publishedAt?: Date; title?: string;
image?: AdminPanelRelationPropertyModification<Media_Plain>;
name?: string;
}