import { AnyObject } from '@loopback/repository'; import { ExternalIdentifierEnabledEntity, UserModifiableEntity } from '@sourceloop/core'; import { Event } from './event.model'; export declare class Attachment extends UserModifiableEntity implements ExternalIdentifierEnabledEntity { id?: string; fileUrl: string; iconLink?: string; mimeType?: string; title?: string; eventId: string; extId?: string; extMetadata?: AnyObject; } export interface AttachmentRelations { event?: Event; } export type AttachmentWithRelations = Attachment & AttachmentRelations;