masto
    Preparing search index...

    Interface CreateCollectionParams

    interface CreateCollectionParams {
        accountIds?: readonly string[] | null;
        description?: string | null;
        discoverable?: boolean | null;
        language?: string | null;
        name: string;
        sensitive?: boolean | null;
        tagName?: string | null;
    }
    Index
    accountIds?: readonly string[] | null

    Account IDs to initially feature in this Collection.

    description?: string | null

    An optional description of the Collection. Max 100 characters.

    discoverable?: boolean | null

    Whether the Collection should show up in search results and recommendations.

    language?: string | null

    Primary language of this Collection as an ISO 639-1 two-letter code.

    name: string

    The name of the Collection. Max 40 characters.

    sensitive?: boolean | null

    Whether the Collection should be marked as including sensitive content.

    tagName?: string | null

    A hashtag to associate with this Collection, without the # sign.