47 lines
1.4 KiB
TypeScript
47 lines
1.4 KiB
TypeScript
// Interface automatically generated by schemas-to-ts
|
|
|
|
import { YogaPrice } from './yoga-price';
|
|
import { YogaPrice_Plain } from './yoga-price';
|
|
import { AdminPanelRelationPropertyModification } from '../common/AdminPanelRelationPropertyModification';
|
|
|
|
export interface YogaPriceComponent {
|
|
id: number;
|
|
attributes: {
|
|
createdAt: Date; updatedAt: Date; publishedAt?: Date; title?: string;
|
|
header?: string;
|
|
description?: string;
|
|
prices: { data: YogaPrice[] };
|
|
locale: string;
|
|
localizations?: { data: YogaPriceComponent[] };
|
|
};
|
|
}
|
|
export interface YogaPriceComponent_Plain {
|
|
id: number;
|
|
createdAt: Date; updatedAt: Date; publishedAt?: Date; title?: string;
|
|
header?: string;
|
|
description?: string;
|
|
prices: YogaPrice_Plain[];
|
|
locale: string;
|
|
localizations?: YogaPriceComponent_Plain[];
|
|
}
|
|
|
|
export interface YogaPriceComponent_NoRelations {
|
|
id: number;
|
|
createdAt: Date; updatedAt: Date; publishedAt?: Date; title?: string;
|
|
header?: string;
|
|
description?: string;
|
|
prices: number[];
|
|
locale: string;
|
|
localizations?: YogaPriceComponent[];
|
|
}
|
|
|
|
export interface YogaPriceComponent_AdminPanelLifeCycle {
|
|
id: number;
|
|
createdAt: Date; updatedAt: Date; publishedAt?: Date; title?: string;
|
|
header?: string;
|
|
description?: string;
|
|
prices: AdminPanelRelationPropertyModification<YogaPrice_Plain>;
|
|
locale: string;
|
|
localizations?: YogaPriceComponent[];
|
|
}
|