import { BannerTypes } from "../components/banners/Banner";
export interface BannerEntity {
    id: number;
    uniqueIdentifier?: string | number;
    type: BannerTypes;
    title: string;
    description: string;
    date: string;
    schedule?: string;
    startDate?: string;
    endDate?: string;
    category?: string;
    imageUrl?: string;
    isFav?: boolean;
    likedByCurrentUser?: boolean;
    Nlikes?: number;
    showComments: boolean;
    Ncomments?: number;
    hasVideo?: boolean;
    showVideo?: boolean;
    urlVideo?: string;
    showText?: boolean;
    location?: string;
    relatedPeople?: any[];
    absoluteUrl?: string;
    vacancyInfo?: {
        ubication: string;
        reference: string;
        publishedDate: string;
        availablePositions: string;
        deadlineDate?: string;
    };
    auxiliarObject?: any;
    addToMyCalendarTranslated?: string;
    cancelSubscriptionTranslated?: string;
    eventSubscriptionTranslated?: string;
}
