masto
    Preparing search index...

    Interface ListLinkTimelineParams

    interface ListLinkTimelineParams {
        limit?: number | null;
        local?: boolean | null;
        maxId?: string | null;
        minId?: string | null;
        onlyMedia?: boolean | null;
        remote?: boolean | null;
        sinceId?: string | null;
        url: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    limit?: number | null

    Maximum number of results to return per page. Defaults to 40. NOTE: Pagination is done with the Link header from the response.

    local?: boolean | null

    Show only local statuses? Defaults to false.

    maxId?: string | null

    Return results older than this ID.

    minId?: string | null

    Get a list of items with ID greater than this value excluding this ID

    onlyMedia?: boolean | null

    Show only statuses with media attached? Defaults to false.

    remote?: boolean | null

    Remote only

    sinceId?: string | null

    Return results newer than this ID.

    url: string

    The URL of the trending article.