@shortcut/client
    Preparing search index...

    Interface Doc

    interface Doc {
        app_url: string;
        archived: boolean;
        content_html?: null | string;
        content_markdown?: null | string;
        created_at: string;
        id: string;
        title?: null | string;
        updated_at: string;
    }
    Index

    Properties

    app_url: string

    The Shortcut application url for the Doc

    archived: boolean

    Whether the Doc is archived

    content_html?: null | string

    The Doc's content in HTML format (as stored in S3). Only included when include_html=true query parameter is provided.

    content_markdown?: null | string

    The Doc's content in Markdown format (converted from HTML storage).

    created_at: string

    The time/date the Doc was created

    date-time

    id: string

    The public id of the Doc

    uuid

    title?: null | string

    The Doc's title

    updated_at: string

    The time/date the Doc was last updated

    date-time