masto
    Preparing search index...

    Interface Collection

    Represents a curated collection of accounts recommended by a user.

    interface Collection {
        accountId: string;
        createdAt: string;
        description: string;
        discoverable: boolean;
        id: string;
        itemCount: number;
        items: CollectionItem[];
        language: string | null;
        local: boolean;
        name: string;
        sensitive: boolean;
        tag: ShallowTag | null;
        updatedAt: string;
        uri: string;
        url: string | null;
    }
    Index

    Properties

    accountId: string

    The id of the account that curates this Collection.

    createdAt: string

    When the Collection was created.

    description: string

    An optional description of the Collection.

    discoverable: boolean

    Whether the Collection should show up on the owner's profile, in search results and recommendations.

    id: string

    The collection id.

    itemCount: number

    The number of items in this Collection.

    The items in this Collection.

    language: string | null

    Primary language of this Collection.

    local: boolean

    Whether the Collection was created on this server or resides on a remote server.

    name: string

    The name of the Collection.

    sensitive: boolean

    Whether the Collection has been marked as including sensitive content.

    tag: ShallowTag | null

    A single hashtag that describes this Collection.

    updatedAt: string

    When the Collection was last updated.

    uri: string

    The Collection's ActivityPub identifier (used for federation).

    url: string | null

    The url of the Collection's HTML page (web interface URL).