The tooter Reference Manual

This is the tooter Reference Manual, version 1.0.0, generated automatically by Declt version 4.0 beta 2 "William Riker" on Mon Feb 26 18:05:57 2024 GMT+0.

Table of Contents


1 Introduction


2 Systems

The main system appears first, followed by any subsystem dependency.


2.1 tooter

A client library for Mastodon instances.

Maintainer

Yukari Hafner <>

Author

Yukari Hafner <>

Home Page

https://github.com/Shinmera/tooter

License

zlib

Version

1.0.0

Dependencies
  • com.inuoe.jzon (system).
  • cl-ppcre (system).
  • drakma (system).
  • documentation-utils (system).
Source

tooter.asd.

Child Components

3 Files

Files are sorted by type and then listed depth-first from the systems components trees.


3.1 Lisp


3.1.1 tooter/tooter.asd

Source

tooter.asd.

Parent Component

tooter (system).

ASDF Systems

tooter.


3.1.2 tooter/package.lisp

Source

tooter.asd.

Parent Component

tooter (system).

Packages

3.1.3 tooter/toolkit.lisp

Dependency

package.lisp (file).

Source

tooter.asd.

Parent Component

tooter (system).

Public Interface
Internals

3.1.4 tooter/client.lisp

Dependency

toolkit.lisp (file).

Source

tooter.asd.

Parent Component

tooter (system).

Public Interface
Internals

3.1.5 tooter/objects.lisp

Dependency

client.lisp (file).

Source

tooter.asd.

Parent Component

tooter (system).

Public Interface
Internals

3.1.6 tooter/queries.lisp

Dependency

objects.lisp (file).

Source

tooter.asd.

Parent Component

tooter (system).

Public Interface
Internals

3.1.7 tooter/documentation.lisp

Dependency

queries.lisp (file).

Source

tooter.asd.

Parent Component

tooter (system).


4 Packages

Packages are listed by definition order.


4.1 tooter-queries

Source

package.lisp.

Nickname

org.shirakumo.tooter.queries

Use List

tooter-objects.

Used By List

tooter.

Public Interface

4.2 tooter-client

Source

package.lisp.

Nickname

org.shirakumo.tooter.client

Use List

tooter-objects.

Used By List

tooter.

Public Interface

4.3 tooter-objects

Source

package.lisp.

Nickname

org.shirakumo.tooter.objects

Used By List
Public Interface

4.4 tooter

Source

package.lisp.

Nickname

org.shirakumo.tooter

Use List
Internals

5 Definitions

Definitions are sorted by export status, category, package, and then by lexicographic order.


5.1 Public Interface


5.1.1 Macros

Macro: define-entity (name &body slots)

Define a mapping between a serialized JSON entity and a CLOS class

Use this macro to define a subclass of ENTITY that can be decoded by decode-entity.

The definitions of an entity is shown below:

(define-entity name slots+)

name := the name of the entity
slot := (slot-name field? nullable? translate?)
slot-name := the name of a slot of this entity, usually match a field of the JSON or another entity
field := :field field-name
field-name := a string representing the name of the field (in the JSON object) that should be mapped to the name of the entity indicated by slot-name nullable := :nullable nullable-value
nullable-value := if non nil indicates that this field is optional in the JSON object
translate := :translate-with translation-function
translation-function := a function object to translate the field in the JSON representation to lisp

example:

(define-entity field
(name)
(value)
(verified-at :field "verified_at" :translate-with #’convert-timestamp :nullable T))

Package

tooter-objects.

Source

objects.lisp.


5.1.2 Ordinary functions

Function: coerce-boolean (boolean provided)

Converts BOOLEAN to javascript representation, The argument parameter is useful when optional function argument is used like (defun (&optional (delete NIL delete-provided-p)))

Package

tooter-client.

Source

toolkit.lisp.

Function: convert-timestamp (stamp)

Converts STAMP (an integer or string representation of a timestamp into universal timestamp format.

See UNIVERSAL->UTC-TIMESTRING

Package

tooter-client.

Source

toolkit.lisp.

Function: plain-format-html (string)

Attempts to remove all HTML tags and translate the entities into standard characters.

The exception is <br /> tags, which are turned into Linefeeds.
This function is useful for plaintext formatting of status content.

Package

tooter-client.

Source

toolkit.lisp.

Function: request (uri &key parameters headers method content-type)

Perform a request against an API.

This is a wrapper around the underlying HTTP client, performing automated error handling and data payload parsing.

In case the request returns with an HTTP return code other than 200, an error of type REQUEST-FAILED is signalled.

See REQUEST-FAILED

Package

tooter-client.

Source

client.lisp.

Function: to-keyword (thing)

Converts THING to a lisp keyword

Package

tooter-client.

Source

toolkit.lisp.

Function: universal->utc-timestring (universal)

Converts the output of CL:GET-UNIVERSAL-TIME to a string
representation in ISO8601 format. The string represents the time at UTC timezone.

Package

tooter-client.

Source

toolkit.lisp.


5.1.3 Generic functions

Generic Function: accept-request (client id)

Accept the follow request of the given account.

See ACCOUNT
See CLIENT

Package

tooter-queries.

Methods
Method: accept-request ((client client) (account account))
Source

queries.lisp.

Method: accept-request ((client client) (id string))
Source

queries.lisp.

Generic Reader: access-token (object)

Returns the oauth access token.

See TOKEN

Package

tooter-objects.

Methods
Reader Method: access-token ((token token))

automatically generated reader method

Source

objects.lisp.

Target Slot

access-token.

Reader Method: access-token ((client client))

automatically generated reader method

Source

client.lisp.

Target Slot

access-token.

Generic Writer: (setf access-token) (object)
Package

tooter-objects.

Methods
Writer Method: (setf access-token) ((token token))

automatically generated writer method

Source

objects.lisp.

Target Slot

access-token.

Writer Method: (setf access-token) ((client client))

automatically generated writer method

Source

client.lisp.

Target Slot

access-token.

Generic Reader: account (object)

Accessor to the account the client is authorised as.

When reading, it will automatically try to fetch the account if it is not yet known. Any operation (verify-credentials, update-credentials) that returns your own user account will update this field automatically.

See CLIENT

Package

tooter-objects.

Methods
Reader Method: account ((status status))

automatically generated reader method

Source

objects.lisp.

Target Slot

account.

Reader Method: account ((notification notification))

automatically generated reader method

Source

objects.lisp.

Target Slot

account.

Reader Method: account ((client client))
Source

client.lisp.

Target Slot

account.

Generic Writer: (setf account) (object)
Package

tooter-objects.

Methods
Writer Method: (setf account) ((status status))

automatically generated writer method

Source

objects.lisp.

Target Slot

account.

Writer Method: (setf account) ((notification notification))

automatically generated writer method

Source

objects.lisp.

Target Slot

account.

Writer Method: (setf account) ((client client))

automatically generated writer method

Source

client.lisp.

Target Slot

account.

Generic Reader: account-count (object)

Returns the number of accounts that made use of the hashtag on that day.

See TAG-HISTORY

Package

tooter-objects.

Methods
Reader Method: account-count ((tag-history tag-history))

automatically generated reader method

Source

objects.lisp.

Target Slot

account-count.

Generic Writer: (setf account-count) (object)
Package

tooter-objects.

Methods
Writer Method: (setf account-count) ((tag-history tag-history))

automatically generated writer method

Source

objects.lisp.

Target Slot

account-count.

Generic Function: account-directory (client)

Returns the list of accounts in the public directory .

See CLIENT
See ACCOUNT

Package

tooter-queries.

Methods
Method: account-directory ((client client))
Source

queries.lisp.

Generic Reader: account-name (object)

Returns representative name of the account.

This includes the instance’s suffix if the account resides on a remote instance. Otherwise this is equal to the username.

See ACCOUNT
See MENTION

Package

tooter-objects.

Methods
Reader Method: account-name ((mention mention))

automatically generated reader method

Source

objects.lisp.

Target Slot

account-name.

Reader Method: account-name ((announcement-account announcement-account))

automatically generated reader method

Source

objects.lisp.

Target Slot

account-name.

Reader Method: account-name ((account account))

automatically generated reader method

Source

objects.lisp.

Target Slot

account-name.

Generic Writer: (setf account-name) (object)
Package

tooter-objects.

Methods
Writer Method: (setf account-name) ((mention mention))

automatically generated writer method

Source

objects.lisp.

Target Slot

account-name.

Writer Method: (setf account-name) ((announcement-account announcement-account))

automatically generated writer method

Source

objects.lisp.

Target Slot

account-name.

Writer Method: (setf account-name) ((account account))

automatically generated writer method

Source

objects.lisp.

Target Slot

account-name.

Generic Reader: accounts (object)
Package

tooter-objects.

Methods
Reader Method: accounts ((conversation conversation))

automatically generated reader method

Source

objects.lisp.

Target Slot

accounts.

Generic Writer: (setf accounts) (object)
Package

tooter-objects.

Methods
Writer Method: (setf accounts) ((conversation conversation))

automatically generated writer method

Source

objects.lisp.

Target Slot

accounts.

Generic Reader: action-taken (object)

Returns what kind of action was taken in response to the report.

See REPORT

Package

tooter-objects.

Methods
Reader Method: action-taken ((report report))

automatically generated reader method

Source

objects.lisp.

Target Slot

action-taken.

Generic Writer: (setf action-taken) (object)
Package

tooter-objects.

Methods
Writer Method: (setf action-taken) ((report report))

automatically generated writer method

Source

objects.lisp.

Target Slot

action-taken.

Generic Function: add-reaction-announcement (client id name)

Add a reaction to an announcement

See ANNOUNCEMENT
The argument should be seen as follows:
ID — the ID
NAME – The name of the emoji (unicode, shortcode or URL)

Package

tooter-queries.

Methods
Method: add-reaction-announcement ((client client) (id string) (name string))
Source

queries.lisp.

Generic Function: add-user-list-accounts (client id accounts)

Add new accounts to the user-list.

The list can be either a USER-LIST instance, or an ID of one. The accounts in the list can be either account instances, or IDs of accounts.

See ACCOUNT
See CLIENT
See USER-LIST

Package

tooter-queries.

Methods
Method: add-user-list-accounts ((client client) (user-list user-list) accounts)
Source

queries.lisp.

Method: add-user-list-accounts ((client client) (id string) accounts)
Source

queries.lisp.

Generic Reader: alert-favourite (object)

Returns if get an alert when someone favourite a status posted by the user.

See PUSH-SUBSCRIPTION-ALERTS.

Package

tooter-objects.

Methods
Reader Method: alert-favourite ((push-subscription-alerts push-subscription-alerts))

automatically generated reader method

Source

objects.lisp.

Target Slot

alert-favourite.

Generic Writer: (setf alert-favourite) (object)
Package

tooter-objects.

Methods
Writer Method: (setf alert-favourite) ((push-subscription-alerts push-subscription-alerts))

automatically generated writer method

Source

objects.lisp.

Target Slot

alert-favourite.

Generic Reader: alert-follow (object)

Returns if get an alert when someone follows the user.

See PUSH-SUBSCRIPTION-ALERTS.

Package

tooter-objects.

Methods
Reader Method: alert-follow ((push-subscription-alerts push-subscription-alerts))

automatically generated reader method

Source

objects.lisp.

Target Slot

alert-follow.

Generic Writer: (setf alert-follow) (object)
Package

tooter-objects.

Methods
Writer Method: (setf alert-follow) ((push-subscription-alerts push-subscription-alerts))

automatically generated writer method

Source

objects.lisp.

Target Slot

alert-follow.

Generic Reader: alert-mention (object)

Returns if get an alert when someone mentioned the user.

See PUSH-SUBSCRIPTION-ALERTS.

Package

tooter-objects.

Methods
Reader Method: alert-mention ((push-subscription-alerts push-subscription-alerts))

automatically generated reader method

Source

objects.lisp.

Target Slot

alert-mention.

Generic Writer: (setf alert-mention) (object)
Package

tooter-objects.

Methods
Writer Method: (setf alert-mention) ((push-subscription-alerts push-subscription-alerts))

automatically generated writer method

Source

objects.lisp.

Target Slot

alert-mention.

Generic Reader: alert-poll (object)

Returns if get an alert when a poll the user voted or created has expired.

See POLL
See PUSH-SUBSCRIPTION-ALERTS.

Package

tooter-objects.

Methods
Reader Method: alert-poll ((push-subscription-alerts push-subscription-alerts))

automatically generated reader method

Source

objects.lisp.

Target Slot

alert-poll.

Generic Writer: (setf alert-poll) (object)
Package

tooter-objects.

Methods
Writer Method: (setf alert-poll) ((push-subscription-alerts push-subscription-alerts))

automatically generated writer method

Source

objects.lisp.

Target Slot

alert-poll.

Generic Reader: alert-reblog (object)

Returns if get an alert when someone boosted a status posted by the user.

See PUSH-SUBSCRIPTION-ALERTS.

Package

tooter-objects.

Methods
Reader Method: alert-reblog ((push-subscription-alerts push-subscription-alerts))

automatically generated reader method

Source

objects.lisp.

Target Slot

alert-reblog.

Generic Writer: (setf alert-reblog) (object)
Package

tooter-objects.

Methods
Writer Method: (setf alert-reblog) ((push-subscription-alerts push-subscription-alerts))

automatically generated writer method

Source

objects.lisp.

Target Slot

alert-reblog.

Generic Reader: alerts (object)

What kinds of alerts push notifications are being sent out for... I think.

See PUSH-SUBSCRIPTION

Package

tooter-objects.

Methods
Reader Method: alerts ((push-subscription push-subscription))

automatically generated reader method

Source

objects.lisp.

Target Slot

alerts.

Generic Writer: (setf alerts) (object)
Package

tooter-objects.

Methods
Writer Method: (setf alerts) ((push-subscription push-subscription))

automatically generated writer method

Source

objects.lisp.

Target Slot

alerts.

Generic Reader: all-day (object)

Returns if this announcement starts or ends on date, not daytime.

See ANNOUNCEMENT

Package

tooter-objects.

Methods
Reader Method: all-day ((announcement announcement))

automatically generated reader method

Source

objects.lisp.

Target Slot

all-day.

Generic Writer: (setf all-day) (object)
Package

tooter-objects.

Methods
Writer Method: (setf all-day) ((announcement announcement))

automatically generated writer method

Source

objects.lisp.

Target Slot

all-day.

Generic Reader: ancestors (object)

Returns the list of ancestor status instances in the context chain.

See CONTEXT

Package

tooter-objects.

Methods
Reader Method: ancestors ((context context))

automatically generated reader method

Source

objects.lisp.

Target Slot

ancestors.

Generic Writer: (setf ancestors) (object)
Package

tooter-objects.

Methods
Writer Method: (setf ancestors) ((context context))

automatically generated writer method

Source

objects.lisp.

Target Slot

ancestors.

Generic Reader: application (object)

Returns the application with which this status was made.

See STATUS
See APPLICATION

Package

tooter-objects.

Methods
Reader Method: application ((status status))

automatically generated reader method

Source

objects.lisp.

Target Slot

application.

Generic Writer: (setf application) (object)
Package

tooter-objects.

Methods
Writer Method: (setf application) ((status status))

automatically generated writer method

Source

objects.lisp.

Target Slot

application.

Generic Reader: application-id (object)

WIP

See status-params

Package

tooter-objects.

Methods
Reader Method: application-id ((status-params status-params))

automatically generated reader method

Source

objects.lisp.

Target Slot

application-id.

Generic Writer: (setf application-id) (object)
Package

tooter-objects.

Methods
Writer Method: (setf application-id) ((status-params status-params))

automatically generated writer method

Source

objects.lisp.

Target Slot

application-id.

Generic Reader: approval-required (object)

Returns if approval from moderator is required to register to this instance.

See INSTANCE

Package

tooter-objects.

Methods
Reader Method: approval-required ((instance instance))

automatically generated reader method

Source

objects.lisp.

Target Slot

approval-required.

Generic Writer: (setf approval-required) (object)
Package

tooter-objects.

Methods
Writer Method: (setf approval-required) ((instance instance))

automatically generated writer method

Source

objects.lisp.

Target Slot

approval-required.

Generic Reader: aspect (object)

Returns the aspect ratio of the image.

See IMAGE-METADATA

Package

tooter-objects.

Methods
Reader Method: aspect ((image-metadata image-metadata))

automatically generated reader method

Source

objects.lisp.

Target Slot

aspect.

Generic Writer: (setf aspect) (object)
Package

tooter-objects.

Methods
Writer Method: (setf aspect) ((image-metadata image-metadata))

automatically generated writer method

Source

objects.lisp.

Target Slot

aspect.

Generic Reader: audio-bitrate (object)

Returns the audio bitrate.

See AUDIO-METADATA

Package

tooter-objects.

Methods
Reader Method: audio-bitrate ((audio-metadata audio-metadata))

automatically generated reader method

Source

objects.lisp.

Target Slot

audio-bitrate.

Generic Writer: (setf audio-bitrate) (object)
Package

tooter-objects.

Methods
Writer Method: (setf audio-bitrate) ((audio-metadata audio-metadata))

automatically generated writer method

Source

objects.lisp.

Target Slot

audio-bitrate.

Generic Reader: audio-channels (object)

Returns the audio channels.

See AUDIO-METADATA

Package

tooter-objects.

Methods
Reader Method: audio-channels ((audio-metadata audio-metadata))

automatically generated reader method

Source

objects.lisp.

Target Slot

audio-channels.

Generic Writer: (setf audio-channels) (object)
Package

tooter-objects.

Methods
Writer Method: (setf audio-channels) ((audio-metadata audio-metadata))

automatically generated writer method

Source

objects.lisp.

Target Slot

audio-channels.

Generic Reader: audio-encode (object)

Returns the audio encoding (mp3, ogg etch.).

See AUDIO-METADATA

Package

tooter-objects.

Methods
Reader Method: audio-encode ((audio-metadata audio-metadata))

automatically generated reader method

Source

objects.lisp.

Target Slot

audio-encode.

Generic Writer: (setf audio-encode) (object)
Package

tooter-objects.

Methods
Writer Method: (setf audio-encode) ((audio-metadata audio-metadata))

automatically generated writer method

Source

objects.lisp.

Target Slot

audio-encode.

Generic Reader: audio-length (object)

Returns the length (time) of the audio.

See AUDIO-METADATA

Package

tooter-objects.

Methods
Reader Method: audio-length ((audio-metadata audio-metadata))

automatically generated reader method

Source

objects.lisp.

Target Slot

audio-length.

Generic Writer: (setf audio-length) (object)
Package

tooter-objects.

Methods
Writer Method: (setf audio-length) ((audio-metadata audio-metadata))

automatically generated writer method

Source

objects.lisp.

Target Slot

audio-length.

Generic Reader: author-name (object)

Returns the name of the status’ author.

See CARD

Package

tooter-objects.

Methods
Reader Method: author-name ((card card))

automatically generated reader method

Source

objects.lisp.

Target Slot

author-name.

Generic Writer: (setf author-name) (object)
Package

tooter-objects.

Methods
Writer Method: (setf author-name) ((card card))

automatically generated writer method

Source

objects.lisp.

Target Slot

author-name.

Generic Reader: author-url (object)

Returns the URL to the status’ author’s profile.

See CARD

Package

tooter-objects.

Methods
Reader Method: author-url ((card card))

automatically generated reader method

Source

objects.lisp.

Target Slot

author-url.

Generic Writer: (setf author-url) (object)
Package

tooter-objects.

Methods
Writer Method: (setf author-url) ((card card))

automatically generated writer method

Source

objects.lisp.

Target Slot

author-url.

Generic Function: authorize (client &optional authorization-code)

Authorise the client against the Mastodon instance.

This is a two-step process that requires user-interaction. First, call this without an authorisation code. This will return NIL, and an URL as the secondary value. Instruct the user to visit this URL and to authorise the application. If you have set up a redirect, the user will automatically visit the redirect page. Otherwise, the user will be displayed a code. Instruct them to copy the code so that it can be passed to AUTHORIZE somehow. Once AUTHORIZE is called again with an authorisation code, it will attempt to obtain an access token. If successful, it will return the client and the access token. Note that by default the authorisation code is only valid for ten minutes and obtaining an access token after it has expired will result in failure.

A successful completion of the authorisation process will automatically set the access token in the client instance.

If the client does not have the KEY and SECRET set, then this function will automatically call out to REGISTER to obtain them.

See CLIENT
See REGISTER

Package

tooter-client.

Methods
Method: authorize ((client client) &optional authorization-code)
Source

client.lisp.

Generic Reader: avatar (object)

Returns the full URL to the account’s avatar image.

This may be an animated image.

See ACCOUNT

Package

tooter-objects.

Methods
Reader Method: avatar ((account account))

automatically generated reader method

Source

objects.lisp.

Target Slot

avatar.

Generic Writer: (setf avatar) (object)
Package

tooter-objects.

Methods
Writer Method: (setf avatar) ((account account))

automatically generated writer method

Source

objects.lisp.

Target Slot

avatar.

Generic Reader: avatar-static (object)

Returns the full URL to the account’s static avatar image.

See ACCOUNT

Package

tooter-objects.

Methods
Reader Method: avatar-static ((account account))

automatically generated reader method

Source

objects.lisp.

Target Slot

avatar-static.

Generic Writer: (setf avatar-static) (object)
Package

tooter-objects.

Methods
Writer Method: (setf avatar-static) ((account account))

automatically generated writer method

Source

objects.lisp.

Target Slot

avatar-static.

Generic Reader: base (object)

Accessor to the base URL of the Mastodon instance the client connects to.

Typically this will be something like:

https://mastodon.social
https://mastodon.tymoon.eu
etc.

See CLIENT

Package

tooter-client.

Methods
Reader Method: base ((client client))

automatically generated reader method

Source

client.lisp.

Target Slot

base.

Generic Writer: (setf base) (object)
Package

tooter-client.

Methods
Writer Method: (setf base) ((client client))

automatically generated writer method

Source

client.lisp.

Target Slot

base.

Generic Reader: bitrate (object)

Returns the bitrate of the video in ???.

See VIDEO-METADATA

Package

tooter-objects.

Methods
Reader Method: bitrate ((video-metadata video-metadata))

automatically generated reader method

Source

objects.lisp.

Target Slot

bitrate.

Generic Writer: (setf bitrate) (object)
Package

tooter-objects.

Methods
Writer Method: (setf bitrate) ((video-metadata video-metadata))

automatically generated writer method

Source

objects.lisp.

Target Slot

bitrate.

Generic Function: block (client id)

Block a new account or domain.

The account can be either an account ID, or an ACCOUNT instance. It can also be a string, in which case the corresponding domain is blocked.

Returns the resulting relationship in the case of an account, or T in the case of a domain.

See CLIENT
See ACCOUNT
See RELATIONSHIP

Package

tooter-queries.

Methods
Method: block ((client client) (domain string))
Source

queries.lisp.

Method: block ((client client) (account account))
Source

queries.lisp.

Generic Reader: blocked-by (object)

Returns if this user has blocking you.

See RELATIONSHIP

Package

tooter-objects.

Methods
Reader Method: blocked-by ((relationship relationship))

automatically generated reader method

Source

objects.lisp.

Target Slot

blocked-by.

Generic Writer: (setf blocked-by) (object)
Package

tooter-objects.

Methods
Writer Method: (setf blocked-by) ((relationship relationship))

automatically generated writer method

Source

objects.lisp.

Target Slot

blocked-by.

Generic Function: blocked-domains (client &key max-id since-id limit)

Retrieve a list of blocked domains.

See CLIENT

Package

tooter-queries.

Methods
Method: blocked-domains ((client client) &key max-id since-id limit)
Source

queries.lisp.

Generic Reader: blocking (object)

Returns whether the account is blocked by you.

See RELATIONSHIP

Package

tooter-objects.

Methods
Reader Method: blocking ((relationship relationship))

automatically generated reader method

Source

objects.lisp.

Target Slot

blocking.

Generic Writer: (setf blocking) (object)
Package

tooter-objects.

Methods
Writer Method: (setf blocking) ((relationship relationship))

automatically generated writer method

Source

objects.lisp.

Target Slot

blocking.

Generic Function: blocks (client &key max-id since-id limit)

Retrieve a list of blocked accounts.

See CLIENT
See ACCOUNT

Package

tooter-queries.

Methods
Method: blocks ((client client) &key max-id since-id limit)
Source

queries.lisp.

Generic Reader: blurhash (object)
Package

tooter-objects.

Methods
Reader Method: blurhash ((attachment attachment))

automatically generated reader method

Source

objects.lisp.

Target Slot

blurhash.

Generic Writer: (setf blurhash) (object)
Package

tooter-objects.

Methods
Writer Method: (setf blurhash) ((attachment attachment))

automatically generated writer method

Source

objects.lisp.

Target Slot

blurhash.

Generic Function: bookmark (client id)

Add a STATUS to user’s bookmark.

See CLIENT
See STATUS

Package

tooter-queries.

Methods
Method: bookmark ((client client) (status status))
Source

queries.lisp.

Method: bookmark ((client client) (id string))
Source

queries.lisp.

Generic Reader: bookmarked (object)

Returns whether this status has been bookmarked from the user.

See STATUS

Package

tooter-objects.

Methods
Reader Method: bookmarked ((status status))

automatically generated reader method

Source

objects.lisp.

Target Slot

bookmarked.

Generic Writer: (setf bookmarked) (object)
Package

tooter-objects.

Methods
Writer Method: (setf bookmarked) ((status status))

automatically generated writer method

Source

objects.lisp.

Target Slot

bookmarked.

Generic Function: bookmarks (client &key max-id since-id min-id limit)

Returns a list of STATUS bookmarked by the user.

See CLIENT
See STATUS

Package

tooter-queries.

Methods
Method: bookmarks ((client client) &key max-id since-id min-id limit)
Source

queries.lisp.

Generic Reader: bot (object)

Returns whether the account is a bot.

See ACCOUNT

Package

tooter-objects.

Methods
Reader Method: bot ((account account))

automatically generated reader method

Source

objects.lisp.

Target Slot

bot.

Generic Writer: (setf bot) (object)
Package

tooter-objects.

Methods
Writer Method: (setf bot) ((account account))

automatically generated writer method

Source

objects.lisp.

Target Slot

bot.

Generic Function: card (client id)

Retrieve the card of a status.

The status can either be a STATUS instance, or an ID of one.

See STATUS
See CLIENT
See CARD

Package

tooter-objects.

Methods
Method: card ((client client) (status status))
Source

queries.lisp.

Method: card ((client client) (id string))
Source

queries.lisp.

Generic Reader: code (condition)

Returns the HTTP return code for the failed request.

See REQUEST-FAILED

Package

tooter-client.

Methods
Reader Method: code ((condition request-failed))
Source

client.lisp.

Target Slot

code.

Generic Reader: contact-account (object)

Returns the account instance that represents the contact person for this instance.

See INSTANCE

Package

tooter-objects.

Methods
Reader Method: contact-account ((instance instance))

automatically generated reader method

Source

objects.lisp.

Target Slot

contact-account.

Generic Writer: (setf contact-account) (object)
Package

tooter-objects.

Methods
Writer Method: (setf contact-account) ((instance instance))

automatically generated writer method

Source

objects.lisp.

Target Slot

contact-account.

Generic Reader: content (object)

Returns the status’ content as an HTML string.

See STATUS

Package

tooter-objects.

Methods
Reader Method: content ((status status))

automatically generated reader method

Source

objects.lisp.

Target Slot

content.

Reader Method: content ((announcement announcement))

automatically generated reader method

Source

objects.lisp.

Target Slot

content.

Generic Writer: (setf content) (object)
Package

tooter-objects.

Methods
Writer Method: (setf content) ((status status))

automatically generated writer method

Source

objects.lisp.

Target Slot

content.

Writer Method: (setf content) ((announcement announcement))

automatically generated writer method

Source

objects.lisp.

Target Slot

content.

Generic Function: context (client id)

Retrieve the context of a status.

The status can either be a STATUS instance, or an ID of one.

See CLIENT
See STATUS
See CONTEXT

Package

tooter-objects.

Methods
Method: context ((client client) (status status))
Source

queries.lisp.

Method: context ((client client) (id string))
Source

queries.lisp.

Generic Function: conversations (client &key limit max-id since-id min-id)

Returns a list of conversation.

See CONVERSATION
See CLIENT

Package

tooter-objects.

Source

queries.lisp.

Methods
Method: conversations ((client client) &key limit max-id since-id min-id)
Generic Function: create-filter (client phrase context &key irreversible whole-word expires-in)

Create a new filter.

See CLIENT
See FILTER

Package

tooter-queries.

Methods
Method: create-filter ((client client) phrase context &key irreversible whole-word expires-in)
Source

queries.lisp.

Generic Reader: created-at (object)

Returns the time when the token was created.

See TOKEN

Package

tooter-objects.

Methods
Reader Method: created-at ((token token))

automatically generated reader method

Source

objects.lisp.

Target Slot

created-at.

Reader Method: created-at ((status status))

automatically generated reader method

Source

objects.lisp.

Target Slot

created-at.

Reader Method: created-at ((notification notification))

automatically generated reader method

Source

objects.lisp.

Target Slot

created-at.

Reader Method: created-at ((account account))

automatically generated reader method

Source

objects.lisp.

Target Slot

created-at.

Generic Writer: (setf created-at) (object)
Package

tooter-objects.

Methods
Writer Method: (setf created-at) ((token token))

automatically generated writer method

Source

objects.lisp.

Target Slot

created-at.

Writer Method: (setf created-at) ((status status))

automatically generated writer method

Source

objects.lisp.

Target Slot

created-at.

Writer Method: (setf created-at) ((notification notification))

automatically generated writer method

Source

objects.lisp.

Target Slot

created-at.

Writer Method: (setf created-at) ((account account))

automatically generated writer method

Source

objects.lisp.

Target Slot

created-at.

Generic Reader: data (condition)

Returns the data payload for the failed request as parsed JSON.

See REQUEST-FAILED

Package

tooter-client.

Methods
Reader Method: data ((condition request-failed))
Source

client.lisp.

Target Slot

data.

Generic Reader: day (object)

Returns the universal-time of the day for which this usage history is.

See TAG-HISTORY

Package

tooter-objects.

Methods
Reader Method: day ((tag-history tag-history))

automatically generated reader method

Source

objects.lisp.

Target Slot

day.

Generic Writer: (setf day) (object)
Package

tooter-objects.

Methods
Writer Method: (setf day) ((tag-history tag-history))

automatically generated writer method

Source

objects.lisp.

Target Slot

day.

Generic Function: decode-entity (type data)

Parses a data payload as the given entity type.

If the type is a symbol, a new instance of the given type is allocated and then filled in via DECODE-ENTITY. If the data is a list, a new instance is created and decoded for each entry in the list.

Package

tooter-objects.

Source

objects.lisp.

Methods
Method: decode-entity ((token token) data0)
Method: decode-entity ((identity-proof identity-proof) data0)
Method: decode-entity ((filter filter) data0)
Method: decode-entity ((featured-tag featured-tag) data0)
Method: decode-entity ((conversation conversation) data0)
Method: decode-entity ((tag-history tag-history) data0)
Method: decode-entity ((tag tag) data0)
Method: decode-entity ((source source) data0)
Method: decode-entity ((status status) data0)
Method: decode-entity ((scheduled-status scheduled-status) data0)
Method: decode-entity ((status-params status-params) data0)
Method: decode-entity ((results results) data0)
Method: decode-entity ((report report) data0)
Method: decode-entity ((relationship relationship) data0)
Method: decode-entity ((reaction reaction) data0)
Method: decode-entity ((push-subscription push-subscription) data0)
Method: decode-entity ((push-subscription-alerts push-subscription-alerts) data0)
Method: decode-entity ((preferences preferences) data0)
Method: decode-entity ((poll poll) data0)
Method: decode-entity ((poll-option poll-option) data0)
Method: decode-entity ((notification notification) data0)
Method: decode-entity ((mention mention) data0)
Method: decode-entity ((marker marker) data0)
Method: decode-entity ((user-list user-list) data0)
Method: decode-entity ((instance instance) data0)
Method: decode-entity ((instance-stats instance-stats) data0)
Method: decode-entity ((emoji emoji) data0)
Method: decode-entity ((context context) data0)
Method: decode-entity ((card card) data0)
Method: decode-entity ((audio-metadata audio-metadata) data0)
Method: decode-entity ((video-metadata video-metadata) data0)
Method: decode-entity ((image-metadata image-metadata) data0)
Method: decode-entity ((metadata metadata) data0)
Method: decode-entity ((attachment attachment) data0)
Method: decode-entity ((application application) data0)
Method: decode-entity ((announcement announcement) data0)
Method: decode-entity ((announcement-status announcement-status) data0)
Method: decode-entity ((announcement-account announcement-account) data0)
Method: decode-entity ((activity activity) data0)
Method: decode-entity ((account account) data0)
Method: decode-entity ((field field) data0)
Method: decode-entity ((type symbol) (data list))
Method: decode-entity ((type symbol) data)
Generic Function: default-headers (client &key idempotency-key)

Returns additional headers to be sent with requests from the client.

See CLIENT

Package

tooter-client.

Methods
Method: default-headers ((client client) &key idempotency-key)
Source

client.lisp.

Generic Function: delete-conversation (client id)

Deletes a conversation.

See CONVERSATION See CLIENT

Package

tooter-queries.

Methods
Method: delete-conversation ((client client) (id string))
Source

queries.lisp.

Generic Function: delete-filter (client id)

Delete an existing filter.

See CLIENT
See FILTER

Package

tooter-queries.

Methods
Method: delete-filter ((client client) id)
Source

queries.lisp.

Generic Function: delete-notification (client all)

Delete or dismiss the notification.

The notification can either be a NOTIFICATION instance, an ID of one, or T for all notifications.

Returns T.

See NOTIFICATION
See CLIENT

Package

tooter-queries.

Methods
Method: delete-notification ((client client) (notification notification))
Source

queries.lisp.

Method: delete-notification ((client client) (id string))
Source

queries.lisp.

Method: delete-notification ((client client) (all (eql t)))
Source

queries.lisp.

Generic Function: delete-status (client id)

Delete the given status.

The status can either be a STATUS instance, or an ID of one.

Returns T.

See STATUS
See CLIENT

Package

tooter-queries.

Methods
Method: delete-status ((client client) (status status))
Source

queries.lisp.

Method: delete-status ((client client) (id string))
Source

queries.lisp.

Generic Function: delete-subscription (client)

Delete the existing push subscription.

Returns T.

See CLIENT

Package

tooter-queries.

Methods
Method: delete-subscription ((client client))
Source

queries.lisp.

Generic Function: delete-user-list (client id)

Delete an existing user list.

The list can be either a USER-LIST instance, or an ID of one.

Returns T.

See USER-LIST
See CLIENT

Package

tooter-queries.

Methods
Method: delete-user-list ((client client) (id string))
Source

queries.lisp.

Generic Reader: descendants (object)

Returns the list of descendant status instances in the context chain.

See CONTEXT

Package

tooter-objects.

Methods
Reader Method: descendants ((context context))

automatically generated reader method

Source

objects.lisp.

Target Slot

descendants.

Generic Writer: (setf descendants) (object)
Package

tooter-objects.

Methods
Writer Method: (setf descendants) ((context context))

automatically generated writer method

Source

objects.lisp.

Target Slot

descendants.

Generic Reader: description (object)

Returns the hash of the attachment as computed by blurhash algorithm. This is actually a very small preview of the attachment

See ATTACHMENT

Package

tooter-objects.

Methods
Reader Method: description ((instance instance))

automatically generated reader method

Source

objects.lisp.

Target Slot

description.

Reader Method: description ((card card))

automatically generated reader method

Source

objects.lisp.

Target Slot

description.

Reader Method: description ((attachment attachment))

automatically generated reader method

Source

objects.lisp.

Target Slot

description.

Generic Writer: (setf description) (object)
Package

tooter-objects.

Methods
Writer Method: (setf description) ((instance instance))

automatically generated writer method

Source

objects.lisp.

Target Slot

description.

Writer Method: (setf description) ((card card))

automatically generated writer method

Source

objects.lisp.

Target Slot

description.

Writer Method: (setf description) ((attachment attachment))

automatically generated writer method

Source

objects.lisp.

Target Slot

description.

Generic Reader: discoverable (object)

Returns non nil if the status could be displayed in a public directory of the instance.

See STATUS

Package

tooter-objects.

Methods
Reader Method: discoverable ((account account))

automatically generated reader method

Source

objects.lisp.

Target Slot

discoverable.

Generic Writer: (setf discoverable) (object)
Package

tooter-objects.

Methods
Writer Method: (setf discoverable) ((account account))

automatically generated writer method

Source

objects.lisp.

Target Slot

discoverable.

Generic Function: dismiss-announcement (client id)

Get the administrator’s announcements See ANNOUNCEMENT

The arguments should be seen as follows: ID — the announce’s ID

Package

tooter-queries.

Methods
Method: dismiss-announcement ((client client) (id string))
Source

queries.lisp.

Generic Function: dismiss-reaction-announcement (client id name)

Dismiss a reaction to an announcement

See ANNOUNCEMENT
The argument should be seen as follows:
ID — the ID
NAME – The name of the emoji (unicode, shortcode or URL)

Package

tooter-queries.

Methods
Method: dismiss-reaction-announcement ((client client) (id string) (name string))
Source

queries.lisp.

Generic Reader: display-name (object)

Returns the display name of the account.

See ACCOUNT

Package

tooter-objects.

Methods
Reader Method: display-name ((account account))

automatically generated reader method

Source

objects.lisp.

Target Slot

display-name.

Generic Writer: (setf display-name) (object)
Package

tooter-objects.

Methods
Writer Method: (setf display-name) ((account account))

automatically generated writer method

Source

objects.lisp.

Target Slot

display-name.

Generic Reader: domain-blocking (object)

Returns whether you are blocking the account’s domain.

See RELATIONSHIP

Package

tooter-objects.

Methods
Reader Method: domain-blocking ((relationship relationship))

automatically generated reader method

Source

objects.lisp.

Target Slot

domain-blocking.

Generic Writer: (setf domain-blocking) (object)
Package

tooter-objects.

Methods
Writer Method: (setf domain-blocking) ((relationship relationship))

automatically generated writer method

Source

objects.lisp.

Target Slot

domain-blocking.

Generic Reader: domain-count (object)

Returns the count of domains this instance is federated with.

See INSTANCE-STATS

Package

tooter-objects.

Methods
Reader Method: domain-count ((instance-stats instance-stats))

automatically generated reader method

Source

objects.lisp.

Target Slot

domain-count.

Generic Writer: (setf domain-count) (object)
Package

tooter-objects.

Methods
Writer Method: (setf domain-count) ((instance-stats instance-stats))

automatically generated writer method

Source

objects.lisp.

Target Slot

domain-count.

Generic Reader: duration (object)

Returns the duration of the video in seconds.

See VIDEO-METADATA

Package

tooter-objects.

Methods
Reader Method: duration ((audio-metadata audio-metadata))

automatically generated reader method

Source

objects.lisp.

Target Slot

duration.

Reader Method: duration ((video-metadata video-metadata))

automatically generated reader method

Source

objects.lisp.

Target Slot

duration.

Generic Writer: (setf duration) (object)
Package

tooter-objects.

Methods
Writer Method: (setf duration) ((audio-metadata audio-metadata))

automatically generated writer method

Source

objects.lisp.

Target Slot

duration.

Writer Method: (setf duration) ((video-metadata video-metadata))

automatically generated writer method

Source

objects.lisp.

Target Slot

duration.

Generic Reader: email (object)

Returns the primary contact email address for the instance.

See INSTANCE

Package

tooter-objects.

Methods
Reader Method: email ((instance instance))

automatically generated reader method

Source

objects.lisp.

Target Slot

email.

Generic Writer: (setf email) (object)
Package

tooter-objects.

Methods
Writer Method: (setf email) ((instance instance))

automatically generated writer method

Source

objects.lisp.

Target Slot

email.

Generic Reader: embed-url (object)

photo embedding (URL)

See CARD

Package

tooter-objects.

Methods
Reader Method: embed-url ((card card))

automatically generated reader method

Source

objects.lisp.

Target Slot

embed-url.

Generic Writer: (setf embed-url) (object)
Package

tooter-objects.

Methods
Writer Method: (setf embed-url) ((card card))

automatically generated writer method

Source

objects.lisp.

Target Slot

embed-url.

Generic Function: emojis (object)

Retrieve a list of custom emojis present on the instance.

See CLIENT
See EMOJI

Package

tooter-objects.

Methods
Method: emojis ((client client))
Source

queries.lisp.

Reader Method: emojis ((status status))

automatically generated reader method

Source

objects.lisp.

Target Slot

emojis.

Reader Method: emojis ((poll poll))

automatically generated reader method

Source

objects.lisp.

Target Slot

emojis.

Reader Method: emojis ((announcement announcement))

automatically generated reader method

Source

objects.lisp.

Target Slot

emojis.

Reader Method: emojis ((account account))

automatically generated reader method

Source

objects.lisp.

Target Slot

emojis.

Generic Writer: (setf emojis) (object)
Package

tooter-objects.

Methods
Writer Method: (setf emojis) ((status status))

automatically generated writer method

Source

objects.lisp.

Target Slot

emojis.

Writer Method: (setf emojis) ((poll poll))

automatically generated writer method

Source

objects.lisp.

Target Slot

emojis.

Writer Method: (setf emojis) ((announcement announcement))

automatically generated writer method

Source

objects.lisp.

Target Slot

emojis.

Writer Method: (setf emojis) ((account account))

automatically generated writer method

Source

objects.lisp.

Target Slot

emojis.

Generic Reader: endorsed (object)
Package

tooter-objects.

Methods
Reader Method: endorsed ((relationship relationship))

automatically generated reader method

Source

objects.lisp.

Target Slot

endorsed.

Generic Writer: (setf endorsed) (object)
Package

tooter-objects.

Methods
Writer Method: (setf endorsed) ((relationship relationship))

automatically generated writer method

Source

objects.lisp.

Target Slot

endorsed.

Generic Function: endorsements (client)

Returns the accounts an user is showing in their profile.

See CLIENT
See PIN
See UNPIN

Package

tooter-queries.

Methods
Method: endorsements ((client client))
Source

queries.lisp.

Generic Reader: endpoint (object)

The endpoint URL to which push notifications are delivered.

See PUSH-SUBSCRIPTION

Package

tooter-objects.

Methods
Reader Method: endpoint ((push-subscription push-subscription))

automatically generated reader method

Source

objects.lisp.

Target Slot

endpoint.

Generic Writer: (setf endpoint) (object)
Package

tooter-objects.

Methods
Writer Method: (setf endpoint) ((push-subscription push-subscription))

automatically generated writer method

Source

objects.lisp.

Target Slot

endpoint.

Generic Reader: ends-at (object)

Returns a date when announcement will end.

See ANNOUNCEMENT

Package

tooter-objects.

Methods
Reader Method: ends-at ((announcement announcement))

automatically generated reader method

Source

objects.lisp.

Target Slot

ends-at.

Generic Writer: (setf ends-at) (object)
Package

tooter-objects.

Methods
Writer Method: (setf ends-at) ((announcement announcement))

automatically generated writer method

Source

objects.lisp.

Target Slot

ends-at.

Generic Function: ensure-integer (object)

Converts OBJECT to an integer

Package

tooter-client.

Source

toolkit.lisp.

Methods
Method: ensure-integer ((object string))
Method: ensure-integer ((object integer))
Generic Reader: expired (object)

Returns if the poll has expired

See POLL

Package

tooter-objects.

Methods
Reader Method: expired ((poll poll))

automatically generated reader method

Source

objects.lisp.

Target Slot

expired.

Generic Writer: (setf expired) (object)
Package

tooter-objects.

Methods
Writer Method: (setf expired) ((poll poll))

automatically generated writer method

Source

objects.lisp.

Target Slot

expired.

Generic Reader: expires-at (object)

Returns the expiration date of the filter

See FILTER

Package

tooter-objects.

Methods
Reader Method: expires-at ((filter filter))

automatically generated reader method

Source

objects.lisp.

Target Slot

expires-at.

Reader Method: expires-at ((poll poll))

automatically generated reader method

Source

objects.lisp.

Target Slot

expires-at.

Generic Writer: (setf expires-at) (object)
Package

tooter-objects.

Methods
Writer Method: (setf expires-at) ((filter filter))

automatically generated writer method

Source

objects.lisp.

Target Slot

expires-at.

Writer Method: (setf expires-at) ((poll poll))

automatically generated writer method

Source

objects.lisp.

Target Slot

expires-at.

Generic Function: favourite (client id)

Favourite the given status.

The status can either be a STATUS instance, or an ID of one.

Returns the referenced status.

See STATUS
See CLIENT

Package

tooter-queries.

Methods
Method: favourite ((client client) (status status))
Source

queries.lisp.

Method: favourite ((client client) (id string))
Source

queries.lisp.

Generic Reader: favourited (object)

Returns whether you have favourited this status.

See STATUS

Package

tooter-objects.

Methods
Reader Method: favourited ((status status))

automatically generated reader method

Source

objects.lisp.

Target Slot

favourited.

Generic Writer: (setf favourited) (object)
Package

tooter-objects.

Methods
Writer Method: (setf favourited) ((status status))

automatically generated writer method

Source

objects.lisp.

Target Slot

favourited.

Generic Function: favouriters (client id &key max-id since-id limit)

Retrieve the list of accounts that favourited the status.

The status can either be a STATUS instance, or an ID of one.

See STATUS
See CLIENT
See ACCOUNT

Package

tooter-queries.

Methods
Method: favouriters ((client client) (status status) &rest args)
Source

queries.lisp.

Method: favouriters ((client client) (id string) &key max-id since-id limit)
Source

queries.lisp.

Generic Function: favourites (client &key min-id max-id limit)

Retrieve a list of favourited statuses.

See CLIENT
See STATUS

Package

tooter-queries.

Methods
Method: favourites ((client client) &key min-id max-id limit)
Source

queries.lisp.

Generic Reader: favourites-count (object)

Returns the number of favourites this status has received.

See STATUS

Package

tooter-objects.

Methods
Reader Method: favourites-count ((status status))

automatically generated reader method

Source

objects.lisp.

Target Slot

favourites-count.

Generic Writer: (setf favourites-count) (object)
Package

tooter-objects.

Methods
Writer Method: (setf favourites-count) ((status status))

automatically generated writer method

Source

objects.lisp.

Target Slot

favourites-count.

Generic Reader: fields (object)

Returns the user metadata.

See SOURCE

Package

tooter-objects.

Methods
Reader Method: fields ((source source))

automatically generated reader method

Source

objects.lisp.

Target Slot

fields.

Reader Method: fields ((account account))

automatically generated reader method

Source

objects.lisp.

Target Slot

fields.

Generic Writer: (setf fields) (object)
Package

tooter-objects.

Methods
Writer Method: (setf fields) ((source source))

automatically generated writer method

Source

objects.lisp.

Target Slot

fields.

Writer Method: (setf fields) ((account account))

automatically generated writer method

Source

objects.lisp.

Target Slot

fields.

Generic Function: filter (client id)

Return a filter for this user.

See CLIENT
See FILTER

Package

tooter-objects.

Methods
Method: filter ((client client) (filter filter))
Source

queries.lisp.

Method: filter ((client client) (id string))
Source

queries.lisp.

Generic Function: filters (client)

Returns a list of all filters for this user.

See CLIENT
See FILTER

Package

tooter-queries.

Methods
Method: filters ((client client))
Source

queries.lisp.

Generic Function: find-account (client id)

Find an account with the specified ID.

This only works for accounts that are local to the instance.

See CLIENT
See ACCOUNT

Package

tooter-queries.

Methods
Method: find-account ((client client) (id string))
Source

queries.lisp.

Generic Function: find-list (client id)

Retrieve the user list with the given ID.

See USER-LIST
See CLIENT

Package

tooter-queries.

Methods
Method: find-list ((client client) (id string))
Source

queries.lisp.

Generic Function: find-notification (client id)

Retrieve the notification of the given ID.

See NOTIFICATION
See CLIENT

Package

tooter-queries.

Methods
Method: find-notification ((client client) (id string))
Source

queries.lisp.

Generic Function: find-results (client query &key account-id max-id min-id kind exclude-unreviewed resolve limit offset following)

Search the Mastodon instance for matching tags, accounts, or statuses.

See RESULTS
See CLIENT

Package

tooter-queries.

Methods
Method: find-results ((client client) query &key account-id max-id min-id kind exclude-unreviewed resolve limit offset following)
Source

queries.lisp.

Generic Function: find-status (client id)

Retrieve the status with the given ID.

See CLIENT
See STATUS

Package

tooter-queries.

Methods
Method: find-status ((client client) (id string))
Source

queries.lisp.

Generic Reader: focus (object)

Returns a cons cell of the X and Y coordinates on which the focus in the media should lie.

This is useful for determining a good cropping region.

See METADATA

Package

tooter-objects.

Methods
Reader Method: focus ((metadata metadata))

automatically generated reader method

Source

objects.lisp.

Target Slot

focus.

Generic Writer: (setf focus) (object)
Package

tooter-objects.

Methods
Writer Method: (setf focus) ((metadata metadata))

automatically generated writer method

Source

objects.lisp.

Target Slot

focus.

Generic Function: follow (client id)

Follow a new account.

The account can be either an account ID, or an ACCOUNT instance. It can also be a URI string for a remote account.

Returns the resulting relationship if the account was local, and the local representation of the remote account if it was remote.

See CLIENT
See ACCOUNT
See RELATIONSHIP

Package

tooter-queries.

Methods
Method: follow ((client client) (account account))
Source

queries.lisp.

Method: follow ((client client) (id string))
Source

queries.lisp.

Generic Function: follow-requests (client &key max-id since-id limit)

Retrieve a list of accounts that requested to follow you.

See ACCOUNT
See CLIENT

Package

tooter-queries.

Methods
Method: follow-requests ((client client) &key max-id since-id limit)
Source

queries.lisp.

Generic Reader: follow-requests-count (object)

Returns the number of follow requests.

See SOURCE

Package

tooter-objects.

Methods
Reader Method: follow-requests-count ((source source))

automatically generated reader method

Source

objects.lisp.

Target Slot

follow-requests-count.

Generic Writer: (setf follow-requests-count) (object)
Package

tooter-objects.

Methods
Writer Method: (setf follow-requests-count) ((source source))

automatically generated writer method

Source

objects.lisp.

Target Slot

follow-requests-count.

Generic Function: follow-tag (client tag)

Follow a tag.

See CLIENT See TAG

Package

tooter-queries.

Source

queries.lisp.

Methods
Method: follow-tag ((client client) (tag tag))
Method: follow-tag ((client client) (tag string))
Generic Reader: followed-by (object)

Returns whether the account is following you.

See RELATIONSHIP

Package

tooter-objects.

Methods
Reader Method: followed-by ((relationship relationship))

automatically generated reader method

Source

objects.lisp.

Target Slot

followed-by.

Generic Writer: (setf followed-by) (object)
Package

tooter-objects.

Methods
Writer Method: (setf followed-by) ((relationship relationship))

automatically generated writer method

Source

objects.lisp.

Target Slot

followed-by.

Generic Function: followed-tags (client &key max-id since-id min-id limit)

Returns a list of followed tags.

See CLIENT
See TAG

Package

tooter-queries.

Source

queries.lisp.

Methods
Method: followed-tags ((client client) &key max-id since-id min-id limit)
Generic Reader: followers-count (object)

Returns the number of followers the account has.

See ACCOUNT

Package

tooter-objects.

Methods
Reader Method: followers-count ((account account))

automatically generated reader method

Source

objects.lisp.

Target Slot

followers-count.

Generic Writer: (setf followers-count) (object)
Package

tooter-objects.

Methods
Writer Method: (setf followers-count) ((account account))

automatically generated writer method

Source

objects.lisp.

Target Slot

followers-count.

Generic Reader: following (object)

Returns whether you are following this account.

See RELATIONSHIP

Package

tooter-objects.

Methods
Reader Method: following ((tag tag))

automatically generated reader method

Source

objects.lisp.

Target Slot

following.

Reader Method: following ((relationship relationship))

automatically generated reader method

Source

objects.lisp.

Target Slot

following.

Generic Writer: (setf following) (object)
Package

tooter-objects.

Methods
Writer Method: (setf following) ((tag tag))

automatically generated writer method

Source

objects.lisp.

Target Slot

following.

Writer Method: (setf following) ((relationship relationship))

automatically generated writer method

Source

objects.lisp.

Target Slot

following.

Generic Reader: following-count (object)

Returns the number of users this account is following.

See ACCOUNT

Package

tooter-objects.

Methods
Reader Method: following-count ((account account))

automatically generated reader method

Source

objects.lisp.

Target Slot

following-count.

Generic Writer: (setf following-count) (object)
Package

tooter-objects.

Methods
Writer Method: (setf following-count) ((account account))

automatically generated writer method

Source

objects.lisp.

Target Slot

following-count.

Generic Reader: frame-rate (object)

Returns the frame-rate of the video in FPS.

See VIDEO-METADATA

Package

tooter-objects.

Methods
Reader Method: frame-rate ((video-metadata video-metadata))

automatically generated reader method

Source

objects.lisp.

Target Slot

frame-rate.

Generic Writer: (setf frame-rate) (object)
Package

tooter-objects.

Methods
Writer Method: (setf frame-rate) ((video-metadata video-metadata))

automatically generated writer method

Source

objects.lisp.

Target Slot

frame-rate.

Generic Function: get-activity (client)

Get statistics from an instance

See CLIENT
See ACTIVITY

Package

tooter-queries.

Methods
Method: get-activity ((client client))
Source

queries.lisp.

Generic Function: get-announcements (client &key with-dismissed)

Get the administrator’s announcements
See ANNOUNCEMENT

The argument should be seen as follows:
WITH-DISMISSED — Get the dismissed announcements too (default: NIL)

Package

tooter-queries.

Methods
Method: get-announcements ((client client) &key with-dismissed)
Source

queries.lisp.

Generic Function: get-followers (client id &key max-id since-id limit)

Returns a list of followers for the account.

The account can be an ACCOUNT instance, an account ID, or T for yourself.

See CLIENT
See ACCOUNT

Package

tooter-queries.

Methods
Method: get-followers ((client client) (self (eql t)) &rest args)
Source

queries.lisp.

Method: get-followers ((client client) (account account) &rest args)
Source

queries.lisp.

Method: get-followers ((client client) (id string) &key max-id since-id limit)
Source

queries.lisp.

Generic Function: get-following (client id &key max-id since-id limit)

Returns a list of accounts the account is following.

The account can be an ACCOUNT instance, an account ID, or T for yourself.

See CLIENT
See ACCOUNT

Package

tooter-queries.

Methods
Method: get-following ((client client) (self (eql t)) &rest args)
Source

queries.lisp.

Method: get-following ((client client) (account account) &rest args)
Source

queries.lisp.

Method: get-following ((client client) (id string) &key max-id since-id limit)
Source

queries.lisp.

Generic Function: get-statuses (client id &key only-media pinned exclude-replies max-id since-id limit)

Returns a list of statuses for the account.

The account can be an ACCOUNT instance, an account ID, or T for yourself.

See CLIENT
See ACCOUNT
See STATUS

Package

tooter-queries.

Methods
Method: get-statuses ((client client) (self (eql t)) &rest args)
Source

queries.lisp.

Method: get-statuses ((client client) (account account) &rest args)
Source

queries.lisp.

Method: get-statuses ((client client) (id string) &key only-media pinned exclude-replies max-id since-id limit)
Source

queries.lisp.

Generic Reader: hashtags (object)

Returns a list of matching hashtags as strings.

See RESULTS

Package

tooter-objects.

Methods
Reader Method: hashtags ((results results))

automatically generated reader method

Source

objects.lisp.

Target Slot

hashtags.

Generic Writer: (setf hashtags) (object)
Package

tooter-objects.

Methods
Writer Method: (setf hashtags) ((results results))

automatically generated writer method

Source

objects.lisp.

Target Slot

hashtags.

Generic Reader: header (object)

Returns the full URL to the account’s header image.

This may be an animated image.

See ACCOUNT

Package

tooter-objects.

Methods
Reader Method: header ((account account))

automatically generated reader method

Source

objects.lisp.

Target Slot

header.

Generic Writer: (setf header) (object)
Package

tooter-objects.

Methods
Writer Method: (setf header) ((account account))

automatically generated writer method

Source

objects.lisp.

Target Slot

header.

Generic Reader: header-static (object)

Returns the full URL to the account’s static header image.

See ACCOUNT

Package

tooter-objects.

Methods
Reader Method: header-static ((account account))

automatically generated reader method

Source

objects.lisp.

Target Slot

header-static.

Generic Writer: (setf header-static) (object)
Package

tooter-objects.

Methods
Writer Method: (setf header-static) ((account account))

automatically generated writer method

Source

objects.lisp.

Target Slot

header-static.

Generic Reader: height (object)

Returns the height of the media or card.

See CARD
See IMAGE-METADATA
See VIDEO-METADATA

Package

tooter-objects.

Methods
Reader Method: height ((card card))

automatically generated reader method

Source

objects.lisp.

Target Slot

height.

Reader Method: height ((video-metadata video-metadata))

automatically generated reader method

Source

objects.lisp.

Target Slot

height.

Reader Method: height ((image-metadata image-metadata))

automatically generated reader method

Source

objects.lisp.

Target Slot

height.

Generic Writer: (setf height) (object)
Package

tooter-objects.

Methods
Writer Method: (setf height) ((card card))

automatically generated writer method

Source

objects.lisp.

Target Slot

height.

Writer Method: (setf height) ((video-metadata video-metadata))

automatically generated writer method

Source

objects.lisp.

Target Slot

height.

Writer Method: (setf height) ((image-metadata image-metadata))

automatically generated writer method

Source

objects.lisp.

Target Slot

height.

Generic Reader: history (object)

Returns an array describing daily usage information of the hashtag.

See TAG
See TAG-HISTORY

Package

tooter-objects.

Methods
Reader Method: history ((tag tag))

automatically generated reader method

Source

objects.lisp.

Target Slot

history.

Generic Writer: (setf history) (object)
Package

tooter-objects.

Methods
Writer Method: (setf history) ((tag tag))

automatically generated writer method

Source

objects.lisp.

Target Slot

history.

Generic Reader: html (object)

Returns an HTML snippet for the card’s OEmbed data.

See CARD

Package

tooter-objects.

Methods
Reader Method: html ((card card))

automatically generated reader method

Source

objects.lisp.

Target Slot

html.

Generic Writer: (setf html) (object)
Package

tooter-objects.

Methods
Writer Method: (setf html) ((card card))

automatically generated writer method

Source

objects.lisp.

Target Slot

html.

Generic Reader: id (object)

Returns the ID of the object as a string.

This ID is used in the API to query the object itself, or properties related to it. The ID may be an integer, or some other structure encoded as a string, depending on the instance the object stems from.

About the only thing you can portably do with an ID is determine identity via STRING=.

See ACCOUNT
See ATTACHMENT
See USER-LIST
See MENTION
See NOTIFICATION
See PUSH-SUBSCRIPTION
See RELATIONSHIP
See REPORT
See STATUS

Package

tooter-objects.

Methods
Reader Method: id ((filter filter))

automatically generated reader method

Source

objects.lisp.

Target Slot

id.

Reader Method: id ((featured-tag featured-tag))

automatically generated reader method

Source

objects.lisp.

Target Slot

id.

Reader Method: id ((conversation conversation))

automatically generated reader method

Source

objects.lisp.

Target Slot

id.

Reader Method: id ((status status))

automatically generated reader method

Source

objects.lisp.

Target Slot

id.

Reader Method: id ((scheduled-status scheduled-status))

automatically generated reader method

Source

objects.lisp.

Target Slot

id.

Reader Method: id ((report report))

automatically generated reader method

Source

objects.lisp.

Target Slot

id.

Reader Method: id ((relationship relationship))

automatically generated reader method

Source

objects.lisp.

Target Slot

id.

Reader Method: id ((push-subscription push-subscription))

automatically generated reader method

Source

objects.lisp.

Target Slot

id.

Reader Method: id ((poll poll))

automatically generated reader method

Source

objects.lisp.

Target Slot

id.

Reader Method: id ((notification notification))

automatically generated reader method

Source

objects.lisp.

Target Slot

id.

Reader Method: id ((mention mention))

automatically generated reader method

Source

objects.lisp.

Target Slot

id.

Reader Method: id ((user-list user-list))

automatically generated reader method

Source

objects.lisp.

Target Slot

id.

Reader Method: id ((attachment attachment))

automatically generated reader method

Source

objects.lisp.

Target Slot

id.

Reader Method: id ((announcement announcement))

automatically generated reader method

Source

objects.lisp.

Target Slot

id.

Reader Method: id ((announcement-status announcement-status))

automatically generated reader method

Source

objects.lisp.

Target Slot

id.

Reader Method: id ((announcement-account announcement-account))

automatically generated reader method

Source

objects.lisp.

Target Slot

id.

Reader Method: id ((account account))

automatically generated reader method

Source

objects.lisp.

Target Slot

id.

Generic Writer: (setf id) (object)
Package

tooter-objects.

Methods
Writer Method: (setf id) ((filter filter))

automatically generated writer method

Source

objects.lisp.

Target Slot

id.

Writer Method: (setf id) ((featured-tag featured-tag))

automatically generated writer method

Source

objects.lisp.

Target Slot

id.

Writer Method: (setf id) ((conversation conversation))

automatically generated writer method

Source

objects.lisp.

Target Slot

id.

Writer Method: (setf id) ((status status))

automatically generated writer method

Source

objects.lisp.

Target Slot

id.

Writer Method: (setf id) ((scheduled-status scheduled-status))

automatically generated writer method

Source

objects.lisp.

Target Slot

id.

Writer Method: (setf id) ((report report))

automatically generated writer method

Source

objects.lisp.

Target Slot

id.

Writer Method: (setf id) ((relationship relationship))

automatically generated writer method

Source

objects.lisp.

Target Slot

id.

Writer Method: (setf id) ((push-subscription push-subscription))

automatically generated writer method

Source

objects.lisp.

Target Slot

id.

Writer Method: (setf id) ((poll poll))

automatically generated writer method

Source

objects.lisp.

Target Slot

id.

Writer Method: (setf id) ((notification notification))

automatically generated writer method

Source

objects.lisp.

Target Slot

id.

Writer Method: (setf id) ((mention mention))

automatically generated writer method

Source

objects.lisp.

Target Slot

id.

Writer Method: (setf id) ((user-list user-list))

automatically generated writer method

Source

objects.lisp.

Target Slot

id.

Writer Method: (setf id) ((attachment attachment))

automatically generated writer method

Source

objects.lisp.

Target Slot

id.

Writer Method: (setf id) ((announcement announcement))

automatically generated writer method

Source

objects.lisp.

Target Slot

id.

Writer Method: (setf id) ((announcement-status announcement-status))

automatically generated writer method

Source

objects.lisp.

Target Slot

id.

Writer Method: (setf id) ((announcement-account announcement-account))

automatically generated writer method

Source

objects.lisp.

Target Slot

id.

Writer Method: (setf id) ((account account))

automatically generated writer method

Source

objects.lisp.

Target Slot

id.

Generic Function: identity-proof (client provider username)

Returns response from external identity provider.

See CLIENT

Package

tooter-objects.

Methods
Method: identity-proof ((client client) (provider string) (username string))
Source

queries.lisp.

Generic Reader: image (object)

Preview (URL)

See CARD

Package

tooter-objects.

Methods
Reader Method: image ((card card))

automatically generated reader method

Source

objects.lisp.

Target Slot

image.

Generic Writer: (setf image) (object)
Package

tooter-objects.

Methods
Writer Method: (setf image) ((card card))

automatically generated writer method

Source

objects.lisp.

Target Slot

image.

Generic Reader: in-reply-to-account-id (object)

Returns the ID of the account this status is a reply to.

See STATUS

Package

tooter-objects.

Methods
Reader Method: in-reply-to-account-id ((status status))

automatically generated reader method

Source

objects.lisp.

Target Slot

in-reply-to-account-id.

Generic Writer: (setf in-reply-to-account-id) (object)
Package

tooter-objects.

Methods
Writer Method: (setf in-reply-to-account-id) ((status status))

automatically generated writer method

Source

objects.lisp.

Target Slot

in-reply-to-account-id.

Generic Reader: in-reply-to-id (object)

Returns the ID of the status this status is a reply to.

See STATUS

Package

tooter-objects.

Methods
Reader Method: in-reply-to-id ((status status))

automatically generated reader method

Source

objects.lisp.

Target Slot

in-reply-to-id.

Reader Method: in-reply-to-id ((status-params status-params))

automatically generated reader method

Source

objects.lisp.

Target Slot

in-reply-to-id.

Generic Writer: (setf in-reply-to-id) (object)
Package

tooter-objects.

Methods
Writer Method: (setf in-reply-to-id) ((status status))

automatically generated writer method

Source

objects.lisp.

Target Slot

in-reply-to-id.

Writer Method: (setf in-reply-to-id) ((status-params status-params))

automatically generated writer method

Source

objects.lisp.

Target Slot

in-reply-to-id.

Generic Function: instance (client)

Retrieve the instance information that the client is connected to.

See INSTANCE
See CLIENT

Package

tooter-objects.

Methods
Method: instance ((client client))
Source

queries.lisp.

Generic Reader: irreversible (object)

Returns if the server should drop the matching entities

See FILTER

Package

tooter-objects.

Methods
Reader Method: irreversible ((filter filter))

automatically generated reader method

Source

objects.lisp.

Target Slot

irreversible.

Generic Writer: (setf irreversible) (object)
Package

tooter-objects.

Methods
Writer Method: (setf irreversible) ((filter filter))

automatically generated writer method

Source

objects.lisp.

Target Slot

irreversible.

Generic Reader: key (object)

Accessor to the application key the client is using to connect.

Unless manually filled in, this will be automatically set by REGISTER.

See CLIENT
See REGISTER

Package

tooter-client.

Methods
Reader Method: key ((client client))

automatically generated reader method

Source

client.lisp.

Target Slot

key.

Generic Writer: (setf key) (object)
Package

tooter-client.

Methods
Writer Method: (setf key) ((client client))

automatically generated writer method

Source

client.lisp.

Target Slot

key.

Generic Reader: kind (object)

Returns the type/kind of object this instance is representing.

See ATTACHMENT
See CARD
See NOTIFICATION

Package

tooter-objects.

Methods
Reader Method: kind ((notification notification))

automatically generated reader method

Source

objects.lisp.

Target Slot

kind.

Reader Method: kind ((card card))

automatically generated reader method

Source

objects.lisp.

Target Slot

kind.

Reader Method: kind ((attachment attachment))

automatically generated reader method

Source

objects.lisp.

Target Slot

kind.

Generic Writer: (setf kind) (object)
Package

tooter-objects.

Methods
Writer Method: (setf kind) ((notification notification))

automatically generated writer method

Source

objects.lisp.

Target Slot

kind.

Writer Method: (setf kind) ((card card))

automatically generated writer method

Source

objects.lisp.

Target Slot

kind.

Writer Method: (setf kind) ((attachment attachment))

automatically generated writer method

Source

objects.lisp.

Target Slot

kind.

Generic Reader: language (object)

Returns the ISO-6391 code for the language this status is in.

See STATUS

Package

tooter-objects.

Methods
Reader Method: language ((source source))

automatically generated reader method

Source

objects.lisp.

Target Slot

language.

Reader Method: language ((status status))

automatically generated reader method

Source

objects.lisp.

Target Slot

language.

Generic Writer: (setf language) (object)
Package

tooter-objects.

Methods
Writer Method: (setf language) ((source source))

automatically generated writer method

Source

objects.lisp.

Target Slot

language.

Writer Method: (setf language) ((status status))

automatically generated writer method

Source

objects.lisp.

Target Slot

language.

Generic Reader: languages (object)

A list of ISO-6391 language codes that the instance advertises.

See INSTANCE

Package

tooter-objects.

Methods
Reader Method: languages ((instance instance))

automatically generated reader method

Source

objects.lisp.

Target Slot

languages.

Generic Writer: (setf languages) (object)
Package

tooter-objects.

Methods
Writer Method: (setf languages) ((instance instance))

automatically generated writer method

Source

objects.lisp.

Target Slot

languages.

Generic Reader: last-status (object)

Returns the last STATUS of the conversation

Package

tooter-objects.

Methods
Reader Method: last-status ((conversation conversation))

automatically generated reader method

Source

objects.lisp.

Target Slot

last-status.

Generic Writer: (setf last-status) (object)
Package

tooter-objects.

Methods
Writer Method: (setf last-status) ((conversation conversation))

automatically generated writer method

Source

objects.lisp.

Target Slot

last-status.

Generic Reader: last-status-at (object)

Timestamp of the last status mentioning the tag

Package

tooter-objects.

Methods
Reader Method: last-status-at ((featured-tag featured-tag))

automatically generated reader method

Source

objects.lisp.

Target Slot

last-status-at.

Generic Writer: (setf last-status-at) (object)
Package

tooter-objects.

Methods
Writer Method: (setf last-status-at) ((featured-tag featured-tag))

automatically generated writer method

Source

objects.lisp.

Target Slot

last-status-at.

Generic Reader: locked (object)

Returns whether the account is locked and requires confirming follow requests.

See ACCOUNT

Package

tooter-objects.

Methods
Reader Method: locked ((account account))

automatically generated reader method

Source

objects.lisp.

Target Slot

locked.

Generic Writer: (setf locked) (object)
Package

tooter-objects.

Methods
Writer Method: (setf locked) ((account account))

automatically generated writer method

Source

objects.lisp.

Target Slot

locked.

Generic Function: make-media (client file &key description focus)

Create a new media attachment.

FILE must be a pathname. FOCUS should be, if given, a cons of X and Y coordinates on which the focus should be put in the media.

Returns the new media ATTACHMENT instance.

See ATTACHMENT
See CLIENT

Package

tooter-queries.

Methods
Method: make-media ((client client) file &key description focus)
Source

queries.lisp.

Generic Function: make-report (client id &key statuses comment forward)

Files a new report against the given account.

The account can be an ACCOUNT instance, or an ID of one.

STATUSES must be a list of either STATUS instances or IDs of such that refer to the offending statuses. COMMENT must be a string describing the offence.

See ACCOUNT
See STATUS
See CLIENT

Package

tooter-queries.

Methods
Method: make-report ((client client) (account account) &rest args)
Source

queries.lisp.

Method: make-report ((client client) (id string) &key statuses comment forward)
Source

queries.lisp.

Generic Function: make-status (client status &key in-reply-to media sensitive spoiler-text visibility language scheduled-at poll-options poll-expire-seconds poll-multiple poll-hide-totals idempotency-key)

Create a new status.

The arguments should be seen as follows:
STATUS — The content of the status update. Should be plain text.
IN-REPLY-TO — May be a STATUS instance or ID to which this status should reply to.
MEDIA — May be an attachment, or a list of up to four attachments. See below for the handling of media attachments.
SENSITIVE — Whether the content contains sensitive material. SPOILER-TEXT — Denotes the text to show in place of the content
before the content is revealed. Forces sensitive. VISIBILITY — May denote how visible the status should be. Can be
one of the following:
:DIRECT The status can only be seen by mentions :PRIVATE The status can only be seen by you
:UNLISTED The status can only be seen by link
:PUBLIC The status appears publicly on timelines LANGUAGE — May be an ISO-639 code of the language the status
text is in.
SCHEDULED-AT — If non nil will post this status at the date represented by this argument.
POLL-OPTIONS — If non nil provides a list of options for the poll attached to this status.
POLL-EXPIRE-SECONDS — The number of seconds before the poll will expires. POLL-MULTIPLE — If non nil the polls admits more than one selected entry by each users.
POLL-HIDE-TOTALS — If non null the total of the expressed votes
will not be displayed
IDEMPOTENCY-KEY — May be any string. Used to prevent duplicate
submissions of the same status.

Media attachments can be one of the following types:
INTEGER — The referenced attachment is used.
ATTACHMENT — The referenced attachment is used.
PATHNAME — A new media attachment is created automatically and
its new ID is used.

Returns the newly created status instance.

See CLIENT
See STATUS
See ATTACHMENT

Package

tooter-queries.

Methods
Method: make-status ((client client) status &key in-reply-to media sensitive spoiler-text visibility language scheduled-at poll-options poll-expire-seconds poll-multiple poll-hide-totals idempotency-key)
Source

queries.lisp.

Generic Function: make-subscription (client endpoint public-key secret &key alerts)

Create or update a push notification subscription.

ALERTS should be a list of desired alerts: :FOLLOWS :FAVOURITES :REBLOGS :MENTIONS

Returns the resulting PUSH-SUBSCRIPTION instance.

See CLIENT
See PUSH-SUBSCRIPTION

Package

tooter-queries.

Methods
Method: make-subscription ((client client) endpoint public-key secret &key alerts)
Source

queries.lisp.

Generic Function: make-user-list (client title)

Create a new user list with the given title.

See USER-LIST
See CLIENT

Package

tooter-queries.

Methods
Method: make-user-list ((client client) title)
Source

queries.lisp.

Generic Function: mark-read-conversation (client id)

Marks a conversation ad already read.

See CONVERSATION
See CLIENT

Package

tooter-queries.

Methods
Method: mark-read-conversation ((client client) (id string))
Source

queries.lisp.

Generic Reader: marked-home (object)

Returns information about last position in home timeline

See MARKER

Package

tooter-objects.

Methods
Reader Method: marked-home ((marker marker))

automatically generated reader method

Source

objects.lisp.

Target Slot

marked-home.

Generic Writer: (setf marked-home) (object)
Package

tooter-objects.

Methods
Writer Method: (setf marked-home) ((marker marker))

automatically generated writer method

Source

objects.lisp.

Target Slot

marked-home.

Generic Reader: marked-notifications (object)
Package

tooter-objects.

Methods
Reader Method: marked-notifications ((marker marker))

automatically generated reader method

Source

objects.lisp.

Target Slot

marked-notifications.

Generic Writer: (setf marked-notifications) (object)
Package

tooter-objects.

Methods
Writer Method: (setf marked-notifications) ((marker marker))

automatically generated writer method

Source

objects.lisp.

Target Slot

marked-notifications.

Generic Function: markers (client timeline)
Package

tooter-queries.

Methods
Method: markers ((client client) (timeline list))
Source

queries.lisp.

Generic Reader: me (object)

Returns if the user reacted to this announcement.

Package

tooter-objects.

Methods
Reader Method: me ((reaction reaction))

automatically generated reader method

Source

objects.lisp.

Target Slot

me.

Generic Writer: (setf me) (object)
Package

tooter-objects.

Methods
Writer Method: (setf me) ((reaction reaction))

automatically generated writer method

Source

objects.lisp.

Target Slot

me.

Generic Reader: media-attachments (object)

Returns a list of up to four media attachments.

See ATTACHMENT
See STATUS

Package

tooter-objects.

Methods
Reader Method: media-attachments ((status status))

automatically generated reader method

Source

objects.lisp.

Target Slot

media-attachments.

Generic Writer: (setf media-attachments) (object)
Package

tooter-objects.

Methods
Writer Method: (setf media-attachments) ((status status))

automatically generated writer method

Source

objects.lisp.

Target Slot

media-attachments.

Generic Reader: media-ids (object)

WIP

See status-params

Package

tooter-objects.

Methods
Reader Method: media-ids ((status-params status-params))

automatically generated reader method

Source

objects.lisp.

Target Slot

media-ids.

Generic Writer: (setf media-ids) (object)
Package

tooter-objects.

Methods
Writer Method: (setf media-ids) ((status-params status-params))

automatically generated writer method

Source

objects.lisp.

Target Slot

media-ids.

Generic Reader: mentions (object)

Returns an array of mentions used in the status.

See STATUS
See MENTION

Package

tooter-objects.

Methods
Reader Method: mentions ((status status))

automatically generated reader method

Source

objects.lisp.

Target Slot

mentions.

Reader Method: mentions ((announcement announcement))

automatically generated reader method

Source

objects.lisp.

Target Slot

mentions.

Generic Writer: (setf mentions) (object)
Package

tooter-objects.

Methods
Writer Method: (setf mentions) ((status status))

automatically generated writer method

Source

objects.lisp.

Target Slot

mentions.

Writer Method: (setf mentions) ((announcement announcement))

automatically generated writer method

Source

objects.lisp.

Target Slot

mentions.

Generic Reader: message (condition)

Returns the error message string for the failed request.

See REQUEST-FAILED

Package

tooter-client.

Methods
Reader Method: message ((condition request-failed))
Source

client.lisp.

Target Slot

message.

Generic Reader: metadata (object)

Returns a metadata instance for additional information about the attachment’s media.

See ATTACHMENT

Package

tooter-objects.

Methods
Reader Method: metadata ((attachment attachment))

automatically generated reader method

Source

objects.lisp.

Target Slot

metadata.

Generic Writer: (setf metadata) (object)
Package

tooter-objects.

Methods
Writer Method: (setf metadata) ((attachment attachment))

automatically generated writer method

Source

objects.lisp.

Target Slot

metadata.

Generic Reader: moved (object)

If not NIL, returns the name of the account to which this account has moved.

See ACCOUNT

Package

tooter-objects.

Methods
Reader Method: moved ((account account))

automatically generated reader method

Source

objects.lisp.

Target Slot

moved.

Generic Writer: (setf moved) (object)
Package

tooter-objects.

Methods
Writer Method: (setf moved) ((account account))

automatically generated writer method

Source

objects.lisp.

Target Slot

moved.

Generic Reader: multiple (object)

Returns if the poll admits multiple choices

See POLL

Package

tooter-objects.

Methods
Reader Method: multiple ((poll poll))

automatically generated reader method

Source

objects.lisp.

Target Slot

multiple.

Generic Writer: (setf multiple) (object)
Package

tooter-objects.

Methods
Writer Method: (setf multiple) ((poll poll))

automatically generated writer method

Source

objects.lisp.

Target Slot

multiple.

Generic Function: mute (client id &key notifications)

Mute a new account or conversation.

The account can be either an account ID, or an ACCOUNT instance. It can also be a STATUS in which case that conversation is muted.

Returns the resulting relationship for an account mute, or T for a conversation mute.

See CLIENT
See ACCOUNT
See RELATIONSHIP

Package

tooter-queries.

Methods
Method: mute ((client client) (status status) &key)
Source

queries.lisp.

Method: mute ((client client) (account account) &rest args)
Source

queries.lisp.

Method: mute ((client client) (id string) &key notifications)
Source

queries.lisp.

Generic Function: mute-conversation (client id)

Mute the conversation of the given status.

This means you will no longer receive mention notifications for the given status’ conversation thread.

Returns the referenced status.

See STATUS
See CLIENT

Package

tooter-queries.

Methods
Method: mute-conversation ((client client) (status status))
Source

queries.lisp.

Method: mute-conversation ((client client) (id string))
Source

queries.lisp.

Generic Reader: muted (object)

Returns whether this status should be muted.

See STATUS

Package

tooter-objects.

Methods
Reader Method: muted ((status status))

automatically generated reader method

Source

objects.lisp.

Target Slot

muted.

Generic Writer: (setf muted) (object)
Package

tooter-objects.

Methods
Writer Method: (setf muted) ((status status))

automatically generated writer method

Source

objects.lisp.

Target Slot

muted.

Generic Function: mutes (client &key max-id since-id limit)

Returns a list of accounts that you have muted.

See ACCOUNT
See CLIENT

Package

tooter-queries.

Methods
Method: mutes ((client client) &key max-id since-id limit)
Source

queries.lisp.

Generic Reader: muting (object)

Returns whether the account is muted by you.

See RELATIONSHIP

Package

tooter-objects.

Methods
Reader Method: muting ((relationship relationship))

automatically generated reader method

Source

objects.lisp.

Target Slot

muting.

Generic Writer: (setf muting) (object)
Package

tooter-objects.

Methods
Writer Method: (setf muting) ((relationship relationship))

automatically generated writer method

Source

objects.lisp.

Target Slot

muting.

Generic Reader: muting-notifications (object)

Returns whether notifications from the account are muted by you.

See RELATIONSHIP

Package

tooter-objects.

Methods
Reader Method: muting-notifications ((relationship relationship))

automatically generated reader method

Source

objects.lisp.

Target Slot

muting-notifications.

Generic Writer: (setf muting-notifications) (object)
Package

tooter-objects.

Methods
Writer Method: (setf muting-notifications) ((relationship relationship))

automatically generated writer method

Source

objects.lisp.

Target Slot

muting-notifications.

Generic Reader: name (object)

Returns the emoji specification: unicode value or string representation (i.e. ":name:").

Package

tooter-objects.

Methods
Reader Method: name ((featured-tag featured-tag))

automatically generated reader method

Source

objects.lisp.

Target Slot

name.

Reader Method: name ((tag tag))

automatically generated reader method

Source

objects.lisp.

Target Slot

name.

Reader Method: name ((reaction reaction))

automatically generated reader method

Source

objects.lisp.

Target Slot

name.

Reader Method: name ((application application))

automatically generated reader method

Source

objects.lisp.

Target Slot

name.

Reader Method: name ((field field))

automatically generated reader method

Source

objects.lisp.

Target Slot

name.

Reader Method: name ((client client))

automatically generated reader method

Source

client.lisp.

Target Slot

name.

Generic Writer: (setf name) (object)
Package

tooter-objects.

Methods
Writer Method: (setf name) ((featured-tag featured-tag))

automatically generated writer method

Source

objects.lisp.

Target Slot

name.

Writer Method: (setf name) ((tag tag))

automatically generated writer method

Source

objects.lisp.

Target Slot

name.

Writer Method: (setf name) ((reaction reaction))

automatically generated writer method

Source

objects.lisp.

Target Slot

name.

Writer Method: (setf name) ((application application))

automatically generated writer method

Source

objects.lisp.

Target Slot

name.

Writer Method: (setf name) ((field field))

automatically generated writer method

Source

objects.lisp.

Target Slot

name.

Writer Method: (setf name) ((client client))

automatically generated writer method

Source

client.lisp.

Target Slot

name.

Generic Reader: note (object)

Returns the user biography.

See SOURCE

Package

tooter-objects.

Methods
Reader Method: note ((source source))

automatically generated reader method

Source

objects.lisp.

Target Slot

note.

Reader Method: note ((account account))

automatically generated reader method

Source

objects.lisp.

Target Slot

note.

Generic Writer: (setf note) (object)
Package

tooter-objects.

Methods
Writer Method: (setf note) ((source source))

automatically generated writer method

Source

objects.lisp.

Target Slot

note.

Writer Method: (setf note) ((account account))

automatically generated writer method

Source

objects.lisp.

Target Slot

note.

Generic Function: notifications (client &key max-id min-id since-id limit exclude-types account-id)

Returns a list of notifications about status updates.

See MARKER
See NOTIFICATION
See CLIENT

Package

tooter-queries.

Methods
Method: notifications ((client client) &key max-id min-id since-id limit exclude-types account-id)
Source

queries.lisp.

Generic Reader: options (object)

Returns the possible choices for this poll.

See POLL

Package

tooter-objects.

Methods
Reader Method: options ((poll poll))

automatically generated reader method

Source

objects.lisp.

Target Slot

options.

Generic Writer: (setf options) (object)
Package

tooter-objects.

Methods
Writer Method: (setf options) ((poll poll))

automatically generated writer method

Source

objects.lisp.

Target Slot

options.

Generic Reader: original (object)

Returns metadata information for the original version of the attachment media, if available.

See METADATA
See IMAGE-METADATA
See VIDEO-METADATA

Package

tooter-objects.

Methods
Reader Method: original ((metadata metadata))

automatically generated reader method

Source

objects.lisp.

Target Slot

original.

Generic Writer: (setf original) (object)
Package

tooter-objects.

Methods
Writer Method: (setf original) ((metadata metadata))

automatically generated writer method

Source

objects.lisp.

Target Slot

original.

Generic Reader: own-votes (object)

Returns the choice of an user (requires to be called with a valid user token.

See POLL

Package

tooter-objects.

Methods
Reader Method: own-votes ((poll poll))

automatically generated reader method

Source

objects.lisp.

Target Slot

own-votes.

Generic Writer: (setf own-votes) (object)
Package

tooter-objects.

Methods
Writer Method: (setf own-votes) ((poll poll))

automatically generated writer method

Source

objects.lisp.

Target Slot

own-votes.

Generic Reader: params (object)

Returns ...

See SCHEDULED-STATUS

Package

tooter-objects.

Methods
Reader Method: params ((scheduled-status scheduled-status))

automatically generated reader method

Source

objects.lisp.

Target Slot

params.

Generic Writer: (setf params) (object)
Package

tooter-objects.

Methods
Writer Method: (setf params) ((scheduled-status scheduled-status))

automatically generated writer method

Source

objects.lisp.

Target Slot

params.

Generic Reader: parent (object)

Returns the original status this status is a reblog of.

See STATUS

Package

tooter-objects.

Methods
Reader Method: parent ((status status))

automatically generated reader method

Source

objects.lisp.

Target Slot

parent.

Generic Writer: (setf parent) (object)
Package

tooter-objects.

Methods
Writer Method: (setf parent) ((status status))

automatically generated writer method

Source

objects.lisp.

Target Slot

parent.

Generic Function: peers (client)

Retrieve the instances that the server knows.

See CLIENT

Package

tooter-queries.

Methods
Method: peers ((client client))
Source

queries.lisp.

Generic Reader: phrase (object)

Returns the filter’s text

Package

tooter-objects.

Methods
Reader Method: phrase ((filter filter))

automatically generated reader method

Source

objects.lisp.

Target Slot

phrase.

Generic Writer: (setf phrase) (object)
Package

tooter-objects.

Methods
Writer Method: (setf phrase) ((filter filter))

automatically generated writer method

Source

objects.lisp.

Target Slot

phrase.

Generic Function: pin (client id)

Pin the given status to your profile.

The status can either be a STATUS instance, or an ID of one.

Returns the referenced status.

See STATUS
See CLIENT

Package

tooter-queries.

Methods
Method: pin ((client client) (status status))
Source

queries.lisp.

Method: pin ((client client) (id string))
Source

queries.lisp.

Generic Reader: pinned (object)

Returns whether this status is pinned on the user’s profile.

See STATUS

Package

tooter-objects.

Methods
Reader Method: pinned ((status status))

automatically generated reader method

Source

objects.lisp.

Target Slot

pinned.

Generic Writer: (setf pinned) (object)
Package

tooter-objects.

Methods
Writer Method: (setf pinned) ((status status))

automatically generated writer method

Source

objects.lisp.

Target Slot

pinned.

Generic Reader: poll (object)

Returns a poll attached to this status, nil if no poll is attached.

See STATUS

Package

tooter-objects.

Methods
Reader Method: poll ((status status))

automatically generated reader method

Source

objects.lisp.

Target Slot

poll.

Generic Writer: (setf poll) (object)
Package

tooter-objects.

Methods
Writer Method: (setf poll) ((status status))

automatically generated writer method

Source

objects.lisp.

Target Slot

poll.

Generic Function: poll-vote (client id choices)

Votes for choices in a poll.

See CLIENT
See POLL
See POLL-OPTION

Package

tooter-queries.

Methods
Method: poll-vote ((client client) (poll poll) choices)
Source

queries.lisp.

Method: poll-vote ((client client) (id string) (choices list))
Source

queries.lisp.

Generic Function: polls (client id)

Returns a poll

See CLIENT See POLL See POLL-OPTION

Package

tooter-queries.

Methods
Method: polls ((client client) (poll poll))
Source

queries.lisp.

Method: polls ((client client) (id string))
Source

queries.lisp.

Generic Reader: posting-default-language (object)

Return the default language for post.

See PREFERENCES

Package

tooter-objects.

Methods
Reader Method: posting-default-language ((preferences preferences))

automatically generated reader method

Source

objects.lisp.

Target Slot

posting-default-language.

Generic Writer: (setf posting-default-language) (object)
Package

tooter-objects.

Methods
Writer Method: (setf posting-default-language) ((preferences preferences))

automatically generated writer method

Source

objects.lisp.

Target Slot

posting-default-language.

Generic Reader: posting-default-sensitive (object)

Returns if flag post as "sensible" by default.

See PREFERENCES

Package

tooter-objects.

Methods
Reader Method: posting-default-sensitive ((preferences preferences))

automatically generated reader method

Source

objects.lisp.

Target Slot

posting-default-sensitive.

Generic Writer: (setf posting-default-sensitive) (object)
Package

tooter-objects.

Methods
Writer Method: (setf posting-default-sensitive) ((preferences preferences))

automatically generated writer method

Source

objects.lisp.

Target Slot

posting-default-sensitive.

Generic Reader: posting-default-visibility (object)

Returns the default visibility for post. Possible values are:

:PUBLIC – visible by all
:UNLISTED – visible by all but not shown in timeline :PRIVATE – visible by followers only
:DIRECT – visible as conversation

See PREFERENCES

Package

tooter-objects.

Methods
Reader Method: posting-default-visibility ((preferences preferences))

automatically generated reader method

Source

objects.lisp.

Target Slot

posting-default-visibility.

Generic Writer: (setf posting-default-visibility) (object)
Package

tooter-objects.

Methods
Writer Method: (setf posting-default-visibility) ((preferences preferences))

automatically generated writer method

Source

objects.lisp.

Target Slot

posting-default-visibility.

Generic Function: preferences (client)

Returns the user preferences

See PREFERENCES

Package

tooter-objects.

Methods
Method: preferences ((client client))
Source

queries.lisp.

Generic Reader: preview-card (object)

Returns a convenient JSON preview for links contained in a status.

See STATUS

Package

tooter-objects.

Methods
Reader Method: preview-card ((status status))

automatically generated reader method

Source

objects.lisp.

Target Slot

preview-card.

Generic Writer: (setf preview-card) (object)
Package

tooter-objects.

Methods
Writer Method: (setf preview-card) ((status status))

automatically generated writer method

Source

objects.lisp.

Target Slot

preview-card.

Generic Reader: preview-url (object)

Returns the URL for the media’s preview, which may be resized and cropped.

See ATTACHMENT

Package

tooter-objects.

Methods
Reader Method: preview-url ((attachment attachment))

automatically generated reader method

Source

objects.lisp.

Target Slot

preview-url.

Generic Writer: (setf preview-url) (object)
Package

tooter-objects.

Methods
Writer Method: (setf preview-url) ((attachment attachment))

automatically generated writer method

Source

objects.lisp.

Target Slot

preview-url.

Generic Reader: privacy (object)

Returns the default privacy mode for the statuses. possible values are:

:PUBLIC – visible by all
:UNLISTED – visible by all but not shown in timeline
:PRIVATE – visible by followers only
:DIRECT – visible as conversation

See SOURCE

Package

tooter-objects.

Methods
Reader Method: privacy ((source source))

automatically generated reader method

Source

objects.lisp.

Target Slot

privacy.

Generic Writer: (setf privacy) (object)
Package

tooter-objects.

Methods
Writer Method: (setf privacy) ((source source))

automatically generated writer method

Source

objects.lisp.

Target Slot

privacy.

Generic Reader: profile-url (object)

Returns the URL of the profile on the identity provider

See IDENTITY-PROOF

Package

tooter-objects.

Methods
Reader Method: profile-url ((identity-proof identity-proof))

automatically generated reader method

Source

objects.lisp.

Target Slot

profile-url.

Generic Writer: (setf profile-url) (object)
Package

tooter-objects.

Methods
Writer Method: (setf profile-url) ((identity-proof identity-proof))

automatically generated writer method

Source

objects.lisp.

Target Slot

profile-url.

Generic Reader: proof-url (object)

Returns the URL of the proof of identity on the identity provider

See IDENTITY-PROOF

Package

tooter-objects.

Methods
Reader Method: proof-url ((identity-proof identity-proof))

automatically generated reader method

Source

objects.lisp.

Target Slot

proof-url.

Generic Writer: (setf proof-url) (object)
Package

tooter-objects.

Methods
Writer Method: (setf proof-url) ((identity-proof identity-proof))

automatically generated writer method

Source

objects.lisp.

Target Slot

proof-url.

Generic Reader: provider (object)

Returns the name of the identity provider

See IDENTITY-PROOF

Package

tooter-objects.

Methods
Reader Method: provider ((identity-proof identity-proof))

automatically generated reader method

Source

objects.lisp.

Target Slot

provider.

Generic Writer: (setf provider) (object)
Package

tooter-objects.

Methods
Writer Method: (setf provider) ((identity-proof identity-proof))

automatically generated writer method

Source

objects.lisp.

Target Slot

provider.

Generic Reader: provider-name (object)

Returns the name of the status’ instance.

See CARD

Package

tooter-objects.

Methods
Reader Method: provider-name ((card card))

automatically generated reader method

Source

objects.lisp.

Target Slot

provider-name.

Generic Writer: (setf provider-name) (object)
Package

tooter-objects.

Methods
Writer Method: (setf provider-name) ((card card))

automatically generated writer method

Source

objects.lisp.

Target Slot

provider-name.

Generic Reader: provider-url (object)

Returns the URL to the status’ instance.

See CARD

Package

tooter-objects.

Methods
Reader Method: provider-url ((card card))

automatically generated reader method

Source

objects.lisp.

Target Slot

provider-url.

Generic Writer: (setf provider-url) (object)
Package

tooter-objects.

Methods
Writer Method: (setf provider-url) ((card card))

automatically generated writer method

Source

objects.lisp.

Target Slot

provider-url.

Generic Reader: provider-username (object)

Returns the username on the identity provider

See IDENTITY-PROOF

Package

tooter-objects.

Methods
Reader Method: provider-username ((identity-proof identity-proof))

automatically generated reader method

Source

objects.lisp.

Target Slot

provider-username.

Generic Writer: (setf provider-username) (object)
Package

tooter-objects.

Methods
Writer Method: (setf provider-username) ((identity-proof identity-proof))

automatically generated writer method

Source

objects.lisp.

Target Slot

provider-username.

Generic Reader: published (object)

Returns if this announcement is active or not.

See ANNOUNCEMENT

Package

tooter-objects.

Methods
Reader Method: published ((announcement announcement))

automatically generated reader method

Source

objects.lisp.

Target Slot

published.

Generic Writer: (setf published) (object)
Package

tooter-objects.

Methods
Writer Method: (setf published) ((announcement announcement))

automatically generated writer method

Source

objects.lisp.

Target Slot

published.

Generic Reader: published-at (object)

Returns the date when this announcement was published.

See ANNOUNCEMENT

Package

tooter-objects.

Methods
Reader Method: published-at ((announcement announcement))

automatically generated reader method

Source

objects.lisp.

Target Slot

published-at.

Generic Writer: (setf published-at) (object)
Package

tooter-objects.

Methods
Writer Method: (setf published-at) ((announcement announcement))

automatically generated writer method

Source

objects.lisp.

Target Slot

published-at.

Generic Function: query (client endpoint &rest parameters)

Performs a query request against the client.

The endpoint should be the full path on the server. The parameters should be a plist of keys and values to be sent as request parameters. The list is transformed via PARAM-PLIST->ALIST. By default this uses the GET request method. You can specify a different method with the special parameter :HTTP-METHOD.

Note that no matter what, the content-type of the request will be application/x-www-form-urlencoded meaning it is not suitable to upload files using QUERY.

See CLIENT
See PARAM-PLIST->ALIST
See SUBMIT

Package

tooter-client.

Methods
Method: query ((client client) endpoint &rest parameters)
Source

client.lisp.

Generic Reader: reaction-count (object)

Returns the number of users that reacted to an announcement.

Package

tooter-objects.

Methods
Reader Method: reaction-count ((reaction reaction))

automatically generated reader method

Source

objects.lisp.

Target Slot

reaction-count.

Generic Writer: (setf reaction-count) (object)
Package

tooter-objects.

Methods
Writer Method: (setf reaction-count) ((reaction reaction))

automatically generated writer method

Source

objects.lisp.

Target Slot

reaction-count.

Generic Reader: reactions (object)

Returns the reactions to this announcement

See ANNOUNCEMENT
See REACTION

Package

tooter-objects.

Methods
Reader Method: reactions ((announcement announcement))

automatically generated reader method

Source

objects.lisp.

Target Slot

reactions.

Generic Writer: (setf reactions) (object)
Package

tooter-objects.

Methods
Writer Method: (setf reactions) ((announcement announcement))

automatically generated writer method

Source

objects.lisp.

Target Slot

reactions.

Generic Reader: reading-expand-media (object)

:SHOW-ALL – show all media :HIDE-ALL – hide all media

See PREFERENCES

Package

tooter-objects.

Methods
Reader Method: reading-expand-media ((preferences preferences))

automatically generated reader method

Source

objects.lisp.

Target Slot

reading-expand-media.

Generic Writer: (setf reading-expand-media) (object)
Package

tooter-objects.

Methods
Writer Method: (setf reading-expand-media) ((preferences preferences))

automatically generated writer method

Source

objects.lisp.

Target Slot

reading-expand-media.

Generic Reader: reading-expand-spoilers (object)

Returns if expands posts marked as ’sensible’.

See PREFERENCES

Package

tooter-objects.

Methods
Reader Method: reading-expand-spoilers ((preferences preferences))

automatically generated reader method

Source

objects.lisp.

Target Slot

reading-expand-spoilers.

Generic Writer: (setf reading-expand-spoilers) (object)
Package

tooter-objects.

Methods
Writer Method: (setf reading-expand-spoilers) ((preferences preferences))

automatically generated writer method

Source

objects.lisp.

Target Slot

reading-expand-spoilers.

Generic Reader: readp (object)

Returns if this announcement has been read by the user

See ANNOUNCEMENT

Package

tooter-objects.

Methods
Reader Method: readp ((announcement announcement))

automatically generated reader method

Source

objects.lisp.

Target Slot

readp.

Generic Writer: (setf readp) (object)
Package

tooter-objects.

Methods
Writer Method: (setf readp) ((announcement announcement))

automatically generated writer method

Source

objects.lisp.

Target Slot

readp.

Generic Function: reblog (client id)

Reblog the given status.

The status can either be a STATUS instance, or an ID of one.

Returns the new status which is a reblog of the given status.

See STATUS
See CLIENT

Package

tooter-queries.

Methods
Method: reblog ((client client) (status status))
Source

queries.lisp.

Method: reblog ((client client) (id string))
Source

queries.lisp.

Generic Reader: reblogged (object)

Returns whether you have reblogged this status.

See STATUS

Package

tooter-objects.

Methods
Reader Method: reblogged ((status status))

automatically generated reader method

Source

objects.lisp.

Target Slot

reblogged.

Generic Writer: (setf reblogged) (object)
Package

tooter-objects.

Methods
Writer Method: (setf reblogged) ((status status))

automatically generated writer method

Source

objects.lisp.

Target Slot

reblogged.

Generic Function: rebloggers (client id &key max-id since-id limit)

Retrieve the list of accounts that reblogged the status.

The status can either be a STATUS instance, or an ID of one.

See STATUS
See CLIENT
See ACCOUNT

Package

tooter-queries.

Methods
Method: rebloggers ((client client) (status status) &rest args)
Source

queries.lisp.

Method: rebloggers ((client client) (id string) &key max-id since-id limit)
Source

queries.lisp.

Generic Reader: reblogs-count (object)

Returns the number of reblogs this status has received.

See STATUS

Package

tooter-objects.

Methods
Reader Method: reblogs-count ((status status))

automatically generated reader method

Source

objects.lisp.

Target Slot

reblogs-count.

Generic Writer: (setf reblogs-count) (object)
Package

tooter-objects.

Methods
Writer Method: (setf reblogs-count) ((status status))

automatically generated writer method

Source

objects.lisp.

Target Slot

reblogs-count.

Generic Reader: redirect (object)

Accessor to the redirect URL used to complete the authentication flow.

Unless manually set, this is defaulted to "urn:ietf:wg:oauth:2.0:oob" which will display the authentication code to the user on the website during authorisation.

See CLIENT
See AUTHORIZE

Package

tooter-client.

Methods
Reader Method: redirect ((client client))

automatically generated reader method

Source

client.lisp.

Target Slot

redirect.

Generic Writer: (setf redirect) (object)
Package

tooter-client.

Methods
Writer Method: (setf redirect) ((client client))

automatically generated writer method

Source

client.lisp.

Target Slot

redirect.

Generic Function: register (client)

Register the application on the Mastodon instance.

This will cause the KEY and SECRET to be set in the client if the registration succeeds.

Returns the client instance, the key, and the secret.

See CLIENT

Package

tooter-client.

Methods
Method: register ((client client))
Source

client.lisp.

Generic Reader: registrations (object)

Returns if is possible to register an user with this instance.

See INSTANCE

Package

tooter-objects.

Methods
Reader Method: registrations ((instance instance))

automatically generated reader method

Source

objects.lisp.

Target Slot

registrations.

Reader Method: registrations ((activity activity))

automatically generated reader method

Source

objects.lisp.

Target Slot

registrations.

Generic Writer: (setf registrations) (object)
Package

tooter-objects.

Methods
Writer Method: (setf registrations) ((instance instance))

automatically generated writer method

Source

objects.lisp.

Target Slot

registrations.

Writer Method: (setf registrations) ((activity activity))

automatically generated writer method

Source

objects.lisp.

Target Slot

registrations.

Generic Function: reject-request (client id)

Reject the follow request of the given account.

See CLIENT
See ACCOUNT

Package

tooter-queries.

Methods
Method: reject-request ((client client) (account account))
Source

queries.lisp.

Method: reject-request ((client client) (id string))
Source

queries.lisp.

Generic Function: relationships (client ids)

Returns a list of relationships for the given accounts.

The accounts can be a list of IDs or ACCOUNT instances.

See CLIENT
See ACCOUNT
See RELATIONSHIP

Package

tooter-queries.

Methods
Method: relationships ((client client) (account account))
Source

queries.lisp.

Method: relationships ((client client) (ids cons))
Source

queries.lisp.

Generic Reader: remote-url (object)

Returns the remote URL if the attachment resides on a remote instance.

See ATTACHMENT

Package

tooter-objects.

Methods
Reader Method: remote-url ((attachment attachment))

automatically generated reader method

Source

objects.lisp.

Target Slot

remote-url.

Generic Writer: (setf remote-url) (object)
Package

tooter-objects.

Methods
Writer Method: (setf remote-url) ((attachment attachment))

automatically generated writer method

Source

objects.lisp.

Target Slot

remote-url.

Generic Function: remove-user-list-accounts (client id accounts)

Remove existing accounts from the user-list.

The list can be either a USER-LIST instance, or an ID of one. The accounts in the list can be either account instances, or IDs of accounts.

See ACCOUNT
See CLIENT
See USER-LIST

Package

tooter-queries.

Methods
Method: remove-user-list-accounts ((client client) (user-list user-list) accounts)
Source

queries.lisp.

Method: remove-user-list-accounts ((client client) (id string) accounts)
Source

queries.lisp.

Generic Reader: replies-count (object)

Returns the number of replies this status has received.

See STATUS

Package

tooter-objects.

Methods
Reader Method: replies-count ((status status))

automatically generated reader method

Source

objects.lisp.

Target Slot

replies-count.

Generic Writer: (setf replies-count) (object)
Package

tooter-objects.

Methods
Writer Method: (setf replies-count) ((status status))

automatically generated writer method

Source

objects.lisp.

Target Slot

replies-count.

Generic Function: reports (client)

Returns a list of submitted reports.

See REPORT
See CLIENT

Package

tooter-queries.

Methods
Method: reports ((client client))
Source

queries.lisp.

Generic Reader: requested (object)

Returns whether you have requested a follow to the account.

See RELATIONSHIP

Package

tooter-objects.

Methods
Reader Method: requested ((relationship relationship))

automatically generated reader method

Source

objects.lisp.

Target Slot

requested.

Generic Writer: (setf requested) (object)
Package

tooter-objects.

Methods
Writer Method: (setf requested) ((relationship relationship))

automatically generated writer method

Source

objects.lisp.

Target Slot

requested.

Generic Reader: results-accounts (object)

Returns a list of matching accounts.

See RESULTS

Package

tooter-objects.

Methods
Reader Method: results-accounts ((results results))

automatically generated reader method

Source

objects.lisp.

Target Slot

results-accounts.

Generic Writer: (setf results-accounts) (object)
Package

tooter-objects.

Methods
Writer Method: (setf results-accounts) ((results results))

automatically generated writer method

Source

objects.lisp.

Target Slot

results-accounts.

Generic Reader: results-statuses (object)

Returns a list of matching status.

See RESULTS

Package

tooter-objects.

Methods
Reader Method: results-statuses ((results results))

automatically generated reader method

Source

objects.lisp.

Target Slot

results-statuses.

Generic Writer: (setf results-statuses) (object)
Package

tooter-objects.

Methods
Writer Method: (setf results-statuses) ((results results))

automatically generated writer method

Source

objects.lisp.

Target Slot

results-statuses.

Generic Function: save-markers (client &key last-status-read last-notification-read)
Package

tooter-queries.

Methods
Method: save-markers ((client client) &key last-status-read last-notification-read)
Source

queries.lisp.

Generic Reader: scheduled-at (object)

Returns ...

See SCHEDULED-STATUS

Package

tooter-objects.

Methods
Reader Method: scheduled-at ((scheduled-status scheduled-status))

automatically generated reader method

Source

objects.lisp.

Target Slot

scheduled-at.

Reader Method: scheduled-at ((status-params status-params))

automatically generated reader method

Source

objects.lisp.

Target Slot

scheduled-at.

Generic Writer: (setf scheduled-at) (object)
Package

tooter-objects.

Methods
Writer Method: (setf scheduled-at) ((scheduled-status scheduled-status))

automatically generated writer method

Source

objects.lisp.

Target Slot

scheduled-at.

Writer Method: (setf scheduled-at) ((status-params status-params))

automatically generated writer method

Source

objects.lisp.

Target Slot

scheduled-at.

Generic Reader: scope (object)

Returns the oauth access token scope (space separated fields).

See TOKEN

Package

tooter-objects.

Methods
Reader Method: scope ((token token))

automatically generated reader method

Source

objects.lisp.

Target Slot

scope.

Generic Writer: (setf scope) (object)
Package

tooter-objects.

Methods
Writer Method: (setf scope) ((token token))

automatically generated writer method

Source

objects.lisp.

Target Slot

scope.

Generic Reader: scopes (object)

Accessor to the list of scopes the client will have access to.

A scope can be one of :READ, :WRITE, :FOLLOW. Unless manually set, this defaults to a list of all three scopes.

See CLIENT
See REGISTER

Package

tooter-client.

Methods
Reader Method: scopes ((client client))

automatically generated reader method

Source

client.lisp.

Target Slot

scopes.

Generic Writer: (setf scopes) (object)
Package

tooter-client.

Methods
Writer Method: (setf scopes) ((client client))

automatically generated writer method

Source

client.lisp.

Target Slot

scopes.

Generic Function: search-accounts (client query &key limit following resolve)

Search for accounts on the Mastodon network.

This is the only way of retrieving accounts outside of the local instance.

Returns a list of matching accounts.

See CLIENT
See ACCOUNT

Package

tooter-queries.

Methods
Method: search-accounts ((client client) query &key limit following resolve)
Source

queries.lisp.

Generic Reader: secret (object)

Accessor to the application secret the client is using to connect.

Unless manually filled in, this will be automatically set by REGISTER.

See CLIENT
See REGISTER

Package

tooter-client.

Methods
Reader Method: secret ((client client))

automatically generated reader method

Source

client.lisp.

Target Slot

secret.

Generic Writer: (setf secret) (object)
Package

tooter-client.

Methods
Writer Method: (setf secret) ((client client))

automatically generated writer method

Source

client.lisp.

Target Slot

secret.

Generic Reader: sensitive (object)

Returns if the the user biography.

See SOURCE

Package

tooter-objects.

Methods
Reader Method: sensitive ((source source))

automatically generated reader method

Source

objects.lisp.

Target Slot

sensitive.

Reader Method: sensitive ((status status))

automatically generated reader method

Source

objects.lisp.

Target Slot

sensitive.

Reader Method: sensitive ((status-params status-params))

automatically generated reader method

Source

objects.lisp.

Target Slot

sensitive.

Generic Writer: (setf sensitive) (object)
Package

tooter-objects.

Methods
Writer Method: (setf sensitive) ((source source))

automatically generated writer method

Source

objects.lisp.

Target Slot

sensitive.

Writer Method: (setf sensitive) ((status status))

automatically generated writer method

Source

objects.lisp.

Target Slot

sensitive.

Writer Method: (setf sensitive) ((status-params status-params))

automatically generated writer method

Source

objects.lisp.

Target Slot

sensitive.

Generic Reader: server-key (object)

The public key signature for verification of deliveries.

See PUSH-SUBSCRIPTION

Package

tooter-objects.

Methods
Reader Method: server-key ((push-subscription push-subscription))

automatically generated reader method

Source

objects.lisp.

Target Slot

server-key.

Generic Writer: (setf server-key) (object)
Package

tooter-objects.

Methods
Writer Method: (setf server-key) ((push-subscription push-subscription))

automatically generated writer method

Source

objects.lisp.

Target Slot

server-key.

Generic Reader: short-description (object)

Returns a short description of the object.

See INSTANCE

Package

tooter-objects.

Methods
Reader Method: short-description ((instance instance))

automatically generated reader method

Source

objects.lisp.

Target Slot

short-description.

Generic Writer: (setf short-description) (object)
Package

tooter-objects.

Methods
Writer Method: (setf short-description) ((instance instance))

automatically generated writer method

Source

objects.lisp.

Target Slot

short-description.

Generic Reader: shortcode (object)

Returns the short code to display the emoji.

See EMOJI

Package

tooter-objects.

Methods
Reader Method: shortcode ((emoji emoji))

automatically generated reader method

Source

objects.lisp.

Target Slot

shortcode.

Generic Writer: (setf shortcode) (object)
Package

tooter-objects.

Methods
Writer Method: (setf shortcode) ((emoji emoji))

automatically generated writer method

Source

objects.lisp.

Target Slot

shortcode.

Generic Reader: showing-reblogs (object)

Returns if this user has boosted your toots.

See RELATIONSHIP

Package

tooter-objects.

Methods
Reader Method: showing-reblogs ((relationship relationship))

automatically generated reader method

Source

objects.lisp.

Target Slot

showing-reblogs.

Generic Writer: (setf showing-reblogs) (object)
Package

tooter-objects.

Methods
Writer Method: (setf showing-reblogs) ((relationship relationship))

automatically generated writer method

Source

objects.lisp.

Target Slot

showing-reblogs.

Generic Reader: size (object)

Returns the size of the image.

See IMAGE-METADATA

Package

tooter-objects.

Methods
Reader Method: size ((image-metadata image-metadata))

automatically generated reader method

Source

objects.lisp.

Target Slot

size.

Generic Writer: (setf size) (object)
Package

tooter-objects.

Methods
Writer Method: (setf size) ((image-metadata image-metadata))

automatically generated writer method

Source

objects.lisp.

Target Slot

size.

Generic Reader: small (object)

Returns metadata information for the small version of the attachment media, if available.

See METADATA
See IMAGE-METADATA
See VIDEO-METADATA

Package

tooter-objects.

Methods
Reader Method: small ((metadata metadata))

automatically generated reader method

Source

objects.lisp.

Target Slot

small.

Generic Writer: (setf small) (object)
Package

tooter-objects.

Methods
Writer Method: (setf small) ((metadata metadata))

automatically generated writer method

Source

objects.lisp.

Target Slot

small.

Generic Reader: source (object)

Returns a hash table of extra information about the account.

This is only set for accounts retrieved through verify-credentials.

See ACCOUNT

Package

tooter-objects.

Methods
Reader Method: source ((account account))

automatically generated reader method

Source

objects.lisp.

Target Slot

source.

Generic Writer: (setf source) (object)
Package

tooter-objects.

Methods
Writer Method: (setf source) ((account account))

automatically generated writer method

Source

objects.lisp.

Target Slot

source.

Generic Reader: spoiler-text (object)

Returns the spoiler text for the status.

See STATUS

Package

tooter-objects.

Methods
Reader Method: spoiler-text ((status status))

automatically generated reader method

Source

objects.lisp.

Target Slot

spoiler-text.

Reader Method: spoiler-text ((status-params status-params))

automatically generated reader method

Source

objects.lisp.

Target Slot

spoiler-text.

Generic Writer: (setf spoiler-text) (object)
Package

tooter-objects.

Methods
Writer Method: (setf spoiler-text) ((status status))

automatically generated writer method

Source

objects.lisp.

Target Slot

spoiler-text.

Writer Method: (setf spoiler-text) ((status-params status-params))

automatically generated writer method

Source

objects.lisp.

Target Slot

spoiler-text.

Generic Reader: starts-at (object)

Returns a date when announcement will start.

See ANNOUNCEMENT

Package

tooter-objects.

Methods
Reader Method: starts-at ((announcement announcement))

automatically generated reader method

Source

objects.lisp.

Target Slot

starts-at.

Generic Writer: (setf starts-at) (object)
Package

tooter-objects.

Methods
Writer Method: (setf starts-at) ((announcement announcement))

automatically generated writer method

Source

objects.lisp.

Target Slot

starts-at.

Generic Reader: static-url (object)

Returns the static image of the emoji.

See EMOJI

Package

tooter-objects.

Methods
Reader Method: static-url ((reaction reaction))

automatically generated reader method

Source

objects.lisp.

Target Slot

static-url.

Reader Method: static-url ((emoji emoji))

automatically generated reader method

Source

objects.lisp.

Target Slot

static-url.

Generic Writer: (setf static-url) (object)
Package

tooter-objects.

Methods
Writer Method: (setf static-url) ((reaction reaction))

automatically generated writer method

Source

objects.lisp.

Target Slot

static-url.

Writer Method: (setf static-url) ((emoji emoji))

automatically generated writer method

Source

objects.lisp.

Target Slot

static-url.

Generic Reader: stats (object)

Statistics about this instance.

See INSTANCE-STATS
See INSTANCE

Package

tooter-objects.

Methods
Reader Method: stats ((instance instance))

automatically generated reader method

Source

objects.lisp.

Target Slot

stats.

Generic Writer: (setf stats) (object)
Package

tooter-objects.

Methods
Writer Method: (setf stats) ((instance instance))

automatically generated writer method

Source

objects.lisp.

Target Slot

stats.

Generic Reader: status (object)

Returns the status the notification is about.

See NOTIFICATION

Package

tooter-objects.

Methods
Reader Method: status ((notification notification))

automatically generated reader method

Source

objects.lisp.

Target Slot

status.

Generic Writer: (setf status) (object)
Package

tooter-objects.

Methods
Writer Method: (setf status) ((notification notification))

automatically generated writer method

Source

objects.lisp.

Target Slot

status.

Generic Reader: status-count (object)

Returns the status counts for this instance.

See INSTANCE-STATS

Package

tooter-objects.

Methods
Reader Method: status-count ((instance-stats instance-stats))

automatically generated reader method

Source

objects.lisp.

Target Slot

status-count.

Generic Writer: (setf status-count) (object)
Package

tooter-objects.

Methods
Writer Method: (setf status-count) ((instance-stats instance-stats))

automatically generated writer method

Source

objects.lisp.

Target Slot

status-count.

Generic Reader: statuses (object)

Number of statuses

See ACTIVITY See RESULTS

Package

tooter-objects.

Methods
Reader Method: statuses ((announcement announcement))

automatically generated reader method

Source

objects.lisp.

Target Slot

statuses.

Reader Method: statuses ((activity activity))

automatically generated reader method

Source

objects.lisp.

Target Slot

statuses.

Generic Writer: (setf statuses) (object)
Package

tooter-objects.

Methods
Writer Method: (setf statuses) ((announcement announcement))

automatically generated writer method

Source

objects.lisp.

Target Slot

statuses.

Writer Method: (setf statuses) ((activity activity))

automatically generated writer method

Source

objects.lisp.

Target Slot

statuses.

Generic Reader: statuses-count (object)

Returns the number of statuses the account has made.

See ACCOUNT

Package

tooter-objects.

Methods
Reader Method: statuses-count ((featured-tag featured-tag))

automatically generated reader method

Source

objects.lisp.

Target Slot

statuses-count.

Reader Method: statuses-count ((account account))

automatically generated reader method

Source

objects.lisp.

Target Slot

statuses-count.

Generic Writer: (setf statuses-count) (object)
Package

tooter-objects.

Methods
Writer Method: (setf statuses-count) ((featured-tag featured-tag))

automatically generated writer method

Source

objects.lisp.

Target Slot

statuses-count.

Writer Method: (setf statuses-count) ((account account))

automatically generated writer method

Source

objects.lisp.

Target Slot

statuses-count.

Generic Function: submit (client endpoint &rest parameters)

Performs a submission request against the client.

The endpoint should be the full path on the server. The parameters should be a plist of keys and values to be sent as request parameters. The list is transformed via PARAM-PLIST->ALIST. By default this uses the POST request method. You can specify a different method with the special parameter :HTTP-METHOD. You can also specify an idempotency key with the special parameter :IDEMPOTENCY-KEY.

Note that no matter what, the content-type of the request will be multipart/form-data meaning it is not suitable to use for GET endpoints.

See CLIENT
See PARAM-PLIST->ALIST
See QUERY

Package

tooter-client.

Methods
Method: submit ((client client) endpoint &rest parameters)
Source

client.lisp.

Generic Function: subscription (client)

Retrieve the current push subscription settings.

See CLIENT
See PUSH-SUBSCRIPTION

Package

tooter-queries.

Methods
Method: subscription ((client client))
Source

queries.lisp.

Generic Reader: tags (object)

Returns an array of tags used in the status.

See STATUS
See TAG

Package

tooter-objects.

Methods
Reader Method: tags ((status status))

automatically generated reader method

Source

objects.lisp.

Target Slot

tags.

Reader Method: tags ((announcement announcement))

automatically generated reader method

Source

objects.lisp.

Target Slot

tags.

Generic Writer: (setf tags) (object)
Package

tooter-objects.

Methods
Writer Method: (setf tags) ((status status))

automatically generated writer method

Source

objects.lisp.

Target Slot

tags.

Writer Method: (setf tags) ((announcement announcement))

automatically generated writer method

Source

objects.lisp.

Target Slot

tags.

Generic Reader: text (object)

WIP

See status-params

Package

tooter-objects.

Methods
Reader Method: text ((status-params status-params))

automatically generated reader method

Source

objects.lisp.

Target Slot

text.

Generic Writer: (setf text) (object)
Package

tooter-objects.

Methods
Writer Method: (setf text) ((status-params status-params))

automatically generated writer method

Source

objects.lisp.

Target Slot

text.

Generic Reader: text-url (object)

Returns a shorter URL for usage in text snippets if the attachment is on the local instance.

See ATTACHMENT

Package

tooter-objects.

Methods
Reader Method: text-url ((attachment attachment))

automatically generated reader method

Source

objects.lisp.

Target Slot

text-url.

Generic Writer: (setf text-url) (object)
Package

tooter-objects.

Methods
Writer Method: (setf text-url) ((attachment attachment))

automatically generated writer method

Source

objects.lisp.

Target Slot

text-url.

Generic Reader: thumbnail (object)

banner of this instance.

See INSTANCE

Package

tooter-objects.

Methods
Reader Method: thumbnail ((instance instance))

automatically generated reader method

Source

objects.lisp.

Target Slot

thumbnail.

Generic Writer: (setf thumbnail) (object)
Package

tooter-objects.

Methods
Writer Method: (setf thumbnail) ((instance instance))

automatically generated writer method

Source

objects.lisp.

Target Slot

thumbnail.

Generic Function: timeline (client kind &key local only-media max-id since-id limit min-id)

Returns statuses for the specified timeline.

The KIND can be one of the following:
:HOME — Returns statuses for your home timeline. This includes your own and statuses of all accounts you follow. :PUBLIC — Returns statuses for your instance’s public timeline. STRING — Returns statuses for the given user-list’s accounts. USER-LIST — Returns statuses for the given user-list’s accounts. TAG — Returns statuses for the given hashtag.

See STATUS
See CLIENT
See USER-LIST

Package

tooter-queries.

Source

queries.lisp.

Methods
Method: timeline ((client client) (user-list user-list) &rest args)
Method: timeline ((client client) (tag tag) &rest args)
Method: timeline ((client client) (id string) &rest args)
Method: timeline ((client client) (kind (eql :public)) &rest args)
Method: timeline ((client client) (kind (eql :home)) &rest args)
Generic Function: timeline-tag (client tag &rest args)

Returns statuses for the given hashtag.

See CLIENT
See TAG
See STATUS

Package

tooter-queries.

Source

queries.lisp.

Methods
Method: timeline-tag ((client client) (tag string) &rest args)
Generic Reader: title (object)

Returns the title of the object.

See CARD
See INSTANCE
See USER-LIST

Package

tooter-objects.

Methods
Reader Method: title ((poll-option poll-option))

automatically generated reader method

Source

objects.lisp.

Target Slot

title.

Reader Method: title ((user-list user-list))

automatically generated reader method

Source

objects.lisp.

Target Slot

title.

Reader Method: title ((instance instance))

automatically generated reader method

Source

objects.lisp.

Target Slot

title.

Reader Method: title ((card card))

automatically generated reader method

Source

objects.lisp.

Target Slot

title.

Generic Writer: (setf title) (object)
Package

tooter-objects.

Methods
Writer Method: (setf title) ((poll-option poll-option))

automatically generated writer method

Source

objects.lisp.

Target Slot

title.

Writer Method: (setf title) ((user-list user-list))

automatically generated writer method

Source

objects.lisp.

Target Slot

title.

Writer Method: (setf title) ((instance instance))

automatically generated writer method

Source

objects.lisp.

Target Slot

title.

Writer Method: (setf title) ((card card))

automatically generated writer method

Source

objects.lisp.

Target Slot

title.

Generic Reader: token-type (object)

Returns the oauth access token type ("Bearer" for mastodon).

See TOKEN

Package

tooter-objects.

Methods
Reader Method: token-type ((token token))

automatically generated reader method

Source

objects.lisp.

Target Slot

token-type.

Generic Writer: (setf token-type) (object)
Package

tooter-objects.

Methods
Writer Method: (setf token-type) ((token token))

automatically generated writer method

Source

objects.lisp.

Target Slot

token-type.

Returns a list of trending hashtags.

See CLIENT

Package

tooter-queries.

Methods
Source

queries.lisp.

Generic Function: unblock (client id)

Unblock an account or domain.

The account can be either an account ID, or an ACCOUNT instance. It can also be a string, in which case the corresponding domain is unblocked.

Returns the resulting relationship in the case of an account, or T in the case of a domain.

See CLIENT
See ACCOUNT
See RELATIONSHIP

Package

tooter-queries.

Methods
Method: unblock ((client client) (domain string))
Source

queries.lisp.

Method: unblock ((client client) (account account))
Source

queries.lisp.

Generic Function: unbookmark (client id)

Remove a STATUS to user’s bookmark.

See CLIENT
See STATUS

Package

tooter-queries.

Methods
Method: unbookmark ((client client) (status status))
Source

queries.lisp.

Method: unbookmark ((client client) (id string))
Source

queries.lisp.

Generic Function: unfavourite (client id)

Unfavourite the given status.

The status can either be a STATUS instance, or an ID of one.

Returns the referenced status.

See STATUS
See CLIENT

Package

tooter-queries.

Methods
Method: unfavourite ((client client) (status status))
Source

queries.lisp.

Method: unfavourite ((client client) (id string))
Source

queries.lisp.

Generic Function: unfollow (client id)

Unfollow an account.

The account can be either an account ID, or an ACCOUNT instance.

Returns the resulting relationship.

See CLIENT
See ACCOUNT
See RELATIONSHIP

Package

tooter-queries.

Methods
Method: unfollow ((client client) (account account))
Source

queries.lisp.

Method: unfollow ((client client) (id string))
Source

queries.lisp.

Generic Function: unfollow-tag (client tag)

Follow a tag.

See CLIENT See TAG

Package

tooter-queries.

Source

queries.lisp.

Methods
Method: unfollow-tag ((client client) (tag tag))
Method: unfollow-tag ((client client) (tag string))
Generic Function: unmute (client id)

Unmute a new account or conversation.

The account can be either an account ID, or an ACCOUNT instance. It can also be a STATUS in which case that conversation is unmuted.

Returns the resulting relationship for an account unmute, or T for a conversation unmute.

See CLIENT
See ACCOUNT
See RELATIONSHIP

Package

tooter-queries.

Methods
Method: unmute ((client client) (status status))
Source

queries.lisp.

Method: unmute ((client client) (account account))
Source

queries.lisp.

Method: unmute ((client client) (id string))
Source

queries.lisp.

Generic Function: unmute-conversation (client id)

Unmute the conversation of the given status.

This means you will receive mention notifications for the given status’ conversation thread again.

Returns the referenced status.

See STATUS
See CLIENT

Package

tooter-queries.

Methods
Method: unmute-conversation ((client client) (status status))
Source

queries.lisp.

Method: unmute-conversation ((client client) (id string))
Source

queries.lisp.

Generic Function: unpin (client id)

Unpin the given status from your profile.

The status can either be a STATUS instance, or an ID of one.

Returns the referenced status.

See STATUS
See CLIENT

Package

tooter-queries.

Methods
Method: unpin ((client client) (status status))
Source

queries.lisp.

Method: unpin ((client client) (id string))
Source

queries.lisp.

Generic Reader: unread (object)

Returns non nil if this conversation has been marked not red

Package

tooter-objects.

Methods
Reader Method: unread ((conversation conversation))

automatically generated reader method

Source

objects.lisp.

Target Slot

unread.

Generic Writer: (setf unread) (object)
Package

tooter-objects.

Methods
Writer Method: (setf unread) ((conversation conversation))

automatically generated writer method

Source

objects.lisp.

Target Slot

unread.

Generic Function: unreblog (client id)

Remove the reblog of the given status.

The status can either be a STATUS instance, or an ID of one.

Returns the original status that was given as a fresh instance.

See STATUS
See CLIENT

Package

tooter-queries.

Methods
Method: unreblog ((client client) (status status))
Source

queries.lisp.

Method: unreblog ((client client) (id string))
Source

queries.lisp.

Generic Function: update-credentials (client &key display-name note avatar header locked fields)

Update some of the user’s profile settings.

FIELDS should be a plist of the desired fields, with alternating field names and field values. The keys can be strings to more easily control the look of the fields.

Returns the updated account.
This updates the ACCOUNT field in the client.

See CLIENT
See ACCOUNT

Package

tooter-queries.

Methods
Method: update-credentials ((client client) &key display-name note avatar header locked fields)
Source

queries.lisp.

Generic Function: update-filter (client id phrase context &key irreversible whole-word expires-in)

Update an existing filter.

See CLIENT
See FILTER

Package

tooter-queries.

Methods
Method: update-filter ((client client) id phrase context &key irreversible whole-word expires-in)
Source

queries.lisp.

Generic Function: update-media (client id &key description focus)

Updates the media attachment’s metadata.

This can only be performed before the attachment is used in a status.

Returns the new media ATTACHMENT instance.

See CLIENT
See ATTACHMENT

Package

tooter-queries.

Methods
Method: update-media ((client client) (attachment attachment) &rest args)
Source

queries.lisp.

Method: update-media ((client client) id &key description focus)
Source

queries.lisp.

Generic Function: update-user-list (client id &key title)

Update the user list’s properties.

The list can be either a USER-LIST instance, or an ID of one.

This is not used to add or remove accounts from the list. See ADD/REMOVE-USER-LIST-ACCOUNTS for that.

See USER-LIST
See CLIENT

Package

tooter-queries.

Methods
Method: update-user-list ((client client) (user-list user-list) &rest args)
Source

queries.lisp.

Method: update-user-list ((client client) (id string) &key title)
Source

queries.lisp.

Generic Reader: updated-at (object)

Update time

See IDENTITY-PROOF

Package

tooter-objects.

Methods
Reader Method: updated-at ((identity-proof identity-proof))

automatically generated reader method

Source

objects.lisp.

Target Slot

updated-at.

Reader Method: updated-at ((announcement announcement))

automatically generated reader method

Source

objects.lisp.

Target Slot

updated-at.

Generic Writer: (setf updated-at) (object)
Package

tooter-objects.

Methods
Writer Method: (setf updated-at) ((identity-proof identity-proof))

automatically generated writer method

Source

objects.lisp.

Target Slot

updated-at.

Writer Method: (setf updated-at) ((announcement announcement))

automatically generated writer method

Source

objects.lisp.

Target Slot

updated-at.

Generic Reader: uri (condition)

Returns the instance’s URI.

See INSTANCE
See STATUS

Package

tooter-objects.

Methods
Reader Method: uri ((status status))

automatically generated reader method

Source

objects.lisp.

Target Slot

uri.

Reader Method: uri ((instance instance))

automatically generated reader method

Source

objects.lisp.

Target Slot

uri.

Reader Method: uri ((condition request-failed))
Source

client.lisp.

Target Slot

uri.

Generic Writer: (setf uri) (object)
Package

tooter-objects.

Methods
Writer Method: (setf uri) ((status status))

automatically generated writer method

Source

objects.lisp.

Target Slot

uri.

Writer Method: (setf uri) ((instance instance))

automatically generated writer method

Source

objects.lisp.

Target Slot

uri.

Generic Reader: url (object)

Returns if the URL of a custom emoji.

Package

tooter-objects.

Methods
Reader Method: url ((tag tag))

automatically generated reader method

Source

objects.lisp.

Target Slot

url.

Reader Method: url ((status status))

automatically generated reader method

Source

objects.lisp.

Target Slot

url.

Reader Method: url ((reaction reaction))

automatically generated reader method

Source

objects.lisp.

Target Slot

url.

Reader Method: url ((mention mention))

automatically generated reader method

Source

objects.lisp.

Target Slot

url.

Reader Method: url ((emoji emoji))

automatically generated reader method

Source

objects.lisp.

Target Slot

url.

Reader Method: url ((card card))

automatically generated reader method

Source

objects.lisp.

Target Slot

url.

Reader Method: url ((attachment attachment))

automatically generated reader method

Source

objects.lisp.

Target Slot

url.

Reader Method: url ((announcement-status announcement-status))

automatically generated reader method

Source

objects.lisp.

Target Slot

url.

Reader Method: url ((announcement-account announcement-account))

automatically generated reader method

Source

objects.lisp.

Target Slot

url.

Reader Method: url ((account account))

automatically generated reader method

Source

objects.lisp.

Target Slot

url.

Generic Writer: (setf url) (object)
Package

tooter-objects.

Methods
Writer Method: (setf url) ((tag tag))

automatically generated writer method

Source

objects.lisp.

Target Slot

url.

Writer Method: (setf url) ((status status))

automatically generated writer method

Source

objects.lisp.

Target Slot

url.

Writer Method: (setf url) ((reaction reaction))

automatically generated writer method

Source

objects.lisp.

Target Slot

url.

Writer Method: (setf url) ((mention mention))

automatically generated writer method

Source

objects.lisp.

Target Slot

url.

Writer Method: (setf url) ((emoji emoji))

automatically generated writer method

Source

objects.lisp.

Target Slot

url.

Writer Method: (setf url) ((card card))

automatically generated writer method

Source

objects.lisp.

Target Slot

url.

Writer Method: (setf url) ((attachment attachment))

automatically generated writer method

Source

objects.lisp.

Target Slot

url.

Writer Method: (setf url) ((announcement-status announcement-status))

automatically generated writer method

Source

objects.lisp.

Target Slot

url.

Writer Method: (setf url) ((announcement-account announcement-account))

automatically generated writer method

Source

objects.lisp.

Target Slot

url.

Writer Method: (setf url) ((account account))

automatically generated writer method

Source

objects.lisp.

Target Slot

url.

Generic Reader: urls (object)

Returns a list of URLs for the streaming API.

See INSTANCE

Package

tooter-objects.

Methods
Reader Method: urls ((instance instance))

automatically generated reader method

Source

objects.lisp.

Target Slot

urls.

Generic Writer: (setf urls) (object)
Package

tooter-objects.

Methods
Writer Method: (setf urls) ((instance instance))

automatically generated writer method

Source

objects.lisp.

Target Slot

urls.

Generic Reader: use-count (object)

Returns the number of statuses that made use of the hashtag on that day.

See TAG-HISTORY

Package

tooter-objects.

Methods
Reader Method: use-count ((tag-history tag-history))

automatically generated reader method

Source

objects.lisp.

Target Slot

use-count.

Generic Writer: (setf use-count) (object)
Package

tooter-objects.

Methods
Writer Method: (setf use-count) ((tag-history tag-history))

automatically generated writer method

Source

objects.lisp.

Target Slot

use-count.

Generic Reader: user-count (object)

Returns the user counts for this instance.

See INSTANCE-STATS

Package

tooter-objects.

Methods
Reader Method: user-count ((instance-stats instance-stats))

automatically generated reader method

Source

objects.lisp.

Target Slot

user-count.

Generic Writer: (setf user-count) (object)
Package

tooter-objects.

Methods
Writer Method: (setf user-count) ((instance-stats instance-stats))

automatically generated writer method

Source

objects.lisp.

Target Slot

user-count.

Generic Function: user-list-accounts (client id &key max-id since-id limit)

Retrieve a list of accounts in the user list.

The user list can be either a USER-LIST instance, or an ID of one. This is SETFable for convenience, though it will usually be much more efficient to simply use ADD/REMOVE-USER-LIST-ACCOUNTS instead.

See USER-LIST
See CLIENT

Package

tooter-queries.

Methods
Method: user-list-accounts ((client client) (user-list user-list) &rest args)
Source

queries.lisp.

Method: user-list-accounts ((client client) (id string) &key max-id since-id limit)
Source

queries.lisp.

Generic Function: (setf user-list-accounts) (client id)
Package

tooter-queries.

Methods
Method: (setf user-list-accounts) ((client client) (id string))
Source

queries.lisp.

Generic Function: user-lists (client id)

Retrieve a list of up to twenty of the account’s user lists.

The account can be an ACCOUNT instance, an account ID, or T for yourself.

See USER-LIST
See CLIENT

Package

tooter-queries.

Methods
Method: user-lists ((client client) (id (eql t)))
Source

queries.lisp.

Method: user-lists ((client client) (account account))
Source

queries.lisp.

Method: user-lists ((client client) (id string))
Source

queries.lisp.

Generic Reader: username (object)

Returns the username of the object.

The username does not include the instance/domain name.

See ACCOUNT
See MENTION

Package

tooter-objects.

Methods
Reader Method: username ((mention mention))

automatically generated reader method

Source

objects.lisp.

Target Slot

username.

Reader Method: username ((announcement-account announcement-account))

automatically generated reader method

Source

objects.lisp.

Target Slot

username.

Reader Method: username ((account account))

automatically generated reader method

Source

objects.lisp.

Target Slot

username.

Generic Writer: (setf username) (object)
Package

tooter-objects.

Methods
Writer Method: (setf username) ((mention mention))

automatically generated writer method

Source

objects.lisp.

Target Slot

username.

Writer Method: (setf username) ((announcement-account announcement-account))

automatically generated writer method

Source

objects.lisp.

Target Slot

username.

Writer Method: (setf username) ((account account))

automatically generated writer method

Source

objects.lisp.

Target Slot

username.

Generic Reader: vapid-key (object)

Returns the key for PUSH streaming API.

See APPLICATION
See CLIENT

Package

tooter-objects.

Methods
Reader Method: vapid-key ((application application))

automatically generated reader method

Source

objects.lisp.

Target Slot

vapid-key.

Generic Writer: (setf vapid-key) (object)
Package

tooter-objects.

Methods
Writer Method: (setf vapid-key) ((application application))

automatically generated writer method

Source

objects.lisp.

Target Slot

vapid-key.

Generic Function: verify-app-credentials (client)

Checks and returns the Oauth credentials for this application.

See CLIENT
See APPLICATION

Package

tooter-queries.

Methods
Method: verify-app-credentials ((client client))
Source

queries.lisp.

Generic Function: verify-credentials (client)

Returns your own account.

This updates the ACCOUNT field in the client.

See CLIENT
See ACCOUNT

Package

tooter-queries.

Methods
Method: verify-credentials ((client client))
Source

queries.lisp.

Generic Reader: version (object)

Returns the instance’s Mastodon version.

See INSTANCE

Package

tooter-objects.

Methods
Reader Method: version ((instance instance))

automatically generated reader method

Source

objects.lisp.

Target Slot

version.

Generic Writer: (setf version) (object)
Package

tooter-objects.

Methods
Writer Method: (setf version) ((instance instance))

automatically generated writer method

Source

objects.lisp.

Target Slot

version.

Generic Reader: visibility (object)

Returns the default visibility of the status.

Can be one of :PUBLIC :UNLISTED :PRIVATE :DIRECT

See STATUS

Package

tooter-objects.

Methods
Reader Method: visibility ((status status))

automatically generated reader method

Source

objects.lisp.

Target Slot

visibility.

Reader Method: visibility ((status-params status-params))

automatically generated reader method

Source

objects.lisp.

Target Slot

visibility.

Generic Writer: (setf visibility) (object)
Package

tooter-objects.

Methods
Writer Method: (setf visibility) ((status status))

automatically generated writer method

Source

objects.lisp.

Target Slot

visibility.

Writer Method: (setf visibility) ((status-params status-params))

automatically generated writer method

Source

objects.lisp.

Target Slot

visibility.

Generic Reader: visible-in-picker (object)
Package

tooter-objects.

Methods
Reader Method: visible-in-picker ((emoji emoji))

automatically generated reader method

Source

objects.lisp.

Target Slot

visible-in-picker.

Generic Writer: (setf visible-in-picker) (object)
Package

tooter-objects.

Methods
Writer Method: (setf visible-in-picker) ((emoji emoji))

automatically generated writer method

Source

objects.lisp.

Target Slot

visible-in-picker.

Generic Reader: voted (object)

Returns if an user has voted (requires to be called with a valid user token.

See POLL

Package

tooter-objects.

Methods
Reader Method: voted ((poll poll))

automatically generated reader method

Source

objects.lisp.

Target Slot

voted.

Generic Writer: (setf voted) (object)
Package

tooter-objects.

Methods
Writer Method: (setf voted) ((poll poll))

automatically generated writer method

Source

objects.lisp.

Target Slot

voted.

Generic Reader: voters-count (object)

Returns the number of accounts that voted so far, the value of this slot is nil if the poll prevent multiple choice.

See POLL

Package

tooter-objects.

Methods
Reader Method: voters-count ((poll poll))

automatically generated reader method

Source

objects.lisp.

Target Slot

voters-count.

Generic Writer: (setf voters-count) (object)
Package

tooter-objects.

Methods
Writer Method: (setf voters-count) ((poll poll))

automatically generated writer method

Source

objects.lisp.

Target Slot

voters-count.

Generic Reader: votes-count (object)

Returns the number of votes collected so far.

See POLL

Package

tooter-objects.

Methods
Reader Method: votes-count ((poll poll))

automatically generated reader method

Source

objects.lisp.

Target Slot

votes-count.

Reader Method: votes-count ((poll-option poll-option))

automatically generated reader method

Source

objects.lisp.

Target Slot

votes-count.

Generic Writer: (setf votes-count) (object)
Package

tooter-objects.

Methods
Writer Method: (setf votes-count) ((poll poll))

automatically generated writer method

Source

objects.lisp.

Target Slot

votes-count.

Writer Method: (setf votes-count) ((poll-option poll-option))

automatically generated writer method

Source

objects.lisp.

Target Slot

votes-count.

Generic Reader: website (object)

Returns the website URL of the object.

See APPLICATION
See CLIENT

Package

tooter-objects.

Methods
Reader Method: website ((application application))

automatically generated reader method

Source

objects.lisp.

Target Slot

website.

Reader Method: website ((client client))

automatically generated reader method

Source

client.lisp.

Target Slot

website.

Generic Writer: (setf website) (object)
Package

tooter-objects.

Methods
Writer Method: (setf website) ((application application))

automatically generated writer method

Source

objects.lisp.

Target Slot

website.

Writer Method: (setf website) ((client client))

automatically generated writer method

Source

client.lisp.

Target Slot

website.

Generic Function: weekly-activity (client)

Retrieve stats of the last 3 month activity of this instance bin size is week.

See CLIENT
See ACTIVITY

Package

tooter-queries.

Methods
Method: weekly-activity ((client client))
Source

queries.lisp.

Generic Reader: whole-word (object)

Returns if the filter take into account word limit

See FILTER

Package

tooter-objects.

Methods
Reader Method: whole-word ((filter filter))

automatically generated reader method

Source

objects.lisp.

Target Slot

whole-word.

Generic Writer: (setf whole-word) (object)
Package

tooter-objects.

Methods
Writer Method: (setf whole-word) ((filter filter))

automatically generated writer method

Source

objects.lisp.

Target Slot

whole-word.

Generic Reader: width (object)

Returns the width of the media or card.

See CARD
See IMAGE-METADATA
See VIDEO-METADATA

Package

tooter-objects.

Methods
Reader Method: width ((card card))

automatically generated reader method

Source

objects.lisp.

Target Slot

width.

Reader Method: width ((video-metadata video-metadata))

automatically generated reader method

Source

objects.lisp.

Target Slot

width.

Reader Method: width ((image-metadata image-metadata))

automatically generated reader method

Source

objects.lisp.

Target Slot

width.

Generic Writer: (setf width) (object)
Package

tooter-objects.

Methods
Writer Method: (setf width) ((card card))

automatically generated writer method

Source

objects.lisp.

Target Slot

width.

Writer Method: (setf width) ((video-metadata video-metadata))

automatically generated writer method

Source

objects.lisp.

Target Slot

width.

Writer Method: (setf width) ((image-metadata image-metadata))

automatically generated writer method

Source

objects.lisp.

Target Slot

width.


5.1.4 Standalone methods

Method: describe-object ((status status) stream)
Source

objects.lisp.

Method: make-load-form ((client client) &optional env)
Source

client.lisp.

Method: print-object ((conversation conversation) stream)
Source

objects.lisp.

Method: print-object ((client client) stream)
Source

client.lisp.

Method: print-object ((mention mention) stream)
Source

objects.lisp.

Method: print-object ((notification notification) stream)
Source

objects.lisp.

Method: print-object ((account account) stream)
Source

objects.lisp.

Method: print-object ((image-metadata image-metadata) stream)
Source

objects.lisp.

Method: print-object ((tag-history tag-history) stream)
Source

objects.lisp.

Method: print-object ((instance instance) stream)
Source

objects.lisp.

Method: print-object ((identity-proof identity-proof) stream)
Source

objects.lisp.

Method: print-object ((scheduled-status scheduled-status) stream)
Source

objects.lisp.

Method: print-object ((featured-tag featured-tag) stream)
Source

objects.lisp.

Method: print-object ((marker marker) stream)
Source

objects.lisp.

Method: print-object ((announcement announcement) stream)
Source

objects.lisp.

Method: print-object ((user-list user-list) stream)
Source

objects.lisp.

Method: print-object ((token token) stream)
Source

objects.lisp.

Method: print-object ((source source) stream)
Source

objects.lisp.

Method: print-object ((preferences preferences) stream)
Source

objects.lisp.

Method: print-object ((video-metadata video-metadata) stream)
Source

objects.lisp.

Method: print-object ((push-subscription push-subscription) stream)
Source

objects.lisp.

Method: print-object ((reaction reaction) stream)
Source

objects.lisp.

Method: print-object ((relationship relationship) stream)
Source

objects.lisp.

Method: print-object ((announcement-status announcement-status) stream)
Source

objects.lisp.

Method: print-object ((results results) stream)
Source

objects.lisp.

Method: print-object ((filter filter) stream)
Source

objects.lisp.

Method: print-object ((audio-metadata audio-metadata) stream)
Source

objects.lisp.

Method: print-object ((application application) stream)
Source

objects.lisp.

Method: print-object ((report report) stream)
Source

objects.lisp.

Method: print-object ((attachment attachment) stream)
Source

objects.lisp.

Method: print-object ((card card) stream)
Source

objects.lisp.

Method: print-object ((status status) stream)
Source

objects.lisp.

Method: print-object ((instance-stats instance-stats) stream)
Source

objects.lisp.

Method: print-object ((announcement-account announcement-account) stream)
Source

objects.lisp.

Method: print-object ((poll-option poll-option) stream)
Source

objects.lisp.

Method: print-object ((emoji emoji) stream)
Source

objects.lisp.

Method: print-object ((poll poll) stream)
Source

objects.lisp.

Method: print-object ((push-subscription-alerts push-subscription-alerts) stream)
Source

objects.lisp.

Method: print-object ((tag tag) stream)
Source

objects.lisp.

Method: print-object ((field field) stream)
Source

objects.lisp.

Method: print-object ((activity activity) stream)
Source

objects.lisp.


5.1.5 Conditions

Condition: request-failed

Error signalled when a request against the Mastodon API failed.

See CODE
See DATA
See MESSAGE

Package

tooter-client.

Source

client.lisp.

Direct superclasses

error.

Direct methods
Direct slots
Slot: uri
Package

tooter-objects.

Initargs

:uri

Readers

uri.

Writers

This slot is read-only.

Slot: request-method
Package

tooter.

Initargs

:request-method

Readers

request-method.

Writers

This slot is read-only.

Slot: code
Initargs

:code

Readers

code.

Writers

This slot is read-only.

Slot: data
Initargs

:data

Readers

data.

Writers

This slot is read-only.

Slot: message
Initargs

:message

Readers

message.

Writers

This slot is read-only.


5.1.6 Classes

Class: account

Represents a user account on the mastodon instance.

Note that this may also be a remote account that resides on another instance.

See ID
See USERNAME
See ACCOUNT-NAME
See DISPLAY-NAME
See LOCKED
See CREATED-AT
See FOLLOWERS-COUNT
See FOLLOWING-COUNT
See STATUSES-COUNT
See NOTE
See URL
See AVATAR
See AVATAR-STATIC
See HEADER
See HEADER-STATIC
See MOVED
See FIELDS
See BOT
See SOURCE

Package

tooter-objects.

Source

objects.lisp.

Direct superclasses

entity.

Direct methods
Direct slots
Slot: id
Initform

(error "id required for a account.")

Initargs

:id

Readers

id.

Writers

(setf id).

Slot: username
Initform

(error "username required for a account.")

Initargs

:username

Readers

username.

Writers

(setf username).

Slot: account-name
Initform

(error "account-name required for a account.")

Initargs

:account-name

Readers

account-name.

Writers

(setf account-name).

Slot: display-name
Initform

(error "display-name required for a account.")

Initargs

:display-name

Readers

display-name.

Writers

(setf display-name).

Slot: locked
Initform

(error "locked required for a account.")

Initargs

:locked

Readers

locked.

Writers

(setf locked).

Slot: emojis
Initform

(error "emojis required for a account.")

Initargs

:emojis

Readers

emojis.

Writers

(setf emojis).

Slot: discoverable
Initform

(error "discoverable required for a account.")

Initargs

:discoverable

Readers

discoverable.

Writers

(setf discoverable).

Slot: created-at
Initform

(error "created-at required for a account.")

Initargs

:created-at

Readers

created-at.

Writers

(setf created-at).

Slot: followers-count
Initform

(error "followers-count required for a account.")

Initargs

:followers-count

Readers

followers-count.

Writers

(setf followers-count).

Slot: following-count
Initform

(error "following-count required for a account.")

Initargs

:following-count

Readers

following-count.

Writers

(setf following-count).

Slot: statuses-count
Initform

(error "statuses-count required for a account.")

Initargs

:statuses-count

Readers

statuses-count.

Writers

(setf statuses-count).

Slot: note
Initform

(error "note required for a account.")

Initargs

:note

Readers

note.

Writers

(setf note).

Slot: url
Initform

(error "url required for a account.")

Initargs

:url

Readers

url.

Writers

(setf url).

Slot: avatar
Initform

(error "avatar required for a account.")

Initargs

:avatar

Readers

avatar.

Writers

(setf avatar).

Slot: avatar-static
Initform

(error "avatar-static required for a account.")

Initargs

:avatar-static

Readers

avatar-static.

Writers

(setf avatar-static).

Slot: header
Initform

(error "header required for a account.")

Initargs

:header

Readers

header.

Writers

(setf header).

Slot: header-static
Initform

(error "header-static required for a account.")

Initargs

:header-static

Readers

header-static.

Writers

(setf header-static).

Slot: moved
Initargs

:moved

Readers

moved.

Writers

(setf moved).

Slot: fields
Initargs

:fields

Readers

fields.

Writers

(setf fields).

Slot: bot
Initargs

:bot

Readers

bot.

Writers

(setf bot).

Slot: source
Initargs

:source

Readers

source.

Writers

(setf source).

Class: announcement

Representation of an administrator’s announce

See ID
See CONTENT
See STARTS-AT
See ENDS-AT
See PUBLISHED
See ALL-DAY
See PUBLISHED-AT
See UPDATED-AT
See READP
See MENTIONS
See STATUSES
See TAGS
See EMOJIS
See REACTIONS

Package

tooter-objects.

Source

objects.lisp.

Direct superclasses

entity.

Direct methods
Direct slots
Slot: id
Initform

(error "id required for a announcement.")

Initargs

:id

Readers

id.

Writers

(setf id).

Slot: content
Initform

(error "content required for a announcement.")

Initargs

:content

Readers

content.

Writers

(setf content).

Slot: starts-at
Initargs

:starts-at

Readers

starts-at.

Writers

(setf starts-at).

Slot: ends-at
Initargs

:ends-at

Readers

ends-at.

Writers

(setf ends-at).

Slot: published
Initform

(error "published required for a announcement.")

Initargs

:published

Readers

published.

Writers

(setf published).

Slot: all-day
Initform

(error "all-day required for a announcement.")

Initargs

:all-day

Readers

all-day.

Writers

(setf all-day).

Slot: published-at
Initform

(error "published-at required for a announcement.")

Initargs

:published-at

Readers

published-at.

Writers

(setf published-at).

Slot: updated-at
Initform

(error "updated-at required for a announcement.")

Initargs

:updated-at

Readers

updated-at.

Writers

(setf updated-at).

Slot: readp
Initform

(error "readp required for a announcement.")

Initargs

:readp

Readers

readp.

Writers

(setf readp).

Slot: mentions
Initform

(error "mentions required for a announcement.")

Initargs

:mentions

Readers

mentions.

Writers

(setf mentions).

Slot: statuses
Initform

(error "statuses required for a announcement.")

Initargs

:statuses

Readers

statuses.

Writers

(setf statuses).

Slot: tags
Initform

(error "tags required for a announcement.")

Initargs

:tags

Readers

tags.

Writers

(setf tags).

Slot: emojis
Initform

(error "emojis required for a announcement.")

Initargs

:emojis

Readers

emojis.

Writers

(setf emojis).

Slot: reactions
Initform

(error "reactions required for a announcement.")

Initargs

:reactions

Readers

reactions.

Writers

(setf reactions).

Class: announcement-account

List of accounts related to an announcement

See ANNOUNCEMENT
See ID
See USERNAME
See ACCOUNT-NAME
See URL

Package

tooter-objects.

Source

objects.lisp.

Direct superclasses

entity.

Direct methods
Direct slots
Slot: id
Initform

(error "id required for a announcement-account.")

Initargs

:id

Readers

id.

Writers

(setf id).

Slot: username
Initform

(error "username required for a announcement-account.")

Initargs

:username

Readers

username.

Writers

(setf username).

Slot: account-name
Initform

(error "account-name required for a announcement-account.")

Initargs

:account-name

Readers

account-name.

Writers

(setf account-name).

Slot: url
Initform

(error "url required for a announcement-account.")

Initargs

:url

Readers

url.

Writers

(setf url).

Class: announcement-status

List of statuses related to an announcement

See ANNOUNCEMENT
See ID
See URL

Package

tooter-objects.

Source

objects.lisp.

Direct superclasses

entity.

Direct methods
Direct slots
Slot: id
Initform

(error "id required for a announcement-status.")

Initargs

:id

Readers

id.

Writers

(setf id).

Slot: url
Initform

(error "url required for a announcement-status.")

Initargs

:url

Readers

url.

Writers

(setf url).

Class: application

Representation of an application as registered on a Mastodon instance.

See NAME
See WEBSITE
See VAPID-KEY

Package

tooter-objects.

Source

objects.lisp.

Direct superclasses

entity.

Direct methods
Direct slots
Slot: name
Initform

(error "name required for a application.")

Initargs

:name

Readers

name.

Writers

(setf name).

Slot: website
Initargs

:website

Readers

website.

Writers

(setf website).

Slot: vapid-key
Initargs

:vapid-key

Readers

vapid-key.

Writers

(setf vapid-key).

Class: attachment

Representation of a media attachment for a status.

See ID
See KIND
See URL
See REMOTE-URL
See PREVIEW-URL
See TEXT-URL
See METADATA
See DESCRIPTION
See BLURHASH

Package

tooter-objects.

Source

objects.lisp.

Direct superclasses

entity.

Direct methods
Direct slots
Slot: id
Initform

(error "id required for a attachment.")

Initargs

:id

Readers

id.

Writers

(setf id).

Slot: kind
Initform

(error "kind required for a attachment.")

Initargs

:kind

Readers

kind.

Writers

(setf kind).

Slot: url
Initform

(error "url required for a attachment.")

Initargs

:url

Readers

url.

Writers

(setf url).

Slot: preview-url
Initform

(error "preview-url required for a attachment.")

Initargs

:preview-url

Readers

preview-url.

Writers

(setf preview-url).

Slot: remote-url
Initargs

:remote-url

Readers

remote-url.

Writers

(setf remote-url).

Slot: text-url
Initargs

:text-url

Readers

text-url.

Writers

(setf text-url).

Slot: metadata
Initargs

:metadata

Readers

metadata.

Writers

(setf metadata).

Slot: description
Initargs

:description

Readers

description.

Writers

(setf description).

Slot: blurhash
Initargs

:blurhash

Readers

blurhash.

Writers

(setf blurhash).

Class: audio-metadata

Metadata for audio.

See AUDIO-LENGTH See AUDIO-ENCODE See AUDIO-BITRATE See AUDIO-CHANNELS See DURATION

Package

tooter-objects.

Source

objects.lisp.

Direct superclasses

entity.

Direct methods
Direct slots
Slot: audio-length
Initargs

:audio-length

Readers

audio-length.

Writers

(setf audio-length).

Slot: duration
Initargs

:duration

Readers

duration.

Writers

(setf duration).

Slot: audio-encode
Initargs

:audio-encode

Readers

audio-encode.

Writers

(setf audio-encode).

Slot: audio-bitrate
Initargs

:audio-bitrate

Readers

audio-bitrate.

Writers

(setf audio-bitrate).

Slot: audio-channels
Initargs

:audio-channels

Readers

audio-channels.

Writers

(setf audio-channels).

Class: card

Cards represent all information to summarise a status.

See URL
See TITLE
See DESCRIPTION
See IMAGE
See KIND
See AUTHOR-NAME
See AUTHOR-URL
See PROVIDER-NAME
See PROVIDER-URL
See HTML
See WIDTH
See HEIGHT
See IMAGE
See EMBED-URL

Package

tooter-objects.

Source

objects.lisp.

Direct superclasses

entity.

Direct methods
Direct slots
Slot: url
Initform

(error "url required for a card.")

Initargs

:url

Readers

url.

Writers

(setf url).

Slot: title
Initform

(error "title required for a card.")

Initargs

:title

Readers

title.

Writers

(setf title).

Slot: description
Initform

(error "description required for a card.")

Initargs

:description

Readers

description.

Writers

(setf description).

Slot: kind
Initform

(error "kind required for a card.")

Initargs

:kind

Readers

kind.

Writers

(setf kind).

Slot: author-name
Initargs

:author-name

Readers

author-name.

Writers

(setf author-name).

Slot: author-url
Initargs

:author-url

Readers

author-url.

Writers

(setf author-url).

Slot: provider-name
Initargs

:provider-name

Readers

provider-name.

Writers

(setf provider-name).

Slot: provider-url
Initargs

:provider-url

Readers

provider-url.

Writers

(setf provider-url).

Slot: html
Initargs

:html

Readers

html.

Writers

(setf html).

Slot: width
Initargs

:width

Readers

width.

Writers

(setf width).

Slot: height
Initargs

:height

Readers

height.

Writers

(setf height).

Slot: image
Initargs

:image

Readers

image.

Writers

(setf image).

Slot: embed-url
Initargs

:embed-url

Readers

embed-url.

Writers

(setf embed-url).

Class: client

Representation of an application client connecting to a Mastodon instance.

If you are creating a library providing some kind of service based on Mastodon, you should create a wrapper function that fills in the fields like NAME, REDIRECT, SCOPES, and WEBSITE, but lets the user specify the BASE so that it can be used against any Mastodon instance.

The fields KEY, SECRET, and ACCESS-TOKEN are specific to your application, Mastodon instance, and the user using the application. You should save these fields away somewhere after they’ve been initialised so that they can be re-used at a later point without having to re- register and re-authorise.

The KEY and SECRET will be filled in by REGISTER. The ACCESS-TOKEN will be filled in by AUTHORIZE once the user calls it with a valid AUTHORIZATION-CODE retrieved by authorizing the application.

Generally the procedure for using a client is as follows: fill in the BASE and NAME, call AUTHORIZE and instruct the user to follow the URL from the second return value. Make the user call AUTHORIZE again with the code from the website as the second argument. Once that’s done, you should be fine to make any calls necessary from there on out. Make sure to persist the KEY, SECRET, and ACCESS-TOKEN for future use. ACCESS-TOKENs should not expire unless the user revokes access manually.

CLIENT instances can be dumped to FASLs.

See BASE
See KEY
See SECRET
See ACCESS-TOKEN
See NAME
See REDIRECT
See SCOPES
See WEBSITE
See ACCOUNT
See REGISTER
See AUTHORIZE
See DEFAULT-HEADERS
See QUERY
See SUBMIT

Package

tooter-client.

Source

client.lisp.

Direct methods
Direct Default Initargs
InitargValue
:base(error base required.)
:keynil
:secretnil
:access-tokennil
:name(error name required.)
:redirecturn:ietf:wg:oauth:2.0:oob
:scopes(quote (read write follow))
:websitenil
Direct slots
Slot: base
Initargs

:base

Readers

base.

Writers

(setf base).

Slot: key
Initargs

:key

Readers

key.

Writers

(setf key).

Slot: secret
Initargs

:secret

Readers

secret.

Writers

(setf secret).

Slot: access-token
Package

tooter-objects.

Initargs

:access-token

Readers

access-token.

Writers

(setf access-token).

Slot: name
Package

tooter-objects.

Initargs

:name

Readers

name.

Writers

(setf name).

Slot: redirect
Initargs

:redirect

Readers

redirect.

Writers

(setf redirect).

Slot: scopes
Initargs

:scopes

Readers

scopes.

Writers

(setf scopes).

Slot: website
Package

tooter-objects.

Initargs

:website

Readers

website.

Writers

(setf website).

Slot: account
Package

tooter-objects.

Readers

account.

Writers

(setf account).

Class: context

An object representing a status’ context.

Contexts are used to represent reply chains.

See ANCESTORS
See DESCENDANTS

Package

tooter-objects.

Source

objects.lisp.

Direct superclasses

entity.

Direct methods
Direct slots
Slot: ancestors
Initform

(error "ancestors required for a context.")

Initargs

:ancestors

Readers

ancestors.

Writers

(setf ancestors).

Slot: descendants
Initform

(error "descendants required for a context.")

Initargs

:descendants

Readers

descendants.

Writers

(setf descendants).

Class: conversation

Representation of a private conversation (currently a conversation is private if visibility of a status is :DIRECT)

See ID
See ACCOUNTS
See UNREAD
See LAST-STATUS
See VISIBILITY
See STATUS

Package

tooter-queries.

Source

objects.lisp.

Direct superclasses

entity.

Direct methods
Direct slots
Slot: id
Package

tooter-objects.

Initform

(error "id required for a conversation.")

Initargs

:id

Readers

id.

Writers

(setf id).

Slot: accounts
Package

tooter-objects.

Initform

(error "accounts required for a conversation.")

Initargs

:accounts

Readers

accounts.

Writers

(setf accounts).

Slot: unread
Package

tooter-objects.

Initform

(error "unread required for a conversation.")

Initargs

:unread

Readers

unread.

Writers

(setf unread).

Slot: last-status
Package

tooter-objects.

Initform

(error "last-status required for a conversation.")

Initargs

:last-status

Readers

last-status.

Writers

(setf last-status).

Class: emoji

Representation of a custom emoticon on the instance.

See SHORTCODE
See URL
See STATIC-URL
See VISIBLE-IN-PICKER
See CATEGORY

Package

tooter-objects.

Source

objects.lisp.

Direct superclasses

entity.

Direct methods
Direct slots
Slot: shortcode
Initform

(error "shortcode required for a emoji.")

Initargs

:shortcode

Readers

shortcode.

Writers

(setf shortcode).

Slot: url
Initform

(error "url required for a emoji.")

Initargs

:url

Readers

url.

Writers

(setf url).

Slot: static-url
Initform

(error "static-url required for a emoji.")

Initargs

:static-url

Readers

static-url.

Writers

(setf static-url).

Slot: visible-in-picker
Initform

(error "visible-in-picker required for a emoji.")

Initargs

:visible-in-picker

Readers

visible-in-picker.

Writers

(setf visible-in-picker).

Slot: category
Package

tooter.

Initargs

:category

Readers

category.

Writers

(setf category).

Class: entity

Superclass for all objects returned by Mastodon API queries.

See DECODE-ENTITY

Package

tooter-objects.

Source

objects.lisp.

Direct subclasses

Representation of tags most visited by a profile

See ID
See NAME
See STATUSES-COUNT
See LAST-STATUS-AT

Package

tooter-objects.

Source

objects.lisp.

Direct superclasses

entity.

Direct methods
Direct slots
Slot: id
Initform

(error "id required for a featured-tag.")

Initargs

:id

Readers

id.

Writers

(setf id).

Slot: name
Initform

(error "name required for a featured-tag.")

Initargs

:name

Readers

name.

Writers

(setf name).

Slot: statuses-count
Initform

(error "statuses-count required for a featured-tag.")

Initargs

:statuses-count

Readers

statuses-count.

Writers

(setf statuses-count).

Slot: last-status-at
Initform

(error "last-status-at required for a featured-tag.")

Initargs

:last-status-at

Readers

last-status-at.

Writers

(setf last-status-at).

Class: filter

Representation of a filter (defined by the user) to make invisible unwanted statuses

See PHRASE
See FILTER-CONTEXT
See EXPIRES-AT
See IRREVERSIBLE
See WHOLE-WORD

Package

tooter-objects.

Source

objects.lisp.

Direct superclasses

entity.

Direct methods
Direct slots
Slot: id
Initform

(error "id required for a filter.")

Initargs

:id

Readers

id.

Writers

(setf id).

Slot: phrase
Initform

(error "phrase required for a filter.")

Initargs

:phrase

Readers

phrase.

Writers

(setf phrase).

Slot: filter-context
Package

tooter.

Initform

(error "filter-context required for a filter.")

Initargs

:filter-context

Readers

filter-context.

Writers

(setf filter-context).

Slot: expires-at
Initform

(error "expires-at required for a filter.")

Initargs

:expires-at

Readers

expires-at.

Writers

(setf expires-at).

Slot: irreversible
Initform

(error "irreversible required for a filter.")

Initargs

:irreversible

Readers

irreversible.

Writers

(setf irreversible).

Slot: whole-word
Initform

(error "whole-word required for a filter.")

Initargs

:whole-word

Readers

whole-word.

Writers

(setf whole-word).

Class: identity-proof

Representation of an identity provider

See PROVIDER
See PROVIDER-USERNAME
See PROFILE-URl
See PROOF-URL
See UPDATED-AT

Package

tooter-objects.

Source

objects.lisp.

Direct superclasses

entity.

Direct methods
Direct slots
Slot: provider
Initform

(error "provider required for a identity-proof.")

Initargs

:provider

Readers

provider.

Writers

(setf provider).

Slot: provider-username
Initform

(error "provider-username required for a identity-proof.")

Initargs

:provider-username

Readers

provider-username.

Writers

(setf provider-username).

Slot: profile-url
Initform

(error "profile-url required for a identity-proof.")

Initargs

:profile-url

Readers

profile-url.

Writers

(setf profile-url).

Slot: proof-url
Initform

(error "proof-url required for a identity-proof.")

Initargs

:proof-url

Readers

proof-url.

Writers

(setf proof-url).

Slot: updated-at
Initform

(error "updated-at required for a identity-proof.")

Initargs

:updated-at

Readers

updated-at.

Writers

(setf updated-at).

Class: image-metadata

Metadata for static images.

See WIDTH
See HEIGHT
See SIZE
See ASPECT

Package

tooter-objects.

Source

objects.lisp.

Direct superclasses

entity.

Direct methods
Direct slots
Slot: width
Initargs

:width

Readers

width.

Writers

(setf width).

Slot: height
Initargs

:height

Readers

height.

Writers

(setf height).

Slot: size
Initargs

:size

Readers

size.

Writers

(setf size).

Slot: aspect
Initargs

:aspect

Readers

aspect.

Writers

(setf aspect).

Class: instance

Representation of a Mastodon server instance.

See URI
See TITLE
See DESCRIPTION
See SHORT-DESCRIPTION
See EMAIL
See VERSION
See LANGUAGES
See REGISTRATIONS
See APPROVAL-REQUIRED
See URLS
See STATS
See THUMBNAIL
See CONTACT-ACCOUNT

Package

tooter-objects.

Source

objects.lisp.

Direct superclasses

entity.

Direct methods
Direct slots
Slot: uri
Initform

(error "uri required for a instance.")

Initargs

:uri

Readers

uri.

Writers

(setf uri).

Slot: title
Initform

(error "title required for a instance.")

Initargs

:title

Readers

title.

Writers

(setf title).

Slot: description
Initform

(error "description required for a instance.")

Initargs

:description

Readers

description.

Writers

(setf description).

Slot: short-description
Initform

(error "short-description required for a instance.")

Initargs

:short-description

Readers

short-description.

Writers

(setf short-description).

Slot: email
Initform

(error "email required for a instance.")

Initargs

:email

Readers

email.

Writers

(setf email).

Slot: version
Initform

(error "version required for a instance.")

Initargs

:version

Readers

version.

Writers

(setf version).

Slot: languages
Initform

(error "languages required for a instance.")

Initargs

:languages

Readers

languages.

Writers

(setf languages).

Slot: registrations
Initform

(error "registrations required for a instance.")

Initargs

:registrations

Readers

registrations.

Writers

(setf registrations).

Slot: approval-required
Initform

(error "approval-required required for a instance.")

Initargs

:approval-required

Readers

approval-required.

Writers

(setf approval-required).

Slot: urls
Initform

(error "urls required for a instance.")

Initargs

:urls

Readers

urls.

Writers

(setf urls).

Slot: stats
Initform

(error "stats required for a instance.")

Initargs

:stats

Readers

stats.

Writers

(setf stats).

Slot: thumbnail
Initargs

:thumbnail

Readers

thumbnail.

Writers

(setf thumbnail).

Slot: contact-account
Initargs

:contact-account

Readers

contact-account.

Writers

(setf contact-account).

Class: instance-stats

Representation of statistics about a single instance.

See USER-COUNT
See STATUS-COUNT
See DOMAIN-COUNT

Package

tooter-objects.

Source

objects.lisp.

Direct superclasses

entity.

Direct methods
Direct slots
Slot: user-count
Initform

(error "user-count required for a instance-stats.")

Initargs

:user-count

Readers

user-count.

Writers

(setf user-count).

Slot: status-count
Initform

(error "status-count required for a instance-stats.")

Initargs

:status-count

Readers

status-count.

Writers

(setf status-count).

Slot: domain-count
Initform

(error "domain-count required for a instance-stats.")

Initargs

:domain-count

Readers

domain-count.

Writers

(setf domain-count).

Class: marker

Representation of the user last read position in a timeline.

See MARKED-HOME
See MARKED-NOTIFICATION

Package

tooter-objects.

Source

objects.lisp.

Direct superclasses

entity.

Direct methods
Direct slots
Slot: marked-home
Initform

(error "marked-home required for a marker.")

Initargs

:marked-home

Readers

marked-home.

Writers

(setf marked-home).

Slot: marked-notifications
Initform

(error "marked-notifications required for a marker.")

Initargs

:marked-notifications

Readers

marked-notifications.

Writers

(setf marked-notifications).

Class: mention

Representation of an account mention in a status.

See URL
See USERNAME
See ACCOUNT-NAME
See ID

Package

tooter-objects.

Source

objects.lisp.

Direct superclasses

entity.

Direct methods
Direct slots
Slot: url
Initform

(error "url required for a mention.")

Initargs

:url

Readers

url.

Writers

(setf url).

Slot: username
Initform

(error "username required for a mention.")

Initargs

:username

Readers

username.

Writers

(setf username).

Slot: account-name
Initform

(error "account-name required for a mention.")

Initargs

:account-name

Readers

account-name.

Writers

(setf account-name).

Slot: id
Initform

(error "id required for a mention.")

Initargs

:id

Readers

id.

Writers

(setf id).

Class: metadata

This object holds metadata information for media objects.

See SMALL
See ORIGINAL
See FOCUS

Package

tooter-objects.

Source

objects.lisp.

Direct superclasses

entity.

Direct methods
Direct slots
Slot: small
Initargs

:small

Readers

small.

Writers

(setf small).

Slot: original
Initargs

:original

Readers

original.

Writers

(setf original).

Slot: focus
Initargs

:focus

Readers

focus.

Writers

(setf focus).

Class: notification

Representation of a new status update notification.

See ID
See KIND
See CREATED-AT
See ACCOUNT
See STATUS

Package

tooter-objects.

Source

objects.lisp.

Direct superclasses

entity.

Direct methods
Direct slots
Slot: id
Initform

(error "id required for a notification.")

Initargs

:id

Readers

id.

Writers

(setf id).

Slot: kind
Initform

(error "kind required for a notification.")

Initargs

:kind

Readers

kind.

Writers

(setf kind).

Slot: created-at
Initform

(error "created-at required for a notification.")

Initargs

:created-at

Readers

created-at.

Writers

(setf created-at).

Slot: account
Initform

(error "account required for a notification.")

Initargs

:account

Readers

account.

Writers

(setf account).

Slot: status
Initargs

:status

Readers

status.

Writers

(setf status).

Class: poll

Representation of a users poll

See EXPIRES-AT
See EXPIRED
See MULTIPLE
See VOTERS-COUNT
See VOTES-COUNT
See VOTED
See OWN-VOTES
See OPTIONS
See EMOJIS

Package

tooter-objects.

Source

objects.lisp.

Direct superclasses

entity.

Direct methods
Direct slots
Slot: id
Initform

(error "id required for a poll.")

Initargs

:id

Readers

id.

Writers

(setf id).

Slot: expires-at
Initform

(error "expires-at required for a poll.")

Initargs

:expires-at

Readers

expires-at.

Writers

(setf expires-at).

Slot: expired
Initform

(error "expired required for a poll.")

Initargs

:expired

Readers

expired.

Writers

(setf expired).

Slot: multiple
Initform

(error "multiple required for a poll.")

Initargs

:multiple

Readers

multiple.

Writers

(setf multiple).

Slot: voters-count
Initform

(error "voters-count required for a poll.")

Initargs

:voters-count

Readers

voters-count.

Writers

(setf voters-count).

Slot: votes-count
Initform

(error "votes-count required for a poll.")

Initargs

:votes-count

Readers

votes-count.

Writers

(setf votes-count).

Slot: voted
Initform

(error "voted required for a poll.")

Initargs

:voted

Readers

voted.

Writers

(setf voted).

Slot: own-votes
Initform

(error "own-votes required for a poll.")

Initargs

:own-votes

Readers

own-votes.

Writers

(setf own-votes).

Slot: options
Initform

(error "options required for a poll.")

Initargs

:options

Readers

options.

Writers

(setf options).

Slot: emojis
Initform

(error "emojis required for a poll.")

Initargs

:emojis

Readers

emojis.

Writers

(setf emojis).

Class: poll-option

Representation of a POLL option.

See: TITLE
See: VOTES-COUNT

Package

tooter-objects.

Source

objects.lisp.

Direct superclasses

entity.

Direct methods
Direct slots
Slot: title
Initform

(error "title required for a poll-option.")

Initargs

:title

Readers

title.

Writers

(setf title).

Slot: votes-count
Initform

(error "votes-count required for a poll-option.")

Initargs

:votes-count

Readers

votes-count.

Writers

(setf votes-count).

Class: preferences

Representation of the user preferences.

See POSTING-DEFAULT-VISIBILITY
See POSTING-DEFAULT-SENSITIVE
See POSTING-DEFAULT-LANGUAGE
See READING-EXPAND-MEDIA
See READING-EXPAND-SPOILERS

Package

tooter-objects.

Source

objects.lisp.

Direct superclasses

entity.

Direct methods
Direct slots
Slot: posting-default-visibility
Initform

(error "posting-default-visibility required for a preferences.")

Initargs

:posting-default-visibility

Readers

posting-default-visibility.

Writers

(setf posting-default-visibility).

Slot: posting-default-sensitive
Initform

(error "posting-default-sensitive required for a preferences.")

Initargs

:posting-default-sensitive

Readers

posting-default-sensitive.

Writers

(setf posting-default-sensitive).

Slot: posting-default-language
Initargs

:posting-default-language

Readers

posting-default-language.

Writers

(setf posting-default-language).

Slot: reading-expand-media
Initform

(error "reading-expand-media required for a preferences.")

Initargs

:reading-expand-media

Readers

reading-expand-media.

Writers

(setf reading-expand-media).

Slot: reading-expand-spoilers
Initform

(error "reading-expand-spoilers required for a preferences.")

Initargs

:reading-expand-spoilers

Readers

reading-expand-spoilers.

Writers

(setf reading-expand-spoilers).

Class: push-subscription

Representation of a push notification subscription.

See ID
See ENDPOINT
See SERVER-KEY
See ALERTS

Package

tooter-objects.

Source

objects.lisp.

Direct superclasses

entity.

Direct methods
Direct slots
Slot: id
Initform

(error "id required for a push-subscription.")

Initargs

:id

Readers

id.

Writers

(setf id).

Slot: endpoint
Initform

(error "endpoint required for a push-subscription.")

Initargs

:endpoint

Readers

endpoint.

Writers

(setf endpoint).

Slot: server-key
Initform

(error "server-key required for a push-subscription.")

Initargs

:server-key

Readers

server-key.

Writers

(setf server-key).

Slot: alerts
Initargs

:alerts

Readers

alerts.

Writers

(setf alerts).

Class: push-subscription-alerts

Representation of alerts for PUSH-SUBSCRIPTION.

See ALERT-FOLLOW
See ALERT-FAVOURITE
See ALERT-MENTION
See ALERT-REBLOG
See ALERT-POLL

Package

tooter-objects.

Source

objects.lisp.

Direct superclasses

entity.

Direct methods
Direct slots
Slot: alert-follow
Initform

(error "alert-follow required for a push-subscription-alerts.")

Initargs

:alert-follow

Readers

alert-follow.

Writers

(setf alert-follow).

Slot: alert-favourite
Initform

(error "alert-favourite required for a push-subscription-alerts.")

Initargs

:alert-favourite

Readers

alert-favourite.

Writers

(setf alert-favourite).

Slot: alert-mention
Initform

(error "alert-mention required for a push-subscription-alerts.")

Initargs

:alert-mention

Readers

alert-mention.

Writers

(setf alert-mention).

Slot: alert-reblog
Initform

(error "alert-reblog required for a push-subscription-alerts.")

Initargs

:alert-reblog

Readers

alert-reblog.

Writers

(setf alert-reblog).

Slot: alert-poll
Initform

(error "alert-poll required for a push-subscription-alerts.")

Initargs

:alert-poll

Readers

alert-poll.

Writers

(setf alert-poll).

Class: reaction

Emoji reaction to a announcement See ANNOUNCEMENT
See NAME
See REACTION-COUNT
See ME
See URL
See STATIC-URL

Package

tooter-objects.

Source

objects.lisp.

Direct superclasses

entity.

Direct methods
Direct slots
Slot: name
Initform

(error "name required for a reaction.")

Initargs

:name

Readers

name.

Writers

(setf name).

Slot: reaction-count
Initform

(error "reaction-count required for a reaction.")

Initargs

:reaction-count

Readers

reaction-count.

Writers

(setf reaction-count).

Slot: me
Initargs

:me

Readers

me.

Writers

(setf me).

Slot: url
Initargs

:url

Readers

url.

Writers

(setf url).

Slot: static-url
Initargs

:static-url

Readers

static-url.

Writers

(setf static-url).

Class: relationship

Representation of a relationship between the current user and another account.

See ID
See FOLLOWING
See REQUESTED
See FOLLOWED-BY
See BLOCKING
See MUTING
See MUTING-NOTIFICATIONS
See SHOWING-REBLOGS
See REQUESTED
See DOMAIN-BLOCKING
See BLOCKED-BY

Package

tooter-objects.

Source

objects.lisp.

Direct superclasses

entity.

Direct methods
Direct slots
Slot: id
Initform

(error "id required for a relationship.")

Initargs

:id

Readers

id.

Writers

(setf id).

Slot: following
Initform

(error "following required for a relationship.")

Initargs

:following

Readers

following.

Writers

(setf following).

Slot: requested
Initform

(error "requested required for a relationship.")

Initargs

:requested

Readers

requested.

Writers

(setf requested).

Slot: endorsed
Initform

(error "endorsed required for a relationship.")

Initargs

:endorsed

Readers

endorsed.

Writers

(setf endorsed).

Slot: followed-by
Initform

(error "followed-by required for a relationship.")

Initargs

:followed-by

Readers

followed-by.

Writers

(setf followed-by).

Slot: muting
Initform

(error "muting required for a relationship.")

Initargs

:muting

Readers

muting.

Writers

(setf muting).

Slot: muting-notifications
Initform

(error "muting-notifications required for a relationship.")

Initargs

:muting-notifications

Readers

muting-notifications.

Writers

(setf muting-notifications).

Slot: showing-reblogs
Initform

(error "showing-reblogs required for a relationship.")

Initargs

:showing-reblogs

Readers

showing-reblogs.

Writers

(setf showing-reblogs).

Slot: blocking
Initform

(error "blocking required for a relationship.")

Initargs

:blocking

Readers

blocking.

Writers

(setf blocking).

Slot: domain-blocking
Initform

(error "domain-blocking required for a relationship.")

Initargs

:domain-blocking

Readers

domain-blocking.

Writers

(setf domain-blocking).

Slot: blocked-by
Initform

(error "blocked-by required for a relationship.")

Initargs

:blocked-by

Readers

blocked-by.

Writers

(setf blocked-by).

Class: report

Representation of an incident report.

See ID
See ACTION-TAKEN

Package

tooter-objects.

Source

objects.lisp.

Direct superclasses

entity.

Direct methods
Direct slots
Slot: id
Initform

(error "id required for a report.")

Initargs

:id

Readers

id.

Writers

(setf id).

Slot: action-taken
Initform

(error "action-taken required for a report.")

Initargs

:action-taken

Readers

action-taken.

Writers

(setf action-taken).

Class: results

Representation of a search result.

See RESULTS-ACCOUNTS
See RESULTS-STATUSES
See HASHTAGS

Package

tooter-objects.

Source

objects.lisp.

Direct superclasses

entity.

Direct methods
Direct slots
Slot: results-accounts
Initform

(error "results-accounts required for a results.")

Initargs

:results-accounts

Readers

results-accounts.

Writers

(setf results-accounts).

Slot: results-statuses
Initform

(error "results-statuses required for a results.")

Initargs

:results-statuses

Readers

results-statuses.

Writers

(setf results-statuses).

Slot: hashtags
Initform

(error "hashtags required for a results.")

Initargs

:hashtags

Readers

hashtags.

Writers

(setf hashtags).

Class: scheduled-status

Representation of a status programmed to be sent in the future.

See ID
See SCHEDULED-AT
See PARAMS

Package

tooter-objects.

Source

objects.lisp.

Direct superclasses

entity.

Direct methods
Direct slots
Slot: id
Initform

(error "id required for a scheduled-status.")

Initargs

:id

Readers

id.

Writers

(setf id).

Slot: scheduled-at
Initform

(error "scheduled-at required for a scheduled-status.")

Initargs

:scheduled-at

Readers

scheduled-at.

Writers

(setf scheduled-at).

Slot: params
Initform

(error "params required for a scheduled-status.")

Initargs

:params

Readers

params.

Writers

(setf params).

Class: source

Representation account preferences

See NOTE
See FIELDS
See PRIVACY
See SENSITIVE
See LANGUAGE
See FOLLOW-REQUESTS-COUNT

Package

tooter-objects.

Source

objects.lisp.

Direct superclasses

entity.

Direct methods
Direct slots
Slot: note
Initform

(error "note required for a source.")

Initargs

:note

Readers

note.

Writers

(setf note).

Slot: fields
Initform

(error "fields required for a source.")

Initargs

:fields

Readers

fields.

Writers

(setf fields).

Slot: privacy
Initform

(error "privacy required for a source.")

Initargs

:privacy

Readers

privacy.

Writers

(setf privacy).

Slot: sensitive
Initform

(error "sensitive required for a source.")

Initargs

:sensitive

Readers

sensitive.

Writers

(setf sensitive).

Slot: language
Initform

(error "language required for a source.")

Initargs

:language

Readers

language.

Writers

(setf language).

Slot: follow-requests-count
Initform

(error "follow-requests-count required for a source.")

Initargs

:follow-requests-count

Readers

follow-requests-count.

Writers

(setf follow-requests-count).

Class: status

Representation of a status update.

"Statuses", "toots", or "tweets" are the primary content of a Mastodon instance.

See ID
See URI
See URL
See ACCOUNT
See IN-REPLY-TO-ID
See IN-REPLY-TO-ACCOUNT-ID
See PARENT
See CONTENT
See CREATED-AT
See EMOJIS
See DISCOVERABLE
See REBLOGS-COUNT
See FAVOURITES-COUNT
See REPLIES-COUNT
See REBLOGGED
See FAVOURITED
See MUTED
See SENSITIVE
See SPOILER-TEXT
See VISIBILITY
See MEDIA-ATTACHMENTS
See MENTIONS
See TAGS
See APPLICATION
See LANGUAGE
See PINNED
See POLL
See PREVIEW-CARD
See BOOKMARKED

Package

tooter-objects.

Source

objects.lisp.

Direct superclasses

entity.

Direct methods
Direct slots
Slot: id
Initform

(error "id required for a status.")

Initargs

:id

Readers

id.

Writers

(setf id).

Slot: uri
Initform

(error "uri required for a status.")

Initargs

:uri

Readers

uri.

Writers

(setf uri).

Slot: url
Initargs

:url

Readers

url.

Writers

(setf url).

Slot: account
Initform

(error "account required for a status.")

Initargs

:account

Readers

account.

Writers

(setf account).

Slot: in-reply-to-id
Initargs

:in-reply-to-id

Readers

in-reply-to-id.

Writers

(setf in-reply-to-id).

Slot: in-reply-to-account-id
Initargs

:in-reply-to-account-id

Readers

in-reply-to-account-id.

Writers

(setf in-reply-to-account-id).

Slot: parent
Initargs

:parent

Readers

parent.

Writers

(setf parent).

Slot: content
Initform

(error "content required for a status.")

Initargs

:content

Readers

content.

Writers

(setf content).

Slot: created-at
Initform

(error "created-at required for a status.")

Initargs

:created-at

Readers

created-at.

Writers

(setf created-at).

Slot: emojis
Initform

(error "emojis required for a status.")

Initargs

:emojis

Readers

emojis.

Writers

(setf emojis).

Slot: reblogs-count
Initform

(error "reblogs-count required for a status.")

Initargs

:reblogs-count

Readers

reblogs-count.

Writers

(setf reblogs-count).

Slot: favourites-count
Initform

(error "favourites-count required for a status.")

Initargs

:favourites-count

Readers

favourites-count.

Writers

(setf favourites-count).

Slot: replies-count
Initform

(error "replies-count required for a status.")

Initargs

:replies-count

Readers

replies-count.

Writers

(setf replies-count).

Slot: reblogged
Initargs

:reblogged

Readers

reblogged.

Writers

(setf reblogged).

Slot: favourited
Initargs

:favourited

Readers

favourited.

Writers

(setf favourited).

Slot: muted
Initargs

:muted

Readers

muted.

Writers

(setf muted).

Slot: sensitive
Initform

(error "sensitive required for a status.")

Initargs

:sensitive

Readers

sensitive.

Writers

(setf sensitive).

Slot: spoiler-text
Initform

(error "spoiler-text required for a status.")

Initargs

:spoiler-text

Readers

spoiler-text.

Writers

(setf spoiler-text).

Slot: visibility
Initform

(error "visibility required for a status.")

Initargs

:visibility

Readers

visibility.

Writers

(setf visibility).

Slot: media-attachments
Initform

(error "media-attachments required for a status.")

Initargs

:media-attachments

Readers

media-attachments.

Writers

(setf media-attachments).

Slot: mentions
Initform

(error "mentions required for a status.")

Initargs

:mentions

Readers

mentions.

Writers

(setf mentions).

Slot: tags
Initform

(error "tags required for a status.")

Initargs

:tags

Readers

tags.

Writers

(setf tags).

Slot: application
Initargs

:application

Readers

application.

Writers

(setf application).

Slot: language
Initargs

:language

Readers

language.

Writers

(setf language).

Slot: pinned
Initargs

:pinned

Readers

pinned.

Writers

(setf pinned).

Slot: poll
Initargs

:poll

Readers

poll.

Writers

(setf poll).

Slot: preview-card
Initargs

:preview-card

Readers

preview-card.

Writers

(setf preview-card).

Slot: bookmarked
Initform

(error "bookmarked required for a status.")

Initargs

:bookmarked

Readers

bookmarked.

Writers

(setf bookmarked).

Class: status-params

Representation of parameters for a SCHEDULED-STATUS.

See SCHEDULED-STATUS
See TEXT
See IN-REPLY-TO-ID
See MEDIA-IDS
See SENSITIVE
See SPOILER-TEXT
See VISIBILITY
See SCHEDULED-AT
See APPLICATION-ID

Package

tooter-objects.

Source

objects.lisp.

Direct superclasses

entity.

Direct methods
Direct slots
Slot: text
Initform

(error "text required for a status-params.")

Initargs

:text

Readers

text.

Writers

(setf text).

Slot: in-reply-to-id
Initargs

:in-reply-to-id

Readers

in-reply-to-id.

Writers

(setf in-reply-to-id).

Slot: media-ids
Initargs

:media-ids

Readers

media-ids.

Writers

(setf media-ids).

Slot: sensitive
Initargs

:sensitive

Readers

sensitive.

Writers

(setf sensitive).

Slot: spoiler-text
Initargs

:spoiler-text

Readers

spoiler-text.

Writers

(setf spoiler-text).

Slot: visibility
Initform

(error "visibility required for a status-params.")

Initargs

:visibility

Readers

visibility.

Writers

(setf visibility).

Slot: scheduled-at
Initargs

:scheduled-at

Readers

scheduled-at.

Writers

(setf scheduled-at).

Slot: application-id
Initform

(error "application-id required for a status-params.")

Initargs

:application-id

Readers

application-id.

Writers

(setf application-id).

Class: tag

Representation of a hashtag used in a status.

See NAME
See URL
See HISTORY

Package

tooter-objects.

Source

objects.lisp.

Direct superclasses

entity.

Direct methods
Direct slots
Slot: name
Initform

(error "name required for a tag.")

Initargs

:name

Readers

name.

Writers

(setf name).

Slot: url
Initform

(error "url required for a tag.")

Initargs

:url

Readers

url.

Writers

(setf url).

Slot: history
Initargs

:history

Readers

history.

Writers

(setf history).

Slot: following
Initform

(error "following required for a tag.")

Initargs

:following

Readers

following.

Writers

(setf following).

Class: tag-history

Representation of the usage history of a hashtag.

See DAY
See USE-COUNT
See ACCOUNT-COUNT

Package

tooter-objects.

Source

objects.lisp.

Direct superclasses

entity.

Direct methods
Direct slots
Slot: day
Initform

(error "day required for a tag-history.")

Initargs

:day

Readers

day.

Writers

(setf day).

Slot: use-count
Initform

(error "use-count required for a tag-history.")

Initargs

:use-count

Readers

use-count.

Writers

(setf use-count).

Slot: account-count
Initform

(error "account-count required for a tag-history.")

Initargs

:account-count

Readers

account-count.

Writers

(setf account-count).

Class: token

Representation of authorization credentials

See ACCESS-TOKEN
See TOKEN-TYPE
See SCOPE
See CREATED-AT

Package

tooter-objects.

Source

objects.lisp.

Direct superclasses

entity.

Direct methods
Direct slots
Slot: access-token
Initform

(error "access-token required for a token.")

Initargs

:access-token

Readers

access-token.

Writers

(setf access-token).

Slot: token-type
Initform

(error "token-type required for a token.")

Initargs

:token-type

Readers

token-type.

Writers

(setf token-type).

Slot: scope
Initform

(error "scope required for a token.")

Initargs

:scope

Readers

scope.

Writers

(setf scope).

Slot: created-at
Initform

(error "created-at required for a token.")

Initargs

:created-at

Readers

created-at.

Writers

(setf created-at).

Class: user-list

Represents a list of users.

See ID
See TITLE

Package

tooter-objects.

Source

objects.lisp.

Direct superclasses

entity.

Direct methods
Direct slots
Slot: id
Initform

(error "id required for a user-list.")

Initargs

:id

Readers

id.

Writers

(setf id).

Slot: title
Initform

(error "title required for a user-list.")

Initargs

:title

Readers

title.

Writers

(setf title).

Class: video-metadata

Metadata for animated videos.

See WIDTH
See HEIGHT
See FRAME-RATE
See DURATION
See BITRATE

Package

tooter-objects.

Source

objects.lisp.

Direct superclasses

entity.

Direct methods
Direct slots
Slot: width
Initargs

:width

Readers

width.

Writers

(setf width).

Slot: height
Initargs

:height

Readers

height.

Writers

(setf height).

Slot: frame-rate
Initargs

:frame-rate

Readers

frame-rate.

Writers

(setf frame-rate).

Slot: duration
Initargs

:duration

Readers

duration.

Writers

(setf duration).

Slot: bitrate
Initargs

:bitrate

Readers

bitrate.

Writers

(setf bitrate).


5.2 Internals


5.2.1 Special variables

Special Variable: *html-escape-table*
Package

tooter.

Source

toolkit.lisp.

Special Variable: *translator*
Package

tooter.

Source

objects.lisp.

Special Variable: *unix-epoch-difference*
Package

tooter.

Source

toolkit.lisp.


5.2.2 Compiler macros

Compiler Macro: getj (data &rest attributes)
Package

tooter.

Source

toolkit.lisp.


5.2.3 Ordinary functions

Function: %decode-metadata (data)
Package

tooter.

Source

objects.lisp.

Function: %getj (data &rest attributes)
Package

tooter.

Source

toolkit.lisp.

Function: %request (uri parameters headers method content-type)
Package

tooter.

Source

client.lisp.

Function: %timeline (client url &key local only-media max-id since-id min-id limit)
Package

tooter.

Source

queries.lisp.

Function: decode-account (data0)
Package

tooter.

Source

objects.lisp.

Function: decode-activity (data0)
Package

tooter.

Source

objects.lisp.

Function: decode-announcement (data0)
Package

tooter.

Source

objects.lisp.

Function: decode-announcement-account (data0)
Package

tooter.

Source

objects.lisp.

Function: decode-announcement-status (data0)
Package

tooter.

Source

objects.lisp.

Function: decode-application (data0)
Package

tooter.

Source

objects.lisp.

Function: decode-attachment (data0)
Package

tooter.

Source

objects.lisp.

Function: decode-audio-metadata (data0)
Package

tooter.

Source

objects.lisp.

Function: decode-card (data0)
Package

tooter.

Source

objects.lisp.

Function: decode-context (data0)
Package

tooter.

Source

objects.lisp.

Function: decode-conversation (data0)
Package

tooter.

Source

objects.lisp.

Function: decode-emoji (data0)
Package

tooter.

Source

objects.lisp.

Function: decode-featured-tag (data0)
Package

tooter.

Source

objects.lisp.

Function: decode-field (data0)
Package

tooter.

Source

objects.lisp.

Function: decode-filter (data0)
Package

tooter.

Source

objects.lisp.

Function: decode-identity-proof (data0)
Package

tooter.

Source

objects.lisp.

Function: decode-image-metadata (data0)
Package

tooter.

Source

objects.lisp.

Function: decode-instance (data0)
Package

tooter.

Source

objects.lisp.

Function: decode-instance-stats (data0)
Package

tooter.

Source

objects.lisp.

Function: decode-marker (data0)
Package

tooter.

Source

objects.lisp.

Function: decode-mention (data0)
Package

tooter.

Source

objects.lisp.

Function: decode-metadata (data0)
Package

tooter.

Source

objects.lisp.

Function: decode-notification (data0)
Package

tooter.

Source

objects.lisp.

Function: decode-poll (data0)
Package

tooter.

Source

objects.lisp.

Function: decode-poll-option (data0)
Package

tooter.

Source

objects.lisp.

Function: decode-preferences (data0)
Package

tooter.

Source

objects.lisp.

Function: decode-push-subscription (data0)
Package

tooter.

Source

objects.lisp.

Function: decode-push-subscription-alerts (data0)
Package

tooter.

Source

objects.lisp.

Function: decode-reaction (data0)
Package

tooter.

Source

objects.lisp.

Function: decode-relationship (data0)
Package

tooter.

Source

objects.lisp.

Function: decode-report (data0)
Package

tooter.

Source

objects.lisp.

Function: decode-results (data0)
Package

tooter.

Source

objects.lisp.

Function: decode-scheduled-status (data0)
Package

tooter.

Source

objects.lisp.

Function: decode-source (data0)
Package

tooter.

Source

objects.lisp.

Function: decode-status (data0)
Package

tooter.

Source

objects.lisp.

Function: decode-status-params (data0)
Package

tooter.

Source

objects.lisp.

Function: decode-tag (data0)
Package

tooter.

Source

objects.lisp.

Function: decode-tag-history (data0)
Package

tooter.

Source

objects.lisp.

Function: decode-token (data0)
Package

tooter.

Source

objects.lisp.

Function: decode-user-list (data0)
Package

tooter.

Source

objects.lisp.

Function: decode-video-metadata (data0)
Package

tooter.

Source

objects.lisp.

Function: encode-notification-type (encoded-type)
Package

tooter.

Source

queries.lisp.

Function: getj (data &rest attributes)
Package

tooter.

Source

toolkit.lisp.

Function: line-wrap (string &key width prefix)
Package

tooter.

Source

toolkit.lisp.

Function: make-url (base &rest parameters)
Package

tooter.

Source

toolkit.lisp.

Function: param-plist->alist (plist)
Package

tooter.

Source

toolkit.lisp.

Function: parse-timestring (string)
Package

tooter.

Source

toolkit.lisp.

Function: translate-key (key)
Package

tooter.

Source

toolkit.lisp.

Function: translate-languages (languages)
Package

tooter.

Source

objects.lisp.

Function: universal->unix (universal)
Package

tooter.

Source

toolkit.lisp.

Function: unix->universal (unix)
Package

tooter.

Source

toolkit.lisp.

Function: url-encode (thing &optional external-format)
Package

tooter.

Source

toolkit.lisp.


5.2.4 Generic functions

Generic Reader: category (object)

Returns a criteria to sort the emoji.

See EMOJI

Package

tooter.

Methods
Reader Method: category ((emoji emoji))

automatically generated reader method

Source

objects.lisp.

Target Slot

category.

Generic Writer: (setf category) (object)
Package

tooter.

Methods
Writer Method: (setf category) ((emoji emoji))

automatically generated writer method

Source

objects.lisp.

Target Slot

category.

Generic Reader: filter-context (object)

Returns Where the filter is applied.

Possible values are:

:HOME — HOME TIMELINE :NOTIFICATIONS — NOTIFICATIONS :PUBLIC — PUBLIC TIMELINE :THREAD — message’s thread

Package

tooter.

Methods
Reader Method: filter-context ((filter filter))

automatically generated reader method

Source

objects.lisp.

Target Slot

filter-context.

Generic Writer: (setf filter-context) (object)
Package

tooter.

Methods
Writer Method: (setf filter-context) ((filter filter))

automatically generated writer method

Source

objects.lisp.

Target Slot

filter-context.

Generic Reader: logins (object)

Number of users login for this week

See ACTIVITY

Package

tooter.

Methods
Reader Method: logins ((activity activity))

automatically generated reader method

Source

objects.lisp.

Target Slot

logins.

Generic Writer: (setf logins) (object)
Package

tooter.

Methods
Writer Method: (setf logins) ((activity activity))

automatically generated writer method

Source

objects.lisp.

Target Slot

logins.

Generic Function: oembed (client url &key max-width max-height)

Returns oembed preview.

See CLIENT

Package

tooter.

Methods
Method: oembed ((client client) (url string) &key max-width max-height)
Source

queries.lisp.

Generic Function: present (status stream)
Package

tooter.

Methods
Method: present ((status status) (stream stream))
Source

objects.lisp.

Generic Reader: request-method (condition)
Package

tooter.

Methods
Reader Method: request-method ((condition request-failed))
Source

client.lisp.

Target Slot

request-method.

Generic Reader: value (object)

Value of the field.

See FIELD

Package

tooter.

Methods
Reader Method: value ((field field))

automatically generated reader method

Source

objects.lisp.

Target Slot

value.

Generic Writer: (setf value) (object)
Package

tooter.

Methods
Writer Method: (setf value) ((field field))

automatically generated writer method

Source

objects.lisp.

Target Slot

value.

Generic Reader: verified-at (object)

Timestamp when the server verified the URL in the value of this field

See FIELD

Package

tooter.

Methods
Reader Method: verified-at ((field field))

automatically generated reader method

Source

objects.lisp.

Target Slot

verified-at.

Generic Writer: (setf verified-at) (object)
Package

tooter.

Methods
Writer Method: (setf verified-at) ((field field))

automatically generated writer method

Source

objects.lisp.

Target Slot

verified-at.

Generic Reader: week (object)

Timestamp for the first day of this week stats.

See ACTIVITY

Package

tooter.

Methods
Reader Method: week ((activity activity))

automatically generated reader method

Source

objects.lisp.

Target Slot

week.

Generic Writer: (setf week) (object)
Package

tooter.

Methods
Writer Method: (setf week) ((activity activity))

automatically generated writer method

Source

objects.lisp.

Target Slot

week.


5.2.5 Classes

Class: activity

Representation of statistics about an instance activity.

See WEEK
See STATUSES
See LOGINS
See REGISTRATION

Package

tooter.

Source

objects.lisp.

Direct superclasses

entity.

Direct methods
Direct slots
Slot: week
Initform

(error "week required for a activity.")

Initargs

:week

Readers

week.

Writers

(setf week).

Slot: statuses
Package

tooter-objects.

Initform

(error "statuses required for a activity.")

Initargs

:statuses

Readers

statuses.

Writers

(setf statuses).

Slot: logins
Initform

(error "logins required for a activity.")

Initargs

:logins

Readers

logins.

Writers

(setf logins).

Slot: registrations
Package

tooter-objects.

Initform

(error "registrations required for a activity.")

Initargs

:registrations

Readers

registrations.

Writers

(setf registrations).

Class: field

Represents a profile element as key value pair.

See NAME
See VALUE
See VERIFIED-AT

Package

tooter.

Source

objects.lisp.

Direct superclasses

entity.

Direct methods
Direct slots
Slot: name
Package

tooter-objects.

Initform

(error "name required for a field.")

Initargs

:name

Readers

name.

Writers

(setf name).

Slot: value
Initform

(error "value required for a field.")

Initargs

:value

Readers

value.

Writers

(setf value).

Slot: verified-at
Initargs

:verified-at

Readers

verified-at.

Writers

(setf verified-at).


Appendix A Indexes


A.1 Concepts


A.2 Functions

Jump to:   %   (  
A   B   C   D   E   F   G   H   I   K   L   M   N   O   P   Q   R   S   T   U   V   W  
Index Entry  Section

%
%decode-metadata: Private ordinary functions
%getj: Private ordinary functions
%request: Private ordinary functions
%timeline: Private ordinary functions

(
(setf access-token): Public generic functions
(setf access-token): Public generic functions
(setf access-token): Public generic functions
(setf account): Public generic functions
(setf account): Public generic functions
(setf account): Public generic functions
(setf account): Public generic functions
(setf account-count): Public generic functions
(setf account-count): Public generic functions
(setf account-name): Public generic functions
(setf account-name): Public generic functions
(setf account-name): Public generic functions
(setf account-name): Public generic functions
(setf accounts): Public generic functions
(setf accounts): Public generic functions
(setf action-taken): Public generic functions
(setf action-taken): Public generic functions
(setf alert-favourite): Public generic functions
(setf alert-favourite): Public generic functions
(setf alert-follow): Public generic functions
(setf alert-follow): Public generic functions
(setf alert-mention): Public generic functions
(setf alert-mention): Public generic functions
(setf alert-poll): Public generic functions
(setf alert-poll): Public generic functions
(setf alert-reblog): Public generic functions
(setf alert-reblog): Public generic functions
(setf alerts): Public generic functions
(setf alerts): Public generic functions
(setf all-day): Public generic functions
(setf all-day): Public generic functions
(setf ancestors): Public generic functions
(setf ancestors): Public generic functions
(setf application): Public generic functions
(setf application): Public generic functions
(setf application-id): Public generic functions
(setf application-id): Public generic functions
(setf approval-required): Public generic functions
(setf approval-required): Public generic functions
(setf aspect): Public generic functions
(setf aspect): Public generic functions
(setf audio-bitrate): Public generic functions
(setf audio-bitrate): Public generic functions
(setf audio-channels): Public generic functions
(setf audio-channels): Public generic functions
(setf audio-encode): Public generic functions
(setf audio-encode): Public generic functions
(setf audio-length): Public generic functions
(setf audio-length): Public generic functions
(setf author-name): Public generic functions
(setf author-name): Public generic functions
(setf author-url): Public generic functions
(setf author-url): Public generic functions
(setf avatar): Public generic functions
(setf avatar): Public generic functions
(setf avatar-static): Public generic functions
(setf avatar-static): Public generic functions
(setf base): Public generic functions
(setf base): Public generic functions
(setf bitrate): Public generic functions
(setf bitrate): Public generic functions
(setf blocked-by): Public generic functions
(setf blocked-by): Public generic functions
(setf blocking): Public generic functions
(setf blocking): Public generic functions
(setf blurhash): Public generic functions
(setf blurhash): Public generic functions
(setf bookmarked): Public generic functions
(setf bookmarked): Public generic functions
(setf bot): Public generic functions
(setf bot): Public generic functions
(setf category): Private generic functions
(setf category): Private generic functions
(setf contact-account): Public generic functions
(setf contact-account): Public generic functions
(setf content): Public generic functions
(setf content): Public generic functions
(setf content): Public generic functions
(setf created-at): Public generic functions
(setf created-at): Public generic functions
(setf created-at): Public generic functions
(setf created-at): Public generic functions
(setf created-at): Public generic functions
(setf day): Public generic functions
(setf day): Public generic functions
(setf descendants): Public generic functions
(setf descendants): Public generic functions
(setf description): Public generic functions
(setf description): Public generic functions
(setf description): Public generic functions
(setf description): Public generic functions
(setf discoverable): Public generic functions
(setf discoverable): Public generic functions
(setf display-name): Public generic functions
(setf display-name): Public generic functions
(setf domain-blocking): Public generic functions
(setf domain-blocking): Public generic functions
(setf domain-count): Public generic functions
(setf domain-count): Public generic functions
(setf duration): Public generic functions
(setf duration): Public generic functions
(setf duration): Public generic functions
(setf email): Public generic functions
(setf email): Public generic functions
(setf embed-url): Public generic functions
(setf embed-url): Public generic functions
(setf emojis): Public generic functions
(setf emojis): Public generic functions
(setf emojis): Public generic functions
(setf emojis): Public generic functions
(setf emojis): Public generic functions
(setf endorsed): Public generic functions
(setf endorsed): Public generic functions
(setf endpoint): Public generic functions
(setf endpoint): Public generic functions
(setf ends-at): Public generic functions
(setf ends-at): Public generic functions
(setf expired): Public generic functions
(setf expired): Public generic functions
(setf expires-at): Public generic functions
(setf expires-at): Public generic functions
(setf expires-at): Public generic functions
(setf favourited): Public generic functions
(setf favourited): Public generic functions
(setf favourites-count): Public generic functions
(setf favourites-count): Public generic functions
(setf fields): Public generic functions
(setf fields): Public generic functions
(setf fields): Public generic functions
(setf filter-context): Private generic functions
(setf filter-context): Private generic functions
(setf focus): Public generic functions
(setf focus): Public generic functions
(setf follow-requests-count): Public generic functions
(setf follow-requests-count): Public generic functions
(setf followed-by): Public generic functions
(setf followed-by): Public generic functions
(setf followers-count): Public generic functions
(setf followers-count): Public generic functions
(setf following): Public generic functions
(setf following): Public generic functions
(setf following): Public generic functions
(setf following-count): Public generic functions
(setf following-count): Public generic functions
(setf frame-rate): Public generic functions
(setf frame-rate): Public generic functions
(setf hashtags): Public generic functions
(setf hashtags): Public generic functions
(setf header): Public generic functions
(setf header): Public generic functions
(setf header-static): Public generic functions
(setf header-static): Public generic functions
(setf height): Public generic functions
(setf height): Public generic functions
(setf height): Public generic functions
(setf height): Public generic functions
(setf history): Public generic functions
(setf history): Public generic functions
(setf html): Public generic functions
(setf html): Public generic functions
(setf id): Public generic functions
(setf id): Public generic functions
(setf id): Public generic functions
(setf id): Public generic functions
(setf id): Public generic functions
(setf id): Public generic functions
(setf id): Public generic functions
(setf id): Public generic functions
(setf id): Public generic functions
(setf id): Public generic functions
(setf id): Public generic functions
(setf id): Public generic functions
(setf id): Public generic functions
(setf id): Public generic functions
(setf id): Public generic functions
(setf id): Public generic functions
(setf id): Public generic functions
(setf id): Public generic functions
(setf image): Public generic functions
(setf image): Public generic functions
(setf in-reply-to-account-id): Public generic functions
(setf in-reply-to-account-id): Public generic functions
(setf in-reply-to-id): Public generic functions
(setf in-reply-to-id): Public generic functions
(setf in-reply-to-id): Public generic functions
(setf irreversible): Public generic functions
(setf irreversible): Public generic functions
(setf key): Public generic functions
(setf key): Public generic functions
(setf kind): Public generic functions
(setf kind): Public generic functions
(setf kind): Public generic functions
(setf kind): Public generic functions
(setf language): Public generic functions
(setf language): Public generic functions
(setf language): Public generic functions
(setf languages): Public generic functions
(setf languages): Public generic functions
(setf last-status): Public generic functions
(setf last-status): Public generic functions
(setf last-status-at): Public generic functions
(setf last-status-at): Public generic functions
(setf locked): Public generic functions
(setf locked): Public generic functions
(setf logins): Private generic functions
(setf logins): Private generic functions
(setf marked-home): Public generic functions
(setf marked-home): Public generic functions
(setf marked-notifications): Public generic functions
(setf marked-notifications): Public generic functions
(setf me): Public generic functions
(setf me): Public generic functions
(setf media-attachments): Public generic functions
(setf media-attachments): Public generic functions
(setf media-ids): Public generic functions
(setf media-ids): Public generic functions
(setf mentions): Public generic functions
(setf mentions): Public generic functions
(setf mentions): Public generic functions
(setf metadata): Public generic functions
(setf metadata): Public generic functions
(setf moved): Public generic functions
(setf moved): Public generic functions
(setf multiple): Public generic functions
(setf multiple): Public generic functions
(setf muted): Public generic functions
(setf muted): Public generic functions
(setf muting): Public generic functions
(setf muting): Public generic functions
(setf muting-notifications): Public generic functions
(setf muting-notifications): Public generic functions
(setf name): Public generic functions
(setf name): Public generic functions
(setf name): Public generic functions
(setf name): Public generic functions
(setf name): Public generic functions
(setf name): Public generic functions
(setf name): Public generic functions
(setf note): Public generic functions
(setf note): Public generic functions
(setf note): Public generic functions
(setf options): Public generic functions
(setf options): Public generic functions
(setf original): Public generic functions
(setf original): Public generic functions
(setf own-votes): Public generic functions
(setf own-votes): Public generic functions
(setf params): Public generic functions
(setf params): Public generic functions
(setf parent): Public generic functions
(setf parent): Public generic functions
(setf phrase): Public generic functions
(setf phrase): Public generic functions
(setf pinned): Public generic functions
(setf pinned): Public generic functions
(setf poll): Public generic functions
(setf poll): Public generic functions
(setf posting-default-language): Public generic functions
(setf posting-default-language): Public generic functions
(setf posting-default-sensitive): Public generic functions
(setf posting-default-sensitive): Public generic functions
(setf posting-default-visibility): Public generic functions
(setf posting-default-visibility): Public generic functions
(setf preview-card): Public generic functions
(setf preview-card): Public generic functions
(setf preview-url): Public generic functions
(setf preview-url): Public generic functions
(setf privacy): Public generic functions
(setf privacy): Public generic functions
(setf profile-url): Public generic functions
(setf profile-url): Public generic functions
(setf proof-url): Public generic functions
(setf proof-url): Public generic functions
(setf provider): Public generic functions
(setf provider): Public generic functions
(setf provider-name): Public generic functions
(setf provider-name): Public generic functions
(setf provider-url): Public generic functions
(setf provider-url): Public generic functions
(setf provider-username): Public generic functions
(setf provider-username): Public generic functions
(setf published): Public generic functions
(setf published): Public generic functions
(setf published-at): Public generic functions
(setf published-at): Public generic functions
(setf reaction-count): Public generic functions
(setf reaction-count): Public generic functions
(setf reactions): Public generic functions
(setf reactions): Public generic functions
(setf reading-expand-media): Public generic functions
(setf reading-expand-media): Public generic functions
(setf reading-expand-spoilers): Public generic functions
(setf reading-expand-spoilers): Public generic functions
(setf readp): Public generic functions
(setf readp): Public generic functions
(setf reblogged): Public generic functions
(setf reblogged): Public generic functions
(setf reblogs-count): Public generic functions
(setf reblogs-count): Public generic functions
(setf redirect): Public generic functions
(setf redirect): Public generic functions
(setf registrations): Public generic functions
(setf registrations): Public generic functions
(setf registrations): Public generic functions
(setf remote-url): Public generic functions
(setf remote-url): Public generic functions
(setf replies-count): Public generic functions
(setf replies-count): Public generic functions
(setf requested): Public generic functions
(setf requested): Public generic functions
(setf results-accounts): Public generic functions
(setf results-accounts): Public generic functions
(setf results-statuses): Public generic functions
(setf results-statuses): Public generic functions
(setf scheduled-at): Public generic functions
(setf scheduled-at): Public generic functions
(setf scheduled-at): Public generic functions
(setf scope): Public generic functions
(setf scope): Public generic functions
(setf scopes): Public generic functions
(setf scopes): Public generic functions
(setf secret): Public generic functions
(setf secret): Public generic functions
(setf sensitive): Public generic functions
(setf sensitive): Public generic functions
(setf sensitive): Public generic functions
(setf sensitive): Public generic functions
(setf server-key): Public generic functions
(setf server-key): Public generic functions
(setf short-description): Public generic functions
(setf short-description): Public generic functions
(setf shortcode): Public generic functions
(setf shortcode): Public generic functions
(setf showing-reblogs): Public generic functions
(setf showing-reblogs): Public generic functions
(setf size): Public generic functions
(setf size): Public generic functions
(setf small): Public generic functions
(setf small): Public generic functions
(setf source): Public generic functions
(setf source): Public generic functions
(setf spoiler-text): Public generic functions
(setf spoiler-text): Public generic functions
(setf spoiler-text): Public generic functions
(setf starts-at): Public generic functions
(setf starts-at): Public generic functions
(setf static-url): Public generic functions
(setf static-url): Public generic functions
(setf static-url): Public generic functions
(setf stats): Public generic functions
(setf stats): Public generic functions
(setf status): Public generic functions
(setf status): Public generic functions
(setf status-count): Public generic functions
(setf status-count): Public generic functions
(setf statuses): Public generic functions
(setf statuses): Public generic functions
(setf statuses): Public generic functions
(setf statuses-count): Public generic functions
(setf statuses-count): Public generic functions
(setf statuses-count): Public generic functions
(setf tags): Public generic functions
(setf tags): Public generic functions
(setf tags): Public generic functions
(setf text): Public generic functions
(setf text): Public generic functions
(setf text-url): Public generic functions
(setf text-url): Public generic functions
(setf thumbnail): Public generic functions
(setf thumbnail): Public generic functions
(setf title): Public generic functions
(setf title): Public generic functions
(setf title): Public generic functions
(setf title): Public generic functions
(setf title): Public generic functions
(setf token-type): Public generic functions
(setf token-type): Public generic functions
(setf unread): Public generic functions
(setf unread): Public generic functions
(setf updated-at): Public generic functions
(setf updated-at): Public generic functions
(setf updated-at): Public generic functions
(setf uri): Public generic functions
(setf uri): Public generic functions
(setf uri): Public generic functions
(setf url): Public generic functions
(setf url): Public generic functions
(setf url): Public generic functions
(setf url): Public generic functions
(setf url): Public generic functions
(setf url): Public generic functions
(setf url): Public generic functions
(setf url): Public generic functions
(setf url): Public generic functions
(setf url): Public generic functions
(setf url): Public generic functions
(setf urls): Public generic functions
(setf urls): Public generic functions
(setf use-count): Public generic functions
(setf use-count): Public generic functions
(setf user-count): Public generic functions
(setf user-count): Public generic functions
(setf user-list-accounts): Public generic functions
(setf user-list-accounts): Public generic functions
(setf username): Public generic functions
(setf username): Public generic functions
(setf username): Public generic functions
(setf username): Public generic functions
(setf value): Private generic functions
(setf value): Private generic functions
(setf vapid-key): Public generic functions
(setf vapid-key): Public generic functions
(setf verified-at): Private generic functions
(setf verified-at): Private generic functions
(setf version): Public generic functions
(setf version): Public generic functions
(setf visibility): Public generic functions
(setf visibility): Public generic functions
(setf visibility): Public generic functions
(setf visible-in-picker): Public generic functions
(setf visible-in-picker): Public generic functions
(setf voted): Public generic functions
(setf voted): Public generic functions
(setf voters-count): Public generic functions
(setf voters-count): Public generic functions
(setf votes-count): Public generic functions
(setf votes-count): Public generic functions
(setf votes-count): Public generic functions
(setf website): Public generic functions
(setf website): Public generic functions
(setf website): Public generic functions
(setf week): Private generic functions
(setf week): Private generic functions
(setf whole-word): Public generic functions
(setf whole-word): Public generic functions
(setf width): Public generic functions
(setf width): Public generic functions
(setf width): Public generic functions
(setf width): Public generic functions

A
accept-request: Public generic functions
accept-request: Public generic functions
accept-request: Public generic functions
access-token: Public generic functions
access-token: Public generic functions
access-token: Public generic functions
account: Public generic functions
account: Public generic functions
account: Public generic functions
account: Public generic functions
account-count: Public generic functions
account-count: Public generic functions
account-directory: Public generic functions
account-directory: Public generic functions
account-name: Public generic functions
account-name: Public generic functions
account-name: Public generic functions
account-name: Public generic functions
accounts: Public generic functions
accounts: Public generic functions
action-taken: Public generic functions
action-taken: Public generic functions
add-reaction-announcement: Public generic functions
add-reaction-announcement: Public generic functions
add-user-list-accounts: Public generic functions
add-user-list-accounts: Public generic functions
add-user-list-accounts: Public generic functions
alert-favourite: Public generic functions
alert-favourite: Public generic functions
alert-follow: Public generic functions
alert-follow: Public generic functions
alert-mention: Public generic functions
alert-mention: Public generic functions
alert-poll: Public generic functions
alert-poll: Public generic functions
alert-reblog: Public generic functions
alert-reblog: Public generic functions
alerts: Public generic functions
alerts: Public generic functions
all-day: Public generic functions
all-day: Public generic functions
ancestors: Public generic functions
ancestors: Public generic functions
application: Public generic functions
application: Public generic functions
application-id: Public generic functions
application-id: Public generic functions
approval-required: Public generic functions
approval-required: Public generic functions
aspect: Public generic functions
aspect: Public generic functions
audio-bitrate: Public generic functions
audio-bitrate: Public generic functions
audio-channels: Public generic functions
audio-channels: Public generic functions
audio-encode: Public generic functions
audio-encode: Public generic functions
audio-length: Public generic functions
audio-length: Public generic functions
author-name: Public generic functions
author-name: Public generic functions
author-url: Public generic functions
author-url: Public generic functions
authorize: Public generic functions
authorize: Public generic functions
avatar: Public generic functions
avatar: Public generic functions
avatar-static: Public generic functions
avatar-static: Public generic functions

B
base: Public generic functions
base: Public generic functions
bitrate: Public generic functions
bitrate: Public generic functions
block: Public generic functions
block: Public generic functions
block: Public generic functions
blocked-by: Public generic functions
blocked-by: Public generic functions
blocked-domains: Public generic functions
blocked-domains: Public generic functions
blocking: Public generic functions
blocking: Public generic functions
blocks: Public generic functions
blocks: Public generic functions
blurhash: Public generic functions
blurhash: Public generic functions
bookmark: Public generic functions
bookmark: Public generic functions
bookmark: Public generic functions
bookmarked: Public generic functions
bookmarked: Public generic functions
bookmarks: Public generic functions
bookmarks: Public generic functions
bot: Public generic functions
bot: Public generic functions

C
card: Public generic functions
card: Public generic functions
card: Public generic functions
category: Private generic functions
category: Private generic functions
code: Public generic functions
code: Public generic functions
coerce-boolean: Public ordinary functions
Compiler Macro, getj: Private compiler macros
contact-account: Public generic functions
contact-account: Public generic functions
content: Public generic functions
content: Public generic functions
content: Public generic functions
context: Public generic functions
context: Public generic functions
context: Public generic functions
conversations: Public generic functions
conversations: Public generic functions
convert-timestamp: Public ordinary functions
create-filter: Public generic functions
create-filter: Public generic functions
created-at: Public generic functions
created-at: Public generic functions
created-at: Public generic functions
created-at: Public generic functions
created-at: Public generic functions

D
data: Public generic functions
data: Public generic functions
day: Public generic functions
day: Public generic functions
decode-account: Private ordinary functions
decode-activity: Private ordinary functions
decode-announcement: Private ordinary functions
decode-announcement-account: Private ordinary functions
decode-announcement-status: Private ordinary functions
decode-application: Private ordinary functions
decode-attachment: Private ordinary functions
decode-audio-metadata: Private ordinary functions
decode-card: Private ordinary functions
decode-context: Private ordinary functions
decode-conversation: Private ordinary functions
decode-emoji: Private ordinary functions
decode-entity: Public generic functions
decode-entity: Public generic functions
decode-entity: Public generic functions
decode-entity: Public generic functions
decode-entity: Public generic functions
decode-entity: Public generic functions
decode-entity: Public generic functions
decode-entity: Public generic functions
decode-entity: Public generic functions
decode-entity: Public generic functions
decode-entity: Public generic functions
decode-entity: Public generic functions
decode-entity: Public generic functions
decode-entity: Public generic functions
decode-entity: Public generic functions
decode-entity: Public generic functions
decode-entity: Public generic functions
decode-entity: Public generic functions
decode-entity: Public generic functions
decode-entity: Public generic functions
decode-entity: Public generic functions
decode-entity: Public generic functions
decode-entity: Public generic functions
decode-entity: Public generic functions
decode-entity: Public generic functions
decode-entity: Public generic functions
decode-entity: Public generic functions
decode-entity: Public generic functions
decode-entity: Public generic functions
decode-entity: Public generic functions
decode-entity: Public generic functions
decode-entity: Public generic functions
decode-entity: Public generic functions
decode-entity: Public generic functions
decode-entity: Public generic functions
decode-entity: Public generic functions
decode-entity: Public generic functions
decode-entity: Public generic functions
decode-entity: Public generic functions
decode-entity: Public generic functions
decode-entity: Public generic functions
decode-entity: Public generic functions
decode-entity: Public generic functions
decode-entity: Public generic functions
decode-featured-tag: Private ordinary functions
decode-field: Private ordinary functions
decode-filter: Private ordinary functions
decode-identity-proof: Private ordinary functions
decode-image-metadata: Private ordinary functions
decode-instance: Private ordinary functions
decode-instance-stats: Private ordinary functions
decode-marker: Private ordinary functions
decode-mention: Private ordinary functions
decode-metadata: Private ordinary functions
decode-notification: Private ordinary functions
decode-poll: Private ordinary functions
decode-poll-option: Private ordinary functions
decode-preferences: Private ordinary functions
decode-push-subscription: Private ordinary functions
decode-push-subscription-alerts: Private ordinary functions
decode-reaction: Private ordinary functions
decode-relationship: Private ordinary functions
decode-report: Private ordinary functions
decode-results: Private ordinary functions
decode-scheduled-status: Private ordinary functions
decode-source: Private ordinary functions
decode-status: Private ordinary functions
decode-status-params: Private ordinary functions
decode-tag: Private ordinary functions
decode-tag-history: Private ordinary functions
decode-token: Private ordinary functions
decode-user-list: Private ordinary functions
decode-video-metadata: Private ordinary functions
default-headers: Public generic functions
default-headers: Public generic functions
define-entity: Public macros
delete-conversation: Public generic functions
delete-conversation: Public generic functions
delete-filter: Public generic functions
delete-filter: Public generic functions
delete-notification: Public generic functions
delete-notification: Public generic functions
delete-notification: Public generic functions
delete-notification: Public generic functions
delete-status: Public generic functions
delete-status: Public generic functions
delete-status: Public generic functions
delete-subscription: Public generic functions
delete-subscription: Public generic functions
delete-user-list: Public generic functions
delete-user-list: Public generic functions
descendants: Public generic functions
descendants: Public generic functions
describe-object: Public standalone methods
description: Public generic functions
description: Public generic functions
description: Public generic functions
description: Public generic functions
discoverable: Public generic functions
discoverable: Public generic functions
dismiss-announcement: Public generic functions
dismiss-announcement: Public generic functions
dismiss-reaction-announcement: Public generic functions
dismiss-reaction-announcement: Public generic functions
display-name: Public generic functions
display-name: Public generic functions
domain-blocking: Public generic functions
domain-blocking: Public generic functions
domain-count: Public generic functions
domain-count: Public generic functions
duration: Public generic functions
duration: Public generic functions
duration: Public generic functions

E
email: Public generic functions
email: Public generic functions
embed-url: Public generic functions
embed-url: Public generic functions
emojis: Public generic functions
emojis: Public generic functions
emojis: Public generic functions
emojis: Public generic functions
emojis: Public generic functions
emojis: Public generic functions
encode-notification-type: Private ordinary functions
endorsed: Public generic functions
endorsed: Public generic functions
endorsements: Public generic functions
endorsements: Public generic functions
endpoint: Public generic functions
endpoint: Public generic functions
ends-at: Public generic functions
ends-at: Public generic functions
ensure-integer: Public generic functions
ensure-integer: Public generic functions
ensure-integer: Public generic functions
expired: Public generic functions
expired: Public generic functions
expires-at: Public generic functions
expires-at: Public generic functions
expires-at: Public generic functions

F
favourite: Public generic functions
favourite: Public generic functions
favourite: Public generic functions
favourited: Public generic functions
favourited: Public generic functions
favouriters: Public generic functions
favouriters: Public generic functions
favouriters: Public generic functions
favourites: Public generic functions
favourites: Public generic functions
favourites-count: Public generic functions
favourites-count: Public generic functions
fields: Public generic functions
fields: Public generic functions
fields: Public generic functions
filter: Public generic functions
filter: Public generic functions
filter: Public generic functions
filter-context: Private generic functions
filter-context: Private generic functions
filters: Public generic functions
filters: Public generic functions
find-account: Public generic functions
find-account: Public generic functions
find-list: Public generic functions
find-list: Public generic functions
find-notification: Public generic functions
find-notification: Public generic functions
find-results: Public generic functions
find-results: Public generic functions
find-status: Public generic functions
find-status: Public generic functions
focus: Public generic functions
focus: Public generic functions
follow: Public generic functions
follow: Public generic functions
follow: Public generic functions
follow-requests: Public generic functions
follow-requests: Public generic functions
follow-requests-count: Public generic functions
follow-requests-count: Public generic functions
follow-tag: Public generic functions
follow-tag: Public generic functions
follow-tag: Public generic functions
followed-by: Public generic functions
followed-by: Public generic functions
followed-tags: Public generic functions
followed-tags: Public generic functions
followers-count: Public generic functions
followers-count: Public generic functions
following: Public generic functions
following: Public generic functions
following: Public generic functions
following-count: Public generic functions
following-count: Public generic functions
frame-rate: Public generic functions
frame-rate: Public generic functions
Function, %decode-metadata: Private ordinary functions
Function, %getj: Private ordinary functions
Function, %request: Private ordinary functions
Function, %timeline: Private ordinary functions
Function, coerce-boolean: Public ordinary functions
Function, convert-timestamp: Public ordinary functions
Function, decode-account: Private ordinary functions
Function, decode-activity: Private ordinary functions
Function, decode-announcement: Private ordinary functions
Function, decode-announcement-account: Private ordinary functions
Function, decode-announcement-status: Private ordinary functions
Function, decode-application: Private ordinary functions
Function, decode-attachment: Private ordinary functions
Function, decode-audio-metadata: Private ordinary functions
Function, decode-card: Private ordinary functions
Function, decode-context: Private ordinary functions
Function, decode-conversation: Private ordinary functions
Function, decode-emoji: Private ordinary functions
Function, decode-featured-tag: Private ordinary functions
Function, decode-field: Private ordinary functions
Function, decode-filter: Private ordinary functions
Function, decode-identity-proof: Private ordinary functions
Function, decode-image-metadata: Private ordinary functions
Function, decode-instance: Private ordinary functions
Function, decode-instance-stats: Private ordinary functions
Function, decode-marker: Private ordinary functions
Function, decode-mention: Private ordinary functions
Function, decode-metadata: Private ordinary functions
Function, decode-notification: Private ordinary functions
Function, decode-poll: Private ordinary functions
Function, decode-poll-option: Private ordinary functions
Function, decode-preferences: Private ordinary functions
Function, decode-push-subscription: Private ordinary functions
Function, decode-push-subscription-alerts: Private ordinary functions
Function, decode-reaction: Private ordinary functions
Function, decode-relationship: Private ordinary functions
Function, decode-report: Private ordinary functions
Function, decode-results: Private ordinary functions
Function, decode-scheduled-status: Private ordinary functions
Function, decode-source: Private ordinary functions
Function, decode-status: Private ordinary functions
Function, decode-status-params: Private ordinary functions
Function, decode-tag: Private ordinary functions
Function, decode-tag-history: Private ordinary functions
Function, decode-token: Private ordinary functions
Function, decode-user-list: Private ordinary functions
Function, decode-video-metadata: Private ordinary functions
Function, encode-notification-type: Private ordinary functions
Function, getj: Private ordinary functions
Function, line-wrap: Private ordinary functions
Function, make-url: Private ordinary functions
Function, param-plist->alist: Private ordinary functions
Function, parse-timestring: Private ordinary functions
Function, plain-format-html: Public ordinary functions
Function, request: Public ordinary functions
Function, to-keyword: Public ordinary functions
Function, translate-key: Private ordinary functions
Function, translate-languages: Private ordinary functions
Function, universal->unix: Private ordinary functions
Function, universal->utc-timestring: Public ordinary functions
Function, unix->universal: Private ordinary functions
Function, url-encode: Private ordinary functions

G
Generic Function, (setf access-token): Public generic functions
Generic Function, (setf account): Public generic functions
Generic Function, (setf account-count): Public generic functions
Generic Function, (setf account-name): Public generic functions
Generic Function, (setf accounts): Public generic functions
Generic Function, (setf action-taken): Public generic functions
Generic Function, (setf alert-favourite): Public generic functions
Generic Function, (setf alert-follow): Public generic functions
Generic Function, (setf alert-mention): Public generic functions
Generic Function, (setf alert-poll): Public generic functions
Generic Function, (setf alert-reblog): Public generic functions
Generic Function, (setf alerts): Public generic functions
Generic Function, (setf all-day): Public generic functions
Generic Function, (setf ancestors): Public generic functions
Generic Function, (setf application): Public generic functions
Generic Function, (setf application-id): Public generic functions
Generic Function, (setf approval-required): Public generic functions
Generic Function, (setf aspect): Public generic functions
Generic Function, (setf audio-bitrate): Public generic functions
Generic Function, (setf audio-channels): Public generic functions
Generic Function, (setf audio-encode): Public generic functions
Generic Function, (setf audio-length): Public generic functions
Generic Function, (setf author-name): Public generic functions
Generic Function, (setf author-url): Public generic functions
Generic Function, (setf avatar): Public generic functions
Generic Function, (setf avatar-static): Public generic functions
Generic Function, (setf base): Public generic functions
Generic Function, (setf bitrate): Public generic functions
Generic Function, (setf blocked-by): Public generic functions
Generic Function, (setf blocking): Public generic functions
Generic Function, (setf blurhash): Public generic functions
Generic Function, (setf bookmarked): Public generic functions
Generic Function, (setf bot): Public generic functions
Generic Function, (setf category): Private generic functions
Generic Function, (setf contact-account): Public generic functions
Generic Function, (setf content): Public generic functions
Generic Function, (setf created-at): Public generic functions
Generic Function, (setf day): Public generic functions
Generic Function, (setf descendants): Public generic functions
Generic Function, (setf description): Public generic functions
Generic Function, (setf discoverable): Public generic functions
Generic Function, (setf display-name): Public generic functions
Generic Function, (setf domain-blocking): Public generic functions
Generic Function, (setf domain-count): Public generic functions
Generic Function, (setf duration): Public generic functions
Generic Function, (setf email): Public generic functions
Generic Function, (setf embed-url): Public generic functions
Generic Function, (setf emojis): Public generic functions
Generic Function, (setf endorsed): Public generic functions
Generic Function, (setf endpoint): Public generic functions
Generic Function, (setf ends-at): Public generic functions
Generic Function, (setf expired): Public generic functions
Generic Function, (setf expires-at): Public generic functions
Generic Function, (setf favourited): Public generic functions
Generic Function, (setf favourites-count): Public generic functions
Generic Function, (setf fields): Public generic functions
Generic Function, (setf filter-context): Private generic functions
Generic Function, (setf focus): Public generic functions
Generic Function, (setf follow-requests-count): Public generic functions
Generic Function, (setf followed-by): Public generic functions
Generic Function, (setf followers-count): Public generic functions
Generic Function, (setf following): Public generic functions
Generic Function, (setf following-count): Public generic functions
Generic Function, (setf frame-rate): Public generic functions
Generic Function, (setf hashtags): Public generic functions
Generic Function, (setf header): Public generic functions
Generic Function, (setf header-static): Public generic functions
Generic Function, (setf height): Public generic functions
Generic Function, (setf history): Public generic functions
Generic Function, (setf html): Public generic functions
Generic Function, (setf id): Public generic functions
Generic Function, (setf image): Public generic functions
Generic Function, (setf in-reply-to-account-id): Public generic functions
Generic Function, (setf in-reply-to-id): Public generic functions
Generic Function, (setf irreversible): Public generic functions
Generic Function, (setf key): Public generic functions
Generic Function, (setf kind): Public generic functions
Generic Function, (setf language): Public generic functions
Generic Function, (setf languages): Public generic functions
Generic Function, (setf last-status): Public generic functions
Generic Function, (setf last-status-at): Public generic functions
Generic Function, (setf locked): Public generic functions
Generic Function, (setf logins): Private generic functions
Generic Function, (setf marked-home): Public generic functions
Generic Function, (setf marked-notifications): Public generic functions
Generic Function, (setf me): Public generic functions
Generic Function, (setf media-attachments): Public generic functions
Generic Function, (setf media-ids): Public generic functions
Generic Function, (setf mentions): Public generic functions
Generic Function, (setf metadata): Public generic functions
Generic Function, (setf moved): Public generic functions
Generic Function, (setf multiple): Public generic functions
Generic Function, (setf muted): Public generic functions
Generic Function, (setf muting): Public generic functions
Generic Function, (setf muting-notifications): Public generic functions
Generic Function, (setf name): Public generic functions
Generic Function, (setf note): Public generic functions
Generic Function, (setf options): Public generic functions
Generic Function, (setf original): Public generic functions
Generic Function, (setf own-votes): Public generic functions
Generic Function, (setf params): Public generic functions
Generic Function, (setf parent): Public generic functions
Generic Function, (setf phrase): Public generic functions
Generic Function, (setf pinned): Public generic functions
Generic Function, (setf poll): Public generic functions
Generic Function, (setf posting-default-language): Public generic functions
Generic Function, (setf posting-default-sensitive): Public generic functions
Generic Function, (setf posting-default-visibility): Public generic functions
Generic Function, (setf preview-card): Public generic functions
Generic Function, (setf preview-url): Public generic functions
Generic Function, (setf privacy): Public generic functions
Generic Function, (setf profile-url): Public generic functions
Generic Function, (setf proof-url): Public generic functions
Generic Function, (setf provider): Public generic functions
Generic Function, (setf provider-name): Public generic functions
Generic Function, (setf provider-url): Public generic functions
Generic Function, (setf provider-username): Public generic functions
Generic Function, (setf published): Public generic functions
Generic Function, (setf published-at): Public generic functions
Generic Function, (setf reaction-count): Public generic functions
Generic Function, (setf reactions): Public generic functions
Generic Function, (setf reading-expand-media): Public generic functions
Generic Function, (setf reading-expand-spoilers): Public generic functions
Generic Function, (setf readp): Public generic functions
Generic Function, (setf reblogged): Public generic functions
Generic Function, (setf reblogs-count): Public generic functions
Generic Function, (setf redirect): Public generic functions
Generic Function, (setf registrations): Public generic functions
Generic Function, (setf remote-url): Public generic functions
Generic Function, (setf replies-count): Public generic functions
Generic Function, (setf requested): Public generic functions
Generic Function, (setf results-accounts): Public generic functions
Generic Function, (setf results-statuses): Public generic functions
Generic Function, (setf scheduled-at): Public generic functions
Generic Function, (setf scope): Public generic functions
Generic Function, (setf scopes): Public generic functions
Generic Function, (setf secret): Public generic functions
Generic Function, (setf sensitive): Public generic functions
Generic Function, (setf server-key): Public generic functions
Generic Function, (setf short-description): Public generic functions
Generic Function, (setf shortcode): Public generic functions
Generic Function, (setf showing-reblogs): Public generic functions
Generic Function, (setf size): Public generic functions
Generic Function, (setf small): Public generic functions
Generic Function, (setf source): Public generic functions
Generic Function, (setf spoiler-text): Public generic functions
Generic Function, (setf starts-at): Public generic functions
Generic Function, (setf static-url): Public generic functions
Generic Function, (setf stats): Public generic functions
Generic Function, (setf status): Public generic functions
Generic Function, (setf status-count): Public generic functions
Generic Function, (setf statuses): Public generic functions
Generic Function, (setf statuses-count): Public generic functions
Generic Function, (setf tags): Public generic functions
Generic Function, (setf text): Public generic functions
Generic Function, (setf text-url): Public generic functions
Generic Function, (setf thumbnail): Public generic functions
Generic Function, (setf title): Public generic functions
Generic Function, (setf token-type): Public generic functions
Generic Function, (setf unread): Public generic functions
Generic Function, (setf updated-at): Public generic functions
Generic Function, (setf uri): Public generic functions
Generic Function, (setf url): Public generic functions
Generic Function, (setf urls): Public generic functions
Generic Function, (setf use-count): Public generic functions
Generic Function, (setf user-count): Public generic functions
Generic Function, (setf user-list-accounts): Public generic functions
Generic Function, (setf username): Public generic functions
Generic Function, (setf value): Private generic functions
Generic Function, (setf vapid-key): Public generic functions
Generic Function, (setf verified-at): Private generic functions
Generic Function, (setf version): Public generic functions
Generic Function, (setf visibility): Public generic functions
Generic Function, (setf visible-in-picker): Public generic functions
Generic Function, (setf voted): Public generic functions
Generic Function, (setf voters-count): Public generic functions
Generic Function, (setf votes-count): Public generic functions
Generic Function, (setf website): Public generic functions
Generic Function, (setf week): Private generic functions
Generic Function, (setf whole-word): Public generic functions
Generic Function, (setf width): Public generic functions
Generic Function, accept-request: Public generic functions
Generic Function, access-token: Public generic functions
Generic Function, account: Public generic functions
Generic Function, account-count: Public generic functions
Generic Function, account-directory: Public generic functions
Generic Function, account-name: Public generic functions
Generic Function, accounts: Public generic functions
Generic Function, action-taken: Public generic functions
Generic Function, add-reaction-announcement: Public generic functions
Generic Function, add-user-list-accounts: Public generic functions
Generic Function, alert-favourite: Public generic functions
Generic Function, alert-follow: Public generic functions
Generic Function, alert-mention: Public generic functions
Generic Function, alert-poll: Public generic functions
Generic Function, alert-reblog: Public generic functions
Generic Function, alerts: Public generic functions
Generic Function, all-day: Public generic functions
Generic Function, ancestors: Public generic functions
Generic Function, application: Public generic functions
Generic Function, application-id: Public generic functions
Generic Function, approval-required: Public generic functions
Generic Function, aspect: Public generic functions
Generic Function, audio-bitrate: Public generic functions
Generic Function, audio-channels: Public generic functions
Generic Function, audio-encode: Public generic functions
Generic Function, audio-length: Public generic functions
Generic Function, author-name: Public generic functions
Generic Function, author-url: Public generic functions
Generic Function, authorize: Public generic functions
Generic Function, avatar: Public generic functions
Generic Function, avatar-static: Public generic functions
Generic Function, base: Public generic functions
Generic Function, bitrate: Public generic functions
Generic Function, block: Public generic functions
Generic Function, blocked-by: Public generic functions
Generic Function, blocked-domains: Public generic functions
Generic Function, blocking: Public generic functions
Generic Function, blocks: Public generic functions
Generic Function, blurhash: Public generic functions
Generic Function, bookmark: Public generic functions
Generic Function, bookmarked: Public generic functions
Generic Function, bookmarks: Public generic functions
Generic Function, bot: Public generic functions
Generic Function, card: Public generic functions
Generic Function, category: Private generic functions
Generic Function, code: Public generic functions
Generic Function, contact-account: Public generic functions
Generic Function, content: Public generic functions
Generic Function, context: Public generic functions
Generic Function, conversations: Public generic functions
Generic Function, create-filter: Public generic functions
Generic Function, created-at: Public generic functions
Generic Function, data: Public generic functions
Generic Function, day: Public generic functions
Generic Function, decode-entity: Public generic functions
Generic Function, default-headers: Public generic functions
Generic Function, delete-conversation: Public generic functions
Generic Function, delete-filter: Public generic functions
Generic Function, delete-notification: Public generic functions
Generic Function, delete-status: Public generic functions
Generic Function, delete-subscription: Public generic functions
Generic Function, delete-user-list: Public generic functions
Generic Function, descendants: Public generic functions
Generic Function, description: Public generic functions
Generic Function, discoverable: Public generic functions
Generic Function, dismiss-announcement: Public generic functions
Generic Function, dismiss-reaction-announcement: Public generic functions
Generic Function, display-name: Public generic functions
Generic Function, domain-blocking: Public generic functions
Generic Function, domain-count: Public generic functions
Generic Function, duration: Public generic functions
Generic Function, email: Public generic functions
Generic Function, embed-url: Public generic functions
Generic Function, emojis: Public generic functions
Generic Function, endorsed: Public generic functions
Generic Function, endorsements: Public generic functions
Generic Function, endpoint: Public generic functions
Generic Function, ends-at: Public generic functions
Generic Function, ensure-integer: Public generic functions
Generic Function, expired: Public generic functions
Generic Function, expires-at: Public generic functions
Generic Function, favourite: Public generic functions
Generic Function, favourited: Public generic functions
Generic Function, favouriters: Public generic functions
Generic Function, favourites: Public generic functions
Generic Function, favourites-count: Public generic functions
Generic Function, fields: Public generic functions
Generic Function, filter: Public generic functions
Generic Function, filter-context: Private generic functions
Generic Function, filters: Public generic functions
Generic Function, find-account: Public generic functions
Generic Function, find-list: Public generic functions
Generic Function, find-notification: Public generic functions
Generic Function, find-results: Public generic functions
Generic Function, find-status: Public generic functions
Generic Function, focus: Public generic functions
Generic Function, follow: Public generic functions
Generic Function, follow-requests: Public generic functions
Generic Function, follow-requests-count: Public generic functions
Generic Function, follow-tag: Public generic functions
Generic Function, followed-by: Public generic functions
Generic Function, followed-tags: Public generic functions
Generic Function, followers-count: Public generic functions
Generic Function, following: Public generic functions
Generic Function, following-count: Public generic functions
Generic Function, frame-rate: Public generic functions
Generic Function, get-activity: Public generic functions
Generic Function, get-announcements: Public generic functions
Generic Function, get-followers: Public generic functions
Generic Function, get-following: Public generic functions
Generic Function, get-statuses: Public generic functions
Generic Function, hashtags: Public generic functions
Generic Function, header: Public generic functions
Generic Function, header-static: Public generic functions
Generic Function, height: Public generic functions
Generic Function, history: Public generic functions
Generic Function, html: Public generic functions
Generic Function, id: Public generic functions
Generic Function, identity-proof: Public generic functions
Generic Function, image: Public generic functions
Generic Function, in-reply-to-account-id: Public generic functions
Generic Function, in-reply-to-id: Public generic functions
Generic Function, instance: Public generic functions
Generic Function, irreversible: Public generic functions
Generic Function, key: Public generic functions
Generic Function, kind: Public generic functions
Generic Function, language: Public generic functions
Generic Function, languages: Public generic functions
Generic Function, last-status: Public generic functions
Generic Function, last-status-at: Public generic functions
Generic Function, locked: Public generic functions
Generic Function, logins: Private generic functions
Generic Function, make-media: Public generic functions
Generic Function, make-report: Public generic functions
Generic Function, make-status: Public generic functions
Generic Function, make-subscription: Public generic functions
Generic Function, make-user-list: Public generic functions
Generic Function, mark-read-conversation: Public generic functions
Generic Function, marked-home: Public generic functions
Generic Function, marked-notifications: Public generic functions
Generic Function, markers: Public generic functions
Generic Function, me: Public generic functions
Generic Function, media-attachments: Public generic functions
Generic Function, media-ids: Public generic functions
Generic Function, mentions: Public generic functions
Generic Function, message: Public generic functions
Generic Function, metadata: Public generic functions
Generic Function, moved: Public generic functions
Generic Function, multiple: Public generic functions
Generic Function, mute: Public generic functions
Generic Function, mute-conversation: Public generic functions
Generic Function, muted: Public generic functions
Generic Function, mutes: Public generic functions
Generic Function, muting: Public generic functions
Generic Function, muting-notifications: Public generic functions
Generic Function, name: Public generic functions
Generic Function, note: Public generic functions
Generic Function, notifications: Public generic functions
Generic Function, oembed: Private generic functions
Generic Function, options: Public generic functions
Generic Function, original: Public generic functions
Generic Function, own-votes: Public generic functions
Generic Function, params: Public generic functions
Generic Function, parent: Public generic functions
Generic Function, peers: Public generic functions
Generic Function, phrase: Public generic functions
Generic Function, pin: Public generic functions
Generic Function, pinned: Public generic functions
Generic Function, poll: Public generic functions
Generic Function, poll-vote: Public generic functions
Generic Function, polls: Public generic functions
Generic Function, posting-default-language: Public generic functions
Generic Function, posting-default-sensitive: Public generic functions
Generic Function, posting-default-visibility: Public generic functions
Generic Function, preferences: Public generic functions
Generic Function, present: Private generic functions
Generic Function, preview-card: Public generic functions
Generic Function, preview-url: Public generic functions
Generic Function, privacy: Public generic functions
Generic Function, profile-url: Public generic functions
Generic Function, proof-url: Public generic functions
Generic Function, provider: Public generic functions
Generic Function, provider-name: Public generic functions
Generic Function, provider-url: Public generic functions
Generic Function, provider-username: Public generic functions
Generic Function, published: Public generic functions
Generic Function, published-at: Public generic functions
Generic Function, query: Public generic functions
Generic Function, reaction-count: Public generic functions
Generic Function, reactions: Public generic functions
Generic Function, reading-expand-media: Public generic functions
Generic Function, reading-expand-spoilers: Public generic functions
Generic Function, readp: Public generic functions
Generic Function, reblog: Public generic functions
Generic Function, reblogged: Public generic functions
Generic Function, rebloggers: Public generic functions
Generic Function, reblogs-count: Public generic functions
Generic Function, redirect: Public generic functions
Generic Function, register: Public generic functions
Generic Function, registrations: Public generic functions
Generic Function, reject-request: Public generic functions
Generic Function, relationships: Public generic functions
Generic Function, remote-url: Public generic functions
Generic Function, remove-user-list-accounts: Public generic functions
Generic Function, replies-count: Public generic functions
Generic Function, reports: Public generic functions
Generic Function, request-method: Private generic functions
Generic Function, requested: Public generic functions
Generic Function, results-accounts: Public generic functions
Generic Function, results-statuses: Public generic functions
Generic Function, save-markers: Public generic functions
Generic Function, scheduled-at: Public generic functions
Generic Function, scope: Public generic functions
Generic Function, scopes: Public generic functions
Generic Function, search-accounts: Public generic functions
Generic Function, secret: Public generic functions
Generic Function, sensitive: Public generic functions
Generic Function, server-key: Public generic functions
Generic Function, short-description: Public generic functions
Generic Function, shortcode: Public generic functions
Generic Function, showing-reblogs: Public generic functions
Generic Function, size: Public generic functions
Generic Function, small: Public generic functions
Generic Function, source: Public generic functions
Generic Function, spoiler-text: Public generic functions
Generic Function, starts-at: Public generic functions
Generic Function, static-url: Public generic functions
Generic Function, stats: Public generic functions
Generic Function, status: Public generic functions
Generic Function, status-count: Public generic functions
Generic Function, statuses: Public generic functions
Generic Function, statuses-count: Public generic functions
Generic Function, submit: Public generic functions
Generic Function, subscription: Public generic functions
Generic Function, tags: Public generic functions
Generic Function, text: Public generic functions
Generic Function, text-url: Public generic functions
Generic Function, thumbnail: Public generic functions
Generic Function, timeline: Public generic functions
Generic Function, timeline-tag: Public generic functions
Generic Function, title: Public generic functions
Generic Function, token-type: Public generic functions
Generic Function, trends: Public generic functions
Generic Function, unblock: Public generic functions
Generic Function, unbookmark: Public generic functions
Generic Function, unfavourite: Public generic functions
Generic Function, unfollow: Public generic functions
Generic Function, unfollow-tag: Public generic functions
Generic Function, unmute: Public generic functions
Generic Function, unmute-conversation: Public generic functions
Generic Function, unpin: Public generic functions
Generic Function, unread: Public generic functions
Generic Function, unreblog: Public generic functions
Generic Function, update-credentials: Public generic functions
Generic Function, update-filter: Public generic functions
Generic Function, update-media: Public generic functions
Generic Function, update-user-list: Public generic functions
Generic Function, updated-at: Public generic functions
Generic Function, uri: Public generic functions
Generic Function, url: Public generic functions
Generic Function, urls: Public generic functions
Generic Function, use-count: Public generic functions
Generic Function, user-count: Public generic functions
Generic Function, user-list-accounts: Public generic functions
Generic Function, user-lists: Public generic functions
Generic Function, username: Public generic functions
Generic Function, value: Private generic functions
Generic Function, vapid-key: Public generic functions
Generic Function, verified-at: Private generic functions
Generic Function, verify-app-credentials: Public generic functions
Generic Function, verify-credentials: Public generic functions
Generic Function, version: Public generic functions
Generic Function, visibility: Public generic functions
Generic Function, visible-in-picker: Public generic functions
Generic Function, voted: Public generic functions
Generic Function, voters-count: Public generic functions
Generic Function, votes-count: Public generic functions
Generic Function, website: Public generic functions
Generic Function, week: Private generic functions
Generic Function, weekly-activity: Public generic functions
Generic Function, whole-word: Public generic functions
Generic Function, width: Public generic functions
get-activity: Public generic functions
get-activity: Public generic functions
get-announcements: Public generic functions
get-announcements: Public generic functions
get-followers: Public generic functions
get-followers: Public generic functions
get-followers: Public generic functions
get-followers: Public generic functions
get-following: Public generic functions
get-following: Public generic functions
get-following: Public generic functions
get-following: Public generic functions
get-statuses: Public generic functions
get-statuses: Public generic functions
get-statuses: Public generic functions
get-statuses: Public generic functions
getj: Private compiler macros
getj: Private ordinary functions

H
hashtags: Public generic functions
hashtags: Public generic functions
header: Public generic functions
header: Public generic functions
header-static: Public generic functions
header-static: Public generic functions
height: Public generic functions
height: Public generic functions
height: Public generic functions
height: Public generic functions
history: Public generic functions
history: Public generic functions
html: Public generic functions
html: Public generic functions

I
id: Public generic functions
id: Public generic functions
id: Public generic functions
id: Public generic functions
id: Public generic functions
id: Public generic functions
id: Public generic functions
id: Public generic functions
id: Public generic functions
id: Public generic functions
id: Public generic functions
id: Public generic functions
id: Public generic functions
id: Public generic functions
id: Public generic functions
id: Public generic functions
id: Public generic functions
id: Public generic functions
identity-proof: Public generic functions
identity-proof: Public generic functions
image: Public generic functions
image: Public generic functions
in-reply-to-account-id: Public generic functions
in-reply-to-account-id: Public generic functions
in-reply-to-id: Public generic functions
in-reply-to-id: Public generic functions
in-reply-to-id: Public generic functions
instance: Public generic functions
instance: Public generic functions
irreversible: Public generic functions
irreversible: Public generic functions

K
key: Public generic functions
key: Public generic functions
kind: Public generic functions
kind: Public generic functions
kind: Public generic functions
kind: Public generic functions

L
language: Public generic functions
language: Public generic functions
language: Public generic functions
languages: Public generic functions
languages: Public generic functions
last-status: Public generic functions
last-status: Public generic functions
last-status-at: Public generic functions
last-status-at: Public generic functions
line-wrap: Private ordinary functions
locked: Public generic functions
locked: Public generic functions
logins: Private generic functions
logins: Private generic functions

M
Macro, define-entity: Public macros
make-load-form: Public standalone methods
make-media: Public generic functions
make-media: Public generic functions
make-report: Public generic functions
make-report: Public generic functions
make-report: Public generic functions
make-status: Public generic functions
make-status: Public generic functions
make-subscription: Public generic functions
make-subscription: Public generic functions
make-url: Private ordinary functions
make-user-list: Public generic functions
make-user-list: Public generic functions
mark-read-conversation: Public generic functions
mark-read-conversation: Public generic functions
marked-home: Public generic functions
marked-home: Public generic functions
marked-notifications: Public generic functions
marked-notifications: Public generic functions
markers: Public generic functions
markers: Public generic functions
me: Public generic functions
me: Public generic functions
media-attachments: Public generic functions
media-attachments: Public generic functions
media-ids: Public generic functions
media-ids: Public generic functions
mentions: Public generic functions
mentions: Public generic functions
mentions: Public generic functions
message: Public generic functions
message: Public generic functions
metadata: Public generic functions
metadata: Public generic functions
Method, (setf access-token): Public generic functions
Method, (setf access-token): Public generic functions
Method, (setf account): Public generic functions
Method, (setf account): Public generic functions
Method, (setf account): Public generic functions
Method, (setf account-count): Public generic functions
Method, (setf account-name): Public generic functions
Method, (setf account-name): Public generic functions
Method, (setf account-name): Public generic functions
Method, (setf accounts): Public generic functions
Method, (setf action-taken): Public generic functions
Method, (setf alert-favourite): Public generic functions
Method, (setf alert-follow): Public generic functions
Method, (setf alert-mention): Public generic functions
Method, (setf alert-poll): Public generic functions
Method, (setf alert-reblog): Public generic functions
Method, (setf alerts): Public generic functions
Method, (setf all-day): Public generic functions
Method, (setf ancestors): Public generic functions
Method, (setf application): Public generic functions
Method, (setf application-id): Public generic functions
Method, (setf approval-required): Public generic functions
Method, (setf aspect): Public generic functions
Method, (setf audio-bitrate): Public generic functions
Method, (setf audio-channels): Public generic functions
Method, (setf audio-encode): Public generic functions
Method, (setf audio-length): Public generic functions
Method, (setf author-name): Public generic functions
Method, (setf author-url): Public generic functions
Method, (setf avatar): Public generic functions
Method, (setf avatar-static): Public generic functions
Method, (setf base): Public generic functions
Method, (setf bitrate): Public generic functions
Method, (setf blocked-by): Public generic functions
Method, (setf blocking): Public generic functions
Method, (setf blurhash): Public generic functions
Method, (setf bookmarked): Public generic functions
Method, (setf bot): Public generic functions
Method, (setf category): Private generic functions
Method, (setf contact-account): Public generic functions
Method, (setf content): Public generic functions
Method, (setf content): Public generic functions
Method, (setf created-at): Public generic functions
Method, (setf created-at): Public generic functions
Method, (setf created-at): Public generic functions
Method, (setf created-at): Public generic functions
Method, (setf day): Public generic functions
Method, (setf descendants): Public generic functions
Method, (setf description): Public generic functions
Method, (setf description): Public generic functions
Method, (setf description): Public generic functions
Method, (setf discoverable): Public generic functions
Method, (setf display-name): Public generic functions
Method, (setf domain-blocking): Public generic functions
Method, (setf domain-count): Public generic functions
Method, (setf duration): Public generic functions
Method, (setf duration): Public generic functions
Method, (setf email): Public generic functions
Method, (setf embed-url): Public generic functions
Method, (setf emojis): Public generic functions
Method, (setf emojis): Public generic functions
Method, (setf emojis): Public generic functions
Method, (setf emojis): Public generic functions
Method, (setf endorsed): Public generic functions
Method, (setf endpoint): Public generic functions
Method, (setf ends-at): Public generic functions
Method, (setf expired): Public generic functions
Method, (setf expires-at): Public generic functions
Method, (setf expires-at): Public generic functions
Method, (setf favourited): Public generic functions
Method, (setf favourites-count): Public generic functions
Method, (setf fields): Public generic functions
Method, (setf fields): Public generic functions
Method, (setf filter-context): Private generic functions
Method, (setf focus): Public generic functions
Method, (setf follow-requests-count): Public generic functions
Method, (setf followed-by): Public generic functions
Method, (setf followers-count): Public generic functions
Method, (setf following): Public generic functions
Method, (setf following): Public generic functions
Method, (setf following-count): Public generic functions
Method, (setf frame-rate): Public generic functions
Method, (setf hashtags): Public generic functions
Method, (setf header): Public generic functions
Method, (setf header-static): Public generic functions
Method, (setf height): Public generic functions
Method, (setf height): Public generic functions
Method, (setf height): Public generic functions
Method, (setf history): Public generic functions
Method, (setf html): Public generic functions
Method, (setf id): Public generic functions
Method, (setf id): Public generic functions
Method, (setf id): Public generic functions
Method, (setf id): Public generic functions
Method, (setf id): Public generic functions
Method, (setf id): Public generic functions
Method, (setf id): Public generic functions
Method, (setf id): Public generic functions
Method, (setf id): Public generic functions
Method, (setf id): Public generic functions
Method, (setf id): Public generic functions
Method, (setf id): Public generic functions
Method, (setf id): Public generic functions
Method, (setf id): Public generic functions
Method, (setf id): Public generic functions
Method, (setf id): Public generic functions
Method, (setf id): Public generic functions
Method, (setf image): Public generic functions
Method, (setf in-reply-to-account-id): Public generic functions
Method, (setf in-reply-to-id): Public generic functions
Method, (setf in-reply-to-id): Public generic functions
Method, (setf irreversible): Public generic functions
Method, (setf key): Public generic functions
Method, (setf kind): Public generic functions
Method, (setf kind): Public generic functions
Method, (setf kind): Public generic functions
Method, (setf language): Public generic functions
Method, (setf language): Public generic functions
Method, (setf languages): Public generic functions
Method, (setf last-status): Public generic functions
Method, (setf last-status-at): Public generic functions
Method, (setf locked): Public generic functions
Method, (setf logins): Private generic functions
Method, (setf marked-home): Public generic functions
Method, (setf marked-notifications): Public generic functions
Method, (setf me): Public generic functions
Method, (setf media-attachments): Public generic functions
Method, (setf media-ids): Public generic functions
Method, (setf mentions): Public generic functions
Method, (setf mentions): Public generic functions
Method, (setf metadata): Public generic functions
Method, (setf moved): Public generic functions
Method, (setf multiple): Public generic functions
Method, (setf muted): Public generic functions
Method, (setf muting): Public generic functions
Method, (setf muting-notifications): Public generic functions
Method, (setf name): Public generic functions
Method, (setf name): Public generic functions
Method, (setf name): Public generic functions
Method, (setf name): Public generic functions
Method, (setf name): Public generic functions
Method, (setf name): Public generic functions
Method, (setf note): Public generic functions
Method, (setf note): Public generic functions
Method, (setf options): Public generic functions
Method, (setf original): Public generic functions
Method, (setf own-votes): Public generic functions
Method, (setf params): Public generic functions
Method, (setf parent): Public generic functions
Method, (setf phrase): Public generic functions
Method, (setf pinned): Public generic functions
Method, (setf poll): Public generic functions
Method, (setf posting-default-language): Public generic functions
Method, (setf posting-default-sensitive): Public generic functions
Method, (setf posting-default-visibility): Public generic functions
Method, (setf preview-card): Public generic functions
Method, (setf preview-url): Public generic functions
Method, (setf privacy): Public generic functions
Method, (setf profile-url): Public generic functions
Method, (setf proof-url): Public generic functions
Method, (setf provider): Public generic functions
Method, (setf provider-name): Public generic functions
Method, (setf provider-url): Public generic functions
Method, (setf provider-username): Public generic functions
Method, (setf published): Public generic functions
Method, (setf published-at): Public generic functions
Method, (setf reaction-count): Public generic functions
Method, (setf reactions): Public generic functions
Method, (setf reading-expand-media): Public generic functions
Method, (setf reading-expand-spoilers): Public generic functions
Method, (setf readp): Public generic functions
Method, (setf reblogged): Public generic functions
Method, (setf reblogs-count): Public generic functions
Method, (setf redirect): Public generic functions
Method, (setf registrations): Public generic functions
Method, (setf registrations): Public generic functions
Method, (setf remote-url): Public generic functions
Method, (setf replies-count): Public generic functions
Method, (setf requested): Public generic functions
Method, (setf results-accounts): Public generic functions
Method, (setf results-statuses): Public generic functions
Method, (setf scheduled-at): Public generic functions
Method, (setf scheduled-at): Public generic functions
Method, (setf scope): Public generic functions
Method, (setf scopes): Public generic functions
Method, (setf secret): Public generic functions
Method, (setf sensitive): Public generic functions
Method, (setf sensitive): Public generic functions
Method, (setf sensitive): Public generic functions
Method, (setf server-key): Public generic functions
Method, (setf short-description): Public generic functions
Method, (setf shortcode): Public generic functions
Method, (setf showing-reblogs): Public generic functions
Method, (setf size): Public generic functions
Method, (setf small): Public generic functions
Method, (setf source): Public generic functions
Method, (setf spoiler-text): Public generic functions
Method, (setf spoiler-text): Public generic functions
Method, (setf starts-at): Public generic functions
Method, (setf static-url): Public generic functions
Method, (setf static-url): Public generic functions
Method, (setf stats): Public generic functions
Method, (setf status): Public generic functions
Method, (setf status-count): Public generic functions
Method, (setf statuses): Public generic functions
Method, (setf statuses): Public generic functions
Method, (setf statuses-count): Public generic functions
Method, (setf statuses-count): Public generic functions
Method, (setf tags): Public generic functions
Method, (setf tags): Public generic functions
Method, (setf text): Public generic functions
Method, (setf text-url): Public generic functions
Method, (setf thumbnail): Public generic functions
Method, (setf title): Public generic functions
Method, (setf title): Public generic functions
Method, (setf title): Public generic functions
Method, (setf title): Public generic functions
Method, (setf token-type): Public generic functions
Method, (setf unread): Public generic functions
Method, (setf updated-at): Public generic functions
Method, (setf updated-at): Public generic functions
Method, (setf uri): Public generic functions
Method, (setf uri): Public generic functions
Method, (setf url): Public generic functions
Method, (setf url): Public generic functions
Method, (setf url): Public generic functions
Method, (setf url): Public generic functions
Method, (setf url): Public generic functions
Method, (setf url): Public generic functions
Method, (setf url): Public generic functions
Method, (setf url): Public generic functions
Method, (setf url): Public generic functions
Method, (setf url): Public generic functions
Method, (setf urls): Public generic functions
Method, (setf use-count): Public generic functions
Method, (setf user-count): Public generic functions
Method, (setf user-list-accounts): Public generic functions
Method, (setf username): Public generic functions
Method, (setf username): Public generic functions
Method, (setf username): Public generic functions
Method, (setf value): Private generic functions
Method, (setf vapid-key): Public generic functions
Method, (setf verified-at): Private generic functions
Method, (setf version): Public generic functions
Method, (setf visibility): Public generic functions
Method, (setf visibility): Public generic functions
Method, (setf visible-in-picker): Public generic functions
Method, (setf voted): Public generic functions
Method, (setf voters-count): Public generic functions
Method, (setf votes-count): Public generic functions
Method, (setf votes-count): Public generic functions
Method, (setf website): Public generic functions
Method, (setf website): Public generic functions
Method, (setf week): Private generic functions
Method, (setf whole-word): Public generic functions
Method, (setf width): Public generic functions
Method, (setf width): Public generic functions
Method, (setf width): Public generic functions
Method, accept-request: Public generic functions
Method, accept-request: Public generic functions
Method, access-token: Public generic functions
Method, access-token: Public generic functions
Method, account: Public generic functions
Method, account: Public generic functions
Method, account: Public generic functions
Method, account-count: Public generic functions
Method, account-directory: Public generic functions
Method, account-name: Public generic functions
Method, account-name: Public generic functions
Method, account-name: Public generic functions
Method, accounts: Public generic functions
Method, action-taken: Public generic functions
Method, add-reaction-announcement: Public generic functions
Method, add-user-list-accounts: Public generic functions
Method, add-user-list-accounts: Public generic functions
Method, alert-favourite: Public generic functions
Method, alert-follow: Public generic functions
Method, alert-mention: Public generic functions
Method, alert-poll: Public generic functions
Method, alert-reblog: Public generic functions
Method, alerts: Public generic functions
Method, all-day: Public generic functions
Method, ancestors: Public generic functions
Method, application: Public generic functions
Method, application-id: Public generic functions
Method, approval-required: Public generic functions
Method, aspect: Public generic functions
Method, audio-bitrate: Public generic functions
Method, audio-channels: Public generic functions
Method, audio-encode: Public generic functions
Method, audio-length: Public generic functions
Method, author-name: Public generic functions
Method, author-url: Public generic functions
Method, authorize: Public generic functions
Method, avatar: Public generic functions
Method, avatar-static: Public generic functions
Method, base: Public generic functions
Method, bitrate: Public generic functions
Method, block: Public generic functions
Method, block: Public generic functions
Method, blocked-by: Public generic functions
Method, blocked-domains: Public generic functions
Method, blocking: Public generic functions
Method, blocks: Public generic functions
Method, blurhash: Public generic functions
Method, bookmark: Public generic functions
Method, bookmark: Public generic functions
Method, bookmarked: Public generic functions
Method, bookmarks: Public generic functions
Method, bot: Public generic functions
Method, card: Public generic functions
Method, card: Public generic functions
Method, category: Private generic functions
Method, code: Public generic functions
Method, contact-account: Public generic functions
Method, content: Public generic functions
Method, content: Public generic functions
Method, context: Public generic functions
Method, context: Public generic functions
Method, conversations: Public generic functions
Method, create-filter: Public generic functions
Method, created-at: Public generic functions
Method, created-at: Public generic functions
Method, created-at: Public generic functions
Method, created-at: Public generic functions
Method, data: Public generic functions
Method, day: Public generic functions
Method, decode-entity: Public generic functions
Method, decode-entity: Public generic functions
Method, decode-entity: Public generic functions
Method, decode-entity: Public generic functions
Method, decode-entity: Public generic functions
Method, decode-entity: Public generic functions
Method, decode-entity: Public generic functions
Method, decode-entity: Public generic functions
Method, decode-entity: Public generic functions
Method, decode-entity: Public generic functions
Method, decode-entity: Public generic functions
Method, decode-entity: Public generic functions
Method, decode-entity: Public generic functions
Method, decode-entity: Public generic functions
Method, decode-entity: Public generic functions
Method, decode-entity: Public generic functions
Method, decode-entity: Public generic functions
Method, decode-entity: Public generic functions
Method, decode-entity: Public generic functions
Method, decode-entity: Public generic functions
Method, decode-entity: Public generic functions
Method, decode-entity: Public generic functions
Method, decode-entity: Public generic functions
Method, decode-entity: Public generic functions
Method, decode-entity: Public generic functions
Method, decode-entity: Public generic functions
Method, decode-entity: Public generic functions
Method, decode-entity: Public generic functions
Method, decode-entity: Public generic functions
Method, decode-entity: Public generic functions
Method, decode-entity: Public generic functions
Method, decode-entity: Public generic functions
Method, decode-entity: Public generic functions
Method, decode-entity: Public generic functions
Method, decode-entity: Public generic functions
Method, decode-entity: Public generic functions
Method, decode-entity: Public generic functions
Method, decode-entity: Public generic functions
Method, decode-entity: Public generic functions
Method, decode-entity: Public generic functions
Method, decode-entity: Public generic functions
Method, decode-entity: Public generic functions
Method, decode-entity: Public generic functions
Method, default-headers: Public generic functions
Method, delete-conversation: Public generic functions
Method, delete-filter: Public generic functions
Method, delete-notification: Public generic functions
Method, delete-notification: Public generic functions
Method, delete-notification: Public generic functions
Method, delete-status: Public generic functions
Method, delete-status: Public generic functions
Method, delete-subscription: Public generic functions
Method, delete-user-list: Public generic functions
Method, descendants: Public generic functions
Method, describe-object: Public standalone methods
Method, description: Public generic functions
Method, description: Public generic functions
Method, description: Public generic functions
Method, discoverable: Public generic functions
Method, dismiss-announcement: Public generic functions
Method, dismiss-reaction-announcement: Public generic functions
Method, display-name: Public generic functions
Method, domain-blocking: Public generic functions
Method, domain-count: Public generic functions
Method, duration: Public generic functions
Method, duration: Public generic functions
Method, email: Public generic functions
Method, embed-url: Public generic functions
Method, emojis: Public generic functions
Method, emojis: Public generic functions
Method, emojis: Public generic functions
Method, emojis: Public generic functions
Method, emojis: Public generic functions
Method, endorsed: Public generic functions
Method, endorsements: Public generic functions
Method, endpoint: Public generic functions
Method, ends-at: Public generic functions
Method, ensure-integer: Public generic functions
Method, ensure-integer: Public generic functions
Method, expired: Public generic functions
Method, expires-at: Public generic functions
Method, expires-at: Public generic functions
Method, favourite: Public generic functions
Method, favourite: Public generic functions
Method, favourited: Public generic functions
Method, favouriters: Public generic functions
Method, favouriters: Public generic functions
Method, favourites: Public generic functions
Method, favourites-count: Public generic functions
Method, fields: Public generic functions
Method, fields: Public generic functions
Method, filter: Public generic functions
Method, filter: Public generic functions
Method, filter-context: Private generic functions
Method, filters: Public generic functions
Method, find-account: Public generic functions
Method, find-list: Public generic functions
Method, find-notification: Public generic functions
Method, find-results: Public generic functions
Method, find-status: Public generic functions
Method, focus: Public generic functions
Method, follow: Public generic functions
Method, follow: Public generic functions
Method, follow-requests: Public generic functions
Method, follow-requests-count: Public generic functions
Method, follow-tag: Public generic functions
Method, follow-tag: Public generic functions
Method, followed-by: Public generic functions
Method, followed-tags: Public generic functions
Method, followers-count: Public generic functions
Method, following: Public generic functions
Method, following: Public generic functions
Method, following-count: Public generic functions
Method, frame-rate: Public generic functions
Method, get-activity: Public generic functions
Method, get-announcements: Public generic functions
Method, get-followers: Public generic functions
Method, get-followers: Public generic functions
Method, get-followers: Public generic functions
Method, get-following: Public generic functions
Method, get-following: Public generic functions
Method, get-following: Public generic functions
Method, get-statuses: Public generic functions
Method, get-statuses: Public generic functions
Method, get-statuses: Public generic functions
Method, hashtags: Public generic functions
Method, header: Public generic functions
Method, header-static: Public generic functions
Method, height: Public generic functions
Method, height: Public generic functions
Method, height: Public generic functions
Method, history: Public generic functions
Method, html: Public generic functions
Method, id: Public generic functions
Method, id: Public generic functions
Method, id: Public generic functions
Method, id: Public generic functions
Method, id: Public generic functions
Method, id: Public generic functions
Method, id: Public generic functions
Method, id: Public generic functions
Method, id: Public generic functions
Method, id: Public generic functions
Method, id: Public generic functions
Method, id: Public generic functions
Method, id: Public generic functions
Method, id: Public generic functions
Method, id: Public generic functions
Method, id: Public generic functions
Method, id: Public generic functions
Method, identity-proof: Public generic functions
Method, image: Public generic functions
Method, in-reply-to-account-id: Public generic functions
Method, in-reply-to-id: Public generic functions
Method, in-reply-to-id: Public generic functions
Method, instance: Public generic functions
Method, irreversible: Public generic functions
Method, key: Public generic functions
Method, kind: Public generic functions
Method, kind: Public generic functions
Method, kind: Public generic functions
Method, language: Public generic functions
Method, language: Public generic functions
Method, languages: Public generic functions
Method, last-status: Public generic functions
Method, last-status-at: Public generic functions
Method, locked: Public generic functions
Method, logins: Private generic functions
Method, make-load-form: Public standalone methods
Method, make-media: Public generic functions
Method, make-report: Public generic functions
Method, make-report: Public generic functions
Method, make-status: Public generic functions
Method, make-subscription: Public generic functions
Method, make-user-list: Public generic functions
Method, mark-read-conversation: Public generic functions
Method, marked-home: Public generic functions
Method, marked-notifications: Public generic functions
Method, markers: Public generic functions
Method, me: Public generic functions
Method, media-attachments: Public generic functions
Method, media-ids: Public generic functions
Method, mentions: Public generic functions
Method, mentions: Public generic functions
Method, message: Public generic functions
Method, metadata: Public generic functions
Method, moved: Public generic functions
Method, multiple: Public generic functions
Method, mute: Public generic functions
Method, mute: Public generic functions
Method, mute: Public generic functions
Method, mute-conversation: Public generic functions
Method, mute-conversation: Public generic functions
Method, muted: Public generic functions
Method, mutes: Public generic functions
Method, muting: Public generic functions
Method, muting-notifications: Public generic functions
Method, name: Public generic functions
Method, name: Public generic functions
Method, name: Public generic functions
Method, name: Public generic functions
Method, name: Public generic functions
Method, name: Public generic functions
Method, note: Public generic functions
Method, note: Public generic functions
Method, notifications: Public generic functions
Method, oembed: Private generic functions
Method, options: Public generic functions
Method, original: Public generic functions
Method, own-votes: Public generic functions
Method, params: Public generic functions
Method, parent: Public generic functions
Method, peers: Public generic functions
Method, phrase: Public generic functions
Method, pin: Public generic functions
Method, pin: Public generic functions
Method, pinned: Public generic functions
Method, poll: Public generic functions
Method, poll-vote: Public generic functions
Method, poll-vote: Public generic functions
Method, polls: Public generic functions
Method, polls: Public generic functions
Method, posting-default-language: Public generic functions
Method, posting-default-sensitive: Public generic functions
Method, posting-default-visibility: Public generic functions
Method, preferences: Public generic functions
Method, present: Private generic functions
Method, preview-card: Public generic functions
Method, preview-url: Public generic functions
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, privacy: Public generic functions
Method, profile-url: Public generic functions
Method, proof-url: Public generic functions
Method, provider: Public generic functions
Method, provider-name: Public generic functions
Method, provider-url: Public generic functions
Method, provider-username: Public generic functions
Method, published: Public generic functions
Method, published-at: Public generic functions
Method, query: Public generic functions
Method, reaction-count: Public generic functions
Method, reactions: Public generic functions
Method, reading-expand-media: Public generic functions
Method, reading-expand-spoilers: Public generic functions
Method, readp: Public generic functions
Method, reblog: Public generic functions
Method, reblog: Public generic functions
Method, reblogged: Public generic functions
Method, rebloggers: Public generic functions
Method, rebloggers: Public generic functions
Method, reblogs-count: Public generic functions
Method, redirect: Public generic functions
Method, register: Public generic functions
Method, registrations: Public generic functions
Method, registrations: Public generic functions
Method, reject-request: Public generic functions
Method, reject-request: Public generic functions
Method, relationships: Public generic functions
Method, relationships: Public generic functions
Method, remote-url: Public generic functions
Method, remove-user-list-accounts: Public generic functions
Method, remove-user-list-accounts: Public generic functions
Method, replies-count: Public generic functions
Method, reports: Public generic functions
Method, request-method: Private generic functions
Method, requested: Public generic functions
Method, results-accounts: Public generic functions
Method, results-statuses: Public generic functions
Method, save-markers: Public generic functions
Method, scheduled-at: Public generic functions
Method, scheduled-at: Public generic functions
Method, scope: Public generic functions
Method, scopes: Public generic functions
Method, search-accounts: Public generic functions
Method, secret: Public generic functions
Method, sensitive: Public generic functions
Method, sensitive: Public generic functions
Method, sensitive: Public generic functions
Method, server-key: Public generic functions
Method, short-description: Public generic functions
Method, shortcode: Public generic functions
Method, showing-reblogs: Public generic functions
Method, size: Public generic functions
Method, small: Public generic functions
Method, source: Public generic functions
Method, spoiler-text: Public generic functions
Method, spoiler-text: Public generic functions
Method, starts-at: Public generic functions
Method, static-url: Public generic functions
Method, static-url: Public generic functions
Method, stats: Public generic functions
Method, status: Public generic functions
Method, status-count: Public generic functions
Method, statuses: Public generic functions
Method, statuses: Public generic functions
Method, statuses-count: Public generic functions
Method, statuses-count: Public generic functions
Method, submit: Public generic functions
Method, subscription: Public generic functions
Method, tags: Public generic functions
Method, tags: Public generic functions
Method, text: Public generic functions
Method, text-url: Public generic functions
Method, thumbnail: Public generic functions
Method, timeline: Public generic functions
Method, timeline: Public generic functions
Method, timeline: Public generic functions
Method, timeline: Public generic functions
Method, timeline: Public generic functions
Method, timeline-tag: Public generic functions
Method, title: Public generic functions
Method, title: Public generic functions
Method, title: Public generic functions
Method, title: Public generic functions
Method, token-type: Public generic functions
Method, trends: Public generic functions
Method, unblock: Public generic functions
Method, unblock: Public generic functions
Method, unbookmark: Public generic functions
Method, unbookmark: Public generic functions
Method, unfavourite: Public generic functions
Method, unfavourite: Public generic functions
Method, unfollow: Public generic functions
Method, unfollow: Public generic functions
Method, unfollow-tag: Public generic functions
Method, unfollow-tag: Public generic functions
Method, unmute: Public generic functions
Method, unmute: Public generic functions
Method, unmute: Public generic functions
Method, unmute-conversation: Public generic functions
Method, unmute-conversation: Public generic functions
Method, unpin: Public generic functions
Method, unpin: Public generic functions
Method, unread: Public generic functions
Method, unreblog: Public generic functions
Method, unreblog: Public generic functions
Method, update-credentials: Public generic functions
Method, update-filter: Public generic functions
Method, update-media: Public generic functions
Method, update-media: Public generic functions
Method, update-user-list: Public generic functions
Method, update-user-list: Public generic functions
Method, updated-at: Public generic functions
Method, updated-at: Public generic functions
Method, uri: Public generic functions
Method, uri: Public generic functions
Method, uri: Public generic functions
Method, url: Public generic functions
Method, url: Public generic functions
Method, url: Public generic functions
Method, url: Public generic functions
Method, url: Public generic functions
Method, url: Public generic functions
Method, url: Public generic functions
Method, url: Public generic functions
Method, url: Public generic functions
Method, url: Public generic functions
Method, urls: Public generic functions
Method, use-count: Public generic functions
Method, user-count: Public generic functions
Method, user-list-accounts: Public generic functions
Method, user-list-accounts: Public generic functions
Method, user-lists: Public generic functions
Method, user-lists: Public generic functions
Method, user-lists: Public generic functions
Method, username: Public generic functions
Method, username: Public generic functions
Method, username: Public generic functions
Method, value: Private generic functions
Method, vapid-key: Public generic functions
Method, verified-at: Private generic functions
Method, verify-app-credentials: Public generic functions
Method, verify-credentials: Public generic functions
Method, version: Public generic functions
Method, visibility: Public generic functions
Method, visibility: Public generic functions
Method, visible-in-picker: Public generic functions
Method, voted: Public generic functions
Method, voters-count: Public generic functions
Method, votes-count: Public generic functions
Method, votes-count: Public generic functions
Method, website: Public generic functions
Method, website: Public generic functions
Method, week: Private generic functions
Method, weekly-activity: Public generic functions
Method, whole-word: Public generic functions
Method, width: Public generic functions
Method, width: Public generic functions
Method, width: Public generic functions
moved: Public generic functions
moved: Public generic functions
multiple: Public generic functions
multiple: Public generic functions
mute: Public generic functions
mute: Public generic functions
mute: Public generic functions
mute: Public generic functions
mute-conversation: Public generic functions
mute-conversation: Public generic functions
mute-conversation: Public generic functions
muted: Public generic functions
muted: Public generic functions
mutes: Public generic functions
mutes: Public generic functions
muting: Public generic functions
muting: Public generic functions
muting-notifications: Public generic functions
muting-notifications: Public generic functions

N
name: Public generic functions
name: Public generic functions
name: Public generic functions
name: Public generic functions
name: Public generic functions
name: Public generic functions
name: Public generic functions
note: Public generic functions
note: Public generic functions
note: Public generic functions
notifications: Public generic functions
notifications: Public generic functions

O
oembed: Private generic functions
oembed: Private generic functions
options: Public generic functions
options: Public generic functions
original: Public generic functions
original: Public generic functions
own-votes: Public generic functions
own-votes: Public generic functions

P
param-plist->alist: Private ordinary functions
params: Public generic functions
params: Public generic functions
parent: Public generic functions
parent: Public generic functions
parse-timestring: Private ordinary functions
peers: Public generic functions
peers: Public generic functions
phrase: Public generic functions
phrase: Public generic functions
pin: Public generic functions
pin: Public generic functions
pin: Public generic functions
pinned: Public generic functions
pinned: Public generic functions
plain-format-html: Public ordinary functions
poll: Public generic functions
poll: Public generic functions
poll-vote: Public generic functions
poll-vote: Public generic functions
poll-vote: Public generic functions
polls: Public generic functions
polls: Public generic functions
polls: Public generic functions
posting-default-language: Public generic functions
posting-default-language: Public generic functions
posting-default-sensitive: Public generic functions
posting-default-sensitive: Public generic functions
posting-default-visibility: Public generic functions
posting-default-visibility: Public generic functions
preferences: Public generic functions
preferences: Public generic functions
present: Private generic functions
present: Private generic functions
preview-card: Public generic functions
preview-card: Public generic functions
preview-url: Public generic functions
preview-url: Public generic functions
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
privacy: Public generic functions
privacy: Public generic functions
profile-url: Public generic functions
profile-url: Public generic functions
proof-url: Public generic functions
proof-url: Public generic functions
provider: Public generic functions
provider: Public generic functions
provider-name: Public generic functions
provider-name: Public generic functions
provider-url: Public generic functions
provider-url: Public generic functions
provider-username: Public generic functions
provider-username: Public generic functions
published: Public generic functions
published: Public generic functions
published-at: Public generic functions
published-at: Public generic functions

Q
query: Public generic functions
query: Public generic functions

R
reaction-count: Public generic functions
reaction-count: Public generic functions
reactions: Public generic functions
reactions: Public generic functions
reading-expand-media: Public generic functions
reading-expand-media: Public generic functions
reading-expand-spoilers: Public generic functions
reading-expand-spoilers: Public generic functions
readp: Public generic functions
readp: Public generic functions
reblog: Public generic functions
reblog: Public generic functions
reblog: Public generic functions
reblogged: Public generic functions
reblogged: Public generic functions
rebloggers: Public generic functions
rebloggers: Public generic functions
rebloggers: Public generic functions
reblogs-count: Public generic functions
reblogs-count: Public generic functions
redirect: Public generic functions
redirect: Public generic functions
register: Public generic functions
register: Public generic functions
registrations: Public generic functions
registrations: Public generic functions
registrations: Public generic functions
reject-request: Public generic functions
reject-request: Public generic functions
reject-request: Public generic functions
relationships: Public generic functions
relationships: Public generic functions
relationships: Public generic functions
remote-url: Public generic functions
remote-url: Public generic functions
remove-user-list-accounts: Public generic functions
remove-user-list-accounts: Public generic functions
remove-user-list-accounts: Public generic functions
replies-count: Public generic functions
replies-count: Public generic functions
reports: Public generic functions
reports: Public generic functions
request: Public ordinary functions
request-method: Private generic functions
request-method: Private generic functions
requested: Public generic functions
requested: Public generic functions
results-accounts: Public generic functions
results-accounts: Public generic functions
results-statuses: Public generic functions
results-statuses: Public generic functions

S
save-markers: Public generic functions
save-markers: Public generic functions
scheduled-at: Public generic functions
scheduled-at: Public generic functions
scheduled-at: Public generic functions
scope: Public generic functions
scope: Public generic functions
scopes: Public generic functions
scopes: Public generic functions
search-accounts: Public generic functions
search-accounts: Public generic functions
secret: Public generic functions
secret: Public generic functions
sensitive: Public generic functions
sensitive: Public generic functions
sensitive: Public generic functions
sensitive: Public generic functions
server-key: Public generic functions
server-key: Public generic functions
short-description: Public generic functions
short-description: Public generic functions
shortcode: Public generic functions
shortcode: Public generic functions
showing-reblogs: Public generic functions
showing-reblogs: Public generic functions
size: Public generic functions
size: Public generic functions
small: Public generic functions
small: Public generic functions
source: Public generic functions
source: Public generic functions
spoiler-text: Public generic functions
spoiler-text: Public generic functions
spoiler-text: Public generic functions
starts-at: Public generic functions
starts-at: Public generic functions
static-url: Public generic functions
static-url: Public generic functions
static-url: Public generic functions
stats: Public generic functions
stats: Public generic functions
status: Public generic functions
status: Public generic functions
status-count: Public generic functions
status-count: Public generic functions
statuses: Public generic functions
statuses: Public generic functions
statuses: Public generic functions
statuses-count: Public generic functions
statuses-count: Public generic functions
statuses-count: Public generic functions
submit: Public generic functions
submit: Public generic functions
subscription: Public generic functions
subscription: Public generic functions

T
tags: Public generic functions
tags: Public generic functions
tags: Public generic functions
text: Public generic functions
text: Public generic functions
text-url: Public generic functions
text-url: Public generic functions
thumbnail: Public generic functions
thumbnail: Public generic functions
timeline: Public generic functions
timeline: Public generic functions
timeline: Public generic functions
timeline: Public generic functions
timeline: Public generic functions
timeline: Public generic functions
timeline-tag: Public generic functions
timeline-tag: Public generic functions
title: Public generic functions
title: Public generic functions
title: Public generic functions
title: Public generic functions
title: Public generic functions
to-keyword: Public ordinary functions
token-type: Public generic functions
token-type: Public generic functions
translate-key: Private ordinary functions
translate-languages: Private ordinary functions
trends: Public generic functions
trends: Public generic functions

U
unblock: Public generic functions
unblock: Public generic functions
unblock: Public generic functions
unbookmark: Public generic functions
unbookmark: Public generic functions
unbookmark: Public generic functions
unfavourite: Public generic functions
unfavourite: Public generic functions
unfavourite: Public generic functions
unfollow: Public generic functions
unfollow: Public generic functions
unfollow: Public generic functions
unfollow-tag: Public generic functions
unfollow-tag: Public generic functions
unfollow-tag: Public generic functions
universal->unix: Private ordinary functions
universal->utc-timestring: Public ordinary functions
unix->universal: Private ordinary functions
unmute: Public generic functions
unmute: Public generic functions
unmute: Public generic functions
unmute: Public generic functions
unmute-conversation: Public generic functions
unmute-conversation: Public generic functions
unmute-conversation: Public generic functions
unpin: Public generic functions
unpin: Public generic functions
unpin: Public generic functions
unread: Public generic functions
unread: Public generic functions
unreblog: Public generic functions
unreblog: Public generic functions
unreblog: Public generic functions
update-credentials: Public generic functions
update-credentials: Public generic functions
update-filter: Public generic functions
update-filter: Public generic functions
update-media: Public generic functions
update-media: Public generic functions
update-media: Public generic functions
update-user-list: Public generic functions
update-user-list: Public generic functions
update-user-list: Public generic functions
updated-at: Public generic functions
updated-at: Public generic functions
updated-at: Public generic functions
uri: Public generic functions
uri: Public generic functions
uri: Public generic functions
uri: Public generic functions
url: Public generic functions
url: Public generic functions
url: Public generic functions
url: Public generic functions
url: Public generic functions
url: Public generic functions
url: Public generic functions
url: Public generic functions
url: Public generic functions
url: Public generic functions
url: Public generic functions
url-encode: Private ordinary functions
urls: Public generic functions
urls: Public generic functions
use-count: Public generic functions
use-count: Public generic functions
user-count: Public generic functions
user-count: Public generic functions
user-list-accounts: Public generic functions
user-list-accounts: Public generic functions
user-list-accounts: Public generic functions
user-lists: Public generic functions
user-lists: Public generic functions
user-lists: Public generic functions
user-lists: Public generic functions
username: Public generic functions
username: Public generic functions
username: Public generic functions
username: Public generic functions

V
value: Private generic functions
value: Private generic functions
vapid-key: Public generic functions
vapid-key: Public generic functions
verified-at: Private generic functions
verified-at: Private generic functions
verify-app-credentials: Public generic functions
verify-app-credentials: Public generic functions
verify-credentials: Public generic functions
verify-credentials: Public generic functions
version: Public generic functions
version: Public generic functions
visibility: Public generic functions
visibility: Public generic functions
visibility: Public generic functions
visible-in-picker: Public generic functions
visible-in-picker: Public generic functions
voted: Public generic functions
voted: Public generic functions
voters-count: Public generic functions
voters-count: Public generic functions
votes-count: Public generic functions
votes-count: Public generic functions
votes-count: Public generic functions

W
website: Public generic functions
website: Public generic functions
website: Public generic functions
week: Private generic functions
week: Private generic functions
weekly-activity: Public generic functions
weekly-activity: Public generic functions
whole-word: Public generic functions
whole-word: Public generic functions
width: Public generic functions
width: Public generic functions
width: Public generic functions
width: Public generic functions


A.3 Variables

Jump to:   *  
A   B   C   D   E   F   H   I   K   L   M   N   O   P   R   S   T   U   V   W  
Index Entry  Section

*
*html-escape-table*: Private special variables
*translator*: Private special variables
*unix-epoch-difference*: Private special variables

A
access-token: Public classes
access-token: Public classes
account: Public classes
account: Public classes
account: Public classes
account-count: Public classes
account-name: Public classes
account-name: Public classes
account-name: Public classes
accounts: Public classes
action-taken: Public classes
alert-favourite: Public classes
alert-follow: Public classes
alert-mention: Public classes
alert-poll: Public classes
alert-reblog: Public classes
alerts: Public classes
all-day: Public classes
ancestors: Public classes
application: Public classes
application-id: Public classes
approval-required: Public classes
aspect: Public classes
audio-bitrate: Public classes
audio-channels: Public classes
audio-encode: Public classes
audio-length: Public classes
author-name: Public classes
author-url: Public classes
avatar: Public classes
avatar-static: Public classes

B
base: Public classes
bitrate: Public classes
blocked-by: Public classes
blocking: Public classes
blurhash: Public classes
bookmarked: Public classes
bot: Public classes

C
category: Public classes
code: Public conditions
contact-account: Public classes
content: Public classes
content: Public classes
created-at: Public classes
created-at: Public classes
created-at: Public classes
created-at: Public classes

D
data: Public conditions
day: Public classes
descendants: Public classes
description: Public classes
description: Public classes
description: Public classes
discoverable: Public classes
display-name: Public classes
domain-blocking: Public classes
domain-count: Public classes
duration: Public classes
duration: Public classes

E
email: Public classes
embed-url: Public classes
emojis: Public classes
emojis: Public classes
emojis: Public classes
emojis: Public classes
endorsed: Public classes
endpoint: Public classes
ends-at: Public classes
expired: Public classes
expires-at: Public classes
expires-at: Public classes

F
favourited: Public classes
favourites-count: Public classes
fields: Public classes
fields: Public classes
filter-context: Public classes
focus: Public classes
follow-requests-count: Public classes
followed-by: Public classes
followers-count: Public classes
following: Public classes
following: Public classes
following-count: Public classes
frame-rate: Public classes

H
hashtags: Public classes
header: Public classes
header-static: Public classes
height: Public classes
height: Public classes
height: Public classes
history: Public classes
html: Public classes

I
id: Public classes
id: Public classes
id: Public classes
id: Public classes
id: Public classes
id: Public classes
id: Public classes
id: Public classes
id: Public classes
id: Public classes
id: Public classes
id: Public classes
id: Public classes
id: Public classes
id: Public classes
id: Public classes
id: Public classes
image: Public classes
in-reply-to-account-id: Public classes
in-reply-to-id: Public classes
in-reply-to-id: Public classes
irreversible: Public classes

K
key: Public classes
kind: Public classes
kind: Public classes
kind: Public classes

L
language: Public classes
language: Public classes
languages: Public classes
last-status: Public classes
last-status-at: Public classes
locked: Public classes
logins: Private classes

M
marked-home: Public classes
marked-notifications: Public classes
me: Public classes
media-attachments: Public classes
media-ids: Public classes
mentions: Public classes
mentions: Public classes
message: Public conditions
metadata: Public classes
moved: Public classes
multiple: Public classes
muted: Public classes
muting: Public classes
muting-notifications: Public classes

N
name: Public classes
name: Public classes
name: Public classes
name: Public classes
name: Public classes
name: Private classes
note: Public classes
note: Public classes

O
options: Public classes
original: Public classes
own-votes: Public classes

P
params: Public classes
parent: Public classes
phrase: Public classes
pinned: Public classes
poll: Public classes
posting-default-language: Public classes
posting-default-sensitive: Public classes
posting-default-visibility: Public classes
preview-card: Public classes
preview-url: Public classes
privacy: Public classes
profile-url: Public classes
proof-url: Public classes
provider: Public classes
provider-name: Public classes
provider-url: Public classes
provider-username: Public classes
published: Public classes
published-at: Public classes

R
reaction-count: Public classes
reactions: Public classes
reading-expand-media: Public classes
reading-expand-spoilers: Public classes
readp: Public classes
reblogged: Public classes
reblogs-count: Public classes
redirect: Public classes
registrations: Public classes
registrations: Private classes
remote-url: Public classes
replies-count: Public classes
request-method: Public conditions
requested: Public classes
results-accounts: Public classes
results-statuses: Public classes

S
scheduled-at: Public classes
scheduled-at: Public classes
scope: Public classes
scopes: Public classes
secret: Public classes
sensitive: Public classes
sensitive: Public classes
sensitive: Public classes
server-key: Public classes
short-description: Public classes
shortcode: Public classes
showing-reblogs: Public classes
size: Public classes
Slot, access-token: Public classes
Slot, access-token: Public classes
Slot, account: Public classes
Slot, account: Public classes
Slot, account: Public classes
Slot, account-count: Public classes
Slot, account-name: Public classes
Slot, account-name: Public classes
Slot, account-name: Public classes
Slot, accounts: Public classes
Slot, action-taken: Public classes
Slot, alert-favourite: Public classes
Slot, alert-follow: Public classes
Slot, alert-mention: Public classes
Slot, alert-poll: Public classes
Slot, alert-reblog: Public classes
Slot, alerts: Public classes
Slot, all-day: Public classes
Slot, ancestors: Public classes
Slot, application: Public classes
Slot, application-id: Public classes
Slot, approval-required: Public classes
Slot, aspect: Public classes
Slot, audio-bitrate: Public classes
Slot, audio-channels: Public classes
Slot, audio-encode: Public classes
Slot, audio-length: Public classes
Slot, author-name: Public classes
Slot, author-url: Public classes
Slot, avatar: Public classes
Slot, avatar-static: Public classes
Slot, base: Public classes
Slot, bitrate: Public classes
Slot, blocked-by: Public classes
Slot, blocking: Public classes
Slot, blurhash: Public classes
Slot, bookmarked: Public classes
Slot, bot: Public classes
Slot, category: Public classes
Slot, code: Public conditions
Slot, contact-account: Public classes
Slot, content: Public classes
Slot, content: Public classes
Slot, created-at: Public classes
Slot, created-at: Public classes
Slot, created-at: Public classes
Slot, created-at: Public classes
Slot, data: Public conditions
Slot, day: Public classes
Slot, descendants: Public classes
Slot, description: Public classes
Slot, description: Public classes
Slot, description: Public classes
Slot, discoverable: Public classes
Slot, display-name: Public classes
Slot, domain-blocking: Public classes
Slot, domain-count: Public classes
Slot, duration: Public classes
Slot, duration: Public classes
Slot, email: Public classes
Slot, embed-url: Public classes
Slot, emojis: Public classes
Slot, emojis: Public classes
Slot, emojis: Public classes
Slot, emojis: Public classes
Slot, endorsed: Public classes
Slot, endpoint: Public classes
Slot, ends-at: Public classes
Slot, expired: Public classes
Slot, expires-at: Public classes
Slot, expires-at: Public classes
Slot, favourited: Public classes
Slot, favourites-count: Public classes
Slot, fields: Public classes
Slot, fields: Public classes
Slot, filter-context: Public classes
Slot, focus: Public classes
Slot, follow-requests-count: Public classes
Slot, followed-by: Public classes
Slot, followers-count: Public classes
Slot, following: Public classes
Slot, following: Public classes
Slot, following-count: Public classes
Slot, frame-rate: Public classes
Slot, hashtags: Public classes
Slot, header: Public classes
Slot, header-static: Public classes
Slot, height: Public classes
Slot, height: Public classes
Slot, height: Public classes
Slot, history: Public classes
Slot, html: Public classes
Slot, id: Public classes
Slot, id: Public classes
Slot, id: Public classes
Slot, id: Public classes
Slot, id: Public classes
Slot, id: Public classes
Slot, id: Public classes
Slot, id: Public classes
Slot, id: Public classes
Slot, id: Public classes
Slot, id: Public classes
Slot, id: Public classes
Slot, id: Public classes
Slot, id: Public classes
Slot, id: Public classes
Slot, id: Public classes
Slot, id: Public classes
Slot, image: Public classes
Slot, in-reply-to-account-id: Public classes
Slot, in-reply-to-id: Public classes
Slot, in-reply-to-id: Public classes
Slot, irreversible: Public classes
Slot, key: Public classes
Slot, kind: Public classes
Slot, kind: Public classes
Slot, kind: Public classes
Slot, language: Public classes
Slot, language: Public classes
Slot, languages: Public classes
Slot, last-status: Public classes
Slot, last-status-at: Public classes
Slot, locked: Public classes
Slot, logins: Private classes
Slot, marked-home: Public classes
Slot, marked-notifications: Public classes
Slot, me: Public classes
Slot, media-attachments: Public classes
Slot, media-ids: Public classes
Slot, mentions: Public classes
Slot, mentions: Public classes
Slot, message: Public conditions
Slot, metadata: Public classes
Slot, moved: Public classes
Slot, multiple: Public classes
Slot, muted: Public classes
Slot, muting: Public classes
Slot, muting-notifications: Public classes
Slot, name: Public classes
Slot, name: Public classes
Slot, name: Public classes
Slot, name: Public classes
Slot, name: Public classes
Slot, name: Private classes
Slot, note: Public classes
Slot, note: Public classes
Slot, options: Public classes
Slot, original: Public classes
Slot, own-votes: Public classes
Slot, params: Public classes
Slot, parent: Public classes
Slot, phrase: Public classes
Slot, pinned: Public classes
Slot, poll: Public classes
Slot, posting-default-language: Public classes
Slot, posting-default-sensitive: Public classes
Slot, posting-default-visibility: Public classes
Slot, preview-card: Public classes
Slot, preview-url: Public classes
Slot, privacy: Public classes
Slot, profile-url: Public classes
Slot, proof-url: Public classes
Slot, provider: Public classes
Slot, provider-name: Public classes
Slot, provider-url: Public classes
Slot, provider-username: Public classes
Slot, published: Public classes
Slot, published-at: Public classes
Slot, reaction-count: Public classes
Slot, reactions: Public classes
Slot, reading-expand-media: Public classes
Slot, reading-expand-spoilers: Public classes
Slot, readp: Public classes
Slot, reblogged: Public classes
Slot, reblogs-count: Public classes
Slot, redirect: Public classes
Slot, registrations: Public classes
Slot, registrations: Private classes
Slot, remote-url: Public classes
Slot, replies-count: Public classes
Slot, request-method: Public conditions
Slot, requested: Public classes
Slot, results-accounts: Public classes
Slot, results-statuses: Public classes
Slot, scheduled-at: Public classes
Slot, scheduled-at: Public classes
Slot, scope: Public classes
Slot, scopes: Public classes
Slot, secret: Public classes
Slot, sensitive: Public classes
Slot, sensitive: Public classes
Slot, sensitive: Public classes
Slot, server-key: Public classes
Slot, short-description: Public classes
Slot, shortcode: Public classes
Slot, showing-reblogs: Public classes
Slot, size: Public classes
Slot, small: Public classes
Slot, source: Public classes
Slot, spoiler-text: Public classes
Slot, spoiler-text: Public classes
Slot, starts-at: Public classes
Slot, static-url: Public classes
Slot, static-url: Public classes
Slot, stats: Public classes
Slot, status: Public classes
Slot, status-count: Public classes
Slot, statuses: Public classes
Slot, statuses: Private classes
Slot, statuses-count: Public classes
Slot, statuses-count: Public classes
Slot, tags: Public classes
Slot, tags: Public classes
Slot, text: Public classes
Slot, text-url: Public classes
Slot, thumbnail: Public classes
Slot, title: Public classes
Slot, title: Public classes
Slot, title: Public classes
Slot, title: Public classes
Slot, token-type: Public classes
Slot, unread: Public classes
Slot, updated-at: Public classes
Slot, updated-at: Public classes
Slot, uri: Public conditions
Slot, uri: Public classes
Slot, uri: Public classes
Slot, url: Public classes
Slot, url: Public classes
Slot, url: Public classes
Slot, url: Public classes
Slot, url: Public classes
Slot, url: Public classes
Slot, url: Public classes
Slot, url: Public classes
Slot, url: Public classes
Slot, url: Public classes
Slot, urls: Public classes
Slot, use-count: Public classes
Slot, user-count: Public classes
Slot, username: Public classes
Slot, username: Public classes
Slot, username: Public classes
Slot, value: Private classes
Slot, vapid-key: Public classes
Slot, verified-at: Private classes
Slot, version: Public classes
Slot, visibility: Public classes
Slot, visibility: Public classes
Slot, visible-in-picker: Public classes
Slot, voted: Public classes
Slot, voters-count: Public classes
Slot, votes-count: Public classes
Slot, votes-count: Public classes
Slot, website: Public classes
Slot, website: Public classes
Slot, week: Private classes
Slot, whole-word: Public classes
Slot, width: Public classes
Slot, width: Public classes
Slot, width: Public classes
small: Public classes
source: Public classes
Special Variable, *html-escape-table*: Private special variables
Special Variable, *translator*: Private special variables
Special Variable, *unix-epoch-difference*: Private special variables
spoiler-text: Public classes
spoiler-text: Public classes
starts-at: Public classes
static-url: Public classes
static-url: Public classes
stats: Public classes
status: Public classes
status-count: Public classes
statuses: Public classes
statuses: Private classes
statuses-count: Public classes
statuses-count: Public classes

T
tags: Public classes
tags: Public classes
text: Public classes
text-url: Public classes
thumbnail: Public classes
title: Public classes
title: Public classes
title: Public classes
title: Public classes
token-type: Public classes

U
unread: Public classes
updated-at: Public classes
updated-at: Public classes
uri: Public conditions
uri: Public classes
uri: Public classes
url: Public classes
url: Public classes
url: Public classes
url: Public classes
url: Public classes
url: Public classes
url: Public classes
url: Public classes
url: Public classes
url: Public classes
urls: Public classes
use-count: Public classes
user-count: Public classes
username: Public classes
username: Public classes
username: Public classes

V
value: Private classes
vapid-key: Public classes
verified-at: Private classes
version: Public classes
visibility: Public classes
visibility: Public classes
visible-in-picker: Public classes
voted: Public classes
voters-count: Public classes
votes-count: Public classes
votes-count: Public classes

W
website: Public classes
website: Public classes
week: Private classes
whole-word: Public classes
width: Public classes
width: Public classes
width: Public classes


A.4 Data types

Jump to:   A   C   D   E   F   I   M   N   O   P   Q   R   S   T   U   V  
Index Entry  Section

A
account: Public classes
activity: Private classes
announcement: Public classes
announcement-account: Public classes
announcement-status: Public classes
application: Public classes
attachment: Public classes
audio-metadata: Public classes

C
card: Public classes
Class, account: Public classes
Class, activity: Private classes
Class, announcement: Public classes
Class, announcement-account: Public classes
Class, announcement-status: Public classes
Class, application: Public classes
Class, attachment: Public classes
Class, audio-metadata: Public classes
Class, card: Public classes
Class, client: Public classes
Class, context: Public classes
Class, conversation: Public classes
Class, emoji: Public classes
Class, entity: Public classes
Class, featured-tag: Public classes
Class, field: Private classes
Class, filter: Public classes
Class, identity-proof: Public classes
Class, image-metadata: Public classes
Class, instance: Public classes
Class, instance-stats: Public classes
Class, marker: Public classes
Class, mention: Public classes
Class, metadata: Public classes
Class, notification: Public classes
Class, poll: Public classes
Class, poll-option: Public classes
Class, preferences: Public classes
Class, push-subscription: Public classes
Class, push-subscription-alerts: Public classes
Class, reaction: Public classes
Class, relationship: Public classes
Class, report: Public classes
Class, results: Public classes
Class, scheduled-status: Public classes
Class, source: Public classes
Class, status: Public classes
Class, status-params: Public classes
Class, tag: Public classes
Class, tag-history: Public classes
Class, token: Public classes
Class, user-list: Public classes
Class, video-metadata: Public classes
client: Public classes
client.lisp: The tooter/client․lisp file
Condition, request-failed: Public conditions
context: Public classes
conversation: Public classes

D
documentation.lisp: The tooter/documentation․lisp file

E
emoji: Public classes
entity: Public classes

F
featured-tag: Public classes
field: Private classes
File, client.lisp: The tooter/client․lisp file
File, documentation.lisp: The tooter/documentation․lisp file
File, objects.lisp: The tooter/objects․lisp file
File, package.lisp: The tooter/package․lisp file
File, queries.lisp: The tooter/queries․lisp file
File, toolkit.lisp: The tooter/toolkit․lisp file
File, tooter.asd: The tooter/tooter․asd file
filter: Public classes

I
identity-proof: Public classes
image-metadata: Public classes
instance: Public classes
instance-stats: Public classes

M
marker: Public classes
mention: Public classes
metadata: Public classes

N
notification: Public classes

O
objects.lisp: The tooter/objects․lisp file

P
Package, tooter: The tooter package
Package, tooter-client: The tooter-client package
Package, tooter-objects: The tooter-objects package
Package, tooter-queries: The tooter-queries package
package.lisp: The tooter/package․lisp file
poll: Public classes
poll-option: Public classes
preferences: Public classes
push-subscription: Public classes
push-subscription-alerts: Public classes

Q
queries.lisp: The tooter/queries․lisp file

R
reaction: Public classes
relationship: Public classes
report: Public classes
request-failed: Public conditions
results: Public classes

S
scheduled-status: Public classes
source: Public classes
status: Public classes
status-params: Public classes
System, tooter: The tooter system

T
tag: Public classes
tag-history: Public classes
token: Public classes
toolkit.lisp: The tooter/toolkit․lisp file
tooter: The tooter system
tooter: The tooter package
tooter-client: The tooter-client package
tooter-objects: The tooter-objects package
tooter-queries: The tooter-queries package
tooter.asd: The tooter/tooter․asd file

U
user-list: Public classes

V
video-metadata: Public classes