35 lines
1.0 KiB
TypeScript
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;
|
|
}
|