43 lines
1.3 KiB
TypeScript
43 lines
1.3 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 YogaSubscribeNowComponent {
|
|
id: number;
|
|
attributes: {
|
|
createdAt: Date; updatedAt: Date; publishedAt?: Date; title?: string;
|
|
header?: string;
|
|
placeHolderEmail?: string;
|
|
buttonSubscribeLabel?: string;
|
|
image?: { data: Media };
|
|
};
|
|
}
|
|
export interface YogaSubscribeNowComponent_Plain {
|
|
id: number;
|
|
createdAt: Date; updatedAt: Date; publishedAt?: Date; title?: string;
|
|
header?: string;
|
|
placeHolderEmail?: string;
|
|
buttonSubscribeLabel?: string;
|
|
image?: Media_Plain;
|
|
}
|
|
|
|
export interface YogaSubscribeNowComponent_NoRelations {
|
|
id: number;
|
|
createdAt: Date; updatedAt: Date; publishedAt?: Date; title?: string;
|
|
header?: string;
|
|
placeHolderEmail?: string;
|
|
buttonSubscribeLabel?: string;
|
|
image?: number;
|
|
}
|
|
|
|
export interface YogaSubscribeNowComponent_AdminPanelLifeCycle {
|
|
id: number;
|
|
createdAt: Date; updatedAt: Date; publishedAt?: Date; title?: string;
|
|
header?: string;
|
|
placeHolderEmail?: string;
|
|
buttonSubscribeLabel?: string;
|
|
image?: AdminPanelRelationPropertyModification<Media_Plain>;
|
|
}
|