@shortcut/client
    Preparing search index...

    Interface File

    interface File {
        content_type?: string;
        created_at?: string;
        description?: string;
        entity_type?: "file";
        external_id?: string | null;
        id?: number;
        mentioned_members?: NestedMemberSlimList;
        mentioned_teams?: NestedTeamSlimList;
        name?: string;
        size?: number;
        stories?: NestedStorySlimList;
        thumbnail_url?: string | null;
        updated_at?: string;
        uploader?: MemberSlim;
        uri?: string;
        url?: string;
    }
    Index

    Properties

    content_type?: string

    The content type of the File.

    created_at?: string

    The time/date the File was created.

    date-time

    description?: string

    The description of the File.

    entity_type?: "file"

    The type of this entity.

    external_id?: string | null

    This field can be set to another unique ID. In the case that the File has been imported from another tool, the ID in the other tool can be indicated here.

    id?: number

    The unique ID for the File.

    int64

    mentioned_members?: NestedMemberSlimList

    The Members who followers of the Doc.

    mentioned_teams?: NestedTeamSlimList

    A list of Teams that this Member belongs to.

    name?: string

    The name of the File.

    size?: number

    The size of the File in bytes.

    int64

    A list of Stories associated with this Project.

    thumbnail_url?: string | null

    The URL of the thumbnail for the File.

    2048

    ^https?://.+$

    updated_at?: string

    The time/date the File was last updated.

    date-time

    uploader?: MemberSlim

    The Member who created the Doc.

    uri?: string

    A resolvable URI for the entity that will return the full representation.

    2048

    ^https?://.+$

    url?: string

    The URL for the File.

    2048

    ^https?://.+$