Interface UploadedFileInterface

interface UploadedFileInterface {
    contentType: string;
    createdAt: Date;
    description: null | string;
    entityType: string;
    externalId: null | string;
    filename: string;
    groupMentionIds: string[];
    id: number;
    memberMentionIds: string[];
    name: string;
    size: number;
    storyIds: number[];
    thumbnailUrl: null | string;
    updatedAt: null | Date;
    uploaderId: string;
}

Hierarchy

  • default
    • UploadedFileInterface

Implemented by

Properties

contentType: string
createdAt: Date
description: null | string
entityType: string
externalId: null | string
filename: string
groupMentionIds: string[]
id: number
memberMentionIds: string[]
name: string
size: number
storyIds: number[]
thumbnailUrl: null | string
updatedAt: null | Date
uploaderId: string