Interface LinkedFileInterface

interface LinkedFileInterface {
    contentType: string;
    createdAt: Date;
    description: string;
    entityType: string;
    groupMentionIds: string[];
    id: number;
    memberMentionIds: string[];
    name: string;
    size: null | number;
    storyIds: number[];
    thumbnailUrl: null | string;
    type: string;
    updatedAt: Date;
    url: string;
}

Hierarchy

  • default
    • LinkedFileInterface

Implemented by

Properties

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