@shortcut/client
    Preparing search index...

    Interface LinkedFile

    Linked files are stored on a third-party website and linked to one or more Stories. Shortcut currently supports linking files from Google Drive, Dropbox, Box, and by URL.

    interface LinkedFile {
        content_type?: null | string;
        created_at: string;
        description?: null | string;
        entity_type: string;
        group_mention_ids: string[];
        id: number;
        member_mention_ids: string[];
        mention_ids: string[];
        name: string;
        size?: null | number;
        story_ids: number[];
        thumbnail_url?: null | string;
        type: string;
        updated_at: string;
        uploader_id: string;
        url: string;
    }
    Index

    Properties

    content_type?: null | string

    The content type of the image (e.g. txt/plain).

    created_at: string

    The time/date the LinkedFile was created.

    date-time

    description?: null | string

    The description of the file.

    entity_type: string

    A string description of this resource.

    group_mention_ids: string[]

    The groups that are mentioned in the description of the file.

    id: number

    The unique identifier for the file.

    int64

    member_mention_ids: string[]

    The members that are mentioned in the description of the file.

    mention_ids: string[]

    Deprecated: use member_mention_ids.

    name: string

    The name of the linked file.

    size?: null | number

    The filesize, if the integration provided it.

    int64

    story_ids

    story_ids: number[]

    The IDs of the stories this file is attached to.

    thumbnail_url?: null | string

    The URL of the file thumbnail, if the integration provided it.

    type: string

    The integration type (e.g. google, dropbox, box).

    updated_at: string

    The time/date the LinkedFile was updated.

    date-time

    uploader_id: string

    The UUID of the member that uploaded the file.

    uuid

    url: string

    The URL of the file.