diff --git a/src/models/asObject/ASObject.model.ts b/src/models/asObject/ASObject.model.ts index a8ad586..0d4a3d5 100644 --- a/src/models/asObject/ASObject.model.ts +++ b/src/models/asObject/ASObject.model.ts @@ -1,6 +1,13 @@ import {ASBase} from "../ASBase.model"; import { ASObjectFields } from "./ASObject.types"; +/** + * Describes an object of any kind. The Object type serves as the base type for most of + * the other kinds of objects defined in the Activity Vocabulary, + * including other Core types such as Activity, IntransitiveActivity, Collection and OrderedCollection. + * + * {@link https://www.w3.org/ns/activitystreams#Object Docs} + */ export class ASObject extends ASBase{ constructor(fields: ASObjectFields) { super(fields);