vocab

package
v1.0.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 9, 2020 License: BSD-3-Clause Imports: 2 Imported by: 38

Documentation

Overview

Package vocab contains the interfaces for the JSONLD vocabulary. All applications are strongly encouraged to use these interface types instead of the concrete definitions contained in the implementation subpackage. These interfaces allow applications to consume only the types and properties needed and be independent of the go-fed implementation if another alternative implementation is created. This package is code-generated and subject to the same license as the go-fed tool used to generate it.

Type interfaces contain "Get" and "Set" methods for its properties. Types also have a "Serialize" method to convert the type into an interface map for use with the json package. There is a convenience "IsExtending" method on each types which helps with the ActivityStreams hierarchy, which is not the same as object oriented inheritance. While types also have a "LessThan" method, it is an arbitrary sort. Do not use it if needing to sort on specific properties, such as publish time. It is best used for normalizing the type. Lastly, do not use the "GetUnknownProperties" method in an application. Instead, use the go-fed tool to code generate the property needed.

Properties come in two flavors: functional and non-functional. Functional means that a property can have at most one value, while non-functional means a property could have zero, one, or more values. Any property value may also be an IRI, in which case the application will need to make a HTTP request to fetch the property value.

Functional properties have "Get", "Is", and "Set" methods for determining what kind of value the property is, fetching that value, or setting that value. There is also a "Serialize" method which converts the property into an interface type, but applications should not typically use a property's "Serialize" and instead should use a type's "Serialize" instead. Like types, properties have an arbitrary "LessThan" comparison function that should not be used if needing to sort on specific values. Finally, applications should not use the "KindIndex" method as it is a comparison mechanism only for those looking to write an alternate implementation.

Non-functional properties can have more than one value, so it has "Len" for getting its length, "At" for getting an iterator pointing to an element, "Append" and "Prepend" for adding values, "Remove" for removing a value, "Set" for overwriting a value, and "Swap" for swapping two values' indices. Note that a non-functional property satisfies the sort interface, but it results in an arbitrary but stable ordering best used as a normalized form. A non-functional property's iterator looks like a functional property with "Next" and "Previous" methods. Applications should not use the "KindIndex" methods as it is a comparison mechanism only for those looking to write an alternate implementation of this library.

Types and properties have a "JSONLDContext" method that returns a mapping of vocabulary URIs to aliases that are required in the JSON-LD @context when serializing this value. The aliases used by this library when serializing objects is done at code-generation time, unless a different alias was used to deserialize the type or property.

Types, functional properties, and non-functional properties are not designed for concurrent usage by two or more goroutines. Also, certain methods on a non-functional property will invalidate iterators and possibly cause unexpected behaviors. To avoid this, re-obtain an iterator after modifying a non-functional property.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type ActivityStreamsAccept

type ActivityStreamsAccept interface {
	// GetActivityStreamsActor returns the "actor" property if it exists, and
	// nil otherwise.
	GetActivityStreamsActor() ActivityStreamsActorProperty
	// GetActivityStreamsAltitude returns the "altitude" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAltitude() ActivityStreamsAltitudeProperty
	// GetActivityStreamsAttachment returns the "attachment" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAttachment() ActivityStreamsAttachmentProperty
	// GetActivityStreamsAttributedTo returns the "attributedTo" property if
	// it exists, and nil otherwise.
	GetActivityStreamsAttributedTo() ActivityStreamsAttributedToProperty
	// GetActivityStreamsAudience returns the "audience" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAudience() ActivityStreamsAudienceProperty
	// GetActivityStreamsBcc returns the "bcc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBcc() ActivityStreamsBccProperty
	// GetActivityStreamsBto returns the "bto" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBto() ActivityStreamsBtoProperty
	// GetActivityStreamsCc returns the "cc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsCc() ActivityStreamsCcProperty
	// GetActivityStreamsContent returns the "content" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContent() ActivityStreamsContentProperty
	// GetActivityStreamsContext returns the "context" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContext() ActivityStreamsContextProperty
	// GetActivityStreamsDuration returns the "duration" property if it
	// exists, and nil otherwise.
	GetActivityStreamsDuration() ActivityStreamsDurationProperty
	// GetActivityStreamsEndTime returns the "endTime" property if it exists,
	// and nil otherwise.
	GetActivityStreamsEndTime() ActivityStreamsEndTimeProperty
	// GetActivityStreamsGenerator returns the "generator" property if it
	// exists, and nil otherwise.
	GetActivityStreamsGenerator() ActivityStreamsGeneratorProperty
	// GetActivityStreamsIcon returns the "icon" property if it exists, and
	// nil otherwise.
	GetActivityStreamsIcon() ActivityStreamsIconProperty
	// GetActivityStreamsImage returns the "image" property if it exists, and
	// nil otherwise.
	GetActivityStreamsImage() ActivityStreamsImageProperty
	// GetActivityStreamsInReplyTo returns the "inReplyTo" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInReplyTo() ActivityStreamsInReplyToProperty
	// GetActivityStreamsInstrument returns the "instrument" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInstrument() ActivityStreamsInstrumentProperty
	// GetActivityStreamsLikes returns the "likes" property if it exists, and
	// nil otherwise.
	GetActivityStreamsLikes() ActivityStreamsLikesProperty
	// GetActivityStreamsLocation returns the "location" property if it
	// exists, and nil otherwise.
	GetActivityStreamsLocation() ActivityStreamsLocationProperty
	// GetActivityStreamsMediaType returns the "mediaType" property if it
	// exists, and nil otherwise.
	GetActivityStreamsMediaType() ActivityStreamsMediaTypeProperty
	// GetActivityStreamsName returns the "name" property if it exists, and
	// nil otherwise.
	GetActivityStreamsName() ActivityStreamsNameProperty
	// GetActivityStreamsObject returns the "object" property if it exists,
	// and nil otherwise.
	GetActivityStreamsObject() ActivityStreamsObjectProperty
	// GetActivityStreamsOrigin returns the "origin" property if it exists,
	// and nil otherwise.
	GetActivityStreamsOrigin() ActivityStreamsOriginProperty
	// GetActivityStreamsPreview returns the "preview" property if it exists,
	// and nil otherwise.
	GetActivityStreamsPreview() ActivityStreamsPreviewProperty
	// GetActivityStreamsPublished returns the "published" property if it
	// exists, and nil otherwise.
	GetActivityStreamsPublished() ActivityStreamsPublishedProperty
	// GetActivityStreamsReplies returns the "replies" property if it exists,
	// and nil otherwise.
	GetActivityStreamsReplies() ActivityStreamsRepliesProperty
	// GetActivityStreamsResult returns the "result" property if it exists,
	// and nil otherwise.
	GetActivityStreamsResult() ActivityStreamsResultProperty
	// GetActivityStreamsShares returns the "shares" property if it exists,
	// and nil otherwise.
	GetActivityStreamsShares() ActivityStreamsSharesProperty
	// GetActivityStreamsSource returns the "source" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSource() ActivityStreamsSourceProperty
	// GetActivityStreamsStartTime returns the "startTime" property if it
	// exists, and nil otherwise.
	GetActivityStreamsStartTime() ActivityStreamsStartTimeProperty
	// GetActivityStreamsSummary returns the "summary" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSummary() ActivityStreamsSummaryProperty
	// GetActivityStreamsTag returns the "tag" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTag() ActivityStreamsTagProperty
	// GetActivityStreamsTarget returns the "target" property if it exists,
	// and nil otherwise.
	GetActivityStreamsTarget() ActivityStreamsTargetProperty
	// GetActivityStreamsTo returns the "to" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTo() ActivityStreamsToProperty
	// GetActivityStreamsUpdated returns the "updated" property if it exists,
	// and nil otherwise.
	GetActivityStreamsUpdated() ActivityStreamsUpdatedProperty
	// GetActivityStreamsUrl returns the "url" property if it exists, and nil
	// otherwise.
	GetActivityStreamsUrl() ActivityStreamsUrlProperty
	// GetForgeFedTeam returns the "team" property if it exists, and nil
	// otherwise.
	GetForgeFedTeam() ForgeFedTeamProperty
	// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
	// it exists, and nil otherwise.
	GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
	// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
	// it exists, and nil otherwise.
	GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
	// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
	GetJSONLDId() JSONLDIdProperty
	// GetJSONLDType returns the "type" property if it exists, and nil
	// otherwise.
	GetJSONLDType() JSONLDTypeProperty
	// GetTypeName returns the name of this type.
	GetTypeName() string
	// GetUnknownProperties returns the unknown properties for the Accept
	// type. Note that this should not be used by app developers. It is
	// only used to help determine which implementation is LessThan the
	// other. Developers who are creating a different implementation of
	// this type's interface can use this method in their LessThan
	// implementation, but routine ActivityPub applications should not use
	// this to bypass the code generation tool.
	GetUnknownProperties() map[string]interface{}
	// IsExtending returns true if the Accept type extends from the other type.
	IsExtending(other Type) bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this type and the specific properties that are set. The value
	// in the map is the alias used to import the type and its properties.
	JSONLDContext() map[string]string
	// LessThan computes if this Accept is lesser, with an arbitrary but
	// stable determination.
	LessThan(o ActivityStreamsAccept) bool
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format.
	Serialize() (map[string]interface{}, error)
	// SetActivityStreamsActor sets the "actor" property.
	SetActivityStreamsActor(i ActivityStreamsActorProperty)
	// SetActivityStreamsAltitude sets the "altitude" property.
	SetActivityStreamsAltitude(i ActivityStreamsAltitudeProperty)
	// SetActivityStreamsAttachment sets the "attachment" property.
	SetActivityStreamsAttachment(i ActivityStreamsAttachmentProperty)
	// SetActivityStreamsAttributedTo sets the "attributedTo" property.
	SetActivityStreamsAttributedTo(i ActivityStreamsAttributedToProperty)
	// SetActivityStreamsAudience sets the "audience" property.
	SetActivityStreamsAudience(i ActivityStreamsAudienceProperty)
	// SetActivityStreamsBcc sets the "bcc" property.
	SetActivityStreamsBcc(i ActivityStreamsBccProperty)
	// SetActivityStreamsBto sets the "bto" property.
	SetActivityStreamsBto(i ActivityStreamsBtoProperty)
	// SetActivityStreamsCc sets the "cc" property.
	SetActivityStreamsCc(i ActivityStreamsCcProperty)
	// SetActivityStreamsContent sets the "content" property.
	SetActivityStreamsContent(i ActivityStreamsContentProperty)
	// SetActivityStreamsContext sets the "context" property.
	SetActivityStreamsContext(i ActivityStreamsContextProperty)
	// SetActivityStreamsDuration sets the "duration" property.
	SetActivityStreamsDuration(i ActivityStreamsDurationProperty)
	// SetActivityStreamsEndTime sets the "endTime" property.
	SetActivityStreamsEndTime(i ActivityStreamsEndTimeProperty)
	// SetActivityStreamsGenerator sets the "generator" property.
	SetActivityStreamsGenerator(i ActivityStreamsGeneratorProperty)
	// SetActivityStreamsIcon sets the "icon" property.
	SetActivityStreamsIcon(i ActivityStreamsIconProperty)
	// SetActivityStreamsImage sets the "image" property.
	SetActivityStreamsImage(i ActivityStreamsImageProperty)
	// SetActivityStreamsInReplyTo sets the "inReplyTo" property.
	SetActivityStreamsInReplyTo(i ActivityStreamsInReplyToProperty)
	// SetActivityStreamsInstrument sets the "instrument" property.
	SetActivityStreamsInstrument(i ActivityStreamsInstrumentProperty)
	// SetActivityStreamsLikes sets the "likes" property.
	SetActivityStreamsLikes(i ActivityStreamsLikesProperty)
	// SetActivityStreamsLocation sets the "location" property.
	SetActivityStreamsLocation(i ActivityStreamsLocationProperty)
	// SetActivityStreamsMediaType sets the "mediaType" property.
	SetActivityStreamsMediaType(i ActivityStreamsMediaTypeProperty)
	// SetActivityStreamsName sets the "name" property.
	SetActivityStreamsName(i ActivityStreamsNameProperty)
	// SetActivityStreamsObject sets the "object" property.
	SetActivityStreamsObject(i ActivityStreamsObjectProperty)
	// SetActivityStreamsOrigin sets the "origin" property.
	SetActivityStreamsOrigin(i ActivityStreamsOriginProperty)
	// SetActivityStreamsPreview sets the "preview" property.
	SetActivityStreamsPreview(i ActivityStreamsPreviewProperty)
	// SetActivityStreamsPublished sets the "published" property.
	SetActivityStreamsPublished(i ActivityStreamsPublishedProperty)
	// SetActivityStreamsReplies sets the "replies" property.
	SetActivityStreamsReplies(i ActivityStreamsRepliesProperty)
	// SetActivityStreamsResult sets the "result" property.
	SetActivityStreamsResult(i ActivityStreamsResultProperty)
	// SetActivityStreamsShares sets the "shares" property.
	SetActivityStreamsShares(i ActivityStreamsSharesProperty)
	// SetActivityStreamsSource sets the "source" property.
	SetActivityStreamsSource(i ActivityStreamsSourceProperty)
	// SetActivityStreamsStartTime sets the "startTime" property.
	SetActivityStreamsStartTime(i ActivityStreamsStartTimeProperty)
	// SetActivityStreamsSummary sets the "summary" property.
	SetActivityStreamsSummary(i ActivityStreamsSummaryProperty)
	// SetActivityStreamsTag sets the "tag" property.
	SetActivityStreamsTag(i ActivityStreamsTagProperty)
	// SetActivityStreamsTarget sets the "target" property.
	SetActivityStreamsTarget(i ActivityStreamsTargetProperty)
	// SetActivityStreamsTo sets the "to" property.
	SetActivityStreamsTo(i ActivityStreamsToProperty)
	// SetActivityStreamsUpdated sets the "updated" property.
	SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
	// SetActivityStreamsUrl sets the "url" property.
	SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
	// SetForgeFedTeam sets the "team" property.
	SetForgeFedTeam(i ForgeFedTeamProperty)
	// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
	SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
	// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
	SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
	// SetJSONLDId sets the "id" property.
	SetJSONLDId(i JSONLDIdProperty)
	// SetJSONLDType sets the "type" property.
	SetJSONLDType(i JSONLDTypeProperty)
	// VocabularyURI returns the vocabulary's URI as a string.
	VocabularyURI() string
}

Indicates that the actor accepts the object. The target property can be used in certain circumstances to indicate the context into which the object has been accepted.

Example 9 (https://www.w3.org/TR/activitystreams-vocabulary/#ex7a-jsonld):

{
  "actor": {
    "name": "Sally",
    "type": "Person"
  },
  "object": {
    "actor": "http://john.example.org",
    "object": {
      "name": "Going-Away Party for Jim",
      "type": "Event"
    },
    "type": "Invite"
  },
  "summary": "Sally accepted an invitation to a party",
  "type": "Accept"
}

Example 10 (https://www.w3.org/TR/activitystreams-vocabulary/#ex7b-jsonld):

{
  "actor": {
    "name": "Sally",
    "type": "Person"
  },
  "object": {
    "name": "Joe",
    "type": "Person"
  },
  "summary": "Sally accepted Joe into the club",
  "target": {
    "name": "The Club",
    "type": "Group"
  },
  "type": "Accept"
}

type ActivityStreamsAccuracyProperty

type ActivityStreamsAccuracyProperty interface {
	// Clear ensures no value of this property is set. Calling
	// IsXMLSchemaFloat afterwards will return false.
	Clear()
	// Get returns the value of this property. When IsXMLSchemaFloat returns
	// false, Get will return any arbitrary value.
	Get() float64
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return any arbitrary value.
	GetIRI() *url.URL
	// HasAny returns true if the value or IRI is set.
	HasAny() bool
	// IsIRI returns true if this property is an IRI.
	IsIRI() bool
	// IsXMLSchemaFloat returns true if this property is set and not an IRI.
	IsXMLSchemaFloat() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsAccuracyProperty) bool
	// Name returns the name of this property: "accuracy".
	Name() string
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// Set sets the value of this property. Calling IsXMLSchemaFloat
	// afterwards will return true.
	Set(v float64)
	// SetIRI sets the value of this property. Calling IsIRI afterwards will
	// return true.
	SetIRI(v *url.URL)
}

Indicates the accuracy of position coordinates on a Place objects. Expressed in properties of percentage. e.g. "94.0" means "94.0% accurate".

Example 112 (https://www.w3.org/TR/activitystreams-vocabulary/#ex127-jsonld):

{
  "accuracy": 94.5,
  "latitude": 36.75,
  "longitude": 119.7667,
  "name": "Liu Gu Lu Cun, Pingdu, Qingdao, Shandong, China",
  "type": "Place"
}

type ActivityStreamsActivity

type ActivityStreamsActivity interface {
	// GetActivityStreamsActor returns the "actor" property if it exists, and
	// nil otherwise.
	GetActivityStreamsActor() ActivityStreamsActorProperty
	// GetActivityStreamsAltitude returns the "altitude" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAltitude() ActivityStreamsAltitudeProperty
	// GetActivityStreamsAttachment returns the "attachment" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAttachment() ActivityStreamsAttachmentProperty
	// GetActivityStreamsAttributedTo returns the "attributedTo" property if
	// it exists, and nil otherwise.
	GetActivityStreamsAttributedTo() ActivityStreamsAttributedToProperty
	// GetActivityStreamsAudience returns the "audience" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAudience() ActivityStreamsAudienceProperty
	// GetActivityStreamsBcc returns the "bcc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBcc() ActivityStreamsBccProperty
	// GetActivityStreamsBto returns the "bto" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBto() ActivityStreamsBtoProperty
	// GetActivityStreamsCc returns the "cc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsCc() ActivityStreamsCcProperty
	// GetActivityStreamsContent returns the "content" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContent() ActivityStreamsContentProperty
	// GetActivityStreamsContext returns the "context" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContext() ActivityStreamsContextProperty
	// GetActivityStreamsDuration returns the "duration" property if it
	// exists, and nil otherwise.
	GetActivityStreamsDuration() ActivityStreamsDurationProperty
	// GetActivityStreamsEndTime returns the "endTime" property if it exists,
	// and nil otherwise.
	GetActivityStreamsEndTime() ActivityStreamsEndTimeProperty
	// GetActivityStreamsGenerator returns the "generator" property if it
	// exists, and nil otherwise.
	GetActivityStreamsGenerator() ActivityStreamsGeneratorProperty
	// GetActivityStreamsIcon returns the "icon" property if it exists, and
	// nil otherwise.
	GetActivityStreamsIcon() ActivityStreamsIconProperty
	// GetActivityStreamsImage returns the "image" property if it exists, and
	// nil otherwise.
	GetActivityStreamsImage() ActivityStreamsImageProperty
	// GetActivityStreamsInReplyTo returns the "inReplyTo" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInReplyTo() ActivityStreamsInReplyToProperty
	// GetActivityStreamsInstrument returns the "instrument" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInstrument() ActivityStreamsInstrumentProperty
	// GetActivityStreamsLikes returns the "likes" property if it exists, and
	// nil otherwise.
	GetActivityStreamsLikes() ActivityStreamsLikesProperty
	// GetActivityStreamsLocation returns the "location" property if it
	// exists, and nil otherwise.
	GetActivityStreamsLocation() ActivityStreamsLocationProperty
	// GetActivityStreamsMediaType returns the "mediaType" property if it
	// exists, and nil otherwise.
	GetActivityStreamsMediaType() ActivityStreamsMediaTypeProperty
	// GetActivityStreamsName returns the "name" property if it exists, and
	// nil otherwise.
	GetActivityStreamsName() ActivityStreamsNameProperty
	// GetActivityStreamsObject returns the "object" property if it exists,
	// and nil otherwise.
	GetActivityStreamsObject() ActivityStreamsObjectProperty
	// GetActivityStreamsOrigin returns the "origin" property if it exists,
	// and nil otherwise.
	GetActivityStreamsOrigin() ActivityStreamsOriginProperty
	// GetActivityStreamsPreview returns the "preview" property if it exists,
	// and nil otherwise.
	GetActivityStreamsPreview() ActivityStreamsPreviewProperty
	// GetActivityStreamsPublished returns the "published" property if it
	// exists, and nil otherwise.
	GetActivityStreamsPublished() ActivityStreamsPublishedProperty
	// GetActivityStreamsReplies returns the "replies" property if it exists,
	// and nil otherwise.
	GetActivityStreamsReplies() ActivityStreamsRepliesProperty
	// GetActivityStreamsResult returns the "result" property if it exists,
	// and nil otherwise.
	GetActivityStreamsResult() ActivityStreamsResultProperty
	// GetActivityStreamsShares returns the "shares" property if it exists,
	// and nil otherwise.
	GetActivityStreamsShares() ActivityStreamsSharesProperty
	// GetActivityStreamsSource returns the "source" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSource() ActivityStreamsSourceProperty
	// GetActivityStreamsStartTime returns the "startTime" property if it
	// exists, and nil otherwise.
	GetActivityStreamsStartTime() ActivityStreamsStartTimeProperty
	// GetActivityStreamsSummary returns the "summary" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSummary() ActivityStreamsSummaryProperty
	// GetActivityStreamsTag returns the "tag" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTag() ActivityStreamsTagProperty
	// GetActivityStreamsTarget returns the "target" property if it exists,
	// and nil otherwise.
	GetActivityStreamsTarget() ActivityStreamsTargetProperty
	// GetActivityStreamsTo returns the "to" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTo() ActivityStreamsToProperty
	// GetActivityStreamsUpdated returns the "updated" property if it exists,
	// and nil otherwise.
	GetActivityStreamsUpdated() ActivityStreamsUpdatedProperty
	// GetActivityStreamsUrl returns the "url" property if it exists, and nil
	// otherwise.
	GetActivityStreamsUrl() ActivityStreamsUrlProperty
	// GetForgeFedTeam returns the "team" property if it exists, and nil
	// otherwise.
	GetForgeFedTeam() ForgeFedTeamProperty
	// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
	// it exists, and nil otherwise.
	GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
	// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
	// it exists, and nil otherwise.
	GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
	// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
	GetJSONLDId() JSONLDIdProperty
	// GetJSONLDType returns the "type" property if it exists, and nil
	// otherwise.
	GetJSONLDType() JSONLDTypeProperty
	// GetTypeName returns the name of this type.
	GetTypeName() string
	// GetUnknownProperties returns the unknown properties for the Activity
	// type. Note that this should not be used by app developers. It is
	// only used to help determine which implementation is LessThan the
	// other. Developers who are creating a different implementation of
	// this type's interface can use this method in their LessThan
	// implementation, but routine ActivityPub applications should not use
	// this to bypass the code generation tool.
	GetUnknownProperties() map[string]interface{}
	// IsExtending returns true if the Activity type extends from the other
	// type.
	IsExtending(other Type) bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this type and the specific properties that are set. The value
	// in the map is the alias used to import the type and its properties.
	JSONLDContext() map[string]string
	// LessThan computes if this Activity is lesser, with an arbitrary but
	// stable determination.
	LessThan(o ActivityStreamsActivity) bool
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format.
	Serialize() (map[string]interface{}, error)
	// SetActivityStreamsActor sets the "actor" property.
	SetActivityStreamsActor(i ActivityStreamsActorProperty)
	// SetActivityStreamsAltitude sets the "altitude" property.
	SetActivityStreamsAltitude(i ActivityStreamsAltitudeProperty)
	// SetActivityStreamsAttachment sets the "attachment" property.
	SetActivityStreamsAttachment(i ActivityStreamsAttachmentProperty)
	// SetActivityStreamsAttributedTo sets the "attributedTo" property.
	SetActivityStreamsAttributedTo(i ActivityStreamsAttributedToProperty)
	// SetActivityStreamsAudience sets the "audience" property.
	SetActivityStreamsAudience(i ActivityStreamsAudienceProperty)
	// SetActivityStreamsBcc sets the "bcc" property.
	SetActivityStreamsBcc(i ActivityStreamsBccProperty)
	// SetActivityStreamsBto sets the "bto" property.
	SetActivityStreamsBto(i ActivityStreamsBtoProperty)
	// SetActivityStreamsCc sets the "cc" property.
	SetActivityStreamsCc(i ActivityStreamsCcProperty)
	// SetActivityStreamsContent sets the "content" property.
	SetActivityStreamsContent(i ActivityStreamsContentProperty)
	// SetActivityStreamsContext sets the "context" property.
	SetActivityStreamsContext(i ActivityStreamsContextProperty)
	// SetActivityStreamsDuration sets the "duration" property.
	SetActivityStreamsDuration(i ActivityStreamsDurationProperty)
	// SetActivityStreamsEndTime sets the "endTime" property.
	SetActivityStreamsEndTime(i ActivityStreamsEndTimeProperty)
	// SetActivityStreamsGenerator sets the "generator" property.
	SetActivityStreamsGenerator(i ActivityStreamsGeneratorProperty)
	// SetActivityStreamsIcon sets the "icon" property.
	SetActivityStreamsIcon(i ActivityStreamsIconProperty)
	// SetActivityStreamsImage sets the "image" property.
	SetActivityStreamsImage(i ActivityStreamsImageProperty)
	// SetActivityStreamsInReplyTo sets the "inReplyTo" property.
	SetActivityStreamsInReplyTo(i ActivityStreamsInReplyToProperty)
	// SetActivityStreamsInstrument sets the "instrument" property.
	SetActivityStreamsInstrument(i ActivityStreamsInstrumentProperty)
	// SetActivityStreamsLikes sets the "likes" property.
	SetActivityStreamsLikes(i ActivityStreamsLikesProperty)
	// SetActivityStreamsLocation sets the "location" property.
	SetActivityStreamsLocation(i ActivityStreamsLocationProperty)
	// SetActivityStreamsMediaType sets the "mediaType" property.
	SetActivityStreamsMediaType(i ActivityStreamsMediaTypeProperty)
	// SetActivityStreamsName sets the "name" property.
	SetActivityStreamsName(i ActivityStreamsNameProperty)
	// SetActivityStreamsObject sets the "object" property.
	SetActivityStreamsObject(i ActivityStreamsObjectProperty)
	// SetActivityStreamsOrigin sets the "origin" property.
	SetActivityStreamsOrigin(i ActivityStreamsOriginProperty)
	// SetActivityStreamsPreview sets the "preview" property.
	SetActivityStreamsPreview(i ActivityStreamsPreviewProperty)
	// SetActivityStreamsPublished sets the "published" property.
	SetActivityStreamsPublished(i ActivityStreamsPublishedProperty)
	// SetActivityStreamsReplies sets the "replies" property.
	SetActivityStreamsReplies(i ActivityStreamsRepliesProperty)
	// SetActivityStreamsResult sets the "result" property.
	SetActivityStreamsResult(i ActivityStreamsResultProperty)
	// SetActivityStreamsShares sets the "shares" property.
	SetActivityStreamsShares(i ActivityStreamsSharesProperty)
	// SetActivityStreamsSource sets the "source" property.
	SetActivityStreamsSource(i ActivityStreamsSourceProperty)
	// SetActivityStreamsStartTime sets the "startTime" property.
	SetActivityStreamsStartTime(i ActivityStreamsStartTimeProperty)
	// SetActivityStreamsSummary sets the "summary" property.
	SetActivityStreamsSummary(i ActivityStreamsSummaryProperty)
	// SetActivityStreamsTag sets the "tag" property.
	SetActivityStreamsTag(i ActivityStreamsTagProperty)
	// SetActivityStreamsTarget sets the "target" property.
	SetActivityStreamsTarget(i ActivityStreamsTargetProperty)
	// SetActivityStreamsTo sets the "to" property.
	SetActivityStreamsTo(i ActivityStreamsToProperty)
	// SetActivityStreamsUpdated sets the "updated" property.
	SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
	// SetActivityStreamsUrl sets the "url" property.
	SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
	// SetForgeFedTeam sets the "team" property.
	SetForgeFedTeam(i ForgeFedTeamProperty)
	// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
	SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
	// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
	SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
	// SetJSONLDId sets the "id" property.
	SetJSONLDId(i JSONLDIdProperty)
	// SetJSONLDType sets the "type" property.
	SetJSONLDType(i JSONLDTypeProperty)
	// VocabularyURI returns the vocabulary's URI as a string.
	VocabularyURI() string
}

An Activity is a subtype of Object that describes some form of action that may happen, is currently happening, or has already happened. The Activity type itself serves as an abstract base type for all types of activities. It is important to note that the Activity type itself does not carry any specific semantics about the kind of action being taken.

Example 3 (https://www.w3.org/TR/activitystreams-vocabulary/#ex3-jsonld):

{
  "actor": {
    "name": "Sally",
    "type": "Person"
  },
  "object": {
    "name": "A Note",
    "type": "Note"
  },
  "summary": "Sally did something to a note",
  "type": "Activity"
}

type ActivityStreamsActorProperty

type ActivityStreamsActorProperty interface {
	// AppendActivityStreamsAccept appends a Accept value to the back of a
	// list of the property "actor". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsAccept(v ActivityStreamsAccept)
	// AppendActivityStreamsActivity appends a Activity value to the back of a
	// list of the property "actor". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsActivity(v ActivityStreamsActivity)
	// AppendActivityStreamsAdd appends a Add value to the back of a list of
	// the property "actor". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsAdd(v ActivityStreamsAdd)
	// AppendActivityStreamsAnnounce appends a Announce value to the back of a
	// list of the property "actor". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// AppendActivityStreamsApplication appends a Application value to the
	// back of a list of the property "actor". Invalidates iterators that
	// are traversing using Prev.
	AppendActivityStreamsApplication(v ActivityStreamsApplication)
	// AppendActivityStreamsArrive appends a Arrive value to the back of a
	// list of the property "actor". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsArrive(v ActivityStreamsArrive)
	// AppendActivityStreamsArticle appends a Article value to the back of a
	// list of the property "actor". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsArticle(v ActivityStreamsArticle)
	// AppendActivityStreamsAudio appends a Audio value to the back of a list
	// of the property "actor". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsAudio(v ActivityStreamsAudio)
	// AppendActivityStreamsBlock appends a Block value to the back of a list
	// of the property "actor". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsBlock(v ActivityStreamsBlock)
	// AppendActivityStreamsCollection appends a Collection value to the back
	// of a list of the property "actor". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsCollection(v ActivityStreamsCollection)
	// AppendActivityStreamsCollectionPage appends a CollectionPage value to
	// the back of a list of the property "actor". Invalidates iterators
	// that are traversing using Prev.
	AppendActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// AppendActivityStreamsCreate appends a Create value to the back of a
	// list of the property "actor". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsCreate(v ActivityStreamsCreate)
	// AppendActivityStreamsDelete appends a Delete value to the back of a
	// list of the property "actor". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDelete(v ActivityStreamsDelete)
	// AppendActivityStreamsDislike appends a Dislike value to the back of a
	// list of the property "actor". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDislike(v ActivityStreamsDislike)
	// AppendActivityStreamsDocument appends a Document value to the back of a
	// list of the property "actor". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDocument(v ActivityStreamsDocument)
	// AppendActivityStreamsEvent appends a Event value to the back of a list
	// of the property "actor". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsEvent(v ActivityStreamsEvent)
	// AppendActivityStreamsFlag appends a Flag value to the back of a list of
	// the property "actor". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsFlag(v ActivityStreamsFlag)
	// AppendActivityStreamsFollow appends a Follow value to the back of a
	// list of the property "actor". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsFollow(v ActivityStreamsFollow)
	// AppendActivityStreamsGroup appends a Group value to the back of a list
	// of the property "actor". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsGroup(v ActivityStreamsGroup)
	// AppendActivityStreamsIgnore appends a Ignore value to the back of a
	// list of the property "actor". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsIgnore(v ActivityStreamsIgnore)
	// AppendActivityStreamsImage appends a Image value to the back of a list
	// of the property "actor". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsImage(v ActivityStreamsImage)
	// AppendActivityStreamsIntransitiveActivity appends a
	// IntransitiveActivity value to the back of a list of the property
	// "actor". Invalidates iterators that are traversing using Prev.
	AppendActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// AppendActivityStreamsInvite appends a Invite value to the back of a
	// list of the property "actor". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsInvite(v ActivityStreamsInvite)
	// AppendActivityStreamsJoin appends a Join value to the back of a list of
	// the property "actor". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsJoin(v ActivityStreamsJoin)
	// AppendActivityStreamsLeave appends a Leave value to the back of a list
	// of the property "actor". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsLeave(v ActivityStreamsLeave)
	// AppendActivityStreamsLike appends a Like value to the back of a list of
	// the property "actor". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsLike(v ActivityStreamsLike)
	// AppendActivityStreamsLink appends a Link value to the back of a list of
	// the property "actor". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsLink(v ActivityStreamsLink)
	// AppendActivityStreamsListen appends a Listen value to the back of a
	// list of the property "actor". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsListen(v ActivityStreamsListen)
	// AppendActivityStreamsMention appends a Mention value to the back of a
	// list of the property "actor". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsMention(v ActivityStreamsMention)
	// AppendActivityStreamsMove appends a Move value to the back of a list of
	// the property "actor". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsMove(v ActivityStreamsMove)
	// AppendActivityStreamsNote appends a Note value to the back of a list of
	// the property "actor". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsNote(v ActivityStreamsNote)
	// AppendActivityStreamsObject appends a Object value to the back of a
	// list of the property "actor". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsObject(v ActivityStreamsObject)
	// AppendActivityStreamsOffer appends a Offer value to the back of a list
	// of the property "actor". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsOffer(v ActivityStreamsOffer)
	// AppendActivityStreamsOrderedCollection appends a OrderedCollection
	// value to the back of a list of the property "actor". Invalidates
	// iterators that are traversing using Prev.
	AppendActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// AppendActivityStreamsOrderedCollectionPage appends a
	// OrderedCollectionPage value to the back of a list of the property
	// "actor". Invalidates iterators that are traversing using Prev.
	AppendActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// AppendActivityStreamsOrganization appends a Organization value to the
	// back of a list of the property "actor". Invalidates iterators that
	// are traversing using Prev.
	AppendActivityStreamsOrganization(v ActivityStreamsOrganization)
	// AppendActivityStreamsPage appends a Page value to the back of a list of
	// the property "actor". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsPage(v ActivityStreamsPage)
	// AppendActivityStreamsPerson appends a Person value to the back of a
	// list of the property "actor". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsPerson(v ActivityStreamsPerson)
	// AppendActivityStreamsPlace appends a Place value to the back of a list
	// of the property "actor". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsPlace(v ActivityStreamsPlace)
	// AppendActivityStreamsProfile appends a Profile value to the back of a
	// list of the property "actor". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsProfile(v ActivityStreamsProfile)
	// AppendActivityStreamsQuestion appends a Question value to the back of a
	// list of the property "actor". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsQuestion(v ActivityStreamsQuestion)
	// AppendActivityStreamsRead appends a Read value to the back of a list of
	// the property "actor". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsRead(v ActivityStreamsRead)
	// AppendActivityStreamsReject appends a Reject value to the back of a
	// list of the property "actor". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsReject(v ActivityStreamsReject)
	// AppendActivityStreamsRelationship appends a Relationship value to the
	// back of a list of the property "actor". Invalidates iterators that
	// are traversing using Prev.
	AppendActivityStreamsRelationship(v ActivityStreamsRelationship)
	// AppendActivityStreamsRemove appends a Remove value to the back of a
	// list of the property "actor". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsRemove(v ActivityStreamsRemove)
	// AppendActivityStreamsService appends a Service value to the back of a
	// list of the property "actor". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsService(v ActivityStreamsService)
	// AppendActivityStreamsTentativeAccept appends a TentativeAccept value to
	// the back of a list of the property "actor". Invalidates iterators
	// that are traversing using Prev.
	AppendActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// AppendActivityStreamsTentativeReject appends a TentativeReject value to
	// the back of a list of the property "actor". Invalidates iterators
	// that are traversing using Prev.
	AppendActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// AppendActivityStreamsTombstone appends a Tombstone value to the back of
	// a list of the property "actor". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsTombstone(v ActivityStreamsTombstone)
	// AppendActivityStreamsTravel appends a Travel value to the back of a
	// list of the property "actor". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsTravel(v ActivityStreamsTravel)
	// AppendActivityStreamsUndo appends a Undo value to the back of a list of
	// the property "actor". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsUndo(v ActivityStreamsUndo)
	// AppendActivityStreamsUpdate appends a Update value to the back of a
	// list of the property "actor". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsUpdate(v ActivityStreamsUpdate)
	// AppendActivityStreamsVideo appends a Video value to the back of a list
	// of the property "actor". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsVideo(v ActivityStreamsVideo)
	// AppendActivityStreamsView appends a View value to the back of a list of
	// the property "actor". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsView(v ActivityStreamsView)
	// AppendForgeFedBranch appends a Branch value to the back of a list of
	// the property "actor". Invalidates iterators that are traversing
	// using Prev.
	AppendForgeFedBranch(v ForgeFedBranch)
	// AppendForgeFedCommit appends a Commit value to the back of a list of
	// the property "actor". Invalidates iterators that are traversing
	// using Prev.
	AppendForgeFedCommit(v ForgeFedCommit)
	// AppendForgeFedPush appends a Push value to the back of a list of the
	// property "actor". Invalidates iterators that are traversing using
	// Prev.
	AppendForgeFedPush(v ForgeFedPush)
	// AppendForgeFedRepository appends a Repository value to the back of a
	// list of the property "actor". Invalidates iterators that are
	// traversing using Prev.
	AppendForgeFedRepository(v ForgeFedRepository)
	// AppendForgeFedTicket appends a Ticket value to the back of a list of
	// the property "actor". Invalidates iterators that are traversing
	// using Prev.
	AppendForgeFedTicket(v ForgeFedTicket)
	// AppendForgeFedTicketDependency appends a TicketDependency value to the
	// back of a list of the property "actor". Invalidates iterators that
	// are traversing using Prev.
	AppendForgeFedTicketDependency(v ForgeFedTicketDependency)
	// AppendIRI appends an IRI value to the back of a list of the property
	// "actor"
	AppendIRI(v *url.URL)
	// AppendTootEmoji appends a Emoji value to the back of a list of the
	// property "actor". Invalidates iterators that are traversing using
	// Prev.
	AppendTootEmoji(v TootEmoji)
	// AppendTootIdentityProof appends a IdentityProof value to the back of a
	// list of the property "actor". Invalidates iterators that are
	// traversing using Prev.
	AppendTootIdentityProof(v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "actor". Invalidates iterators that are traversing
	// using Prev. Returns an error if the type is not a valid one to set
	// for this property.
	AppendType(t Type) error
	// At returns the property value for the specified index. Panics if the
	// index is out of bounds.
	At(index int) ActivityStreamsActorPropertyIterator
	// Begin returns the first iterator, or nil if empty. Can be used with the
	// iterator's Next method and this property's End method to iterate
	// from front to back through all values.
	Begin() ActivityStreamsActorPropertyIterator
	// Empty returns returns true if there are no elements.
	Empty() bool
	// End returns beyond-the-last iterator, which is nil. Can be used with
	// the iterator's Next method and this property's Begin method to
	// iterate from front to back through all values.
	End() ActivityStreamsActorPropertyIterator
	// InsertActivityStreamsAccept inserts a Accept value at the specified
	// index for a property "actor". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAccept(idx int, v ActivityStreamsAccept)
	// InsertActivityStreamsActivity inserts a Activity value at the specified
	// index for a property "actor". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsActivity(idx int, v ActivityStreamsActivity)
	// InsertActivityStreamsAdd inserts a Add value at the specified index for
	// a property "actor". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertActivityStreamsAdd(idx int, v ActivityStreamsAdd)
	// InsertActivityStreamsAnnounce inserts a Announce value at the specified
	// index for a property "actor". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAnnounce(idx int, v ActivityStreamsAnnounce)
	// InsertActivityStreamsApplication inserts a Application value at the
	// specified index for a property "actor". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsApplication(idx int, v ActivityStreamsApplication)
	// InsertActivityStreamsArrive inserts a Arrive value at the specified
	// index for a property "actor". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsArrive(idx int, v ActivityStreamsArrive)
	// InsertActivityStreamsArticle inserts a Article value at the specified
	// index for a property "actor". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsArticle(idx int, v ActivityStreamsArticle)
	// InsertActivityStreamsAudio inserts a Audio value at the specified index
	// for a property "actor". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAudio(idx int, v ActivityStreamsAudio)
	// InsertActivityStreamsBlock inserts a Block value at the specified index
	// for a property "actor". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsBlock(idx int, v ActivityStreamsBlock)
	// InsertActivityStreamsCollection inserts a Collection value at the
	// specified index for a property "actor". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsCollection(idx int, v ActivityStreamsCollection)
	// InsertActivityStreamsCollectionPage inserts a CollectionPage value at
	// the specified index for a property "actor". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsCollectionPage(idx int, v ActivityStreamsCollectionPage)
	// InsertActivityStreamsCreate inserts a Create value at the specified
	// index for a property "actor". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsCreate(idx int, v ActivityStreamsCreate)
	// InsertActivityStreamsDelete inserts a Delete value at the specified
	// index for a property "actor". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDelete(idx int, v ActivityStreamsDelete)
	// InsertActivityStreamsDislike inserts a Dislike value at the specified
	// index for a property "actor". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDislike(idx int, v ActivityStreamsDislike)
	// InsertActivityStreamsDocument inserts a Document value at the specified
	// index for a property "actor". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDocument(idx int, v ActivityStreamsDocument)
	// InsertActivityStreamsEvent inserts a Event value at the specified index
	// for a property "actor". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsEvent(idx int, v ActivityStreamsEvent)
	// InsertActivityStreamsFlag inserts a Flag value at the specified index
	// for a property "actor". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsFlag(idx int, v ActivityStreamsFlag)
	// InsertActivityStreamsFollow inserts a Follow value at the specified
	// index for a property "actor". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsFollow(idx int, v ActivityStreamsFollow)
	// InsertActivityStreamsGroup inserts a Group value at the specified index
	// for a property "actor". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsGroup(idx int, v ActivityStreamsGroup)
	// InsertActivityStreamsIgnore inserts a Ignore value at the specified
	// index for a property "actor". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsIgnore(idx int, v ActivityStreamsIgnore)
	// InsertActivityStreamsImage inserts a Image value at the specified index
	// for a property "actor". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsImage(idx int, v ActivityStreamsImage)
	// InsertActivityStreamsIntransitiveActivity inserts a
	// IntransitiveActivity value at the specified index for a property
	// "actor". Existing elements at that index and higher are shifted
	// back once. Invalidates all iterators.
	InsertActivityStreamsIntransitiveActivity(idx int, v ActivityStreamsIntransitiveActivity)
	// InsertActivityStreamsInvite inserts a Invite value at the specified
	// index for a property "actor". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsInvite(idx int, v ActivityStreamsInvite)
	// InsertActivityStreamsJoin inserts a Join value at the specified index
	// for a property "actor". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsJoin(idx int, v ActivityStreamsJoin)
	// InsertActivityStreamsLeave inserts a Leave value at the specified index
	// for a property "actor". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsLeave(idx int, v ActivityStreamsLeave)
	// InsertActivityStreamsLike inserts a Like value at the specified index
	// for a property "actor". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsLike(idx int, v ActivityStreamsLike)
	// InsertActivityStreamsLink inserts a Link value at the specified index
	// for a property "actor". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsLink(idx int, v ActivityStreamsLink)
	// InsertActivityStreamsListen inserts a Listen value at the specified
	// index for a property "actor". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsListen(idx int, v ActivityStreamsListen)
	// InsertActivityStreamsMention inserts a Mention value at the specified
	// index for a property "actor". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsMention(idx int, v ActivityStreamsMention)
	// InsertActivityStreamsMove inserts a Move value at the specified index
	// for a property "actor". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsMove(idx int, v ActivityStreamsMove)
	// InsertActivityStreamsNote inserts a Note value at the specified index
	// for a property "actor". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsNote(idx int, v ActivityStreamsNote)
	// InsertActivityStreamsObject inserts a Object value at the specified
	// index for a property "actor". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsObject(idx int, v ActivityStreamsObject)
	// InsertActivityStreamsOffer inserts a Offer value at the specified index
	// for a property "actor". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsOffer(idx int, v ActivityStreamsOffer)
	// InsertActivityStreamsOrderedCollection inserts a OrderedCollection
	// value at the specified index for a property "actor". Existing
	// elements at that index and higher are shifted back once.
	// Invalidates all iterators.
	InsertActivityStreamsOrderedCollection(idx int, v ActivityStreamsOrderedCollection)
	// InsertActivityStreamsOrderedCollectionPage inserts a
	// OrderedCollectionPage value at the specified index for a property
	// "actor". Existing elements at that index and higher are shifted
	// back once. Invalidates all iterators.
	InsertActivityStreamsOrderedCollectionPage(idx int, v ActivityStreamsOrderedCollectionPage)
	// InsertActivityStreamsOrganization inserts a Organization value at the
	// specified index for a property "actor". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsOrganization(idx int, v ActivityStreamsOrganization)
	// InsertActivityStreamsPage inserts a Page value at the specified index
	// for a property "actor". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsPage(idx int, v ActivityStreamsPage)
	// InsertActivityStreamsPerson inserts a Person value at the specified
	// index for a property "actor". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsPerson(idx int, v ActivityStreamsPerson)
	// InsertActivityStreamsPlace inserts a Place value at the specified index
	// for a property "actor". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsPlace(idx int, v ActivityStreamsPlace)
	// InsertActivityStreamsProfile inserts a Profile value at the specified
	// index for a property "actor". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsProfile(idx int, v ActivityStreamsProfile)
	// InsertActivityStreamsQuestion inserts a Question value at the specified
	// index for a property "actor". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsQuestion(idx int, v ActivityStreamsQuestion)
	// InsertActivityStreamsRead inserts a Read value at the specified index
	// for a property "actor". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsRead(idx int, v ActivityStreamsRead)
	// InsertActivityStreamsReject inserts a Reject value at the specified
	// index for a property "actor". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsReject(idx int, v ActivityStreamsReject)
	// InsertActivityStreamsRelationship inserts a Relationship value at the
	// specified index for a property "actor". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsRelationship(idx int, v ActivityStreamsRelationship)
	// InsertActivityStreamsRemove inserts a Remove value at the specified
	// index for a property "actor". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsRemove(idx int, v ActivityStreamsRemove)
	// InsertActivityStreamsService inserts a Service value at the specified
	// index for a property "actor". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsService(idx int, v ActivityStreamsService)
	// InsertActivityStreamsTentativeAccept inserts a TentativeAccept value at
	// the specified index for a property "actor". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsTentativeAccept(idx int, v ActivityStreamsTentativeAccept)
	// InsertActivityStreamsTentativeReject inserts a TentativeReject value at
	// the specified index for a property "actor". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsTentativeReject(idx int, v ActivityStreamsTentativeReject)
	// InsertActivityStreamsTombstone inserts a Tombstone value at the
	// specified index for a property "actor". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsTombstone(idx int, v ActivityStreamsTombstone)
	// InsertActivityStreamsTravel inserts a Travel value at the specified
	// index for a property "actor". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsTravel(idx int, v ActivityStreamsTravel)
	// InsertActivityStreamsUndo inserts a Undo value at the specified index
	// for a property "actor". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsUndo(idx int, v ActivityStreamsUndo)
	// InsertActivityStreamsUpdate inserts a Update value at the specified
	// index for a property "actor". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsUpdate(idx int, v ActivityStreamsUpdate)
	// InsertActivityStreamsVideo inserts a Video value at the specified index
	// for a property "actor". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsVideo(idx int, v ActivityStreamsVideo)
	// InsertActivityStreamsView inserts a View value at the specified index
	// for a property "actor". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsView(idx int, v ActivityStreamsView)
	// InsertForgeFedBranch inserts a Branch value at the specified index for
	// a property "actor". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertForgeFedBranch(idx int, v ForgeFedBranch)
	// InsertForgeFedCommit inserts a Commit value at the specified index for
	// a property "actor". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertForgeFedCommit(idx int, v ForgeFedCommit)
	// InsertForgeFedPush inserts a Push value at the specified index for a
	// property "actor". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertForgeFedPush(idx int, v ForgeFedPush)
	// InsertForgeFedRepository inserts a Repository value at the specified
	// index for a property "actor". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertForgeFedRepository(idx int, v ForgeFedRepository)
	// InsertForgeFedTicket inserts a Ticket value at the specified index for
	// a property "actor". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertForgeFedTicket(idx int, v ForgeFedTicket)
	// InsertForgeFedTicketDependency inserts a TicketDependency value at the
	// specified index for a property "actor". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
	// Insert inserts an IRI value at the specified index for a property
	// "actor". Existing elements at that index and higher are shifted
	// back once. Invalidates all iterators.
	InsertIRI(idx int, v *url.URL)
	// InsertTootEmoji inserts a Emoji value at the specified index for a
	// property "actor". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertTootEmoji(idx int, v TootEmoji)
	// InsertTootIdentityProof inserts a IdentityProof value at the specified
	// index for a property "actor". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertTootIdentityProof(idx int, v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "actor". Invalidates all iterators. Returns an error
	// if the type is not a valid one to set for this property.
	InsertType(idx int, t Type) error
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API method specifically needed only for alternate
	// implementations for go-fed. Applications should not use this
	// method. Panics if the index is out of bounds.
	KindIndex(idx int) int
	// Len returns the number of values that exist for the "actor" property.
	Len() (length int)
	// Less computes whether another property is less than this one. Mixing
	// types results in a consistent but arbitrary ordering
	Less(i, j int) bool
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsActorProperty) bool
	// Name returns the name of this property ("actor") with any alias.
	Name() string
	// PrependActivityStreamsAccept prepends a Accept value to the front of a
	// list of the property "actor". Invalidates all iterators.
	PrependActivityStreamsAccept(v ActivityStreamsAccept)
	// PrependActivityStreamsActivity prepends a Activity value to the front
	// of a list of the property "actor". Invalidates all iterators.
	PrependActivityStreamsActivity(v ActivityStreamsActivity)
	// PrependActivityStreamsAdd prepends a Add value to the front of a list
	// of the property "actor". Invalidates all iterators.
	PrependActivityStreamsAdd(v ActivityStreamsAdd)
	// PrependActivityStreamsAnnounce prepends a Announce value to the front
	// of a list of the property "actor". Invalidates all iterators.
	PrependActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// PrependActivityStreamsApplication prepends a Application value to the
	// front of a list of the property "actor". Invalidates all iterators.
	PrependActivityStreamsApplication(v ActivityStreamsApplication)
	// PrependActivityStreamsArrive prepends a Arrive value to the front of a
	// list of the property "actor". Invalidates all iterators.
	PrependActivityStreamsArrive(v ActivityStreamsArrive)
	// PrependActivityStreamsArticle prepends a Article value to the front of
	// a list of the property "actor". Invalidates all iterators.
	PrependActivityStreamsArticle(v ActivityStreamsArticle)
	// PrependActivityStreamsAudio prepends a Audio value to the front of a
	// list of the property "actor". Invalidates all iterators.
	PrependActivityStreamsAudio(v ActivityStreamsAudio)
	// PrependActivityStreamsBlock prepends a Block value to the front of a
	// list of the property "actor". Invalidates all iterators.
	PrependActivityStreamsBlock(v ActivityStreamsBlock)
	// PrependActivityStreamsCollection prepends a Collection value to the
	// front of a list of the property "actor". Invalidates all iterators.
	PrependActivityStreamsCollection(v ActivityStreamsCollection)
	// PrependActivityStreamsCollectionPage prepends a CollectionPage value to
	// the front of a list of the property "actor". Invalidates all
	// iterators.
	PrependActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// PrependActivityStreamsCreate prepends a Create value to the front of a
	// list of the property "actor". Invalidates all iterators.
	PrependActivityStreamsCreate(v ActivityStreamsCreate)
	// PrependActivityStreamsDelete prepends a Delete value to the front of a
	// list of the property "actor". Invalidates all iterators.
	PrependActivityStreamsDelete(v ActivityStreamsDelete)
	// PrependActivityStreamsDislike prepends a Dislike value to the front of
	// a list of the property "actor". Invalidates all iterators.
	PrependActivityStreamsDislike(v ActivityStreamsDislike)
	// PrependActivityStreamsDocument prepends a Document value to the front
	// of a list of the property "actor". Invalidates all iterators.
	PrependActivityStreamsDocument(v ActivityStreamsDocument)
	// PrependActivityStreamsEvent prepends a Event value to the front of a
	// list of the property "actor". Invalidates all iterators.
	PrependActivityStreamsEvent(v ActivityStreamsEvent)
	// PrependActivityStreamsFlag prepends a Flag value to the front of a list
	// of the property "actor". Invalidates all iterators.
	PrependActivityStreamsFlag(v ActivityStreamsFlag)
	// PrependActivityStreamsFollow prepends a Follow value to the front of a
	// list of the property "actor". Invalidates all iterators.
	PrependActivityStreamsFollow(v ActivityStreamsFollow)
	// PrependActivityStreamsGroup prepends a Group value to the front of a
	// list of the property "actor". Invalidates all iterators.
	PrependActivityStreamsGroup(v ActivityStreamsGroup)
	// PrependActivityStreamsIgnore prepends a Ignore value to the front of a
	// list of the property "actor". Invalidates all iterators.
	PrependActivityStreamsIgnore(v ActivityStreamsIgnore)
	// PrependActivityStreamsImage prepends a Image value to the front of a
	// list of the property "actor". Invalidates all iterators.
	PrependActivityStreamsImage(v ActivityStreamsImage)
	// PrependActivityStreamsIntransitiveActivity prepends a
	// IntransitiveActivity value to the front of a list of the property
	// "actor". Invalidates all iterators.
	PrependActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// PrependActivityStreamsInvite prepends a Invite value to the front of a
	// list of the property "actor". Invalidates all iterators.
	PrependActivityStreamsInvite(v ActivityStreamsInvite)
	// PrependActivityStreamsJoin prepends a Join value to the front of a list
	// of the property "actor". Invalidates all iterators.
	PrependActivityStreamsJoin(v ActivityStreamsJoin)
	// PrependActivityStreamsLeave prepends a Leave value to the front of a
	// list of the property "actor". Invalidates all iterators.
	PrependActivityStreamsLeave(v ActivityStreamsLeave)
	// PrependActivityStreamsLike prepends a Like value to the front of a list
	// of the property "actor". Invalidates all iterators.
	PrependActivityStreamsLike(v ActivityStreamsLike)
	// PrependActivityStreamsLink prepends a Link value to the front of a list
	// of the property "actor". Invalidates all iterators.
	PrependActivityStreamsLink(v ActivityStreamsLink)
	// PrependActivityStreamsListen prepends a Listen value to the front of a
	// list of the property "actor". Invalidates all iterators.
	PrependActivityStreamsListen(v ActivityStreamsListen)
	// PrependActivityStreamsMention prepends a Mention value to the front of
	// a list of the property "actor". Invalidates all iterators.
	PrependActivityStreamsMention(v ActivityStreamsMention)
	// PrependActivityStreamsMove prepends a Move value to the front of a list
	// of the property "actor". Invalidates all iterators.
	PrependActivityStreamsMove(v ActivityStreamsMove)
	// PrependActivityStreamsNote prepends a Note value to the front of a list
	// of the property "actor". Invalidates all iterators.
	PrependActivityStreamsNote(v ActivityStreamsNote)
	// PrependActivityStreamsObject prepends a Object value to the front of a
	// list of the property "actor". Invalidates all iterators.
	PrependActivityStreamsObject(v ActivityStreamsObject)
	// PrependActivityStreamsOffer prepends a Offer value to the front of a
	// list of the property "actor". Invalidates all iterators.
	PrependActivityStreamsOffer(v ActivityStreamsOffer)
	// PrependActivityStreamsOrderedCollection prepends a OrderedCollection
	// value to the front of a list of the property "actor". Invalidates
	// all iterators.
	PrependActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// PrependActivityStreamsOrderedCollectionPage prepends a
	// OrderedCollectionPage value to the front of a list of the property
	// "actor". Invalidates all iterators.
	PrependActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// PrependActivityStreamsOrganization prepends a Organization value to the
	// front of a list of the property "actor". Invalidates all iterators.
	PrependActivityStreamsOrganization(v ActivityStreamsOrganization)
	// PrependActivityStreamsPage prepends a Page value to the front of a list
	// of the property "actor". Invalidates all iterators.
	PrependActivityStreamsPage(v ActivityStreamsPage)
	// PrependActivityStreamsPerson prepends a Person value to the front of a
	// list of the property "actor". Invalidates all iterators.
	PrependActivityStreamsPerson(v ActivityStreamsPerson)
	// PrependActivityStreamsPlace prepends a Place value to the front of a
	// list of the property "actor". Invalidates all iterators.
	PrependActivityStreamsPlace(v ActivityStreamsPlace)
	// PrependActivityStreamsProfile prepends a Profile value to the front of
	// a list of the property "actor". Invalidates all iterators.
	PrependActivityStreamsProfile(v ActivityStreamsProfile)
	// PrependActivityStreamsQuestion prepends a Question value to the front
	// of a list of the property "actor". Invalidates all iterators.
	PrependActivityStreamsQuestion(v ActivityStreamsQuestion)
	// PrependActivityStreamsRead prepends a Read value to the front of a list
	// of the property "actor". Invalidates all iterators.
	PrependActivityStreamsRead(v ActivityStreamsRead)
	// PrependActivityStreamsReject prepends a Reject value to the front of a
	// list of the property "actor". Invalidates all iterators.
	PrependActivityStreamsReject(v ActivityStreamsReject)
	// PrependActivityStreamsRelationship prepends a Relationship value to the
	// front of a list of the property "actor". Invalidates all iterators.
	PrependActivityStreamsRelationship(v ActivityStreamsRelationship)
	// PrependActivityStreamsRemove prepends a Remove value to the front of a
	// list of the property "actor". Invalidates all iterators.
	PrependActivityStreamsRemove(v ActivityStreamsRemove)
	// PrependActivityStreamsService prepends a Service value to the front of
	// a list of the property "actor". Invalidates all iterators.
	PrependActivityStreamsService(v ActivityStreamsService)
	// PrependActivityStreamsTentativeAccept prepends a TentativeAccept value
	// to the front of a list of the property "actor". Invalidates all
	// iterators.
	PrependActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// PrependActivityStreamsTentativeReject prepends a TentativeReject value
	// to the front of a list of the property "actor". Invalidates all
	// iterators.
	PrependActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// PrependActivityStreamsTombstone prepends a Tombstone value to the front
	// of a list of the property "actor". Invalidates all iterators.
	PrependActivityStreamsTombstone(v ActivityStreamsTombstone)
	// PrependActivityStreamsTravel prepends a Travel value to the front of a
	// list of the property "actor". Invalidates all iterators.
	PrependActivityStreamsTravel(v ActivityStreamsTravel)
	// PrependActivityStreamsUndo prepends a Undo value to the front of a list
	// of the property "actor". Invalidates all iterators.
	PrependActivityStreamsUndo(v ActivityStreamsUndo)
	// PrependActivityStreamsUpdate prepends a Update value to the front of a
	// list of the property "actor". Invalidates all iterators.
	PrependActivityStreamsUpdate(v ActivityStreamsUpdate)
	// PrependActivityStreamsVideo prepends a Video value to the front of a
	// list of the property "actor". Invalidates all iterators.
	PrependActivityStreamsVideo(v ActivityStreamsVideo)
	// PrependActivityStreamsView prepends a View value to the front of a list
	// of the property "actor". Invalidates all iterators.
	PrependActivityStreamsView(v ActivityStreamsView)
	// PrependForgeFedBranch prepends a Branch value to the front of a list of
	// the property "actor". Invalidates all iterators.
	PrependForgeFedBranch(v ForgeFedBranch)
	// PrependForgeFedCommit prepends a Commit value to the front of a list of
	// the property "actor". Invalidates all iterators.
	PrependForgeFedCommit(v ForgeFedCommit)
	// PrependForgeFedPush prepends a Push value to the front of a list of the
	// property "actor". Invalidates all iterators.
	PrependForgeFedPush(v ForgeFedPush)
	// PrependForgeFedRepository prepends a Repository value to the front of a
	// list of the property "actor". Invalidates all iterators.
	PrependForgeFedRepository(v ForgeFedRepository)
	// PrependForgeFedTicket prepends a Ticket value to the front of a list of
	// the property "actor". Invalidates all iterators.
	PrependForgeFedTicket(v ForgeFedTicket)
	// PrependForgeFedTicketDependency prepends a TicketDependency value to
	// the front of a list of the property "actor". Invalidates all
	// iterators.
	PrependForgeFedTicketDependency(v ForgeFedTicketDependency)
	// PrependIRI prepends an IRI value to the front of a list of the property
	// "actor".
	PrependIRI(v *url.URL)
	// PrependTootEmoji prepends a Emoji value to the front of a list of the
	// property "actor". Invalidates all iterators.
	PrependTootEmoji(v TootEmoji)
	// PrependTootIdentityProof prepends a IdentityProof value to the front of
	// a list of the property "actor". Invalidates all iterators.
	PrependTootIdentityProof(v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "actor". Invalidates all iterators. Returns an error
	// if the type is not a valid one to set for this property.
	PrependType(t Type) error
	// Remove deletes an element at the specified index from a list of the
	// property "actor", regardless of its type. Panics if the index is
	// out of bounds. Invalidates all iterators.
	Remove(idx int)
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// SetActivityStreamsAccept sets a Accept value to be at the specified
	// index for the property "actor". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsAccept(idx int, v ActivityStreamsAccept)
	// SetActivityStreamsActivity sets a Activity value to be at the specified
	// index for the property "actor". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsActivity(idx int, v ActivityStreamsActivity)
	// SetActivityStreamsAdd sets a Add value to be at the specified index for
	// the property "actor". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsAdd(idx int, v ActivityStreamsAdd)
	// SetActivityStreamsAnnounce sets a Announce value to be at the specified
	// index for the property "actor". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsAnnounce(idx int, v ActivityStreamsAnnounce)
	// SetActivityStreamsApplication sets a Application value to be at the
	// specified index for the property "actor". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsApplication(idx int, v ActivityStreamsApplication)
	// SetActivityStreamsArrive sets a Arrive value to be at the specified
	// index for the property "actor". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsArrive(idx int, v ActivityStreamsArrive)
	// SetActivityStreamsArticle sets a Article value to be at the specified
	// index for the property "actor". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsArticle(idx int, v ActivityStreamsArticle)
	// SetActivityStreamsAudio sets a Audio value to be at the specified index
	// for the property "actor". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsAudio(idx int, v ActivityStreamsAudio)
	// SetActivityStreamsBlock sets a Block value to be at the specified index
	// for the property "actor". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsBlock(idx int, v ActivityStreamsBlock)
	// SetActivityStreamsCollection sets a Collection value to be at the
	// specified index for the property "actor". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsCollection(idx int, v ActivityStreamsCollection)
	// SetActivityStreamsCollectionPage sets a CollectionPage value to be at
	// the specified index for the property "actor". Panics if the index
	// is out of bounds. Invalidates all iterators.
	SetActivityStreamsCollectionPage(idx int, v ActivityStreamsCollectionPage)
	// SetActivityStreamsCreate sets a Create value to be at the specified
	// index for the property "actor". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsCreate(idx int, v ActivityStreamsCreate)
	// SetActivityStreamsDelete sets a Delete value to be at the specified
	// index for the property "actor". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsDelete(idx int, v ActivityStreamsDelete)
	// SetActivityStreamsDislike sets a Dislike value to be at the specified
	// index for the property "actor". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsDislike(idx int, v ActivityStreamsDislike)
	// SetActivityStreamsDocument sets a Document value to be at the specified
	// index for the property "actor". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsDocument(idx int, v ActivityStreamsDocument)
	// SetActivityStreamsEvent sets a Event value to be at the specified index
	// for the property "actor". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsEvent(idx int, v ActivityStreamsEvent)
	// SetActivityStreamsFlag sets a Flag value to be at the specified index
	// for the property "actor". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsFlag(idx int, v ActivityStreamsFlag)
	// SetActivityStreamsFollow sets a Follow value to be at the specified
	// index for the property "actor". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsFollow(idx int, v ActivityStreamsFollow)
	// SetActivityStreamsGroup sets a Group value to be at the specified index
	// for the property "actor". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsGroup(idx int, v ActivityStreamsGroup)
	// SetActivityStreamsIgnore sets a Ignore value to be at the specified
	// index for the property "actor". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsIgnore(idx int, v ActivityStreamsIgnore)
	// SetActivityStreamsImage sets a Image value to be at the specified index
	// for the property "actor". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsImage(idx int, v ActivityStreamsImage)
	// SetActivityStreamsIntransitiveActivity sets a IntransitiveActivity
	// value to be at the specified index for the property "actor". Panics
	// if the index is out of bounds. Invalidates all iterators.
	SetActivityStreamsIntransitiveActivity(idx int, v ActivityStreamsIntransitiveActivity)
	// SetActivityStreamsInvite sets a Invite value to be at the specified
	// index for the property "actor". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsInvite(idx int, v ActivityStreamsInvite)
	// SetActivityStreamsJoin sets a Join value to be at the specified index
	// for the property "actor". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsJoin(idx int, v ActivityStreamsJoin)
	// SetActivityStreamsLeave sets a Leave value to be at the specified index
	// for the property "actor". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsLeave(idx int, v ActivityStreamsLeave)
	// SetActivityStreamsLike sets a Like value to be at the specified index
	// for the property "actor". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsLike(idx int, v ActivityStreamsLike)
	// SetActivityStreamsLink sets a Link value to be at the specified index
	// for the property "actor". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsLink(idx int, v ActivityStreamsLink)
	// SetActivityStreamsListen sets a Listen value to be at the specified
	// index for the property "actor". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsListen(idx int, v ActivityStreamsListen)
	// SetActivityStreamsMention sets a Mention value to be at the specified
	// index for the property "actor". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsMention(idx int, v ActivityStreamsMention)
	// SetActivityStreamsMove sets a Move value to be at the specified index
	// for the property "actor". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsMove(idx int, v ActivityStreamsMove)
	// SetActivityStreamsNote sets a Note value to be at the specified index
	// for the property "actor". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsNote(idx int, v ActivityStreamsNote)
	// SetActivityStreamsObject sets a Object value to be at the specified
	// index for the property "actor". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsObject(idx int, v ActivityStreamsObject)
	// SetActivityStreamsOffer sets a Offer value to be at the specified index
	// for the property "actor". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsOffer(idx int, v ActivityStreamsOffer)
	// SetActivityStreamsOrderedCollection sets a OrderedCollection value to
	// be at the specified index for the property "actor". Panics if the
	// index is out of bounds. Invalidates all iterators.
	SetActivityStreamsOrderedCollection(idx int, v ActivityStreamsOrderedCollection)
	// SetActivityStreamsOrderedCollectionPage sets a OrderedCollectionPage
	// value to be at the specified index for the property "actor". Panics
	// if the index is out of bounds. Invalidates all iterators.
	SetActivityStreamsOrderedCollectionPage(idx int, v ActivityStreamsOrderedCollectionPage)
	// SetActivityStreamsOrganization sets a Organization value to be at the
	// specified index for the property "actor". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsOrganization(idx int, v ActivityStreamsOrganization)
	// SetActivityStreamsPage sets a Page value to be at the specified index
	// for the property "actor". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsPage(idx int, v ActivityStreamsPage)
	// SetActivityStreamsPerson sets a Person value to be at the specified
	// index for the property "actor". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsPerson(idx int, v ActivityStreamsPerson)
	// SetActivityStreamsPlace sets a Place value to be at the specified index
	// for the property "actor". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsPlace(idx int, v ActivityStreamsPlace)
	// SetActivityStreamsProfile sets a Profile value to be at the specified
	// index for the property "actor". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsProfile(idx int, v ActivityStreamsProfile)
	// SetActivityStreamsQuestion sets a Question value to be at the specified
	// index for the property "actor". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsQuestion(idx int, v ActivityStreamsQuestion)
	// SetActivityStreamsRead sets a Read value to be at the specified index
	// for the property "actor". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsRead(idx int, v ActivityStreamsRead)
	// SetActivityStreamsReject sets a Reject value to be at the specified
	// index for the property "actor". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsReject(idx int, v ActivityStreamsReject)
	// SetActivityStreamsRelationship sets a Relationship value to be at the
	// specified index for the property "actor". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsRelationship(idx int, v ActivityStreamsRelationship)
	// SetActivityStreamsRemove sets a Remove value to be at the specified
	// index for the property "actor". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsRemove(idx int, v ActivityStreamsRemove)
	// SetActivityStreamsService sets a Service value to be at the specified
	// index for the property "actor". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsService(idx int, v ActivityStreamsService)
	// SetActivityStreamsTentativeAccept sets a TentativeAccept value to be at
	// the specified index for the property "actor". Panics if the index
	// is out of bounds. Invalidates all iterators.
	SetActivityStreamsTentativeAccept(idx int, v ActivityStreamsTentativeAccept)
	// SetActivityStreamsTentativeReject sets a TentativeReject value to be at
	// the specified index for the property "actor". Panics if the index
	// is out of bounds. Invalidates all iterators.
	SetActivityStreamsTentativeReject(idx int, v ActivityStreamsTentativeReject)
	// SetActivityStreamsTombstone sets a Tombstone value to be at the
	// specified index for the property "actor". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsTombstone(idx int, v ActivityStreamsTombstone)
	// SetActivityStreamsTravel sets a Travel value to be at the specified
	// index for the property "actor". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsTravel(idx int, v ActivityStreamsTravel)
	// SetActivityStreamsUndo sets a Undo value to be at the specified index
	// for the property "actor". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsUndo(idx int, v ActivityStreamsUndo)
	// SetActivityStreamsUpdate sets a Update value to be at the specified
	// index for the property "actor". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsUpdate(idx int, v ActivityStreamsUpdate)
	// SetActivityStreamsVideo sets a Video value to be at the specified index
	// for the property "actor". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsVideo(idx int, v ActivityStreamsVideo)
	// SetActivityStreamsView sets a View value to be at the specified index
	// for the property "actor". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsView(idx int, v ActivityStreamsView)
	// SetForgeFedBranch sets a Branch value to be at the specified index for
	// the property "actor". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedBranch(idx int, v ForgeFedBranch)
	// SetForgeFedCommit sets a Commit value to be at the specified index for
	// the property "actor". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedCommit(idx int, v ForgeFedCommit)
	// SetForgeFedPush sets a Push value to be at the specified index for the
	// property "actor". Panics if the index is out of bounds. Invalidates
	// all iterators.
	SetForgeFedPush(idx int, v ForgeFedPush)
	// SetForgeFedRepository sets a Repository value to be at the specified
	// index for the property "actor". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetForgeFedRepository(idx int, v ForgeFedRepository)
	// SetForgeFedTicket sets a Ticket value to be at the specified index for
	// the property "actor". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedTicket(idx int, v ForgeFedTicket)
	// SetForgeFedTicketDependency sets a TicketDependency value to be at the
	// specified index for the property "actor". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
	// SetIRI sets an IRI value to be at the specified index for the property
	// "actor". Panics if the index is out of bounds.
	SetIRI(idx int, v *url.URL)
	// SetTootEmoji sets a Emoji value to be at the specified index for the
	// property "actor". Panics if the index is out of bounds. Invalidates
	// all iterators.
	SetTootEmoji(idx int, v TootEmoji)
	// SetTootIdentityProof sets a IdentityProof value to be at the specified
	// index for the property "actor". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetTootIdentityProof(idx int, v TootIdentityProof)
	// SetType sets an arbitrary type value to the specified index of the
	// property "actor". Invalidates all iterators. Returns an error if
	// the type is not a valid one to set for this property. Panics if the
	// index is out of bounds.
	SetType(idx int, t Type) error
	// Swap swaps the location of values at two indices for the "actor"
	// property.
	Swap(i, j int)
}

Describes one or more entities that either performed or are expected to perform the activity. Any single activity can have multiple actors. The actor MAY be specified using an indirect Link.

Example 63 (https://www.w3.org/TR/activitystreams-vocabulary/#ex59-jsonld):

{
  "actor": "http://sally.example.org",
  "object": "http://example.org/foo",
  "summary": "Sally offered the Foo object",
  "type": "Offer"
}

Example 64 (https://www.w3.org/TR/activitystreams-vocabulary/#ex60-jsonld):

{
  "actor": {
    "id": "http://sally.example.org",
    "summary": "Sally",
    "type": "Person"
  },
  "object": "http://example.org/foo",
  "summary": "Sally offered the Foo object",
  "type": "Offer"
}

Example 65 (https://www.w3.org/TR/activitystreams-vocabulary/#ex61-jsonld):

{
  "actor": [
    "http://joe.example.org",
    {
      "id": "http://sally.example.org",
      "name": "Sally",
      "type": "Person"
    }
  ],
  "object": "http://example.org/foo",
  "summary": "Sally and Joe offered the Foo object",
  "type": "Offer"
}

type ActivityStreamsActorPropertyIterator

type ActivityStreamsActorPropertyIterator interface {
	// GetActivityStreamsAccept returns the value of this property. When
	// IsActivityStreamsAccept returns false, GetActivityStreamsAccept
	// will return an arbitrary value.
	GetActivityStreamsAccept() ActivityStreamsAccept
	// GetActivityStreamsActivity returns the value of this property. When
	// IsActivityStreamsActivity returns false, GetActivityStreamsActivity
	// will return an arbitrary value.
	GetActivityStreamsActivity() ActivityStreamsActivity
	// GetActivityStreamsAdd returns the value of this property. When
	// IsActivityStreamsAdd returns false, GetActivityStreamsAdd will
	// return an arbitrary value.
	GetActivityStreamsAdd() ActivityStreamsAdd
	// GetActivityStreamsAnnounce returns the value of this property. When
	// IsActivityStreamsAnnounce returns false, GetActivityStreamsAnnounce
	// will return an arbitrary value.
	GetActivityStreamsAnnounce() ActivityStreamsAnnounce
	// GetActivityStreamsApplication returns the value of this property. When
	// IsActivityStreamsApplication returns false,
	// GetActivityStreamsApplication will return an arbitrary value.
	GetActivityStreamsApplication() ActivityStreamsApplication
	// GetActivityStreamsArrive returns the value of this property. When
	// IsActivityStreamsArrive returns false, GetActivityStreamsArrive
	// will return an arbitrary value.
	GetActivityStreamsArrive() ActivityStreamsArrive
	// GetActivityStreamsArticle returns the value of this property. When
	// IsActivityStreamsArticle returns false, GetActivityStreamsArticle
	// will return an arbitrary value.
	GetActivityStreamsArticle() ActivityStreamsArticle
	// GetActivityStreamsAudio returns the value of this property. When
	// IsActivityStreamsAudio returns false, GetActivityStreamsAudio will
	// return an arbitrary value.
	GetActivityStreamsAudio() ActivityStreamsAudio
	// GetActivityStreamsBlock returns the value of this property. When
	// IsActivityStreamsBlock returns false, GetActivityStreamsBlock will
	// return an arbitrary value.
	GetActivityStreamsBlock() ActivityStreamsBlock
	// GetActivityStreamsCollection returns the value of this property. When
	// IsActivityStreamsCollection returns false,
	// GetActivityStreamsCollection will return an arbitrary value.
	GetActivityStreamsCollection() ActivityStreamsCollection
	// GetActivityStreamsCollectionPage returns the value of this property.
	// When IsActivityStreamsCollectionPage returns false,
	// GetActivityStreamsCollectionPage will return an arbitrary value.
	GetActivityStreamsCollectionPage() ActivityStreamsCollectionPage
	// GetActivityStreamsCreate returns the value of this property. When
	// IsActivityStreamsCreate returns false, GetActivityStreamsCreate
	// will return an arbitrary value.
	GetActivityStreamsCreate() ActivityStreamsCreate
	// GetActivityStreamsDelete returns the value of this property. When
	// IsActivityStreamsDelete returns false, GetActivityStreamsDelete
	// will return an arbitrary value.
	GetActivityStreamsDelete() ActivityStreamsDelete
	// GetActivityStreamsDislike returns the value of this property. When
	// IsActivityStreamsDislike returns false, GetActivityStreamsDislike
	// will return an arbitrary value.
	GetActivityStreamsDislike() ActivityStreamsDislike
	// GetActivityStreamsDocument returns the value of this property. When
	// IsActivityStreamsDocument returns false, GetActivityStreamsDocument
	// will return an arbitrary value.
	GetActivityStreamsDocument() ActivityStreamsDocument
	// GetActivityStreamsEvent returns the value of this property. When
	// IsActivityStreamsEvent returns false, GetActivityStreamsEvent will
	// return an arbitrary value.
	GetActivityStreamsEvent() ActivityStreamsEvent
	// GetActivityStreamsFlag returns the value of this property. When
	// IsActivityStreamsFlag returns false, GetActivityStreamsFlag will
	// return an arbitrary value.
	GetActivityStreamsFlag() ActivityStreamsFlag
	// GetActivityStreamsFollow returns the value of this property. When
	// IsActivityStreamsFollow returns false, GetActivityStreamsFollow
	// will return an arbitrary value.
	GetActivityStreamsFollow() ActivityStreamsFollow
	// GetActivityStreamsGroup returns the value of this property. When
	// IsActivityStreamsGroup returns false, GetActivityStreamsGroup will
	// return an arbitrary value.
	GetActivityStreamsGroup() ActivityStreamsGroup
	// GetActivityStreamsIgnore returns the value of this property. When
	// IsActivityStreamsIgnore returns false, GetActivityStreamsIgnore
	// will return an arbitrary value.
	GetActivityStreamsIgnore() ActivityStreamsIgnore
	// GetActivityStreamsImage returns the value of this property. When
	// IsActivityStreamsImage returns false, GetActivityStreamsImage will
	// return an arbitrary value.
	GetActivityStreamsImage() ActivityStreamsImage
	// GetActivityStreamsIntransitiveActivity returns the value of this
	// property. When IsActivityStreamsIntransitiveActivity returns false,
	// GetActivityStreamsIntransitiveActivity will return an arbitrary
	// value.
	GetActivityStreamsIntransitiveActivity() ActivityStreamsIntransitiveActivity
	// GetActivityStreamsInvite returns the value of this property. When
	// IsActivityStreamsInvite returns false, GetActivityStreamsInvite
	// will return an arbitrary value.
	GetActivityStreamsInvite() ActivityStreamsInvite
	// GetActivityStreamsJoin returns the value of this property. When
	// IsActivityStreamsJoin returns false, GetActivityStreamsJoin will
	// return an arbitrary value.
	GetActivityStreamsJoin() ActivityStreamsJoin
	// GetActivityStreamsLeave returns the value of this property. When
	// IsActivityStreamsLeave returns false, GetActivityStreamsLeave will
	// return an arbitrary value.
	GetActivityStreamsLeave() ActivityStreamsLeave
	// GetActivityStreamsLike returns the value of this property. When
	// IsActivityStreamsLike returns false, GetActivityStreamsLike will
	// return an arbitrary value.
	GetActivityStreamsLike() ActivityStreamsLike
	// GetActivityStreamsLink returns the value of this property. When
	// IsActivityStreamsLink returns false, GetActivityStreamsLink will
	// return an arbitrary value.
	GetActivityStreamsLink() ActivityStreamsLink
	// GetActivityStreamsListen returns the value of this property. When
	// IsActivityStreamsListen returns false, GetActivityStreamsListen
	// will return an arbitrary value.
	GetActivityStreamsListen() ActivityStreamsListen
	// GetActivityStreamsMention returns the value of this property. When
	// IsActivityStreamsMention returns false, GetActivityStreamsMention
	// will return an arbitrary value.
	GetActivityStreamsMention() ActivityStreamsMention
	// GetActivityStreamsMove returns the value of this property. When
	// IsActivityStreamsMove returns false, GetActivityStreamsMove will
	// return an arbitrary value.
	GetActivityStreamsMove() ActivityStreamsMove
	// GetActivityStreamsNote returns the value of this property. When
	// IsActivityStreamsNote returns false, GetActivityStreamsNote will
	// return an arbitrary value.
	GetActivityStreamsNote() ActivityStreamsNote
	// GetActivityStreamsObject returns the value of this property. When
	// IsActivityStreamsObject returns false, GetActivityStreamsObject
	// will return an arbitrary value.
	GetActivityStreamsObject() ActivityStreamsObject
	// GetActivityStreamsOffer returns the value of this property. When
	// IsActivityStreamsOffer returns false, GetActivityStreamsOffer will
	// return an arbitrary value.
	GetActivityStreamsOffer() ActivityStreamsOffer
	// GetActivityStreamsOrderedCollection returns the value of this property.
	// When IsActivityStreamsOrderedCollection returns false,
	// GetActivityStreamsOrderedCollection will return an arbitrary value.
	GetActivityStreamsOrderedCollection() ActivityStreamsOrderedCollection
	// GetActivityStreamsOrderedCollectionPage returns the value of this
	// property. When IsActivityStreamsOrderedCollectionPage returns
	// false, GetActivityStreamsOrderedCollectionPage will return an
	// arbitrary value.
	GetActivityStreamsOrderedCollectionPage() ActivityStreamsOrderedCollectionPage
	// GetActivityStreamsOrganization returns the value of this property. When
	// IsActivityStreamsOrganization returns false,
	// GetActivityStreamsOrganization will return an arbitrary value.
	GetActivityStreamsOrganization() ActivityStreamsOrganization
	// GetActivityStreamsPage returns the value of this property. When
	// IsActivityStreamsPage returns false, GetActivityStreamsPage will
	// return an arbitrary value.
	GetActivityStreamsPage() ActivityStreamsPage
	// GetActivityStreamsPerson returns the value of this property. When
	// IsActivityStreamsPerson returns false, GetActivityStreamsPerson
	// will return an arbitrary value.
	GetActivityStreamsPerson() ActivityStreamsPerson
	// GetActivityStreamsPlace returns the value of this property. When
	// IsActivityStreamsPlace returns false, GetActivityStreamsPlace will
	// return an arbitrary value.
	GetActivityStreamsPlace() ActivityStreamsPlace
	// GetActivityStreamsProfile returns the value of this property. When
	// IsActivityStreamsProfile returns false, GetActivityStreamsProfile
	// will return an arbitrary value.
	GetActivityStreamsProfile() ActivityStreamsProfile
	// GetActivityStreamsQuestion returns the value of this property. When
	// IsActivityStreamsQuestion returns false, GetActivityStreamsQuestion
	// will return an arbitrary value.
	GetActivityStreamsQuestion() ActivityStreamsQuestion
	// GetActivityStreamsRead returns the value of this property. When
	// IsActivityStreamsRead returns false, GetActivityStreamsRead will
	// return an arbitrary value.
	GetActivityStreamsRead() ActivityStreamsRead
	// GetActivityStreamsReject returns the value of this property. When
	// IsActivityStreamsReject returns false, GetActivityStreamsReject
	// will return an arbitrary value.
	GetActivityStreamsReject() ActivityStreamsReject
	// GetActivityStreamsRelationship returns the value of this property. When
	// IsActivityStreamsRelationship returns false,
	// GetActivityStreamsRelationship will return an arbitrary value.
	GetActivityStreamsRelationship() ActivityStreamsRelationship
	// GetActivityStreamsRemove returns the value of this property. When
	// IsActivityStreamsRemove returns false, GetActivityStreamsRemove
	// will return an arbitrary value.
	GetActivityStreamsRemove() ActivityStreamsRemove
	// GetActivityStreamsService returns the value of this property. When
	// IsActivityStreamsService returns false, GetActivityStreamsService
	// will return an arbitrary value.
	GetActivityStreamsService() ActivityStreamsService
	// GetActivityStreamsTentativeAccept returns the value of this property.
	// When IsActivityStreamsTentativeAccept returns false,
	// GetActivityStreamsTentativeAccept will return an arbitrary value.
	GetActivityStreamsTentativeAccept() ActivityStreamsTentativeAccept
	// GetActivityStreamsTentativeReject returns the value of this property.
	// When IsActivityStreamsTentativeReject returns false,
	// GetActivityStreamsTentativeReject will return an arbitrary value.
	GetActivityStreamsTentativeReject() ActivityStreamsTentativeReject
	// GetActivityStreamsTombstone returns the value of this property. When
	// IsActivityStreamsTombstone returns false,
	// GetActivityStreamsTombstone will return an arbitrary value.
	GetActivityStreamsTombstone() ActivityStreamsTombstone
	// GetActivityStreamsTravel returns the value of this property. When
	// IsActivityStreamsTravel returns false, GetActivityStreamsTravel
	// will return an arbitrary value.
	GetActivityStreamsTravel() ActivityStreamsTravel
	// GetActivityStreamsUndo returns the value of this property. When
	// IsActivityStreamsUndo returns false, GetActivityStreamsUndo will
	// return an arbitrary value.
	GetActivityStreamsUndo() ActivityStreamsUndo
	// GetActivityStreamsUpdate returns the value of this property. When
	// IsActivityStreamsUpdate returns false, GetActivityStreamsUpdate
	// will return an arbitrary value.
	GetActivityStreamsUpdate() ActivityStreamsUpdate
	// GetActivityStreamsVideo returns the value of this property. When
	// IsActivityStreamsVideo returns false, GetActivityStreamsVideo will
	// return an arbitrary value.
	GetActivityStreamsVideo() ActivityStreamsVideo
	// GetActivityStreamsView returns the value of this property. When
	// IsActivityStreamsView returns false, GetActivityStreamsView will
	// return an arbitrary value.
	GetActivityStreamsView() ActivityStreamsView
	// GetForgeFedBranch returns the value of this property. When
	// IsForgeFedBranch returns false, GetForgeFedBranch will return an
	// arbitrary value.
	GetForgeFedBranch() ForgeFedBranch
	// GetForgeFedCommit returns the value of this property. When
	// IsForgeFedCommit returns false, GetForgeFedCommit will return an
	// arbitrary value.
	GetForgeFedCommit() ForgeFedCommit
	// GetForgeFedPush returns the value of this property. When IsForgeFedPush
	// returns false, GetForgeFedPush will return an arbitrary value.
	GetForgeFedPush() ForgeFedPush
	// GetForgeFedRepository returns the value of this property. When
	// IsForgeFedRepository returns false, GetForgeFedRepository will
	// return an arbitrary value.
	GetForgeFedRepository() ForgeFedRepository
	// GetForgeFedTicket returns the value of this property. When
	// IsForgeFedTicket returns false, GetForgeFedTicket will return an
	// arbitrary value.
	GetForgeFedTicket() ForgeFedTicket
	// GetForgeFedTicketDependency returns the value of this property. When
	// IsForgeFedTicketDependency returns false,
	// GetForgeFedTicketDependency will return an arbitrary value.
	GetForgeFedTicketDependency() ForgeFedTicketDependency
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return an arbitrary value.
	GetIRI() *url.URL
	// GetTootEmoji returns the value of this property. When IsTootEmoji
	// returns false, GetTootEmoji will return an arbitrary value.
	GetTootEmoji() TootEmoji
	// GetTootIdentityProof returns the value of this property. When
	// IsTootIdentityProof returns false, GetTootIdentityProof will return
	// an arbitrary value.
	GetTootIdentityProof() TootIdentityProof
	// GetType returns the value in this property as a Type. Returns nil if
	// the value is not an ActivityStreams type, such as an IRI or another
	// value.
	GetType() Type
	// HasAny returns true if any of the different values is set.
	HasAny() bool
	// IsActivityStreamsAccept returns true if this property has a type of
	// "Accept". When true, use the GetActivityStreamsAccept and
	// SetActivityStreamsAccept methods to access and set this property.
	IsActivityStreamsAccept() bool
	// IsActivityStreamsActivity returns true if this property has a type of
	// "Activity". When true, use the GetActivityStreamsActivity and
	// SetActivityStreamsActivity methods to access and set this property.
	IsActivityStreamsActivity() bool
	// IsActivityStreamsAdd returns true if this property has a type of "Add".
	// When true, use the GetActivityStreamsAdd and SetActivityStreamsAdd
	// methods to access and set this property.
	IsActivityStreamsAdd() bool
	// IsActivityStreamsAnnounce returns true if this property has a type of
	// "Announce". When true, use the GetActivityStreamsAnnounce and
	// SetActivityStreamsAnnounce methods to access and set this property.
	IsActivityStreamsAnnounce() bool
	// IsActivityStreamsApplication returns true if this property has a type
	// of "Application". When true, use the GetActivityStreamsApplication
	// and SetActivityStreamsApplication methods to access and set this
	// property.
	IsActivityStreamsApplication() bool
	// IsActivityStreamsArrive returns true if this property has a type of
	// "Arrive". When true, use the GetActivityStreamsArrive and
	// SetActivityStreamsArrive methods to access and set this property.
	IsActivityStreamsArrive() bool
	// IsActivityStreamsArticle returns true if this property has a type of
	// "Article". When true, use the GetActivityStreamsArticle and
	// SetActivityStreamsArticle methods to access and set this property.
	IsActivityStreamsArticle() bool
	// IsActivityStreamsAudio returns true if this property has a type of
	// "Audio". When true, use the GetActivityStreamsAudio and
	// SetActivityStreamsAudio methods to access and set this property.
	IsActivityStreamsAudio() bool
	// IsActivityStreamsBlock returns true if this property has a type of
	// "Block". When true, use the GetActivityStreamsBlock and
	// SetActivityStreamsBlock methods to access and set this property.
	IsActivityStreamsBlock() bool
	// IsActivityStreamsCollection returns true if this property has a type of
	// "Collection". When true, use the GetActivityStreamsCollection and
	// SetActivityStreamsCollection methods to access and set this
	// property.
	IsActivityStreamsCollection() bool
	// IsActivityStreamsCollectionPage returns true if this property has a
	// type of "CollectionPage". When true, use the
	// GetActivityStreamsCollectionPage and
	// SetActivityStreamsCollectionPage methods to access and set this
	// property.
	IsActivityStreamsCollectionPage() bool
	// IsActivityStreamsCreate returns true if this property has a type of
	// "Create". When true, use the GetActivityStreamsCreate and
	// SetActivityStreamsCreate methods to access and set this property.
	IsActivityStreamsCreate() bool
	// IsActivityStreamsDelete returns true if this property has a type of
	// "Delete". When true, use the GetActivityStreamsDelete and
	// SetActivityStreamsDelete methods to access and set this property.
	IsActivityStreamsDelete() bool
	// IsActivityStreamsDislike returns true if this property has a type of
	// "Dislike". When true, use the GetActivityStreamsDislike and
	// SetActivityStreamsDislike methods to access and set this property.
	IsActivityStreamsDislike() bool
	// IsActivityStreamsDocument returns true if this property has a type of
	// "Document". When true, use the GetActivityStreamsDocument and
	// SetActivityStreamsDocument methods to access and set this property.
	IsActivityStreamsDocument() bool
	// IsActivityStreamsEvent returns true if this property has a type of
	// "Event". When true, use the GetActivityStreamsEvent and
	// SetActivityStreamsEvent methods to access and set this property.
	IsActivityStreamsEvent() bool
	// IsActivityStreamsFlag returns true if this property has a type of
	// "Flag". When true, use the GetActivityStreamsFlag and
	// SetActivityStreamsFlag methods to access and set this property.
	IsActivityStreamsFlag() bool
	// IsActivityStreamsFollow returns true if this property has a type of
	// "Follow". When true, use the GetActivityStreamsFollow and
	// SetActivityStreamsFollow methods to access and set this property.
	IsActivityStreamsFollow() bool
	// IsActivityStreamsGroup returns true if this property has a type of
	// "Group". When true, use the GetActivityStreamsGroup and
	// SetActivityStreamsGroup methods to access and set this property.
	IsActivityStreamsGroup() bool
	// IsActivityStreamsIgnore returns true if this property has a type of
	// "Ignore". When true, use the GetActivityStreamsIgnore and
	// SetActivityStreamsIgnore methods to access and set this property.
	IsActivityStreamsIgnore() bool
	// IsActivityStreamsImage returns true if this property has a type of
	// "Image". When true, use the GetActivityStreamsImage and
	// SetActivityStreamsImage methods to access and set this property.
	IsActivityStreamsImage() bool
	// IsActivityStreamsIntransitiveActivity returns true if this property has
	// a type of "IntransitiveActivity". When true, use the
	// GetActivityStreamsIntransitiveActivity and
	// SetActivityStreamsIntransitiveActivity methods to access and set
	// this property.
	IsActivityStreamsIntransitiveActivity() bool
	// IsActivityStreamsInvite returns true if this property has a type of
	// "Invite". When true, use the GetActivityStreamsInvite and
	// SetActivityStreamsInvite methods to access and set this property.
	IsActivityStreamsInvite() bool
	// IsActivityStreamsJoin returns true if this property has a type of
	// "Join". When true, use the GetActivityStreamsJoin and
	// SetActivityStreamsJoin methods to access and set this property.
	IsActivityStreamsJoin() bool
	// IsActivityStreamsLeave returns true if this property has a type of
	// "Leave". When true, use the GetActivityStreamsLeave and
	// SetActivityStreamsLeave methods to access and set this property.
	IsActivityStreamsLeave() bool
	// IsActivityStreamsLike returns true if this property has a type of
	// "Like". When true, use the GetActivityStreamsLike and
	// SetActivityStreamsLike methods to access and set this property.
	IsActivityStreamsLike() bool
	// IsActivityStreamsLink returns true if this property has a type of
	// "Link". When true, use the GetActivityStreamsLink and
	// SetActivityStreamsLink methods to access and set this property.
	IsActivityStreamsLink() bool
	// IsActivityStreamsListen returns true if this property has a type of
	// "Listen". When true, use the GetActivityStreamsListen and
	// SetActivityStreamsListen methods to access and set this property.
	IsActivityStreamsListen() bool
	// IsActivityStreamsMention returns true if this property has a type of
	// "Mention". When true, use the GetActivityStreamsMention and
	// SetActivityStreamsMention methods to access and set this property.
	IsActivityStreamsMention() bool
	// IsActivityStreamsMove returns true if this property has a type of
	// "Move". When true, use the GetActivityStreamsMove and
	// SetActivityStreamsMove methods to access and set this property.
	IsActivityStreamsMove() bool
	// IsActivityStreamsNote returns true if this property has a type of
	// "Note". When true, use the GetActivityStreamsNote and
	// SetActivityStreamsNote methods to access and set this property.
	IsActivityStreamsNote() bool
	// IsActivityStreamsObject returns true if this property has a type of
	// "Object". When true, use the GetActivityStreamsObject and
	// SetActivityStreamsObject methods to access and set this property.
	IsActivityStreamsObject() bool
	// IsActivityStreamsOffer returns true if this property has a type of
	// "Offer". When true, use the GetActivityStreamsOffer and
	// SetActivityStreamsOffer methods to access and set this property.
	IsActivityStreamsOffer() bool
	// IsActivityStreamsOrderedCollection returns true if this property has a
	// type of "OrderedCollection". When true, use the
	// GetActivityStreamsOrderedCollection and
	// SetActivityStreamsOrderedCollection methods to access and set this
	// property.
	IsActivityStreamsOrderedCollection() bool
	// IsActivityStreamsOrderedCollectionPage returns true if this property
	// has a type of "OrderedCollectionPage". When true, use the
	// GetActivityStreamsOrderedCollectionPage and
	// SetActivityStreamsOrderedCollectionPage methods to access and set
	// this property.
	IsActivityStreamsOrderedCollectionPage() bool
	// IsActivityStreamsOrganization returns true if this property has a type
	// of "Organization". When true, use the
	// GetActivityStreamsOrganization and SetActivityStreamsOrganization
	// methods to access and set this property.
	IsActivityStreamsOrganization() bool
	// IsActivityStreamsPage returns true if this property has a type of
	// "Page". When true, use the GetActivityStreamsPage and
	// SetActivityStreamsPage methods to access and set this property.
	IsActivityStreamsPage() bool
	// IsActivityStreamsPerson returns true if this property has a type of
	// "Person". When true, use the GetActivityStreamsPerson and
	// SetActivityStreamsPerson methods to access and set this property.
	IsActivityStreamsPerson() bool
	// IsActivityStreamsPlace returns true if this property has a type of
	// "Place". When true, use the GetActivityStreamsPlace and
	// SetActivityStreamsPlace methods to access and set this property.
	IsActivityStreamsPlace() bool
	// IsActivityStreamsProfile returns true if this property has a type of
	// "Profile". When true, use the GetActivityStreamsProfile and
	// SetActivityStreamsProfile methods to access and set this property.
	IsActivityStreamsProfile() bool
	// IsActivityStreamsQuestion returns true if this property has a type of
	// "Question". When true, use the GetActivityStreamsQuestion and
	// SetActivityStreamsQuestion methods to access and set this property.
	IsActivityStreamsQuestion() bool
	// IsActivityStreamsRead returns true if this property has a type of
	// "Read". When true, use the GetActivityStreamsRead and
	// SetActivityStreamsRead methods to access and set this property.
	IsActivityStreamsRead() bool
	// IsActivityStreamsReject returns true if this property has a type of
	// "Reject". When true, use the GetActivityStreamsReject and
	// SetActivityStreamsReject methods to access and set this property.
	IsActivityStreamsReject() bool
	// IsActivityStreamsRelationship returns true if this property has a type
	// of "Relationship". When true, use the
	// GetActivityStreamsRelationship and SetActivityStreamsRelationship
	// methods to access and set this property.
	IsActivityStreamsRelationship() bool
	// IsActivityStreamsRemove returns true if this property has a type of
	// "Remove". When true, use the GetActivityStreamsRemove and
	// SetActivityStreamsRemove methods to access and set this property.
	IsActivityStreamsRemove() bool
	// IsActivityStreamsService returns true if this property has a type of
	// "Service". When true, use the GetActivityStreamsService and
	// SetActivityStreamsService methods to access and set this property.
	IsActivityStreamsService() bool
	// IsActivityStreamsTentativeAccept returns true if this property has a
	// type of "TentativeAccept". When true, use the
	// GetActivityStreamsTentativeAccept and
	// SetActivityStreamsTentativeAccept methods to access and set this
	// property.
	IsActivityStreamsTentativeAccept() bool
	// IsActivityStreamsTentativeReject returns true if this property has a
	// type of "TentativeReject". When true, use the
	// GetActivityStreamsTentativeReject and
	// SetActivityStreamsTentativeReject methods to access and set this
	// property.
	IsActivityStreamsTentativeReject() bool
	// IsActivityStreamsTombstone returns true if this property has a type of
	// "Tombstone". When true, use the GetActivityStreamsTombstone and
	// SetActivityStreamsTombstone methods to access and set this property.
	IsActivityStreamsTombstone() bool
	// IsActivityStreamsTravel returns true if this property has a type of
	// "Travel". When true, use the GetActivityStreamsTravel and
	// SetActivityStreamsTravel methods to access and set this property.
	IsActivityStreamsTravel() bool
	// IsActivityStreamsUndo returns true if this property has a type of
	// "Undo". When true, use the GetActivityStreamsUndo and
	// SetActivityStreamsUndo methods to access and set this property.
	IsActivityStreamsUndo() bool
	// IsActivityStreamsUpdate returns true if this property has a type of
	// "Update". When true, use the GetActivityStreamsUpdate and
	// SetActivityStreamsUpdate methods to access and set this property.
	IsActivityStreamsUpdate() bool
	// IsActivityStreamsVideo returns true if this property has a type of
	// "Video". When true, use the GetActivityStreamsVideo and
	// SetActivityStreamsVideo methods to access and set this property.
	IsActivityStreamsVideo() bool
	// IsActivityStreamsView returns true if this property has a type of
	// "View". When true, use the GetActivityStreamsView and
	// SetActivityStreamsView methods to access and set this property.
	IsActivityStreamsView() bool
	// IsForgeFedBranch returns true if this property has a type of "Branch".
	// When true, use the GetForgeFedBranch and SetForgeFedBranch methods
	// to access and set this property.
	IsForgeFedBranch() bool
	// IsForgeFedCommit returns true if this property has a type of "Commit".
	// When true, use the GetForgeFedCommit and SetForgeFedCommit methods
	// to access and set this property.
	IsForgeFedCommit() bool
	// IsForgeFedPush returns true if this property has a type of "Push". When
	// true, use the GetForgeFedPush and SetForgeFedPush methods to access
	// and set this property.
	IsForgeFedPush() bool
	// IsForgeFedRepository returns true if this property has a type of
	// "Repository". When true, use the GetForgeFedRepository and
	// SetForgeFedRepository methods to access and set this property.
	IsForgeFedRepository() bool
	// IsForgeFedTicket returns true if this property has a type of "Ticket".
	// When true, use the GetForgeFedTicket and SetForgeFedTicket methods
	// to access and set this property.
	IsForgeFedTicket() bool
	// IsForgeFedTicketDependency returns true if this property has a type of
	// "TicketDependency". When true, use the GetForgeFedTicketDependency
	// and SetForgeFedTicketDependency methods to access and set this
	// property.
	IsForgeFedTicketDependency() bool
	// IsIRI returns true if this property is an IRI. When true, use GetIRI
	// and SetIRI to access and set this property
	IsIRI() bool
	// IsTootEmoji returns true if this property has a type of "Emoji". When
	// true, use the GetTootEmoji and SetTootEmoji methods to access and
	// set this property.
	IsTootEmoji() bool
	// IsTootIdentityProof returns true if this property has a type of
	// "IdentityProof". When true, use the GetTootIdentityProof and
	// SetTootIdentityProof methods to access and set this property.
	IsTootIdentityProof() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsActorPropertyIterator) bool
	// Name returns the name of this property: "ActivityStreamsActor".
	Name() string
	// Next returns the next iterator, or nil if there is no next iterator.
	Next() ActivityStreamsActorPropertyIterator
	// Prev returns the previous iterator, or nil if there is no previous
	// iterator.
	Prev() ActivityStreamsActorPropertyIterator
	// SetActivityStreamsAccept sets the value of this property. Calling
	// IsActivityStreamsAccept afterwards returns true.
	SetActivityStreamsAccept(v ActivityStreamsAccept)
	// SetActivityStreamsActivity sets the value of this property. Calling
	// IsActivityStreamsActivity afterwards returns true.
	SetActivityStreamsActivity(v ActivityStreamsActivity)
	// SetActivityStreamsAdd sets the value of this property. Calling
	// IsActivityStreamsAdd afterwards returns true.
	SetActivityStreamsAdd(v ActivityStreamsAdd)
	// SetActivityStreamsAnnounce sets the value of this property. Calling
	// IsActivityStreamsAnnounce afterwards returns true.
	SetActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// SetActivityStreamsApplication sets the value of this property. Calling
	// IsActivityStreamsApplication afterwards returns true.
	SetActivityStreamsApplication(v ActivityStreamsApplication)
	// SetActivityStreamsArrive sets the value of this property. Calling
	// IsActivityStreamsArrive afterwards returns true.
	SetActivityStreamsArrive(v ActivityStreamsArrive)
	// SetActivityStreamsArticle sets the value of this property. Calling
	// IsActivityStreamsArticle afterwards returns true.
	SetActivityStreamsArticle(v ActivityStreamsArticle)
	// SetActivityStreamsAudio sets the value of this property. Calling
	// IsActivityStreamsAudio afterwards returns true.
	SetActivityStreamsAudio(v ActivityStreamsAudio)
	// SetActivityStreamsBlock sets the value of this property. Calling
	// IsActivityStreamsBlock afterwards returns true.
	SetActivityStreamsBlock(v ActivityStreamsBlock)
	// SetActivityStreamsCollection sets the value of this property. Calling
	// IsActivityStreamsCollection afterwards returns true.
	SetActivityStreamsCollection(v ActivityStreamsCollection)
	// SetActivityStreamsCollectionPage sets the value of this property.
	// Calling IsActivityStreamsCollectionPage afterwards returns true.
	SetActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// SetActivityStreamsCreate sets the value of this property. Calling
	// IsActivityStreamsCreate afterwards returns true.
	SetActivityStreamsCreate(v ActivityStreamsCreate)
	// SetActivityStreamsDelete sets the value of this property. Calling
	// IsActivityStreamsDelete afterwards returns true.
	SetActivityStreamsDelete(v ActivityStreamsDelete)
	// SetActivityStreamsDislike sets the value of this property. Calling
	// IsActivityStreamsDislike afterwards returns true.
	SetActivityStreamsDislike(v ActivityStreamsDislike)
	// SetActivityStreamsDocument sets the value of this property. Calling
	// IsActivityStreamsDocument afterwards returns true.
	SetActivityStreamsDocument(v ActivityStreamsDocument)
	// SetActivityStreamsEvent sets the value of this property. Calling
	// IsActivityStreamsEvent afterwards returns true.
	SetActivityStreamsEvent(v ActivityStreamsEvent)
	// SetActivityStreamsFlag sets the value of this property. Calling
	// IsActivityStreamsFlag afterwards returns true.
	SetActivityStreamsFlag(v ActivityStreamsFlag)
	// SetActivityStreamsFollow sets the value of this property. Calling
	// IsActivityStreamsFollow afterwards returns true.
	SetActivityStreamsFollow(v ActivityStreamsFollow)
	// SetActivityStreamsGroup sets the value of this property. Calling
	// IsActivityStreamsGroup afterwards returns true.
	SetActivityStreamsGroup(v ActivityStreamsGroup)
	// SetActivityStreamsIgnore sets the value of this property. Calling
	// IsActivityStreamsIgnore afterwards returns true.
	SetActivityStreamsIgnore(v ActivityStreamsIgnore)
	// SetActivityStreamsImage sets the value of this property. Calling
	// IsActivityStreamsImage afterwards returns true.
	SetActivityStreamsImage(v ActivityStreamsImage)
	// SetActivityStreamsIntransitiveActivity sets the value of this property.
	// Calling IsActivityStreamsIntransitiveActivity afterwards returns
	// true.
	SetActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// SetActivityStreamsInvite sets the value of this property. Calling
	// IsActivityStreamsInvite afterwards returns true.
	SetActivityStreamsInvite(v ActivityStreamsInvite)
	// SetActivityStreamsJoin sets the value of this property. Calling
	// IsActivityStreamsJoin afterwards returns true.
	SetActivityStreamsJoin(v ActivityStreamsJoin)
	// SetActivityStreamsLeave sets the value of this property. Calling
	// IsActivityStreamsLeave afterwards returns true.
	SetActivityStreamsLeave(v ActivityStreamsLeave)
	// SetActivityStreamsLike sets the value of this property. Calling
	// IsActivityStreamsLike afterwards returns true.
	SetActivityStreamsLike(v ActivityStreamsLike)
	// SetActivityStreamsLink sets the value of this property. Calling
	// IsActivityStreamsLink afterwards returns true.
	SetActivityStreamsLink(v ActivityStreamsLink)
	// SetActivityStreamsListen sets the value of this property. Calling
	// IsActivityStreamsListen afterwards returns true.
	SetActivityStreamsListen(v ActivityStreamsListen)
	// SetActivityStreamsMention sets the value of this property. Calling
	// IsActivityStreamsMention afterwards returns true.
	SetActivityStreamsMention(v ActivityStreamsMention)
	// SetActivityStreamsMove sets the value of this property. Calling
	// IsActivityStreamsMove afterwards returns true.
	SetActivityStreamsMove(v ActivityStreamsMove)
	// SetActivityStreamsNote sets the value of this property. Calling
	// IsActivityStreamsNote afterwards returns true.
	SetActivityStreamsNote(v ActivityStreamsNote)
	// SetActivityStreamsObject sets the value of this property. Calling
	// IsActivityStreamsObject afterwards returns true.
	SetActivityStreamsObject(v ActivityStreamsObject)
	// SetActivityStreamsOffer sets the value of this property. Calling
	// IsActivityStreamsOffer afterwards returns true.
	SetActivityStreamsOffer(v ActivityStreamsOffer)
	// SetActivityStreamsOrderedCollection sets the value of this property.
	// Calling IsActivityStreamsOrderedCollection afterwards returns true.
	SetActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// SetActivityStreamsOrderedCollectionPage sets the value of this
	// property. Calling IsActivityStreamsOrderedCollectionPage afterwards
	// returns true.
	SetActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// SetActivityStreamsOrganization sets the value of this property. Calling
	// IsActivityStreamsOrganization afterwards returns true.
	SetActivityStreamsOrganization(v ActivityStreamsOrganization)
	// SetActivityStreamsPage sets the value of this property. Calling
	// IsActivityStreamsPage afterwards returns true.
	SetActivityStreamsPage(v ActivityStreamsPage)
	// SetActivityStreamsPerson sets the value of this property. Calling
	// IsActivityStreamsPerson afterwards returns true.
	SetActivityStreamsPerson(v ActivityStreamsPerson)
	// SetActivityStreamsPlace sets the value of this property. Calling
	// IsActivityStreamsPlace afterwards returns true.
	SetActivityStreamsPlace(v ActivityStreamsPlace)
	// SetActivityStreamsProfile sets the value of this property. Calling
	// IsActivityStreamsProfile afterwards returns true.
	SetActivityStreamsProfile(v ActivityStreamsProfile)
	// SetActivityStreamsQuestion sets the value of this property. Calling
	// IsActivityStreamsQuestion afterwards returns true.
	SetActivityStreamsQuestion(v ActivityStreamsQuestion)
	// SetActivityStreamsRead sets the value of this property. Calling
	// IsActivityStreamsRead afterwards returns true.
	SetActivityStreamsRead(v ActivityStreamsRead)
	// SetActivityStreamsReject sets the value of this property. Calling
	// IsActivityStreamsReject afterwards returns true.
	SetActivityStreamsReject(v ActivityStreamsReject)
	// SetActivityStreamsRelationship sets the value of this property. Calling
	// IsActivityStreamsRelationship afterwards returns true.
	SetActivityStreamsRelationship(v ActivityStreamsRelationship)
	// SetActivityStreamsRemove sets the value of this property. Calling
	// IsActivityStreamsRemove afterwards returns true.
	SetActivityStreamsRemove(v ActivityStreamsRemove)
	// SetActivityStreamsService sets the value of this property. Calling
	// IsActivityStreamsService afterwards returns true.
	SetActivityStreamsService(v ActivityStreamsService)
	// SetActivityStreamsTentativeAccept sets the value of this property.
	// Calling IsActivityStreamsTentativeAccept afterwards returns true.
	SetActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// SetActivityStreamsTentativeReject sets the value of this property.
	// Calling IsActivityStreamsTentativeReject afterwards returns true.
	SetActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// SetActivityStreamsTombstone sets the value of this property. Calling
	// IsActivityStreamsTombstone afterwards returns true.
	SetActivityStreamsTombstone(v ActivityStreamsTombstone)
	// SetActivityStreamsTravel sets the value of this property. Calling
	// IsActivityStreamsTravel afterwards returns true.
	SetActivityStreamsTravel(v ActivityStreamsTravel)
	// SetActivityStreamsUndo sets the value of this property. Calling
	// IsActivityStreamsUndo afterwards returns true.
	SetActivityStreamsUndo(v ActivityStreamsUndo)
	// SetActivityStreamsUpdate sets the value of this property. Calling
	// IsActivityStreamsUpdate afterwards returns true.
	SetActivityStreamsUpdate(v ActivityStreamsUpdate)
	// SetActivityStreamsVideo sets the value of this property. Calling
	// IsActivityStreamsVideo afterwards returns true.
	SetActivityStreamsVideo(v ActivityStreamsVideo)
	// SetActivityStreamsView sets the value of this property. Calling
	// IsActivityStreamsView afterwards returns true.
	SetActivityStreamsView(v ActivityStreamsView)
	// SetForgeFedBranch sets the value of this property. Calling
	// IsForgeFedBranch afterwards returns true.
	SetForgeFedBranch(v ForgeFedBranch)
	// SetForgeFedCommit sets the value of this property. Calling
	// IsForgeFedCommit afterwards returns true.
	SetForgeFedCommit(v ForgeFedCommit)
	// SetForgeFedPush sets the value of this property. Calling IsForgeFedPush
	// afterwards returns true.
	SetForgeFedPush(v ForgeFedPush)
	// SetForgeFedRepository sets the value of this property. Calling
	// IsForgeFedRepository afterwards returns true.
	SetForgeFedRepository(v ForgeFedRepository)
	// SetForgeFedTicket sets the value of this property. Calling
	// IsForgeFedTicket afterwards returns true.
	SetForgeFedTicket(v ForgeFedTicket)
	// SetForgeFedTicketDependency sets the value of this property. Calling
	// IsForgeFedTicketDependency afterwards returns true.
	SetForgeFedTicketDependency(v ForgeFedTicketDependency)
	// SetIRI sets the value of this property. Calling IsIRI afterwards
	// returns true.
	SetIRI(v *url.URL)
	// SetTootEmoji sets the value of this property. Calling IsTootEmoji
	// afterwards returns true.
	SetTootEmoji(v TootEmoji)
	// SetTootIdentityProof sets the value of this property. Calling
	// IsTootIdentityProof afterwards returns true.
	SetTootIdentityProof(v TootIdentityProof)
	// SetType attempts to set the property for the arbitrary type. Returns an
	// error if it is not a valid type to set on this property.
	SetType(t Type) error
}

ActivityStreamsActorPropertyIterator represents a single value for the "actor" property.

type ActivityStreamsAdd

type ActivityStreamsAdd interface {
	// GetActivityStreamsActor returns the "actor" property if it exists, and
	// nil otherwise.
	GetActivityStreamsActor() ActivityStreamsActorProperty
	// GetActivityStreamsAltitude returns the "altitude" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAltitude() ActivityStreamsAltitudeProperty
	// GetActivityStreamsAttachment returns the "attachment" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAttachment() ActivityStreamsAttachmentProperty
	// GetActivityStreamsAttributedTo returns the "attributedTo" property if
	// it exists, and nil otherwise.
	GetActivityStreamsAttributedTo() ActivityStreamsAttributedToProperty
	// GetActivityStreamsAudience returns the "audience" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAudience() ActivityStreamsAudienceProperty
	// GetActivityStreamsBcc returns the "bcc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBcc() ActivityStreamsBccProperty
	// GetActivityStreamsBto returns the "bto" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBto() ActivityStreamsBtoProperty
	// GetActivityStreamsCc returns the "cc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsCc() ActivityStreamsCcProperty
	// GetActivityStreamsContent returns the "content" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContent() ActivityStreamsContentProperty
	// GetActivityStreamsContext returns the "context" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContext() ActivityStreamsContextProperty
	// GetActivityStreamsDuration returns the "duration" property if it
	// exists, and nil otherwise.
	GetActivityStreamsDuration() ActivityStreamsDurationProperty
	// GetActivityStreamsEndTime returns the "endTime" property if it exists,
	// and nil otherwise.
	GetActivityStreamsEndTime() ActivityStreamsEndTimeProperty
	// GetActivityStreamsGenerator returns the "generator" property if it
	// exists, and nil otherwise.
	GetActivityStreamsGenerator() ActivityStreamsGeneratorProperty
	// GetActivityStreamsIcon returns the "icon" property if it exists, and
	// nil otherwise.
	GetActivityStreamsIcon() ActivityStreamsIconProperty
	// GetActivityStreamsImage returns the "image" property if it exists, and
	// nil otherwise.
	GetActivityStreamsImage() ActivityStreamsImageProperty
	// GetActivityStreamsInReplyTo returns the "inReplyTo" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInReplyTo() ActivityStreamsInReplyToProperty
	// GetActivityStreamsInstrument returns the "instrument" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInstrument() ActivityStreamsInstrumentProperty
	// GetActivityStreamsLikes returns the "likes" property if it exists, and
	// nil otherwise.
	GetActivityStreamsLikes() ActivityStreamsLikesProperty
	// GetActivityStreamsLocation returns the "location" property if it
	// exists, and nil otherwise.
	GetActivityStreamsLocation() ActivityStreamsLocationProperty
	// GetActivityStreamsMediaType returns the "mediaType" property if it
	// exists, and nil otherwise.
	GetActivityStreamsMediaType() ActivityStreamsMediaTypeProperty
	// GetActivityStreamsName returns the "name" property if it exists, and
	// nil otherwise.
	GetActivityStreamsName() ActivityStreamsNameProperty
	// GetActivityStreamsObject returns the "object" property if it exists,
	// and nil otherwise.
	GetActivityStreamsObject() ActivityStreamsObjectProperty
	// GetActivityStreamsOrigin returns the "origin" property if it exists,
	// and nil otherwise.
	GetActivityStreamsOrigin() ActivityStreamsOriginProperty
	// GetActivityStreamsPreview returns the "preview" property if it exists,
	// and nil otherwise.
	GetActivityStreamsPreview() ActivityStreamsPreviewProperty
	// GetActivityStreamsPublished returns the "published" property if it
	// exists, and nil otherwise.
	GetActivityStreamsPublished() ActivityStreamsPublishedProperty
	// GetActivityStreamsReplies returns the "replies" property if it exists,
	// and nil otherwise.
	GetActivityStreamsReplies() ActivityStreamsRepliesProperty
	// GetActivityStreamsResult returns the "result" property if it exists,
	// and nil otherwise.
	GetActivityStreamsResult() ActivityStreamsResultProperty
	// GetActivityStreamsShares returns the "shares" property if it exists,
	// and nil otherwise.
	GetActivityStreamsShares() ActivityStreamsSharesProperty
	// GetActivityStreamsSource returns the "source" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSource() ActivityStreamsSourceProperty
	// GetActivityStreamsStartTime returns the "startTime" property if it
	// exists, and nil otherwise.
	GetActivityStreamsStartTime() ActivityStreamsStartTimeProperty
	// GetActivityStreamsSummary returns the "summary" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSummary() ActivityStreamsSummaryProperty
	// GetActivityStreamsTag returns the "tag" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTag() ActivityStreamsTagProperty
	// GetActivityStreamsTarget returns the "target" property if it exists,
	// and nil otherwise.
	GetActivityStreamsTarget() ActivityStreamsTargetProperty
	// GetActivityStreamsTo returns the "to" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTo() ActivityStreamsToProperty
	// GetActivityStreamsUpdated returns the "updated" property if it exists,
	// and nil otherwise.
	GetActivityStreamsUpdated() ActivityStreamsUpdatedProperty
	// GetActivityStreamsUrl returns the "url" property if it exists, and nil
	// otherwise.
	GetActivityStreamsUrl() ActivityStreamsUrlProperty
	// GetForgeFedTeam returns the "team" property if it exists, and nil
	// otherwise.
	GetForgeFedTeam() ForgeFedTeamProperty
	// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
	// it exists, and nil otherwise.
	GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
	// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
	// it exists, and nil otherwise.
	GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
	// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
	GetJSONLDId() JSONLDIdProperty
	// GetJSONLDType returns the "type" property if it exists, and nil
	// otherwise.
	GetJSONLDType() JSONLDTypeProperty
	// GetTypeName returns the name of this type.
	GetTypeName() string
	// GetUnknownProperties returns the unknown properties for the Add type.
	// Note that this should not be used by app developers. It is only
	// used to help determine which implementation is LessThan the other.
	// Developers who are creating a different implementation of this
	// type's interface can use this method in their LessThan
	// implementation, but routine ActivityPub applications should not use
	// this to bypass the code generation tool.
	GetUnknownProperties() map[string]interface{}
	// IsExtending returns true if the Add type extends from the other type.
	IsExtending(other Type) bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this type and the specific properties that are set. The value
	// in the map is the alias used to import the type and its properties.
	JSONLDContext() map[string]string
	// LessThan computes if this Add is lesser, with an arbitrary but stable
	// determination.
	LessThan(o ActivityStreamsAdd) bool
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format.
	Serialize() (map[string]interface{}, error)
	// SetActivityStreamsActor sets the "actor" property.
	SetActivityStreamsActor(i ActivityStreamsActorProperty)
	// SetActivityStreamsAltitude sets the "altitude" property.
	SetActivityStreamsAltitude(i ActivityStreamsAltitudeProperty)
	// SetActivityStreamsAttachment sets the "attachment" property.
	SetActivityStreamsAttachment(i ActivityStreamsAttachmentProperty)
	// SetActivityStreamsAttributedTo sets the "attributedTo" property.
	SetActivityStreamsAttributedTo(i ActivityStreamsAttributedToProperty)
	// SetActivityStreamsAudience sets the "audience" property.
	SetActivityStreamsAudience(i ActivityStreamsAudienceProperty)
	// SetActivityStreamsBcc sets the "bcc" property.
	SetActivityStreamsBcc(i ActivityStreamsBccProperty)
	// SetActivityStreamsBto sets the "bto" property.
	SetActivityStreamsBto(i ActivityStreamsBtoProperty)
	// SetActivityStreamsCc sets the "cc" property.
	SetActivityStreamsCc(i ActivityStreamsCcProperty)
	// SetActivityStreamsContent sets the "content" property.
	SetActivityStreamsContent(i ActivityStreamsContentProperty)
	// SetActivityStreamsContext sets the "context" property.
	SetActivityStreamsContext(i ActivityStreamsContextProperty)
	// SetActivityStreamsDuration sets the "duration" property.
	SetActivityStreamsDuration(i ActivityStreamsDurationProperty)
	// SetActivityStreamsEndTime sets the "endTime" property.
	SetActivityStreamsEndTime(i ActivityStreamsEndTimeProperty)
	// SetActivityStreamsGenerator sets the "generator" property.
	SetActivityStreamsGenerator(i ActivityStreamsGeneratorProperty)
	// SetActivityStreamsIcon sets the "icon" property.
	SetActivityStreamsIcon(i ActivityStreamsIconProperty)
	// SetActivityStreamsImage sets the "image" property.
	SetActivityStreamsImage(i ActivityStreamsImageProperty)
	// SetActivityStreamsInReplyTo sets the "inReplyTo" property.
	SetActivityStreamsInReplyTo(i ActivityStreamsInReplyToProperty)
	// SetActivityStreamsInstrument sets the "instrument" property.
	SetActivityStreamsInstrument(i ActivityStreamsInstrumentProperty)
	// SetActivityStreamsLikes sets the "likes" property.
	SetActivityStreamsLikes(i ActivityStreamsLikesProperty)
	// SetActivityStreamsLocation sets the "location" property.
	SetActivityStreamsLocation(i ActivityStreamsLocationProperty)
	// SetActivityStreamsMediaType sets the "mediaType" property.
	SetActivityStreamsMediaType(i ActivityStreamsMediaTypeProperty)
	// SetActivityStreamsName sets the "name" property.
	SetActivityStreamsName(i ActivityStreamsNameProperty)
	// SetActivityStreamsObject sets the "object" property.
	SetActivityStreamsObject(i ActivityStreamsObjectProperty)
	// SetActivityStreamsOrigin sets the "origin" property.
	SetActivityStreamsOrigin(i ActivityStreamsOriginProperty)
	// SetActivityStreamsPreview sets the "preview" property.
	SetActivityStreamsPreview(i ActivityStreamsPreviewProperty)
	// SetActivityStreamsPublished sets the "published" property.
	SetActivityStreamsPublished(i ActivityStreamsPublishedProperty)
	// SetActivityStreamsReplies sets the "replies" property.
	SetActivityStreamsReplies(i ActivityStreamsRepliesProperty)
	// SetActivityStreamsResult sets the "result" property.
	SetActivityStreamsResult(i ActivityStreamsResultProperty)
	// SetActivityStreamsShares sets the "shares" property.
	SetActivityStreamsShares(i ActivityStreamsSharesProperty)
	// SetActivityStreamsSource sets the "source" property.
	SetActivityStreamsSource(i ActivityStreamsSourceProperty)
	// SetActivityStreamsStartTime sets the "startTime" property.
	SetActivityStreamsStartTime(i ActivityStreamsStartTimeProperty)
	// SetActivityStreamsSummary sets the "summary" property.
	SetActivityStreamsSummary(i ActivityStreamsSummaryProperty)
	// SetActivityStreamsTag sets the "tag" property.
	SetActivityStreamsTag(i ActivityStreamsTagProperty)
	// SetActivityStreamsTarget sets the "target" property.
	SetActivityStreamsTarget(i ActivityStreamsTargetProperty)
	// SetActivityStreamsTo sets the "to" property.
	SetActivityStreamsTo(i ActivityStreamsToProperty)
	// SetActivityStreamsUpdated sets the "updated" property.
	SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
	// SetActivityStreamsUrl sets the "url" property.
	SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
	// SetForgeFedTeam sets the "team" property.
	SetForgeFedTeam(i ForgeFedTeamProperty)
	// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
	SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
	// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
	SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
	// SetJSONLDId sets the "id" property.
	SetJSONLDId(i JSONLDIdProperty)
	// SetJSONLDType sets the "type" property.
	SetJSONLDType(i JSONLDTypeProperty)
	// VocabularyURI returns the vocabulary's URI as a string.
	VocabularyURI() string
}

Indicates that the actor has added the object to the target. If the target property is not explicitly specified, the target would need to be determined implicitly by context. The origin can be used to identify the context from which the object originated.

Example 12 (https://www.w3.org/TR/activitystreams-vocabulary/#ex9-jsonld):

{
  "actor": {
    "name": "Sally",
    "type": "Person"
  },
  "object": "http://example.org/abc",
  "summary": "Sally added an object",
  "type": "Add"
}

Example 13 (https://www.w3.org/TR/activitystreams-vocabulary/#ex10-jsonld):

{
  "actor": {
    "name": "Sally",
    "type": "Person"
  },
  "object": {
    "name": "A picture of my cat",
    "type": "Image",
    "url": "http://example.org/img/cat.png"
  },
  "origin": {
    "name": "Camera Roll",
    "type": "Collection"
  },
  "summary": "Sally added a picture of her cat to her cat picture

collection",

  "target": {
    "name": "My Cat Pictures",
    "type": "Collection"
  },
  "type": "Add"
}

type ActivityStreamsAltitudeProperty

type ActivityStreamsAltitudeProperty interface {
	// Clear ensures no value of this property is set. Calling
	// IsXMLSchemaFloat afterwards will return false.
	Clear()
	// Get returns the value of this property. When IsXMLSchemaFloat returns
	// false, Get will return any arbitrary value.
	Get() float64
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return any arbitrary value.
	GetIRI() *url.URL
	// HasAny returns true if the value or IRI is set.
	HasAny() bool
	// IsIRI returns true if this property is an IRI.
	IsIRI() bool
	// IsXMLSchemaFloat returns true if this property is set and not an IRI.
	IsXMLSchemaFloat() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsAltitudeProperty) bool
	// Name returns the name of this property: "altitude".
	Name() string
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// Set sets the value of this property. Calling IsXMLSchemaFloat
	// afterwards will return true.
	Set(v float64)
	// SetIRI sets the value of this property. Calling IsIRI afterwards will
	// return true.
	SetIRI(v *url.URL)
}

Indicates the altitude of a place. The measurement units is indicated using the units property. If units is not specified, the default is assumed to be "m" indicating meters.

Example 113 (https://www.w3.org/TR/activitystreams-vocabulary/#ex129-jsonld):

{
  "altitude": 15,
  "latitude": 36.75,
  "longitude": 119.7667,
  "name": "Fresno Area",
  "type": "Place",
  "units": "miles"
}

type ActivityStreamsAnnounce

type ActivityStreamsAnnounce interface {
	// GetActivityStreamsActor returns the "actor" property if it exists, and
	// nil otherwise.
	GetActivityStreamsActor() ActivityStreamsActorProperty
	// GetActivityStreamsAltitude returns the "altitude" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAltitude() ActivityStreamsAltitudeProperty
	// GetActivityStreamsAttachment returns the "attachment" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAttachment() ActivityStreamsAttachmentProperty
	// GetActivityStreamsAttributedTo returns the "attributedTo" property if
	// it exists, and nil otherwise.
	GetActivityStreamsAttributedTo() ActivityStreamsAttributedToProperty
	// GetActivityStreamsAudience returns the "audience" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAudience() ActivityStreamsAudienceProperty
	// GetActivityStreamsBcc returns the "bcc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBcc() ActivityStreamsBccProperty
	// GetActivityStreamsBto returns the "bto" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBto() ActivityStreamsBtoProperty
	// GetActivityStreamsCc returns the "cc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsCc() ActivityStreamsCcProperty
	// GetActivityStreamsContent returns the "content" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContent() ActivityStreamsContentProperty
	// GetActivityStreamsContext returns the "context" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContext() ActivityStreamsContextProperty
	// GetActivityStreamsDuration returns the "duration" property if it
	// exists, and nil otherwise.
	GetActivityStreamsDuration() ActivityStreamsDurationProperty
	// GetActivityStreamsEndTime returns the "endTime" property if it exists,
	// and nil otherwise.
	GetActivityStreamsEndTime() ActivityStreamsEndTimeProperty
	// GetActivityStreamsGenerator returns the "generator" property if it
	// exists, and nil otherwise.
	GetActivityStreamsGenerator() ActivityStreamsGeneratorProperty
	// GetActivityStreamsIcon returns the "icon" property if it exists, and
	// nil otherwise.
	GetActivityStreamsIcon() ActivityStreamsIconProperty
	// GetActivityStreamsImage returns the "image" property if it exists, and
	// nil otherwise.
	GetActivityStreamsImage() ActivityStreamsImageProperty
	// GetActivityStreamsInReplyTo returns the "inReplyTo" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInReplyTo() ActivityStreamsInReplyToProperty
	// GetActivityStreamsInstrument returns the "instrument" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInstrument() ActivityStreamsInstrumentProperty
	// GetActivityStreamsLikes returns the "likes" property if it exists, and
	// nil otherwise.
	GetActivityStreamsLikes() ActivityStreamsLikesProperty
	// GetActivityStreamsLocation returns the "location" property if it
	// exists, and nil otherwise.
	GetActivityStreamsLocation() ActivityStreamsLocationProperty
	// GetActivityStreamsMediaType returns the "mediaType" property if it
	// exists, and nil otherwise.
	GetActivityStreamsMediaType() ActivityStreamsMediaTypeProperty
	// GetActivityStreamsName returns the "name" property if it exists, and
	// nil otherwise.
	GetActivityStreamsName() ActivityStreamsNameProperty
	// GetActivityStreamsObject returns the "object" property if it exists,
	// and nil otherwise.
	GetActivityStreamsObject() ActivityStreamsObjectProperty
	// GetActivityStreamsOrigin returns the "origin" property if it exists,
	// and nil otherwise.
	GetActivityStreamsOrigin() ActivityStreamsOriginProperty
	// GetActivityStreamsPreview returns the "preview" property if it exists,
	// and nil otherwise.
	GetActivityStreamsPreview() ActivityStreamsPreviewProperty
	// GetActivityStreamsPublished returns the "published" property if it
	// exists, and nil otherwise.
	GetActivityStreamsPublished() ActivityStreamsPublishedProperty
	// GetActivityStreamsReplies returns the "replies" property if it exists,
	// and nil otherwise.
	GetActivityStreamsReplies() ActivityStreamsRepliesProperty
	// GetActivityStreamsResult returns the "result" property if it exists,
	// and nil otherwise.
	GetActivityStreamsResult() ActivityStreamsResultProperty
	// GetActivityStreamsShares returns the "shares" property if it exists,
	// and nil otherwise.
	GetActivityStreamsShares() ActivityStreamsSharesProperty
	// GetActivityStreamsSource returns the "source" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSource() ActivityStreamsSourceProperty
	// GetActivityStreamsStartTime returns the "startTime" property if it
	// exists, and nil otherwise.
	GetActivityStreamsStartTime() ActivityStreamsStartTimeProperty
	// GetActivityStreamsSummary returns the "summary" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSummary() ActivityStreamsSummaryProperty
	// GetActivityStreamsTag returns the "tag" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTag() ActivityStreamsTagProperty
	// GetActivityStreamsTarget returns the "target" property if it exists,
	// and nil otherwise.
	GetActivityStreamsTarget() ActivityStreamsTargetProperty
	// GetActivityStreamsTo returns the "to" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTo() ActivityStreamsToProperty
	// GetActivityStreamsUpdated returns the "updated" property if it exists,
	// and nil otherwise.
	GetActivityStreamsUpdated() ActivityStreamsUpdatedProperty
	// GetActivityStreamsUrl returns the "url" property if it exists, and nil
	// otherwise.
	GetActivityStreamsUrl() ActivityStreamsUrlProperty
	// GetForgeFedTeam returns the "team" property if it exists, and nil
	// otherwise.
	GetForgeFedTeam() ForgeFedTeamProperty
	// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
	// it exists, and nil otherwise.
	GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
	// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
	// it exists, and nil otherwise.
	GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
	// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
	GetJSONLDId() JSONLDIdProperty
	// GetJSONLDType returns the "type" property if it exists, and nil
	// otherwise.
	GetJSONLDType() JSONLDTypeProperty
	// GetTypeName returns the name of this type.
	GetTypeName() string
	// GetUnknownProperties returns the unknown properties for the Announce
	// type. Note that this should not be used by app developers. It is
	// only used to help determine which implementation is LessThan the
	// other. Developers who are creating a different implementation of
	// this type's interface can use this method in their LessThan
	// implementation, but routine ActivityPub applications should not use
	// this to bypass the code generation tool.
	GetUnknownProperties() map[string]interface{}
	// IsExtending returns true if the Announce type extends from the other
	// type.
	IsExtending(other Type) bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this type and the specific properties that are set. The value
	// in the map is the alias used to import the type and its properties.
	JSONLDContext() map[string]string
	// LessThan computes if this Announce is lesser, with an arbitrary but
	// stable determination.
	LessThan(o ActivityStreamsAnnounce) bool
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format.
	Serialize() (map[string]interface{}, error)
	// SetActivityStreamsActor sets the "actor" property.
	SetActivityStreamsActor(i ActivityStreamsActorProperty)
	// SetActivityStreamsAltitude sets the "altitude" property.
	SetActivityStreamsAltitude(i ActivityStreamsAltitudeProperty)
	// SetActivityStreamsAttachment sets the "attachment" property.
	SetActivityStreamsAttachment(i ActivityStreamsAttachmentProperty)
	// SetActivityStreamsAttributedTo sets the "attributedTo" property.
	SetActivityStreamsAttributedTo(i ActivityStreamsAttributedToProperty)
	// SetActivityStreamsAudience sets the "audience" property.
	SetActivityStreamsAudience(i ActivityStreamsAudienceProperty)
	// SetActivityStreamsBcc sets the "bcc" property.
	SetActivityStreamsBcc(i ActivityStreamsBccProperty)
	// SetActivityStreamsBto sets the "bto" property.
	SetActivityStreamsBto(i ActivityStreamsBtoProperty)
	// SetActivityStreamsCc sets the "cc" property.
	SetActivityStreamsCc(i ActivityStreamsCcProperty)
	// SetActivityStreamsContent sets the "content" property.
	SetActivityStreamsContent(i ActivityStreamsContentProperty)
	// SetActivityStreamsContext sets the "context" property.
	SetActivityStreamsContext(i ActivityStreamsContextProperty)
	// SetActivityStreamsDuration sets the "duration" property.
	SetActivityStreamsDuration(i ActivityStreamsDurationProperty)
	// SetActivityStreamsEndTime sets the "endTime" property.
	SetActivityStreamsEndTime(i ActivityStreamsEndTimeProperty)
	// SetActivityStreamsGenerator sets the "generator" property.
	SetActivityStreamsGenerator(i ActivityStreamsGeneratorProperty)
	// SetActivityStreamsIcon sets the "icon" property.
	SetActivityStreamsIcon(i ActivityStreamsIconProperty)
	// SetActivityStreamsImage sets the "image" property.
	SetActivityStreamsImage(i ActivityStreamsImageProperty)
	// SetActivityStreamsInReplyTo sets the "inReplyTo" property.
	SetActivityStreamsInReplyTo(i ActivityStreamsInReplyToProperty)
	// SetActivityStreamsInstrument sets the "instrument" property.
	SetActivityStreamsInstrument(i ActivityStreamsInstrumentProperty)
	// SetActivityStreamsLikes sets the "likes" property.
	SetActivityStreamsLikes(i ActivityStreamsLikesProperty)
	// SetActivityStreamsLocation sets the "location" property.
	SetActivityStreamsLocation(i ActivityStreamsLocationProperty)
	// SetActivityStreamsMediaType sets the "mediaType" property.
	SetActivityStreamsMediaType(i ActivityStreamsMediaTypeProperty)
	// SetActivityStreamsName sets the "name" property.
	SetActivityStreamsName(i ActivityStreamsNameProperty)
	// SetActivityStreamsObject sets the "object" property.
	SetActivityStreamsObject(i ActivityStreamsObjectProperty)
	// SetActivityStreamsOrigin sets the "origin" property.
	SetActivityStreamsOrigin(i ActivityStreamsOriginProperty)
	// SetActivityStreamsPreview sets the "preview" property.
	SetActivityStreamsPreview(i ActivityStreamsPreviewProperty)
	// SetActivityStreamsPublished sets the "published" property.
	SetActivityStreamsPublished(i ActivityStreamsPublishedProperty)
	// SetActivityStreamsReplies sets the "replies" property.
	SetActivityStreamsReplies(i ActivityStreamsRepliesProperty)
	// SetActivityStreamsResult sets the "result" property.
	SetActivityStreamsResult(i ActivityStreamsResultProperty)
	// SetActivityStreamsShares sets the "shares" property.
	SetActivityStreamsShares(i ActivityStreamsSharesProperty)
	// SetActivityStreamsSource sets the "source" property.
	SetActivityStreamsSource(i ActivityStreamsSourceProperty)
	// SetActivityStreamsStartTime sets the "startTime" property.
	SetActivityStreamsStartTime(i ActivityStreamsStartTimeProperty)
	// SetActivityStreamsSummary sets the "summary" property.
	SetActivityStreamsSummary(i ActivityStreamsSummaryProperty)
	// SetActivityStreamsTag sets the "tag" property.
	SetActivityStreamsTag(i ActivityStreamsTagProperty)
	// SetActivityStreamsTarget sets the "target" property.
	SetActivityStreamsTarget(i ActivityStreamsTargetProperty)
	// SetActivityStreamsTo sets the "to" property.
	SetActivityStreamsTo(i ActivityStreamsToProperty)
	// SetActivityStreamsUpdated sets the "updated" property.
	SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
	// SetActivityStreamsUrl sets the "url" property.
	SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
	// SetForgeFedTeam sets the "team" property.
	SetForgeFedTeam(i ForgeFedTeamProperty)
	// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
	SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
	// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
	SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
	// SetJSONLDId sets the "id" property.
	SetJSONLDId(i JSONLDIdProperty)
	// SetJSONLDType sets the "type" property.
	SetJSONLDType(i JSONLDTypeProperty)
	// VocabularyURI returns the vocabulary's URI as a string.
	VocabularyURI() string
}

Indicates that the actor is calling the target's attention the object. The origin typically has no defined meaning.

Example 36 (https://www.w3.org/TR/activitystreams-vocabulary/#ex170-jsonld):

{
  "actor": {
    "id": "http://sally.example.org",
    "name": "Sally",
    "type": "Person"
  },
  "object": {
    "actor": "http://sally.example.org",
    "location": {
      "name": "Work",
      "type": "Place"
    },
    "type": "Arrive"
  },
  "summary": "Sally announced that she had arrived at work",
  "type": "Announce"
}

type ActivityStreamsAnyOfProperty

type ActivityStreamsAnyOfProperty interface {
	// AppendActivityStreamsAccept appends a Accept value to the back of a
	// list of the property "anyOf". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsAccept(v ActivityStreamsAccept)
	// AppendActivityStreamsActivity appends a Activity value to the back of a
	// list of the property "anyOf". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsActivity(v ActivityStreamsActivity)
	// AppendActivityStreamsAdd appends a Add value to the back of a list of
	// the property "anyOf". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsAdd(v ActivityStreamsAdd)
	// AppendActivityStreamsAnnounce appends a Announce value to the back of a
	// list of the property "anyOf". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// AppendActivityStreamsApplication appends a Application value to the
	// back of a list of the property "anyOf". Invalidates iterators that
	// are traversing using Prev.
	AppendActivityStreamsApplication(v ActivityStreamsApplication)
	// AppendActivityStreamsArrive appends a Arrive value to the back of a
	// list of the property "anyOf". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsArrive(v ActivityStreamsArrive)
	// AppendActivityStreamsArticle appends a Article value to the back of a
	// list of the property "anyOf". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsArticle(v ActivityStreamsArticle)
	// AppendActivityStreamsAudio appends a Audio value to the back of a list
	// of the property "anyOf". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsAudio(v ActivityStreamsAudio)
	// AppendActivityStreamsBlock appends a Block value to the back of a list
	// of the property "anyOf". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsBlock(v ActivityStreamsBlock)
	// AppendActivityStreamsCollection appends a Collection value to the back
	// of a list of the property "anyOf". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsCollection(v ActivityStreamsCollection)
	// AppendActivityStreamsCollectionPage appends a CollectionPage value to
	// the back of a list of the property "anyOf". Invalidates iterators
	// that are traversing using Prev.
	AppendActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// AppendActivityStreamsCreate appends a Create value to the back of a
	// list of the property "anyOf". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsCreate(v ActivityStreamsCreate)
	// AppendActivityStreamsDelete appends a Delete value to the back of a
	// list of the property "anyOf". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDelete(v ActivityStreamsDelete)
	// AppendActivityStreamsDislike appends a Dislike value to the back of a
	// list of the property "anyOf". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDislike(v ActivityStreamsDislike)
	// AppendActivityStreamsDocument appends a Document value to the back of a
	// list of the property "anyOf". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDocument(v ActivityStreamsDocument)
	// AppendActivityStreamsEvent appends a Event value to the back of a list
	// of the property "anyOf". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsEvent(v ActivityStreamsEvent)
	// AppendActivityStreamsFlag appends a Flag value to the back of a list of
	// the property "anyOf". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsFlag(v ActivityStreamsFlag)
	// AppendActivityStreamsFollow appends a Follow value to the back of a
	// list of the property "anyOf". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsFollow(v ActivityStreamsFollow)
	// AppendActivityStreamsGroup appends a Group value to the back of a list
	// of the property "anyOf". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsGroup(v ActivityStreamsGroup)
	// AppendActivityStreamsIgnore appends a Ignore value to the back of a
	// list of the property "anyOf". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsIgnore(v ActivityStreamsIgnore)
	// AppendActivityStreamsImage appends a Image value to the back of a list
	// of the property "anyOf". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsImage(v ActivityStreamsImage)
	// AppendActivityStreamsIntransitiveActivity appends a
	// IntransitiveActivity value to the back of a list of the property
	// "anyOf". Invalidates iterators that are traversing using Prev.
	AppendActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// AppendActivityStreamsInvite appends a Invite value to the back of a
	// list of the property "anyOf". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsInvite(v ActivityStreamsInvite)
	// AppendActivityStreamsJoin appends a Join value to the back of a list of
	// the property "anyOf". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsJoin(v ActivityStreamsJoin)
	// AppendActivityStreamsLeave appends a Leave value to the back of a list
	// of the property "anyOf". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsLeave(v ActivityStreamsLeave)
	// AppendActivityStreamsLike appends a Like value to the back of a list of
	// the property "anyOf". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsLike(v ActivityStreamsLike)
	// AppendActivityStreamsLink appends a Link value to the back of a list of
	// the property "anyOf". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsLink(v ActivityStreamsLink)
	// AppendActivityStreamsListen appends a Listen value to the back of a
	// list of the property "anyOf". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsListen(v ActivityStreamsListen)
	// AppendActivityStreamsMention appends a Mention value to the back of a
	// list of the property "anyOf". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsMention(v ActivityStreamsMention)
	// AppendActivityStreamsMove appends a Move value to the back of a list of
	// the property "anyOf". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsMove(v ActivityStreamsMove)
	// AppendActivityStreamsNote appends a Note value to the back of a list of
	// the property "anyOf". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsNote(v ActivityStreamsNote)
	// AppendActivityStreamsObject appends a Object value to the back of a
	// list of the property "anyOf". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsObject(v ActivityStreamsObject)
	// AppendActivityStreamsOffer appends a Offer value to the back of a list
	// of the property "anyOf". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsOffer(v ActivityStreamsOffer)
	// AppendActivityStreamsOrderedCollection appends a OrderedCollection
	// value to the back of a list of the property "anyOf". Invalidates
	// iterators that are traversing using Prev.
	AppendActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// AppendActivityStreamsOrderedCollectionPage appends a
	// OrderedCollectionPage value to the back of a list of the property
	// "anyOf". Invalidates iterators that are traversing using Prev.
	AppendActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// AppendActivityStreamsOrganization appends a Organization value to the
	// back of a list of the property "anyOf". Invalidates iterators that
	// are traversing using Prev.
	AppendActivityStreamsOrganization(v ActivityStreamsOrganization)
	// AppendActivityStreamsPage appends a Page value to the back of a list of
	// the property "anyOf". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsPage(v ActivityStreamsPage)
	// AppendActivityStreamsPerson appends a Person value to the back of a
	// list of the property "anyOf". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsPerson(v ActivityStreamsPerson)
	// AppendActivityStreamsPlace appends a Place value to the back of a list
	// of the property "anyOf". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsPlace(v ActivityStreamsPlace)
	// AppendActivityStreamsProfile appends a Profile value to the back of a
	// list of the property "anyOf". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsProfile(v ActivityStreamsProfile)
	// AppendActivityStreamsQuestion appends a Question value to the back of a
	// list of the property "anyOf". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsQuestion(v ActivityStreamsQuestion)
	// AppendActivityStreamsRead appends a Read value to the back of a list of
	// the property "anyOf". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsRead(v ActivityStreamsRead)
	// AppendActivityStreamsReject appends a Reject value to the back of a
	// list of the property "anyOf". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsReject(v ActivityStreamsReject)
	// AppendActivityStreamsRelationship appends a Relationship value to the
	// back of a list of the property "anyOf". Invalidates iterators that
	// are traversing using Prev.
	AppendActivityStreamsRelationship(v ActivityStreamsRelationship)
	// AppendActivityStreamsRemove appends a Remove value to the back of a
	// list of the property "anyOf". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsRemove(v ActivityStreamsRemove)
	// AppendActivityStreamsService appends a Service value to the back of a
	// list of the property "anyOf". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsService(v ActivityStreamsService)
	// AppendActivityStreamsTentativeAccept appends a TentativeAccept value to
	// the back of a list of the property "anyOf". Invalidates iterators
	// that are traversing using Prev.
	AppendActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// AppendActivityStreamsTentativeReject appends a TentativeReject value to
	// the back of a list of the property "anyOf". Invalidates iterators
	// that are traversing using Prev.
	AppendActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// AppendActivityStreamsTombstone appends a Tombstone value to the back of
	// a list of the property "anyOf". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsTombstone(v ActivityStreamsTombstone)
	// AppendActivityStreamsTravel appends a Travel value to the back of a
	// list of the property "anyOf". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsTravel(v ActivityStreamsTravel)
	// AppendActivityStreamsUndo appends a Undo value to the back of a list of
	// the property "anyOf". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsUndo(v ActivityStreamsUndo)
	// AppendActivityStreamsUpdate appends a Update value to the back of a
	// list of the property "anyOf". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsUpdate(v ActivityStreamsUpdate)
	// AppendActivityStreamsVideo appends a Video value to the back of a list
	// of the property "anyOf". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsVideo(v ActivityStreamsVideo)
	// AppendActivityStreamsView appends a View value to the back of a list of
	// the property "anyOf". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsView(v ActivityStreamsView)
	// AppendForgeFedBranch appends a Branch value to the back of a list of
	// the property "anyOf". Invalidates iterators that are traversing
	// using Prev.
	AppendForgeFedBranch(v ForgeFedBranch)
	// AppendForgeFedCommit appends a Commit value to the back of a list of
	// the property "anyOf". Invalidates iterators that are traversing
	// using Prev.
	AppendForgeFedCommit(v ForgeFedCommit)
	// AppendForgeFedPush appends a Push value to the back of a list of the
	// property "anyOf". Invalidates iterators that are traversing using
	// Prev.
	AppendForgeFedPush(v ForgeFedPush)
	// AppendForgeFedRepository appends a Repository value to the back of a
	// list of the property "anyOf". Invalidates iterators that are
	// traversing using Prev.
	AppendForgeFedRepository(v ForgeFedRepository)
	// AppendForgeFedTicket appends a Ticket value to the back of a list of
	// the property "anyOf". Invalidates iterators that are traversing
	// using Prev.
	AppendForgeFedTicket(v ForgeFedTicket)
	// AppendForgeFedTicketDependency appends a TicketDependency value to the
	// back of a list of the property "anyOf". Invalidates iterators that
	// are traversing using Prev.
	AppendForgeFedTicketDependency(v ForgeFedTicketDependency)
	// AppendIRI appends an IRI value to the back of a list of the property
	// "anyOf"
	AppendIRI(v *url.URL)
	// AppendTootEmoji appends a Emoji value to the back of a list of the
	// property "anyOf". Invalidates iterators that are traversing using
	// Prev.
	AppendTootEmoji(v TootEmoji)
	// AppendTootIdentityProof appends a IdentityProof value to the back of a
	// list of the property "anyOf". Invalidates iterators that are
	// traversing using Prev.
	AppendTootIdentityProof(v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "anyOf". Invalidates iterators that are traversing
	// using Prev. Returns an error if the type is not a valid one to set
	// for this property.
	AppendType(t Type) error
	// At returns the property value for the specified index. Panics if the
	// index is out of bounds.
	At(index int) ActivityStreamsAnyOfPropertyIterator
	// Begin returns the first iterator, or nil if empty. Can be used with the
	// iterator's Next method and this property's End method to iterate
	// from front to back through all values.
	Begin() ActivityStreamsAnyOfPropertyIterator
	// Empty returns returns true if there are no elements.
	Empty() bool
	// End returns beyond-the-last iterator, which is nil. Can be used with
	// the iterator's Next method and this property's Begin method to
	// iterate from front to back through all values.
	End() ActivityStreamsAnyOfPropertyIterator
	// InsertActivityStreamsAccept inserts a Accept value at the specified
	// index for a property "anyOf". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAccept(idx int, v ActivityStreamsAccept)
	// InsertActivityStreamsActivity inserts a Activity value at the specified
	// index for a property "anyOf". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsActivity(idx int, v ActivityStreamsActivity)
	// InsertActivityStreamsAdd inserts a Add value at the specified index for
	// a property "anyOf". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertActivityStreamsAdd(idx int, v ActivityStreamsAdd)
	// InsertActivityStreamsAnnounce inserts a Announce value at the specified
	// index for a property "anyOf". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAnnounce(idx int, v ActivityStreamsAnnounce)
	// InsertActivityStreamsApplication inserts a Application value at the
	// specified index for a property "anyOf". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsApplication(idx int, v ActivityStreamsApplication)
	// InsertActivityStreamsArrive inserts a Arrive value at the specified
	// index for a property "anyOf". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsArrive(idx int, v ActivityStreamsArrive)
	// InsertActivityStreamsArticle inserts a Article value at the specified
	// index for a property "anyOf". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsArticle(idx int, v ActivityStreamsArticle)
	// InsertActivityStreamsAudio inserts a Audio value at the specified index
	// for a property "anyOf". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAudio(idx int, v ActivityStreamsAudio)
	// InsertActivityStreamsBlock inserts a Block value at the specified index
	// for a property "anyOf". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsBlock(idx int, v ActivityStreamsBlock)
	// InsertActivityStreamsCollection inserts a Collection value at the
	// specified index for a property "anyOf". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsCollection(idx int, v ActivityStreamsCollection)
	// InsertActivityStreamsCollectionPage inserts a CollectionPage value at
	// the specified index for a property "anyOf". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsCollectionPage(idx int, v ActivityStreamsCollectionPage)
	// InsertActivityStreamsCreate inserts a Create value at the specified
	// index for a property "anyOf". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsCreate(idx int, v ActivityStreamsCreate)
	// InsertActivityStreamsDelete inserts a Delete value at the specified
	// index for a property "anyOf". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDelete(idx int, v ActivityStreamsDelete)
	// InsertActivityStreamsDislike inserts a Dislike value at the specified
	// index for a property "anyOf". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDislike(idx int, v ActivityStreamsDislike)
	// InsertActivityStreamsDocument inserts a Document value at the specified
	// index for a property "anyOf". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDocument(idx int, v ActivityStreamsDocument)
	// InsertActivityStreamsEvent inserts a Event value at the specified index
	// for a property "anyOf". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsEvent(idx int, v ActivityStreamsEvent)
	// InsertActivityStreamsFlag inserts a Flag value at the specified index
	// for a property "anyOf". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsFlag(idx int, v ActivityStreamsFlag)
	// InsertActivityStreamsFollow inserts a Follow value at the specified
	// index for a property "anyOf". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsFollow(idx int, v ActivityStreamsFollow)
	// InsertActivityStreamsGroup inserts a Group value at the specified index
	// for a property "anyOf". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsGroup(idx int, v ActivityStreamsGroup)
	// InsertActivityStreamsIgnore inserts a Ignore value at the specified
	// index for a property "anyOf". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsIgnore(idx int, v ActivityStreamsIgnore)
	// InsertActivityStreamsImage inserts a Image value at the specified index
	// for a property "anyOf". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsImage(idx int, v ActivityStreamsImage)
	// InsertActivityStreamsIntransitiveActivity inserts a
	// IntransitiveActivity value at the specified index for a property
	// "anyOf". Existing elements at that index and higher are shifted
	// back once. Invalidates all iterators.
	InsertActivityStreamsIntransitiveActivity(idx int, v ActivityStreamsIntransitiveActivity)
	// InsertActivityStreamsInvite inserts a Invite value at the specified
	// index for a property "anyOf". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsInvite(idx int, v ActivityStreamsInvite)
	// InsertActivityStreamsJoin inserts a Join value at the specified index
	// for a property "anyOf". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsJoin(idx int, v ActivityStreamsJoin)
	// InsertActivityStreamsLeave inserts a Leave value at the specified index
	// for a property "anyOf". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsLeave(idx int, v ActivityStreamsLeave)
	// InsertActivityStreamsLike inserts a Like value at the specified index
	// for a property "anyOf". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsLike(idx int, v ActivityStreamsLike)
	// InsertActivityStreamsLink inserts a Link value at the specified index
	// for a property "anyOf". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsLink(idx int, v ActivityStreamsLink)
	// InsertActivityStreamsListen inserts a Listen value at the specified
	// index for a property "anyOf". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsListen(idx int, v ActivityStreamsListen)
	// InsertActivityStreamsMention inserts a Mention value at the specified
	// index for a property "anyOf". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsMention(idx int, v ActivityStreamsMention)
	// InsertActivityStreamsMove inserts a Move value at the specified index
	// for a property "anyOf". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsMove(idx int, v ActivityStreamsMove)
	// InsertActivityStreamsNote inserts a Note value at the specified index
	// for a property "anyOf". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsNote(idx int, v ActivityStreamsNote)
	// InsertActivityStreamsObject inserts a Object value at the specified
	// index for a property "anyOf". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsObject(idx int, v ActivityStreamsObject)
	// InsertActivityStreamsOffer inserts a Offer value at the specified index
	// for a property "anyOf". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsOffer(idx int, v ActivityStreamsOffer)
	// InsertActivityStreamsOrderedCollection inserts a OrderedCollection
	// value at the specified index for a property "anyOf". Existing
	// elements at that index and higher are shifted back once.
	// Invalidates all iterators.
	InsertActivityStreamsOrderedCollection(idx int, v ActivityStreamsOrderedCollection)
	// InsertActivityStreamsOrderedCollectionPage inserts a
	// OrderedCollectionPage value at the specified index for a property
	// "anyOf". Existing elements at that index and higher are shifted
	// back once. Invalidates all iterators.
	InsertActivityStreamsOrderedCollectionPage(idx int, v ActivityStreamsOrderedCollectionPage)
	// InsertActivityStreamsOrganization inserts a Organization value at the
	// specified index for a property "anyOf". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsOrganization(idx int, v ActivityStreamsOrganization)
	// InsertActivityStreamsPage inserts a Page value at the specified index
	// for a property "anyOf". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsPage(idx int, v ActivityStreamsPage)
	// InsertActivityStreamsPerson inserts a Person value at the specified
	// index for a property "anyOf". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsPerson(idx int, v ActivityStreamsPerson)
	// InsertActivityStreamsPlace inserts a Place value at the specified index
	// for a property "anyOf". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsPlace(idx int, v ActivityStreamsPlace)
	// InsertActivityStreamsProfile inserts a Profile value at the specified
	// index for a property "anyOf". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsProfile(idx int, v ActivityStreamsProfile)
	// InsertActivityStreamsQuestion inserts a Question value at the specified
	// index for a property "anyOf". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsQuestion(idx int, v ActivityStreamsQuestion)
	// InsertActivityStreamsRead inserts a Read value at the specified index
	// for a property "anyOf". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsRead(idx int, v ActivityStreamsRead)
	// InsertActivityStreamsReject inserts a Reject value at the specified
	// index for a property "anyOf". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsReject(idx int, v ActivityStreamsReject)
	// InsertActivityStreamsRelationship inserts a Relationship value at the
	// specified index for a property "anyOf". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsRelationship(idx int, v ActivityStreamsRelationship)
	// InsertActivityStreamsRemove inserts a Remove value at the specified
	// index for a property "anyOf". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsRemove(idx int, v ActivityStreamsRemove)
	// InsertActivityStreamsService inserts a Service value at the specified
	// index for a property "anyOf". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsService(idx int, v ActivityStreamsService)
	// InsertActivityStreamsTentativeAccept inserts a TentativeAccept value at
	// the specified index for a property "anyOf". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsTentativeAccept(idx int, v ActivityStreamsTentativeAccept)
	// InsertActivityStreamsTentativeReject inserts a TentativeReject value at
	// the specified index for a property "anyOf". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsTentativeReject(idx int, v ActivityStreamsTentativeReject)
	// InsertActivityStreamsTombstone inserts a Tombstone value at the
	// specified index for a property "anyOf". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsTombstone(idx int, v ActivityStreamsTombstone)
	// InsertActivityStreamsTravel inserts a Travel value at the specified
	// index for a property "anyOf". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsTravel(idx int, v ActivityStreamsTravel)
	// InsertActivityStreamsUndo inserts a Undo value at the specified index
	// for a property "anyOf". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsUndo(idx int, v ActivityStreamsUndo)
	// InsertActivityStreamsUpdate inserts a Update value at the specified
	// index for a property "anyOf". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsUpdate(idx int, v ActivityStreamsUpdate)
	// InsertActivityStreamsVideo inserts a Video value at the specified index
	// for a property "anyOf". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsVideo(idx int, v ActivityStreamsVideo)
	// InsertActivityStreamsView inserts a View value at the specified index
	// for a property "anyOf". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsView(idx int, v ActivityStreamsView)
	// InsertForgeFedBranch inserts a Branch value at the specified index for
	// a property "anyOf". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertForgeFedBranch(idx int, v ForgeFedBranch)
	// InsertForgeFedCommit inserts a Commit value at the specified index for
	// a property "anyOf". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertForgeFedCommit(idx int, v ForgeFedCommit)
	// InsertForgeFedPush inserts a Push value at the specified index for a
	// property "anyOf". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertForgeFedPush(idx int, v ForgeFedPush)
	// InsertForgeFedRepository inserts a Repository value at the specified
	// index for a property "anyOf". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertForgeFedRepository(idx int, v ForgeFedRepository)
	// InsertForgeFedTicket inserts a Ticket value at the specified index for
	// a property "anyOf". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertForgeFedTicket(idx int, v ForgeFedTicket)
	// InsertForgeFedTicketDependency inserts a TicketDependency value at the
	// specified index for a property "anyOf". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
	// Insert inserts an IRI value at the specified index for a property
	// "anyOf". Existing elements at that index and higher are shifted
	// back once. Invalidates all iterators.
	InsertIRI(idx int, v *url.URL)
	// InsertTootEmoji inserts a Emoji value at the specified index for a
	// property "anyOf". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertTootEmoji(idx int, v TootEmoji)
	// InsertTootIdentityProof inserts a IdentityProof value at the specified
	// index for a property "anyOf". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertTootIdentityProof(idx int, v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "anyOf". Invalidates all iterators. Returns an error
	// if the type is not a valid one to set for this property.
	InsertType(idx int, t Type) error
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API method specifically needed only for alternate
	// implementations for go-fed. Applications should not use this
	// method. Panics if the index is out of bounds.
	KindIndex(idx int) int
	// Len returns the number of values that exist for the "anyOf" property.
	Len() (length int)
	// Less computes whether another property is less than this one. Mixing
	// types results in a consistent but arbitrary ordering
	Less(i, j int) bool
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsAnyOfProperty) bool
	// Name returns the name of this property ("anyOf") with any alias.
	Name() string
	// PrependActivityStreamsAccept prepends a Accept value to the front of a
	// list of the property "anyOf". Invalidates all iterators.
	PrependActivityStreamsAccept(v ActivityStreamsAccept)
	// PrependActivityStreamsActivity prepends a Activity value to the front
	// of a list of the property "anyOf". Invalidates all iterators.
	PrependActivityStreamsActivity(v ActivityStreamsActivity)
	// PrependActivityStreamsAdd prepends a Add value to the front of a list
	// of the property "anyOf". Invalidates all iterators.
	PrependActivityStreamsAdd(v ActivityStreamsAdd)
	// PrependActivityStreamsAnnounce prepends a Announce value to the front
	// of a list of the property "anyOf". Invalidates all iterators.
	PrependActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// PrependActivityStreamsApplication prepends a Application value to the
	// front of a list of the property "anyOf". Invalidates all iterators.
	PrependActivityStreamsApplication(v ActivityStreamsApplication)
	// PrependActivityStreamsArrive prepends a Arrive value to the front of a
	// list of the property "anyOf". Invalidates all iterators.
	PrependActivityStreamsArrive(v ActivityStreamsArrive)
	// PrependActivityStreamsArticle prepends a Article value to the front of
	// a list of the property "anyOf". Invalidates all iterators.
	PrependActivityStreamsArticle(v ActivityStreamsArticle)
	// PrependActivityStreamsAudio prepends a Audio value to the front of a
	// list of the property "anyOf". Invalidates all iterators.
	PrependActivityStreamsAudio(v ActivityStreamsAudio)
	// PrependActivityStreamsBlock prepends a Block value to the front of a
	// list of the property "anyOf". Invalidates all iterators.
	PrependActivityStreamsBlock(v ActivityStreamsBlock)
	// PrependActivityStreamsCollection prepends a Collection value to the
	// front of a list of the property "anyOf". Invalidates all iterators.
	PrependActivityStreamsCollection(v ActivityStreamsCollection)
	// PrependActivityStreamsCollectionPage prepends a CollectionPage value to
	// the front of a list of the property "anyOf". Invalidates all
	// iterators.
	PrependActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// PrependActivityStreamsCreate prepends a Create value to the front of a
	// list of the property "anyOf". Invalidates all iterators.
	PrependActivityStreamsCreate(v ActivityStreamsCreate)
	// PrependActivityStreamsDelete prepends a Delete value to the front of a
	// list of the property "anyOf". Invalidates all iterators.
	PrependActivityStreamsDelete(v ActivityStreamsDelete)
	// PrependActivityStreamsDislike prepends a Dislike value to the front of
	// a list of the property "anyOf". Invalidates all iterators.
	PrependActivityStreamsDislike(v ActivityStreamsDislike)
	// PrependActivityStreamsDocument prepends a Document value to the front
	// of a list of the property "anyOf". Invalidates all iterators.
	PrependActivityStreamsDocument(v ActivityStreamsDocument)
	// PrependActivityStreamsEvent prepends a Event value to the front of a
	// list of the property "anyOf". Invalidates all iterators.
	PrependActivityStreamsEvent(v ActivityStreamsEvent)
	// PrependActivityStreamsFlag prepends a Flag value to the front of a list
	// of the property "anyOf". Invalidates all iterators.
	PrependActivityStreamsFlag(v ActivityStreamsFlag)
	// PrependActivityStreamsFollow prepends a Follow value to the front of a
	// list of the property "anyOf". Invalidates all iterators.
	PrependActivityStreamsFollow(v ActivityStreamsFollow)
	// PrependActivityStreamsGroup prepends a Group value to the front of a
	// list of the property "anyOf". Invalidates all iterators.
	PrependActivityStreamsGroup(v ActivityStreamsGroup)
	// PrependActivityStreamsIgnore prepends a Ignore value to the front of a
	// list of the property "anyOf". Invalidates all iterators.
	PrependActivityStreamsIgnore(v ActivityStreamsIgnore)
	// PrependActivityStreamsImage prepends a Image value to the front of a
	// list of the property "anyOf". Invalidates all iterators.
	PrependActivityStreamsImage(v ActivityStreamsImage)
	// PrependActivityStreamsIntransitiveActivity prepends a
	// IntransitiveActivity value to the front of a list of the property
	// "anyOf". Invalidates all iterators.
	PrependActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// PrependActivityStreamsInvite prepends a Invite value to the front of a
	// list of the property "anyOf". Invalidates all iterators.
	PrependActivityStreamsInvite(v ActivityStreamsInvite)
	// PrependActivityStreamsJoin prepends a Join value to the front of a list
	// of the property "anyOf". Invalidates all iterators.
	PrependActivityStreamsJoin(v ActivityStreamsJoin)
	// PrependActivityStreamsLeave prepends a Leave value to the front of a
	// list of the property "anyOf". Invalidates all iterators.
	PrependActivityStreamsLeave(v ActivityStreamsLeave)
	// PrependActivityStreamsLike prepends a Like value to the front of a list
	// of the property "anyOf". Invalidates all iterators.
	PrependActivityStreamsLike(v ActivityStreamsLike)
	// PrependActivityStreamsLink prepends a Link value to the front of a list
	// of the property "anyOf". Invalidates all iterators.
	PrependActivityStreamsLink(v ActivityStreamsLink)
	// PrependActivityStreamsListen prepends a Listen value to the front of a
	// list of the property "anyOf". Invalidates all iterators.
	PrependActivityStreamsListen(v ActivityStreamsListen)
	// PrependActivityStreamsMention prepends a Mention value to the front of
	// a list of the property "anyOf". Invalidates all iterators.
	PrependActivityStreamsMention(v ActivityStreamsMention)
	// PrependActivityStreamsMove prepends a Move value to the front of a list
	// of the property "anyOf". Invalidates all iterators.
	PrependActivityStreamsMove(v ActivityStreamsMove)
	// PrependActivityStreamsNote prepends a Note value to the front of a list
	// of the property "anyOf". Invalidates all iterators.
	PrependActivityStreamsNote(v ActivityStreamsNote)
	// PrependActivityStreamsObject prepends a Object value to the front of a
	// list of the property "anyOf". Invalidates all iterators.
	PrependActivityStreamsObject(v ActivityStreamsObject)
	// PrependActivityStreamsOffer prepends a Offer value to the front of a
	// list of the property "anyOf". Invalidates all iterators.
	PrependActivityStreamsOffer(v ActivityStreamsOffer)
	// PrependActivityStreamsOrderedCollection prepends a OrderedCollection
	// value to the front of a list of the property "anyOf". Invalidates
	// all iterators.
	PrependActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// PrependActivityStreamsOrderedCollectionPage prepends a
	// OrderedCollectionPage value to the front of a list of the property
	// "anyOf". Invalidates all iterators.
	PrependActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// PrependActivityStreamsOrganization prepends a Organization value to the
	// front of a list of the property "anyOf". Invalidates all iterators.
	PrependActivityStreamsOrganization(v ActivityStreamsOrganization)
	// PrependActivityStreamsPage prepends a Page value to the front of a list
	// of the property "anyOf". Invalidates all iterators.
	PrependActivityStreamsPage(v ActivityStreamsPage)
	// PrependActivityStreamsPerson prepends a Person value to the front of a
	// list of the property "anyOf". Invalidates all iterators.
	PrependActivityStreamsPerson(v ActivityStreamsPerson)
	// PrependActivityStreamsPlace prepends a Place value to the front of a
	// list of the property "anyOf". Invalidates all iterators.
	PrependActivityStreamsPlace(v ActivityStreamsPlace)
	// PrependActivityStreamsProfile prepends a Profile value to the front of
	// a list of the property "anyOf". Invalidates all iterators.
	PrependActivityStreamsProfile(v ActivityStreamsProfile)
	// PrependActivityStreamsQuestion prepends a Question value to the front
	// of a list of the property "anyOf". Invalidates all iterators.
	PrependActivityStreamsQuestion(v ActivityStreamsQuestion)
	// PrependActivityStreamsRead prepends a Read value to the front of a list
	// of the property "anyOf". Invalidates all iterators.
	PrependActivityStreamsRead(v ActivityStreamsRead)
	// PrependActivityStreamsReject prepends a Reject value to the front of a
	// list of the property "anyOf". Invalidates all iterators.
	PrependActivityStreamsReject(v ActivityStreamsReject)
	// PrependActivityStreamsRelationship prepends a Relationship value to the
	// front of a list of the property "anyOf". Invalidates all iterators.
	PrependActivityStreamsRelationship(v ActivityStreamsRelationship)
	// PrependActivityStreamsRemove prepends a Remove value to the front of a
	// list of the property "anyOf". Invalidates all iterators.
	PrependActivityStreamsRemove(v ActivityStreamsRemove)
	// PrependActivityStreamsService prepends a Service value to the front of
	// a list of the property "anyOf". Invalidates all iterators.
	PrependActivityStreamsService(v ActivityStreamsService)
	// PrependActivityStreamsTentativeAccept prepends a TentativeAccept value
	// to the front of a list of the property "anyOf". Invalidates all
	// iterators.
	PrependActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// PrependActivityStreamsTentativeReject prepends a TentativeReject value
	// to the front of a list of the property "anyOf". Invalidates all
	// iterators.
	PrependActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// PrependActivityStreamsTombstone prepends a Tombstone value to the front
	// of a list of the property "anyOf". Invalidates all iterators.
	PrependActivityStreamsTombstone(v ActivityStreamsTombstone)
	// PrependActivityStreamsTravel prepends a Travel value to the front of a
	// list of the property "anyOf". Invalidates all iterators.
	PrependActivityStreamsTravel(v ActivityStreamsTravel)
	// PrependActivityStreamsUndo prepends a Undo value to the front of a list
	// of the property "anyOf". Invalidates all iterators.
	PrependActivityStreamsUndo(v ActivityStreamsUndo)
	// PrependActivityStreamsUpdate prepends a Update value to the front of a
	// list of the property "anyOf". Invalidates all iterators.
	PrependActivityStreamsUpdate(v ActivityStreamsUpdate)
	// PrependActivityStreamsVideo prepends a Video value to the front of a
	// list of the property "anyOf". Invalidates all iterators.
	PrependActivityStreamsVideo(v ActivityStreamsVideo)
	// PrependActivityStreamsView prepends a View value to the front of a list
	// of the property "anyOf". Invalidates all iterators.
	PrependActivityStreamsView(v ActivityStreamsView)
	// PrependForgeFedBranch prepends a Branch value to the front of a list of
	// the property "anyOf". Invalidates all iterators.
	PrependForgeFedBranch(v ForgeFedBranch)
	// PrependForgeFedCommit prepends a Commit value to the front of a list of
	// the property "anyOf". Invalidates all iterators.
	PrependForgeFedCommit(v ForgeFedCommit)
	// PrependForgeFedPush prepends a Push value to the front of a list of the
	// property "anyOf". Invalidates all iterators.
	PrependForgeFedPush(v ForgeFedPush)
	// PrependForgeFedRepository prepends a Repository value to the front of a
	// list of the property "anyOf". Invalidates all iterators.
	PrependForgeFedRepository(v ForgeFedRepository)
	// PrependForgeFedTicket prepends a Ticket value to the front of a list of
	// the property "anyOf". Invalidates all iterators.
	PrependForgeFedTicket(v ForgeFedTicket)
	// PrependForgeFedTicketDependency prepends a TicketDependency value to
	// the front of a list of the property "anyOf". Invalidates all
	// iterators.
	PrependForgeFedTicketDependency(v ForgeFedTicketDependency)
	// PrependIRI prepends an IRI value to the front of a list of the property
	// "anyOf".
	PrependIRI(v *url.URL)
	// PrependTootEmoji prepends a Emoji value to the front of a list of the
	// property "anyOf". Invalidates all iterators.
	PrependTootEmoji(v TootEmoji)
	// PrependTootIdentityProof prepends a IdentityProof value to the front of
	// a list of the property "anyOf". Invalidates all iterators.
	PrependTootIdentityProof(v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "anyOf". Invalidates all iterators. Returns an error
	// if the type is not a valid one to set for this property.
	PrependType(t Type) error
	// Remove deletes an element at the specified index from a list of the
	// property "anyOf", regardless of its type. Panics if the index is
	// out of bounds. Invalidates all iterators.
	Remove(idx int)
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// SetActivityStreamsAccept sets a Accept value to be at the specified
	// index for the property "anyOf". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsAccept(idx int, v ActivityStreamsAccept)
	// SetActivityStreamsActivity sets a Activity value to be at the specified
	// index for the property "anyOf". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsActivity(idx int, v ActivityStreamsActivity)
	// SetActivityStreamsAdd sets a Add value to be at the specified index for
	// the property "anyOf". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsAdd(idx int, v ActivityStreamsAdd)
	// SetActivityStreamsAnnounce sets a Announce value to be at the specified
	// index for the property "anyOf". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsAnnounce(idx int, v ActivityStreamsAnnounce)
	// SetActivityStreamsApplication sets a Application value to be at the
	// specified index for the property "anyOf". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsApplication(idx int, v ActivityStreamsApplication)
	// SetActivityStreamsArrive sets a Arrive value to be at the specified
	// index for the property "anyOf". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsArrive(idx int, v ActivityStreamsArrive)
	// SetActivityStreamsArticle sets a Article value to be at the specified
	// index for the property "anyOf". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsArticle(idx int, v ActivityStreamsArticle)
	// SetActivityStreamsAudio sets a Audio value to be at the specified index
	// for the property "anyOf". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsAudio(idx int, v ActivityStreamsAudio)
	// SetActivityStreamsBlock sets a Block value to be at the specified index
	// for the property "anyOf". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsBlock(idx int, v ActivityStreamsBlock)
	// SetActivityStreamsCollection sets a Collection value to be at the
	// specified index for the property "anyOf". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsCollection(idx int, v ActivityStreamsCollection)
	// SetActivityStreamsCollectionPage sets a CollectionPage value to be at
	// the specified index for the property "anyOf". Panics if the index
	// is out of bounds. Invalidates all iterators.
	SetActivityStreamsCollectionPage(idx int, v ActivityStreamsCollectionPage)
	// SetActivityStreamsCreate sets a Create value to be at the specified
	// index for the property "anyOf". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsCreate(idx int, v ActivityStreamsCreate)
	// SetActivityStreamsDelete sets a Delete value to be at the specified
	// index for the property "anyOf". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsDelete(idx int, v ActivityStreamsDelete)
	// SetActivityStreamsDislike sets a Dislike value to be at the specified
	// index for the property "anyOf". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsDislike(idx int, v ActivityStreamsDislike)
	// SetActivityStreamsDocument sets a Document value to be at the specified
	// index for the property "anyOf". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsDocument(idx int, v ActivityStreamsDocument)
	// SetActivityStreamsEvent sets a Event value to be at the specified index
	// for the property "anyOf". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsEvent(idx int, v ActivityStreamsEvent)
	// SetActivityStreamsFlag sets a Flag value to be at the specified index
	// for the property "anyOf". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsFlag(idx int, v ActivityStreamsFlag)
	// SetActivityStreamsFollow sets a Follow value to be at the specified
	// index for the property "anyOf". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsFollow(idx int, v ActivityStreamsFollow)
	// SetActivityStreamsGroup sets a Group value to be at the specified index
	// for the property "anyOf". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsGroup(idx int, v ActivityStreamsGroup)
	// SetActivityStreamsIgnore sets a Ignore value to be at the specified
	// index for the property "anyOf". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsIgnore(idx int, v ActivityStreamsIgnore)
	// SetActivityStreamsImage sets a Image value to be at the specified index
	// for the property "anyOf". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsImage(idx int, v ActivityStreamsImage)
	// SetActivityStreamsIntransitiveActivity sets a IntransitiveActivity
	// value to be at the specified index for the property "anyOf". Panics
	// if the index is out of bounds. Invalidates all iterators.
	SetActivityStreamsIntransitiveActivity(idx int, v ActivityStreamsIntransitiveActivity)
	// SetActivityStreamsInvite sets a Invite value to be at the specified
	// index for the property "anyOf". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsInvite(idx int, v ActivityStreamsInvite)
	// SetActivityStreamsJoin sets a Join value to be at the specified index
	// for the property "anyOf". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsJoin(idx int, v ActivityStreamsJoin)
	// SetActivityStreamsLeave sets a Leave value to be at the specified index
	// for the property "anyOf". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsLeave(idx int, v ActivityStreamsLeave)
	// SetActivityStreamsLike sets a Like value to be at the specified index
	// for the property "anyOf". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsLike(idx int, v ActivityStreamsLike)
	// SetActivityStreamsLink sets a Link value to be at the specified index
	// for the property "anyOf". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsLink(idx int, v ActivityStreamsLink)
	// SetActivityStreamsListen sets a Listen value to be at the specified
	// index for the property "anyOf". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsListen(idx int, v ActivityStreamsListen)
	// SetActivityStreamsMention sets a Mention value to be at the specified
	// index for the property "anyOf". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsMention(idx int, v ActivityStreamsMention)
	// SetActivityStreamsMove sets a Move value to be at the specified index
	// for the property "anyOf". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsMove(idx int, v ActivityStreamsMove)
	// SetActivityStreamsNote sets a Note value to be at the specified index
	// for the property "anyOf". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsNote(idx int, v ActivityStreamsNote)
	// SetActivityStreamsObject sets a Object value to be at the specified
	// index for the property "anyOf". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsObject(idx int, v ActivityStreamsObject)
	// SetActivityStreamsOffer sets a Offer value to be at the specified index
	// for the property "anyOf". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsOffer(idx int, v ActivityStreamsOffer)
	// SetActivityStreamsOrderedCollection sets a OrderedCollection value to
	// be at the specified index for the property "anyOf". Panics if the
	// index is out of bounds. Invalidates all iterators.
	SetActivityStreamsOrderedCollection(idx int, v ActivityStreamsOrderedCollection)
	// SetActivityStreamsOrderedCollectionPage sets a OrderedCollectionPage
	// value to be at the specified index for the property "anyOf". Panics
	// if the index is out of bounds. Invalidates all iterators.
	SetActivityStreamsOrderedCollectionPage(idx int, v ActivityStreamsOrderedCollectionPage)
	// SetActivityStreamsOrganization sets a Organization value to be at the
	// specified index for the property "anyOf". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsOrganization(idx int, v ActivityStreamsOrganization)
	// SetActivityStreamsPage sets a Page value to be at the specified index
	// for the property "anyOf". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsPage(idx int, v ActivityStreamsPage)
	// SetActivityStreamsPerson sets a Person value to be at the specified
	// index for the property "anyOf". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsPerson(idx int, v ActivityStreamsPerson)
	// SetActivityStreamsPlace sets a Place value to be at the specified index
	// for the property "anyOf". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsPlace(idx int, v ActivityStreamsPlace)
	// SetActivityStreamsProfile sets a Profile value to be at the specified
	// index for the property "anyOf". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsProfile(idx int, v ActivityStreamsProfile)
	// SetActivityStreamsQuestion sets a Question value to be at the specified
	// index for the property "anyOf". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsQuestion(idx int, v ActivityStreamsQuestion)
	// SetActivityStreamsRead sets a Read value to be at the specified index
	// for the property "anyOf". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsRead(idx int, v ActivityStreamsRead)
	// SetActivityStreamsReject sets a Reject value to be at the specified
	// index for the property "anyOf". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsReject(idx int, v ActivityStreamsReject)
	// SetActivityStreamsRelationship sets a Relationship value to be at the
	// specified index for the property "anyOf". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsRelationship(idx int, v ActivityStreamsRelationship)
	// SetActivityStreamsRemove sets a Remove value to be at the specified
	// index for the property "anyOf". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsRemove(idx int, v ActivityStreamsRemove)
	// SetActivityStreamsService sets a Service value to be at the specified
	// index for the property "anyOf". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsService(idx int, v ActivityStreamsService)
	// SetActivityStreamsTentativeAccept sets a TentativeAccept value to be at
	// the specified index for the property "anyOf". Panics if the index
	// is out of bounds. Invalidates all iterators.
	SetActivityStreamsTentativeAccept(idx int, v ActivityStreamsTentativeAccept)
	// SetActivityStreamsTentativeReject sets a TentativeReject value to be at
	// the specified index for the property "anyOf". Panics if the index
	// is out of bounds. Invalidates all iterators.
	SetActivityStreamsTentativeReject(idx int, v ActivityStreamsTentativeReject)
	// SetActivityStreamsTombstone sets a Tombstone value to be at the
	// specified index for the property "anyOf". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsTombstone(idx int, v ActivityStreamsTombstone)
	// SetActivityStreamsTravel sets a Travel value to be at the specified
	// index for the property "anyOf". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsTravel(idx int, v ActivityStreamsTravel)
	// SetActivityStreamsUndo sets a Undo value to be at the specified index
	// for the property "anyOf". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsUndo(idx int, v ActivityStreamsUndo)
	// SetActivityStreamsUpdate sets a Update value to be at the specified
	// index for the property "anyOf". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsUpdate(idx int, v ActivityStreamsUpdate)
	// SetActivityStreamsVideo sets a Video value to be at the specified index
	// for the property "anyOf". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsVideo(idx int, v ActivityStreamsVideo)
	// SetActivityStreamsView sets a View value to be at the specified index
	// for the property "anyOf". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsView(idx int, v ActivityStreamsView)
	// SetForgeFedBranch sets a Branch value to be at the specified index for
	// the property "anyOf". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedBranch(idx int, v ForgeFedBranch)
	// SetForgeFedCommit sets a Commit value to be at the specified index for
	// the property "anyOf". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedCommit(idx int, v ForgeFedCommit)
	// SetForgeFedPush sets a Push value to be at the specified index for the
	// property "anyOf". Panics if the index is out of bounds. Invalidates
	// all iterators.
	SetForgeFedPush(idx int, v ForgeFedPush)
	// SetForgeFedRepository sets a Repository value to be at the specified
	// index for the property "anyOf". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetForgeFedRepository(idx int, v ForgeFedRepository)
	// SetForgeFedTicket sets a Ticket value to be at the specified index for
	// the property "anyOf". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedTicket(idx int, v ForgeFedTicket)
	// SetForgeFedTicketDependency sets a TicketDependency value to be at the
	// specified index for the property "anyOf". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
	// SetIRI sets an IRI value to be at the specified index for the property
	// "anyOf". Panics if the index is out of bounds.
	SetIRI(idx int, v *url.URL)
	// SetTootEmoji sets a Emoji value to be at the specified index for the
	// property "anyOf". Panics if the index is out of bounds. Invalidates
	// all iterators.
	SetTootEmoji(idx int, v TootEmoji)
	// SetTootIdentityProof sets a IdentityProof value to be at the specified
	// index for the property "anyOf". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetTootIdentityProof(idx int, v TootIdentityProof)
	// SetType sets an arbitrary type value to the specified index of the
	// property "anyOf". Invalidates all iterators. Returns an error if
	// the type is not a valid one to set for this property. Panics if the
	// index is out of bounds.
	SetType(idx int, t Type) error
	// Swap swaps the location of values at two indices for the "anyOf"
	// property.
	Swap(i, j int)
}

Identifies an inclusive option for a Question. Use of anyOf implies that the Question can have multiple answers. To indicate that a Question can have only one answer, use oneOf.

Example 92 (https://www.w3.org/TR/activitystreams-vocabulary/#ex94-jsonld):

{
  "anyOf": [
    {
      "name": "Option A",
      "type": "Note"
    },
    {
      "name": "Option B",
      "type": "Note"
    }
  ],
  "name": "What is the answer?",
  "type": "Question"
}

type ActivityStreamsAnyOfPropertyIterator

type ActivityStreamsAnyOfPropertyIterator interface {
	// GetActivityStreamsAccept returns the value of this property. When
	// IsActivityStreamsAccept returns false, GetActivityStreamsAccept
	// will return an arbitrary value.
	GetActivityStreamsAccept() ActivityStreamsAccept
	// GetActivityStreamsActivity returns the value of this property. When
	// IsActivityStreamsActivity returns false, GetActivityStreamsActivity
	// will return an arbitrary value.
	GetActivityStreamsActivity() ActivityStreamsActivity
	// GetActivityStreamsAdd returns the value of this property. When
	// IsActivityStreamsAdd returns false, GetActivityStreamsAdd will
	// return an arbitrary value.
	GetActivityStreamsAdd() ActivityStreamsAdd
	// GetActivityStreamsAnnounce returns the value of this property. When
	// IsActivityStreamsAnnounce returns false, GetActivityStreamsAnnounce
	// will return an arbitrary value.
	GetActivityStreamsAnnounce() ActivityStreamsAnnounce
	// GetActivityStreamsApplication returns the value of this property. When
	// IsActivityStreamsApplication returns false,
	// GetActivityStreamsApplication will return an arbitrary value.
	GetActivityStreamsApplication() ActivityStreamsApplication
	// GetActivityStreamsArrive returns the value of this property. When
	// IsActivityStreamsArrive returns false, GetActivityStreamsArrive
	// will return an arbitrary value.
	GetActivityStreamsArrive() ActivityStreamsArrive
	// GetActivityStreamsArticle returns the value of this property. When
	// IsActivityStreamsArticle returns false, GetActivityStreamsArticle
	// will return an arbitrary value.
	GetActivityStreamsArticle() ActivityStreamsArticle
	// GetActivityStreamsAudio returns the value of this property. When
	// IsActivityStreamsAudio returns false, GetActivityStreamsAudio will
	// return an arbitrary value.
	GetActivityStreamsAudio() ActivityStreamsAudio
	// GetActivityStreamsBlock returns the value of this property. When
	// IsActivityStreamsBlock returns false, GetActivityStreamsBlock will
	// return an arbitrary value.
	GetActivityStreamsBlock() ActivityStreamsBlock
	// GetActivityStreamsCollection returns the value of this property. When
	// IsActivityStreamsCollection returns false,
	// GetActivityStreamsCollection will return an arbitrary value.
	GetActivityStreamsCollection() ActivityStreamsCollection
	// GetActivityStreamsCollectionPage returns the value of this property.
	// When IsActivityStreamsCollectionPage returns false,
	// GetActivityStreamsCollectionPage will return an arbitrary value.
	GetActivityStreamsCollectionPage() ActivityStreamsCollectionPage
	// GetActivityStreamsCreate returns the value of this property. When
	// IsActivityStreamsCreate returns false, GetActivityStreamsCreate
	// will return an arbitrary value.
	GetActivityStreamsCreate() ActivityStreamsCreate
	// GetActivityStreamsDelete returns the value of this property. When
	// IsActivityStreamsDelete returns false, GetActivityStreamsDelete
	// will return an arbitrary value.
	GetActivityStreamsDelete() ActivityStreamsDelete
	// GetActivityStreamsDislike returns the value of this property. When
	// IsActivityStreamsDislike returns false, GetActivityStreamsDislike
	// will return an arbitrary value.
	GetActivityStreamsDislike() ActivityStreamsDislike
	// GetActivityStreamsDocument returns the value of this property. When
	// IsActivityStreamsDocument returns false, GetActivityStreamsDocument
	// will return an arbitrary value.
	GetActivityStreamsDocument() ActivityStreamsDocument
	// GetActivityStreamsEvent returns the value of this property. When
	// IsActivityStreamsEvent returns false, GetActivityStreamsEvent will
	// return an arbitrary value.
	GetActivityStreamsEvent() ActivityStreamsEvent
	// GetActivityStreamsFlag returns the value of this property. When
	// IsActivityStreamsFlag returns false, GetActivityStreamsFlag will
	// return an arbitrary value.
	GetActivityStreamsFlag() ActivityStreamsFlag
	// GetActivityStreamsFollow returns the value of this property. When
	// IsActivityStreamsFollow returns false, GetActivityStreamsFollow
	// will return an arbitrary value.
	GetActivityStreamsFollow() ActivityStreamsFollow
	// GetActivityStreamsGroup returns the value of this property. When
	// IsActivityStreamsGroup returns false, GetActivityStreamsGroup will
	// return an arbitrary value.
	GetActivityStreamsGroup() ActivityStreamsGroup
	// GetActivityStreamsIgnore returns the value of this property. When
	// IsActivityStreamsIgnore returns false, GetActivityStreamsIgnore
	// will return an arbitrary value.
	GetActivityStreamsIgnore() ActivityStreamsIgnore
	// GetActivityStreamsImage returns the value of this property. When
	// IsActivityStreamsImage returns false, GetActivityStreamsImage will
	// return an arbitrary value.
	GetActivityStreamsImage() ActivityStreamsImage
	// GetActivityStreamsIntransitiveActivity returns the value of this
	// property. When IsActivityStreamsIntransitiveActivity returns false,
	// GetActivityStreamsIntransitiveActivity will return an arbitrary
	// value.
	GetActivityStreamsIntransitiveActivity() ActivityStreamsIntransitiveActivity
	// GetActivityStreamsInvite returns the value of this property. When
	// IsActivityStreamsInvite returns false, GetActivityStreamsInvite
	// will return an arbitrary value.
	GetActivityStreamsInvite() ActivityStreamsInvite
	// GetActivityStreamsJoin returns the value of this property. When
	// IsActivityStreamsJoin returns false, GetActivityStreamsJoin will
	// return an arbitrary value.
	GetActivityStreamsJoin() ActivityStreamsJoin
	// GetActivityStreamsLeave returns the value of this property. When
	// IsActivityStreamsLeave returns false, GetActivityStreamsLeave will
	// return an arbitrary value.
	GetActivityStreamsLeave() ActivityStreamsLeave
	// GetActivityStreamsLike returns the value of this property. When
	// IsActivityStreamsLike returns false, GetActivityStreamsLike will
	// return an arbitrary value.
	GetActivityStreamsLike() ActivityStreamsLike
	// GetActivityStreamsLink returns the value of this property. When
	// IsActivityStreamsLink returns false, GetActivityStreamsLink will
	// return an arbitrary value.
	GetActivityStreamsLink() ActivityStreamsLink
	// GetActivityStreamsListen returns the value of this property. When
	// IsActivityStreamsListen returns false, GetActivityStreamsListen
	// will return an arbitrary value.
	GetActivityStreamsListen() ActivityStreamsListen
	// GetActivityStreamsMention returns the value of this property. When
	// IsActivityStreamsMention returns false, GetActivityStreamsMention
	// will return an arbitrary value.
	GetActivityStreamsMention() ActivityStreamsMention
	// GetActivityStreamsMove returns the value of this property. When
	// IsActivityStreamsMove returns false, GetActivityStreamsMove will
	// return an arbitrary value.
	GetActivityStreamsMove() ActivityStreamsMove
	// GetActivityStreamsNote returns the value of this property. When
	// IsActivityStreamsNote returns false, GetActivityStreamsNote will
	// return an arbitrary value.
	GetActivityStreamsNote() ActivityStreamsNote
	// GetActivityStreamsObject returns the value of this property. When
	// IsActivityStreamsObject returns false, GetActivityStreamsObject
	// will return an arbitrary value.
	GetActivityStreamsObject() ActivityStreamsObject
	// GetActivityStreamsOffer returns the value of this property. When
	// IsActivityStreamsOffer returns false, GetActivityStreamsOffer will
	// return an arbitrary value.
	GetActivityStreamsOffer() ActivityStreamsOffer
	// GetActivityStreamsOrderedCollection returns the value of this property.
	// When IsActivityStreamsOrderedCollection returns false,
	// GetActivityStreamsOrderedCollection will return an arbitrary value.
	GetActivityStreamsOrderedCollection() ActivityStreamsOrderedCollection
	// GetActivityStreamsOrderedCollectionPage returns the value of this
	// property. When IsActivityStreamsOrderedCollectionPage returns
	// false, GetActivityStreamsOrderedCollectionPage will return an
	// arbitrary value.
	GetActivityStreamsOrderedCollectionPage() ActivityStreamsOrderedCollectionPage
	// GetActivityStreamsOrganization returns the value of this property. When
	// IsActivityStreamsOrganization returns false,
	// GetActivityStreamsOrganization will return an arbitrary value.
	GetActivityStreamsOrganization() ActivityStreamsOrganization
	// GetActivityStreamsPage returns the value of this property. When
	// IsActivityStreamsPage returns false, GetActivityStreamsPage will
	// return an arbitrary value.
	GetActivityStreamsPage() ActivityStreamsPage
	// GetActivityStreamsPerson returns the value of this property. When
	// IsActivityStreamsPerson returns false, GetActivityStreamsPerson
	// will return an arbitrary value.
	GetActivityStreamsPerson() ActivityStreamsPerson
	// GetActivityStreamsPlace returns the value of this property. When
	// IsActivityStreamsPlace returns false, GetActivityStreamsPlace will
	// return an arbitrary value.
	GetActivityStreamsPlace() ActivityStreamsPlace
	// GetActivityStreamsProfile returns the value of this property. When
	// IsActivityStreamsProfile returns false, GetActivityStreamsProfile
	// will return an arbitrary value.
	GetActivityStreamsProfile() ActivityStreamsProfile
	// GetActivityStreamsQuestion returns the value of this property. When
	// IsActivityStreamsQuestion returns false, GetActivityStreamsQuestion
	// will return an arbitrary value.
	GetActivityStreamsQuestion() ActivityStreamsQuestion
	// GetActivityStreamsRead returns the value of this property. When
	// IsActivityStreamsRead returns false, GetActivityStreamsRead will
	// return an arbitrary value.
	GetActivityStreamsRead() ActivityStreamsRead
	// GetActivityStreamsReject returns the value of this property. When
	// IsActivityStreamsReject returns false, GetActivityStreamsReject
	// will return an arbitrary value.
	GetActivityStreamsReject() ActivityStreamsReject
	// GetActivityStreamsRelationship returns the value of this property. When
	// IsActivityStreamsRelationship returns false,
	// GetActivityStreamsRelationship will return an arbitrary value.
	GetActivityStreamsRelationship() ActivityStreamsRelationship
	// GetActivityStreamsRemove returns the value of this property. When
	// IsActivityStreamsRemove returns false, GetActivityStreamsRemove
	// will return an arbitrary value.
	GetActivityStreamsRemove() ActivityStreamsRemove
	// GetActivityStreamsService returns the value of this property. When
	// IsActivityStreamsService returns false, GetActivityStreamsService
	// will return an arbitrary value.
	GetActivityStreamsService() ActivityStreamsService
	// GetActivityStreamsTentativeAccept returns the value of this property.
	// When IsActivityStreamsTentativeAccept returns false,
	// GetActivityStreamsTentativeAccept will return an arbitrary value.
	GetActivityStreamsTentativeAccept() ActivityStreamsTentativeAccept
	// GetActivityStreamsTentativeReject returns the value of this property.
	// When IsActivityStreamsTentativeReject returns false,
	// GetActivityStreamsTentativeReject will return an arbitrary value.
	GetActivityStreamsTentativeReject() ActivityStreamsTentativeReject
	// GetActivityStreamsTombstone returns the value of this property. When
	// IsActivityStreamsTombstone returns false,
	// GetActivityStreamsTombstone will return an arbitrary value.
	GetActivityStreamsTombstone() ActivityStreamsTombstone
	// GetActivityStreamsTravel returns the value of this property. When
	// IsActivityStreamsTravel returns false, GetActivityStreamsTravel
	// will return an arbitrary value.
	GetActivityStreamsTravel() ActivityStreamsTravel
	// GetActivityStreamsUndo returns the value of this property. When
	// IsActivityStreamsUndo returns false, GetActivityStreamsUndo will
	// return an arbitrary value.
	GetActivityStreamsUndo() ActivityStreamsUndo
	// GetActivityStreamsUpdate returns the value of this property. When
	// IsActivityStreamsUpdate returns false, GetActivityStreamsUpdate
	// will return an arbitrary value.
	GetActivityStreamsUpdate() ActivityStreamsUpdate
	// GetActivityStreamsVideo returns the value of this property. When
	// IsActivityStreamsVideo returns false, GetActivityStreamsVideo will
	// return an arbitrary value.
	GetActivityStreamsVideo() ActivityStreamsVideo
	// GetActivityStreamsView returns the value of this property. When
	// IsActivityStreamsView returns false, GetActivityStreamsView will
	// return an arbitrary value.
	GetActivityStreamsView() ActivityStreamsView
	// GetForgeFedBranch returns the value of this property. When
	// IsForgeFedBranch returns false, GetForgeFedBranch will return an
	// arbitrary value.
	GetForgeFedBranch() ForgeFedBranch
	// GetForgeFedCommit returns the value of this property. When
	// IsForgeFedCommit returns false, GetForgeFedCommit will return an
	// arbitrary value.
	GetForgeFedCommit() ForgeFedCommit
	// GetForgeFedPush returns the value of this property. When IsForgeFedPush
	// returns false, GetForgeFedPush will return an arbitrary value.
	GetForgeFedPush() ForgeFedPush
	// GetForgeFedRepository returns the value of this property. When
	// IsForgeFedRepository returns false, GetForgeFedRepository will
	// return an arbitrary value.
	GetForgeFedRepository() ForgeFedRepository
	// GetForgeFedTicket returns the value of this property. When
	// IsForgeFedTicket returns false, GetForgeFedTicket will return an
	// arbitrary value.
	GetForgeFedTicket() ForgeFedTicket
	// GetForgeFedTicketDependency returns the value of this property. When
	// IsForgeFedTicketDependency returns false,
	// GetForgeFedTicketDependency will return an arbitrary value.
	GetForgeFedTicketDependency() ForgeFedTicketDependency
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return an arbitrary value.
	GetIRI() *url.URL
	// GetTootEmoji returns the value of this property. When IsTootEmoji
	// returns false, GetTootEmoji will return an arbitrary value.
	GetTootEmoji() TootEmoji
	// GetTootIdentityProof returns the value of this property. When
	// IsTootIdentityProof returns false, GetTootIdentityProof will return
	// an arbitrary value.
	GetTootIdentityProof() TootIdentityProof
	// GetType returns the value in this property as a Type. Returns nil if
	// the value is not an ActivityStreams type, such as an IRI or another
	// value.
	GetType() Type
	// HasAny returns true if any of the different values is set.
	HasAny() bool
	// IsActivityStreamsAccept returns true if this property has a type of
	// "Accept". When true, use the GetActivityStreamsAccept and
	// SetActivityStreamsAccept methods to access and set this property.
	IsActivityStreamsAccept() bool
	// IsActivityStreamsActivity returns true if this property has a type of
	// "Activity". When true, use the GetActivityStreamsActivity and
	// SetActivityStreamsActivity methods to access and set this property.
	IsActivityStreamsActivity() bool
	// IsActivityStreamsAdd returns true if this property has a type of "Add".
	// When true, use the GetActivityStreamsAdd and SetActivityStreamsAdd
	// methods to access and set this property.
	IsActivityStreamsAdd() bool
	// IsActivityStreamsAnnounce returns true if this property has a type of
	// "Announce". When true, use the GetActivityStreamsAnnounce and
	// SetActivityStreamsAnnounce methods to access and set this property.
	IsActivityStreamsAnnounce() bool
	// IsActivityStreamsApplication returns true if this property has a type
	// of "Application". When true, use the GetActivityStreamsApplication
	// and SetActivityStreamsApplication methods to access and set this
	// property.
	IsActivityStreamsApplication() bool
	// IsActivityStreamsArrive returns true if this property has a type of
	// "Arrive". When true, use the GetActivityStreamsArrive and
	// SetActivityStreamsArrive methods to access and set this property.
	IsActivityStreamsArrive() bool
	// IsActivityStreamsArticle returns true if this property has a type of
	// "Article". When true, use the GetActivityStreamsArticle and
	// SetActivityStreamsArticle methods to access and set this property.
	IsActivityStreamsArticle() bool
	// IsActivityStreamsAudio returns true if this property has a type of
	// "Audio". When true, use the GetActivityStreamsAudio and
	// SetActivityStreamsAudio methods to access and set this property.
	IsActivityStreamsAudio() bool
	// IsActivityStreamsBlock returns true if this property has a type of
	// "Block". When true, use the GetActivityStreamsBlock and
	// SetActivityStreamsBlock methods to access and set this property.
	IsActivityStreamsBlock() bool
	// IsActivityStreamsCollection returns true if this property has a type of
	// "Collection". When true, use the GetActivityStreamsCollection and
	// SetActivityStreamsCollection methods to access and set this
	// property.
	IsActivityStreamsCollection() bool
	// IsActivityStreamsCollectionPage returns true if this property has a
	// type of "CollectionPage". When true, use the
	// GetActivityStreamsCollectionPage and
	// SetActivityStreamsCollectionPage methods to access and set this
	// property.
	IsActivityStreamsCollectionPage() bool
	// IsActivityStreamsCreate returns true if this property has a type of
	// "Create". When true, use the GetActivityStreamsCreate and
	// SetActivityStreamsCreate methods to access and set this property.
	IsActivityStreamsCreate() bool
	// IsActivityStreamsDelete returns true if this property has a type of
	// "Delete". When true, use the GetActivityStreamsDelete and
	// SetActivityStreamsDelete methods to access and set this property.
	IsActivityStreamsDelete() bool
	// IsActivityStreamsDislike returns true if this property has a type of
	// "Dislike". When true, use the GetActivityStreamsDislike and
	// SetActivityStreamsDislike methods to access and set this property.
	IsActivityStreamsDislike() bool
	// IsActivityStreamsDocument returns true if this property has a type of
	// "Document". When true, use the GetActivityStreamsDocument and
	// SetActivityStreamsDocument methods to access and set this property.
	IsActivityStreamsDocument() bool
	// IsActivityStreamsEvent returns true if this property has a type of
	// "Event". When true, use the GetActivityStreamsEvent and
	// SetActivityStreamsEvent methods to access and set this property.
	IsActivityStreamsEvent() bool
	// IsActivityStreamsFlag returns true if this property has a type of
	// "Flag". When true, use the GetActivityStreamsFlag and
	// SetActivityStreamsFlag methods to access and set this property.
	IsActivityStreamsFlag() bool
	// IsActivityStreamsFollow returns true if this property has a type of
	// "Follow". When true, use the GetActivityStreamsFollow and
	// SetActivityStreamsFollow methods to access and set this property.
	IsActivityStreamsFollow() bool
	// IsActivityStreamsGroup returns true if this property has a type of
	// "Group". When true, use the GetActivityStreamsGroup and
	// SetActivityStreamsGroup methods to access and set this property.
	IsActivityStreamsGroup() bool
	// IsActivityStreamsIgnore returns true if this property has a type of
	// "Ignore". When true, use the GetActivityStreamsIgnore and
	// SetActivityStreamsIgnore methods to access and set this property.
	IsActivityStreamsIgnore() bool
	// IsActivityStreamsImage returns true if this property has a type of
	// "Image". When true, use the GetActivityStreamsImage and
	// SetActivityStreamsImage methods to access and set this property.
	IsActivityStreamsImage() bool
	// IsActivityStreamsIntransitiveActivity returns true if this property has
	// a type of "IntransitiveActivity". When true, use the
	// GetActivityStreamsIntransitiveActivity and
	// SetActivityStreamsIntransitiveActivity methods to access and set
	// this property.
	IsActivityStreamsIntransitiveActivity() bool
	// IsActivityStreamsInvite returns true if this property has a type of
	// "Invite". When true, use the GetActivityStreamsInvite and
	// SetActivityStreamsInvite methods to access and set this property.
	IsActivityStreamsInvite() bool
	// IsActivityStreamsJoin returns true if this property has a type of
	// "Join". When true, use the GetActivityStreamsJoin and
	// SetActivityStreamsJoin methods to access and set this property.
	IsActivityStreamsJoin() bool
	// IsActivityStreamsLeave returns true if this property has a type of
	// "Leave". When true, use the GetActivityStreamsLeave and
	// SetActivityStreamsLeave methods to access and set this property.
	IsActivityStreamsLeave() bool
	// IsActivityStreamsLike returns true if this property has a type of
	// "Like". When true, use the GetActivityStreamsLike and
	// SetActivityStreamsLike methods to access and set this property.
	IsActivityStreamsLike() bool
	// IsActivityStreamsLink returns true if this property has a type of
	// "Link". When true, use the GetActivityStreamsLink and
	// SetActivityStreamsLink methods to access and set this property.
	IsActivityStreamsLink() bool
	// IsActivityStreamsListen returns true if this property has a type of
	// "Listen". When true, use the GetActivityStreamsListen and
	// SetActivityStreamsListen methods to access and set this property.
	IsActivityStreamsListen() bool
	// IsActivityStreamsMention returns true if this property has a type of
	// "Mention". When true, use the GetActivityStreamsMention and
	// SetActivityStreamsMention methods to access and set this property.
	IsActivityStreamsMention() bool
	// IsActivityStreamsMove returns true if this property has a type of
	// "Move". When true, use the GetActivityStreamsMove and
	// SetActivityStreamsMove methods to access and set this property.
	IsActivityStreamsMove() bool
	// IsActivityStreamsNote returns true if this property has a type of
	// "Note". When true, use the GetActivityStreamsNote and
	// SetActivityStreamsNote methods to access and set this property.
	IsActivityStreamsNote() bool
	// IsActivityStreamsObject returns true if this property has a type of
	// "Object". When true, use the GetActivityStreamsObject and
	// SetActivityStreamsObject methods to access and set this property.
	IsActivityStreamsObject() bool
	// IsActivityStreamsOffer returns true if this property has a type of
	// "Offer". When true, use the GetActivityStreamsOffer and
	// SetActivityStreamsOffer methods to access and set this property.
	IsActivityStreamsOffer() bool
	// IsActivityStreamsOrderedCollection returns true if this property has a
	// type of "OrderedCollection". When true, use the
	// GetActivityStreamsOrderedCollection and
	// SetActivityStreamsOrderedCollection methods to access and set this
	// property.
	IsActivityStreamsOrderedCollection() bool
	// IsActivityStreamsOrderedCollectionPage returns true if this property
	// has a type of "OrderedCollectionPage". When true, use the
	// GetActivityStreamsOrderedCollectionPage and
	// SetActivityStreamsOrderedCollectionPage methods to access and set
	// this property.
	IsActivityStreamsOrderedCollectionPage() bool
	// IsActivityStreamsOrganization returns true if this property has a type
	// of "Organization". When true, use the
	// GetActivityStreamsOrganization and SetActivityStreamsOrganization
	// methods to access and set this property.
	IsActivityStreamsOrganization() bool
	// IsActivityStreamsPage returns true if this property has a type of
	// "Page". When true, use the GetActivityStreamsPage and
	// SetActivityStreamsPage methods to access and set this property.
	IsActivityStreamsPage() bool
	// IsActivityStreamsPerson returns true if this property has a type of
	// "Person". When true, use the GetActivityStreamsPerson and
	// SetActivityStreamsPerson methods to access and set this property.
	IsActivityStreamsPerson() bool
	// IsActivityStreamsPlace returns true if this property has a type of
	// "Place". When true, use the GetActivityStreamsPlace and
	// SetActivityStreamsPlace methods to access and set this property.
	IsActivityStreamsPlace() bool
	// IsActivityStreamsProfile returns true if this property has a type of
	// "Profile". When true, use the GetActivityStreamsProfile and
	// SetActivityStreamsProfile methods to access and set this property.
	IsActivityStreamsProfile() bool
	// IsActivityStreamsQuestion returns true if this property has a type of
	// "Question". When true, use the GetActivityStreamsQuestion and
	// SetActivityStreamsQuestion methods to access and set this property.
	IsActivityStreamsQuestion() bool
	// IsActivityStreamsRead returns true if this property has a type of
	// "Read". When true, use the GetActivityStreamsRead and
	// SetActivityStreamsRead methods to access and set this property.
	IsActivityStreamsRead() bool
	// IsActivityStreamsReject returns true if this property has a type of
	// "Reject". When true, use the GetActivityStreamsReject and
	// SetActivityStreamsReject methods to access and set this property.
	IsActivityStreamsReject() bool
	// IsActivityStreamsRelationship returns true if this property has a type
	// of "Relationship". When true, use the
	// GetActivityStreamsRelationship and SetActivityStreamsRelationship
	// methods to access and set this property.
	IsActivityStreamsRelationship() bool
	// IsActivityStreamsRemove returns true if this property has a type of
	// "Remove". When true, use the GetActivityStreamsRemove and
	// SetActivityStreamsRemove methods to access and set this property.
	IsActivityStreamsRemove() bool
	// IsActivityStreamsService returns true if this property has a type of
	// "Service". When true, use the GetActivityStreamsService and
	// SetActivityStreamsService methods to access and set this property.
	IsActivityStreamsService() bool
	// IsActivityStreamsTentativeAccept returns true if this property has a
	// type of "TentativeAccept". When true, use the
	// GetActivityStreamsTentativeAccept and
	// SetActivityStreamsTentativeAccept methods to access and set this
	// property.
	IsActivityStreamsTentativeAccept() bool
	// IsActivityStreamsTentativeReject returns true if this property has a
	// type of "TentativeReject". When true, use the
	// GetActivityStreamsTentativeReject and
	// SetActivityStreamsTentativeReject methods to access and set this
	// property.
	IsActivityStreamsTentativeReject() bool
	// IsActivityStreamsTombstone returns true if this property has a type of
	// "Tombstone". When true, use the GetActivityStreamsTombstone and
	// SetActivityStreamsTombstone methods to access and set this property.
	IsActivityStreamsTombstone() bool
	// IsActivityStreamsTravel returns true if this property has a type of
	// "Travel". When true, use the GetActivityStreamsTravel and
	// SetActivityStreamsTravel methods to access and set this property.
	IsActivityStreamsTravel() bool
	// IsActivityStreamsUndo returns true if this property has a type of
	// "Undo". When true, use the GetActivityStreamsUndo and
	// SetActivityStreamsUndo methods to access and set this property.
	IsActivityStreamsUndo() bool
	// IsActivityStreamsUpdate returns true if this property has a type of
	// "Update". When true, use the GetActivityStreamsUpdate and
	// SetActivityStreamsUpdate methods to access and set this property.
	IsActivityStreamsUpdate() bool
	// IsActivityStreamsVideo returns true if this property has a type of
	// "Video". When true, use the GetActivityStreamsVideo and
	// SetActivityStreamsVideo methods to access and set this property.
	IsActivityStreamsVideo() bool
	// IsActivityStreamsView returns true if this property has a type of
	// "View". When true, use the GetActivityStreamsView and
	// SetActivityStreamsView methods to access and set this property.
	IsActivityStreamsView() bool
	// IsForgeFedBranch returns true if this property has a type of "Branch".
	// When true, use the GetForgeFedBranch and SetForgeFedBranch methods
	// to access and set this property.
	IsForgeFedBranch() bool
	// IsForgeFedCommit returns true if this property has a type of "Commit".
	// When true, use the GetForgeFedCommit and SetForgeFedCommit methods
	// to access and set this property.
	IsForgeFedCommit() bool
	// IsForgeFedPush returns true if this property has a type of "Push". When
	// true, use the GetForgeFedPush and SetForgeFedPush methods to access
	// and set this property.
	IsForgeFedPush() bool
	// IsForgeFedRepository returns true if this property has a type of
	// "Repository". When true, use the GetForgeFedRepository and
	// SetForgeFedRepository methods to access and set this property.
	IsForgeFedRepository() bool
	// IsForgeFedTicket returns true if this property has a type of "Ticket".
	// When true, use the GetForgeFedTicket and SetForgeFedTicket methods
	// to access and set this property.
	IsForgeFedTicket() bool
	// IsForgeFedTicketDependency returns true if this property has a type of
	// "TicketDependency". When true, use the GetForgeFedTicketDependency
	// and SetForgeFedTicketDependency methods to access and set this
	// property.
	IsForgeFedTicketDependency() bool
	// IsIRI returns true if this property is an IRI. When true, use GetIRI
	// and SetIRI to access and set this property
	IsIRI() bool
	// IsTootEmoji returns true if this property has a type of "Emoji". When
	// true, use the GetTootEmoji and SetTootEmoji methods to access and
	// set this property.
	IsTootEmoji() bool
	// IsTootIdentityProof returns true if this property has a type of
	// "IdentityProof". When true, use the GetTootIdentityProof and
	// SetTootIdentityProof methods to access and set this property.
	IsTootIdentityProof() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsAnyOfPropertyIterator) bool
	// Name returns the name of this property: "ActivityStreamsAnyOf".
	Name() string
	// Next returns the next iterator, or nil if there is no next iterator.
	Next() ActivityStreamsAnyOfPropertyIterator
	// Prev returns the previous iterator, or nil if there is no previous
	// iterator.
	Prev() ActivityStreamsAnyOfPropertyIterator
	// SetActivityStreamsAccept sets the value of this property. Calling
	// IsActivityStreamsAccept afterwards returns true.
	SetActivityStreamsAccept(v ActivityStreamsAccept)
	// SetActivityStreamsActivity sets the value of this property. Calling
	// IsActivityStreamsActivity afterwards returns true.
	SetActivityStreamsActivity(v ActivityStreamsActivity)
	// SetActivityStreamsAdd sets the value of this property. Calling
	// IsActivityStreamsAdd afterwards returns true.
	SetActivityStreamsAdd(v ActivityStreamsAdd)
	// SetActivityStreamsAnnounce sets the value of this property. Calling
	// IsActivityStreamsAnnounce afterwards returns true.
	SetActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// SetActivityStreamsApplication sets the value of this property. Calling
	// IsActivityStreamsApplication afterwards returns true.
	SetActivityStreamsApplication(v ActivityStreamsApplication)
	// SetActivityStreamsArrive sets the value of this property. Calling
	// IsActivityStreamsArrive afterwards returns true.
	SetActivityStreamsArrive(v ActivityStreamsArrive)
	// SetActivityStreamsArticle sets the value of this property. Calling
	// IsActivityStreamsArticle afterwards returns true.
	SetActivityStreamsArticle(v ActivityStreamsArticle)
	// SetActivityStreamsAudio sets the value of this property. Calling
	// IsActivityStreamsAudio afterwards returns true.
	SetActivityStreamsAudio(v ActivityStreamsAudio)
	// SetActivityStreamsBlock sets the value of this property. Calling
	// IsActivityStreamsBlock afterwards returns true.
	SetActivityStreamsBlock(v ActivityStreamsBlock)
	// SetActivityStreamsCollection sets the value of this property. Calling
	// IsActivityStreamsCollection afterwards returns true.
	SetActivityStreamsCollection(v ActivityStreamsCollection)
	// SetActivityStreamsCollectionPage sets the value of this property.
	// Calling IsActivityStreamsCollectionPage afterwards returns true.
	SetActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// SetActivityStreamsCreate sets the value of this property. Calling
	// IsActivityStreamsCreate afterwards returns true.
	SetActivityStreamsCreate(v ActivityStreamsCreate)
	// SetActivityStreamsDelete sets the value of this property. Calling
	// IsActivityStreamsDelete afterwards returns true.
	SetActivityStreamsDelete(v ActivityStreamsDelete)
	// SetActivityStreamsDislike sets the value of this property. Calling
	// IsActivityStreamsDislike afterwards returns true.
	SetActivityStreamsDislike(v ActivityStreamsDislike)
	// SetActivityStreamsDocument sets the value of this property. Calling
	// IsActivityStreamsDocument afterwards returns true.
	SetActivityStreamsDocument(v ActivityStreamsDocument)
	// SetActivityStreamsEvent sets the value of this property. Calling
	// IsActivityStreamsEvent afterwards returns true.
	SetActivityStreamsEvent(v ActivityStreamsEvent)
	// SetActivityStreamsFlag sets the value of this property. Calling
	// IsActivityStreamsFlag afterwards returns true.
	SetActivityStreamsFlag(v ActivityStreamsFlag)
	// SetActivityStreamsFollow sets the value of this property. Calling
	// IsActivityStreamsFollow afterwards returns true.
	SetActivityStreamsFollow(v ActivityStreamsFollow)
	// SetActivityStreamsGroup sets the value of this property. Calling
	// IsActivityStreamsGroup afterwards returns true.
	SetActivityStreamsGroup(v ActivityStreamsGroup)
	// SetActivityStreamsIgnore sets the value of this property. Calling
	// IsActivityStreamsIgnore afterwards returns true.
	SetActivityStreamsIgnore(v ActivityStreamsIgnore)
	// SetActivityStreamsImage sets the value of this property. Calling
	// IsActivityStreamsImage afterwards returns true.
	SetActivityStreamsImage(v ActivityStreamsImage)
	// SetActivityStreamsIntransitiveActivity sets the value of this property.
	// Calling IsActivityStreamsIntransitiveActivity afterwards returns
	// true.
	SetActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// SetActivityStreamsInvite sets the value of this property. Calling
	// IsActivityStreamsInvite afterwards returns true.
	SetActivityStreamsInvite(v ActivityStreamsInvite)
	// SetActivityStreamsJoin sets the value of this property. Calling
	// IsActivityStreamsJoin afterwards returns true.
	SetActivityStreamsJoin(v ActivityStreamsJoin)
	// SetActivityStreamsLeave sets the value of this property. Calling
	// IsActivityStreamsLeave afterwards returns true.
	SetActivityStreamsLeave(v ActivityStreamsLeave)
	// SetActivityStreamsLike sets the value of this property. Calling
	// IsActivityStreamsLike afterwards returns true.
	SetActivityStreamsLike(v ActivityStreamsLike)
	// SetActivityStreamsLink sets the value of this property. Calling
	// IsActivityStreamsLink afterwards returns true.
	SetActivityStreamsLink(v ActivityStreamsLink)
	// SetActivityStreamsListen sets the value of this property. Calling
	// IsActivityStreamsListen afterwards returns true.
	SetActivityStreamsListen(v ActivityStreamsListen)
	// SetActivityStreamsMention sets the value of this property. Calling
	// IsActivityStreamsMention afterwards returns true.
	SetActivityStreamsMention(v ActivityStreamsMention)
	// SetActivityStreamsMove sets the value of this property. Calling
	// IsActivityStreamsMove afterwards returns true.
	SetActivityStreamsMove(v ActivityStreamsMove)
	// SetActivityStreamsNote sets the value of this property. Calling
	// IsActivityStreamsNote afterwards returns true.
	SetActivityStreamsNote(v ActivityStreamsNote)
	// SetActivityStreamsObject sets the value of this property. Calling
	// IsActivityStreamsObject afterwards returns true.
	SetActivityStreamsObject(v ActivityStreamsObject)
	// SetActivityStreamsOffer sets the value of this property. Calling
	// IsActivityStreamsOffer afterwards returns true.
	SetActivityStreamsOffer(v ActivityStreamsOffer)
	// SetActivityStreamsOrderedCollection sets the value of this property.
	// Calling IsActivityStreamsOrderedCollection afterwards returns true.
	SetActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// SetActivityStreamsOrderedCollectionPage sets the value of this
	// property. Calling IsActivityStreamsOrderedCollectionPage afterwards
	// returns true.
	SetActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// SetActivityStreamsOrganization sets the value of this property. Calling
	// IsActivityStreamsOrganization afterwards returns true.
	SetActivityStreamsOrganization(v ActivityStreamsOrganization)
	// SetActivityStreamsPage sets the value of this property. Calling
	// IsActivityStreamsPage afterwards returns true.
	SetActivityStreamsPage(v ActivityStreamsPage)
	// SetActivityStreamsPerson sets the value of this property. Calling
	// IsActivityStreamsPerson afterwards returns true.
	SetActivityStreamsPerson(v ActivityStreamsPerson)
	// SetActivityStreamsPlace sets the value of this property. Calling
	// IsActivityStreamsPlace afterwards returns true.
	SetActivityStreamsPlace(v ActivityStreamsPlace)
	// SetActivityStreamsProfile sets the value of this property. Calling
	// IsActivityStreamsProfile afterwards returns true.
	SetActivityStreamsProfile(v ActivityStreamsProfile)
	// SetActivityStreamsQuestion sets the value of this property. Calling
	// IsActivityStreamsQuestion afterwards returns true.
	SetActivityStreamsQuestion(v ActivityStreamsQuestion)
	// SetActivityStreamsRead sets the value of this property. Calling
	// IsActivityStreamsRead afterwards returns true.
	SetActivityStreamsRead(v ActivityStreamsRead)
	// SetActivityStreamsReject sets the value of this property. Calling
	// IsActivityStreamsReject afterwards returns true.
	SetActivityStreamsReject(v ActivityStreamsReject)
	// SetActivityStreamsRelationship sets the value of this property. Calling
	// IsActivityStreamsRelationship afterwards returns true.
	SetActivityStreamsRelationship(v ActivityStreamsRelationship)
	// SetActivityStreamsRemove sets the value of this property. Calling
	// IsActivityStreamsRemove afterwards returns true.
	SetActivityStreamsRemove(v ActivityStreamsRemove)
	// SetActivityStreamsService sets the value of this property. Calling
	// IsActivityStreamsService afterwards returns true.
	SetActivityStreamsService(v ActivityStreamsService)
	// SetActivityStreamsTentativeAccept sets the value of this property.
	// Calling IsActivityStreamsTentativeAccept afterwards returns true.
	SetActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// SetActivityStreamsTentativeReject sets the value of this property.
	// Calling IsActivityStreamsTentativeReject afterwards returns true.
	SetActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// SetActivityStreamsTombstone sets the value of this property. Calling
	// IsActivityStreamsTombstone afterwards returns true.
	SetActivityStreamsTombstone(v ActivityStreamsTombstone)
	// SetActivityStreamsTravel sets the value of this property. Calling
	// IsActivityStreamsTravel afterwards returns true.
	SetActivityStreamsTravel(v ActivityStreamsTravel)
	// SetActivityStreamsUndo sets the value of this property. Calling
	// IsActivityStreamsUndo afterwards returns true.
	SetActivityStreamsUndo(v ActivityStreamsUndo)
	// SetActivityStreamsUpdate sets the value of this property. Calling
	// IsActivityStreamsUpdate afterwards returns true.
	SetActivityStreamsUpdate(v ActivityStreamsUpdate)
	// SetActivityStreamsVideo sets the value of this property. Calling
	// IsActivityStreamsVideo afterwards returns true.
	SetActivityStreamsVideo(v ActivityStreamsVideo)
	// SetActivityStreamsView sets the value of this property. Calling
	// IsActivityStreamsView afterwards returns true.
	SetActivityStreamsView(v ActivityStreamsView)
	// SetForgeFedBranch sets the value of this property. Calling
	// IsForgeFedBranch afterwards returns true.
	SetForgeFedBranch(v ForgeFedBranch)
	// SetForgeFedCommit sets the value of this property. Calling
	// IsForgeFedCommit afterwards returns true.
	SetForgeFedCommit(v ForgeFedCommit)
	// SetForgeFedPush sets the value of this property. Calling IsForgeFedPush
	// afterwards returns true.
	SetForgeFedPush(v ForgeFedPush)
	// SetForgeFedRepository sets the value of this property. Calling
	// IsForgeFedRepository afterwards returns true.
	SetForgeFedRepository(v ForgeFedRepository)
	// SetForgeFedTicket sets the value of this property. Calling
	// IsForgeFedTicket afterwards returns true.
	SetForgeFedTicket(v ForgeFedTicket)
	// SetForgeFedTicketDependency sets the value of this property. Calling
	// IsForgeFedTicketDependency afterwards returns true.
	SetForgeFedTicketDependency(v ForgeFedTicketDependency)
	// SetIRI sets the value of this property. Calling IsIRI afterwards
	// returns true.
	SetIRI(v *url.URL)
	// SetTootEmoji sets the value of this property. Calling IsTootEmoji
	// afterwards returns true.
	SetTootEmoji(v TootEmoji)
	// SetTootIdentityProof sets the value of this property. Calling
	// IsTootIdentityProof afterwards returns true.
	SetTootIdentityProof(v TootIdentityProof)
	// SetType attempts to set the property for the arbitrary type. Returns an
	// error if it is not a valid type to set on this property.
	SetType(t Type) error
}

ActivityStreamsAnyOfPropertyIterator represents a single value for the "anyOf" property.

type ActivityStreamsApplication

type ActivityStreamsApplication interface {
	// GetActivityStreamsAltitude returns the "altitude" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAltitude() ActivityStreamsAltitudeProperty
	// GetActivityStreamsAttachment returns the "attachment" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAttachment() ActivityStreamsAttachmentProperty
	// GetActivityStreamsAttributedTo returns the "attributedTo" property if
	// it exists, and nil otherwise.
	GetActivityStreamsAttributedTo() ActivityStreamsAttributedToProperty
	// GetActivityStreamsAudience returns the "audience" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAudience() ActivityStreamsAudienceProperty
	// GetActivityStreamsBcc returns the "bcc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBcc() ActivityStreamsBccProperty
	// GetActivityStreamsBto returns the "bto" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBto() ActivityStreamsBtoProperty
	// GetActivityStreamsCc returns the "cc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsCc() ActivityStreamsCcProperty
	// GetActivityStreamsContent returns the "content" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContent() ActivityStreamsContentProperty
	// GetActivityStreamsContext returns the "context" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContext() ActivityStreamsContextProperty
	// GetActivityStreamsDuration returns the "duration" property if it
	// exists, and nil otherwise.
	GetActivityStreamsDuration() ActivityStreamsDurationProperty
	// GetActivityStreamsEndTime returns the "endTime" property if it exists,
	// and nil otherwise.
	GetActivityStreamsEndTime() ActivityStreamsEndTimeProperty
	// GetActivityStreamsFollowers returns the "followers" property if it
	// exists, and nil otherwise.
	GetActivityStreamsFollowers() ActivityStreamsFollowersProperty
	// GetActivityStreamsFollowing returns the "following" property if it
	// exists, and nil otherwise.
	GetActivityStreamsFollowing() ActivityStreamsFollowingProperty
	// GetActivityStreamsGenerator returns the "generator" property if it
	// exists, and nil otherwise.
	GetActivityStreamsGenerator() ActivityStreamsGeneratorProperty
	// GetActivityStreamsIcon returns the "icon" property if it exists, and
	// nil otherwise.
	GetActivityStreamsIcon() ActivityStreamsIconProperty
	// GetActivityStreamsImage returns the "image" property if it exists, and
	// nil otherwise.
	GetActivityStreamsImage() ActivityStreamsImageProperty
	// GetActivityStreamsInReplyTo returns the "inReplyTo" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInReplyTo() ActivityStreamsInReplyToProperty
	// GetActivityStreamsInbox returns the "inbox" property if it exists, and
	// nil otherwise.
	GetActivityStreamsInbox() ActivityStreamsInboxProperty
	// GetActivityStreamsLiked returns the "liked" property if it exists, and
	// nil otherwise.
	GetActivityStreamsLiked() ActivityStreamsLikedProperty
	// GetActivityStreamsLikes returns the "likes" property if it exists, and
	// nil otherwise.
	GetActivityStreamsLikes() ActivityStreamsLikesProperty
	// GetActivityStreamsLocation returns the "location" property if it
	// exists, and nil otherwise.
	GetActivityStreamsLocation() ActivityStreamsLocationProperty
	// GetActivityStreamsMediaType returns the "mediaType" property if it
	// exists, and nil otherwise.
	GetActivityStreamsMediaType() ActivityStreamsMediaTypeProperty
	// GetActivityStreamsName returns the "name" property if it exists, and
	// nil otherwise.
	GetActivityStreamsName() ActivityStreamsNameProperty
	// GetActivityStreamsObject returns the "object" property if it exists,
	// and nil otherwise.
	GetActivityStreamsObject() ActivityStreamsObjectProperty
	// GetActivityStreamsOutbox returns the "outbox" property if it exists,
	// and nil otherwise.
	GetActivityStreamsOutbox() ActivityStreamsOutboxProperty
	// GetActivityStreamsPreferredUsername returns the "preferredUsername"
	// property if it exists, and nil otherwise.
	GetActivityStreamsPreferredUsername() ActivityStreamsPreferredUsernameProperty
	// GetActivityStreamsPreview returns the "preview" property if it exists,
	// and nil otherwise.
	GetActivityStreamsPreview() ActivityStreamsPreviewProperty
	// GetActivityStreamsPublished returns the "published" property if it
	// exists, and nil otherwise.
	GetActivityStreamsPublished() ActivityStreamsPublishedProperty
	// GetActivityStreamsReplies returns the "replies" property if it exists,
	// and nil otherwise.
	GetActivityStreamsReplies() ActivityStreamsRepliesProperty
	// GetActivityStreamsShares returns the "shares" property if it exists,
	// and nil otherwise.
	GetActivityStreamsShares() ActivityStreamsSharesProperty
	// GetActivityStreamsSource returns the "source" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSource() ActivityStreamsSourceProperty
	// GetActivityStreamsStartTime returns the "startTime" property if it
	// exists, and nil otherwise.
	GetActivityStreamsStartTime() ActivityStreamsStartTimeProperty
	// GetActivityStreamsStreams returns the "streams" property if it exists,
	// and nil otherwise.
	GetActivityStreamsStreams() ActivityStreamsStreamsProperty
	// GetActivityStreamsSummary returns the "summary" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSummary() ActivityStreamsSummaryProperty
	// GetActivityStreamsTag returns the "tag" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTag() ActivityStreamsTagProperty
	// GetActivityStreamsTo returns the "to" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTo() ActivityStreamsToProperty
	// GetActivityStreamsUpdated returns the "updated" property if it exists,
	// and nil otherwise.
	GetActivityStreamsUpdated() ActivityStreamsUpdatedProperty
	// GetActivityStreamsUrl returns the "url" property if it exists, and nil
	// otherwise.
	GetActivityStreamsUrl() ActivityStreamsUrlProperty
	// GetForgeFedTeam returns the "team" property if it exists, and nil
	// otherwise.
	GetForgeFedTeam() ForgeFedTeamProperty
	// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
	// it exists, and nil otherwise.
	GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
	// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
	// it exists, and nil otherwise.
	GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
	// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
	GetJSONLDId() JSONLDIdProperty
	// GetJSONLDType returns the "type" property if it exists, and nil
	// otherwise.
	GetJSONLDType() JSONLDTypeProperty
	// GetTootDiscoverable returns the "discoverable" property if it exists,
	// and nil otherwise.
	GetTootDiscoverable() TootDiscoverableProperty
	// GetTootFeatured returns the "featured" property if it exists, and nil
	// otherwise.
	GetTootFeatured() TootFeaturedProperty
	// GetTypeName returns the name of this type.
	GetTypeName() string
	// GetUnknownProperties returns the unknown properties for the Application
	// type. Note that this should not be used by app developers. It is
	// only used to help determine which implementation is LessThan the
	// other. Developers who are creating a different implementation of
	// this type's interface can use this method in their LessThan
	// implementation, but routine ActivityPub applications should not use
	// this to bypass the code generation tool.
	GetUnknownProperties() map[string]interface{}
	// GetW3IDSecurityV1PublicKey returns the "publicKey" property if it
	// exists, and nil otherwise.
	GetW3IDSecurityV1PublicKey() W3IDSecurityV1PublicKeyProperty
	// IsExtending returns true if the Application type extends from the other
	// type.
	IsExtending(other Type) bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this type and the specific properties that are set. The value
	// in the map is the alias used to import the type and its properties.
	JSONLDContext() map[string]string
	// LessThan computes if this Application is lesser, with an arbitrary but
	// stable determination.
	LessThan(o ActivityStreamsApplication) bool
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format.
	Serialize() (map[string]interface{}, error)
	// SetActivityStreamsAltitude sets the "altitude" property.
	SetActivityStreamsAltitude(i ActivityStreamsAltitudeProperty)
	// SetActivityStreamsAttachment sets the "attachment" property.
	SetActivityStreamsAttachment(i ActivityStreamsAttachmentProperty)
	// SetActivityStreamsAttributedTo sets the "attributedTo" property.
	SetActivityStreamsAttributedTo(i ActivityStreamsAttributedToProperty)
	// SetActivityStreamsAudience sets the "audience" property.
	SetActivityStreamsAudience(i ActivityStreamsAudienceProperty)
	// SetActivityStreamsBcc sets the "bcc" property.
	SetActivityStreamsBcc(i ActivityStreamsBccProperty)
	// SetActivityStreamsBto sets the "bto" property.
	SetActivityStreamsBto(i ActivityStreamsBtoProperty)
	// SetActivityStreamsCc sets the "cc" property.
	SetActivityStreamsCc(i ActivityStreamsCcProperty)
	// SetActivityStreamsContent sets the "content" property.
	SetActivityStreamsContent(i ActivityStreamsContentProperty)
	// SetActivityStreamsContext sets the "context" property.
	SetActivityStreamsContext(i ActivityStreamsContextProperty)
	// SetActivityStreamsDuration sets the "duration" property.
	SetActivityStreamsDuration(i ActivityStreamsDurationProperty)
	// SetActivityStreamsEndTime sets the "endTime" property.
	SetActivityStreamsEndTime(i ActivityStreamsEndTimeProperty)
	// SetActivityStreamsFollowers sets the "followers" property.
	SetActivityStreamsFollowers(i ActivityStreamsFollowersProperty)
	// SetActivityStreamsFollowing sets the "following" property.
	SetActivityStreamsFollowing(i ActivityStreamsFollowingProperty)
	// SetActivityStreamsGenerator sets the "generator" property.
	SetActivityStreamsGenerator(i ActivityStreamsGeneratorProperty)
	// SetActivityStreamsIcon sets the "icon" property.
	SetActivityStreamsIcon(i ActivityStreamsIconProperty)
	// SetActivityStreamsImage sets the "image" property.
	SetActivityStreamsImage(i ActivityStreamsImageProperty)
	// SetActivityStreamsInReplyTo sets the "inReplyTo" property.
	SetActivityStreamsInReplyTo(i ActivityStreamsInReplyToProperty)
	// SetActivityStreamsInbox sets the "inbox" property.
	SetActivityStreamsInbox(i ActivityStreamsInboxProperty)
	// SetActivityStreamsLiked sets the "liked" property.
	SetActivityStreamsLiked(i ActivityStreamsLikedProperty)
	// SetActivityStreamsLikes sets the "likes" property.
	SetActivityStreamsLikes(i ActivityStreamsLikesProperty)
	// SetActivityStreamsLocation sets the "location" property.
	SetActivityStreamsLocation(i ActivityStreamsLocationProperty)
	// SetActivityStreamsMediaType sets the "mediaType" property.
	SetActivityStreamsMediaType(i ActivityStreamsMediaTypeProperty)
	// SetActivityStreamsName sets the "name" property.
	SetActivityStreamsName(i ActivityStreamsNameProperty)
	// SetActivityStreamsObject sets the "object" property.
	SetActivityStreamsObject(i ActivityStreamsObjectProperty)
	// SetActivityStreamsOutbox sets the "outbox" property.
	SetActivityStreamsOutbox(i ActivityStreamsOutboxProperty)
	// SetActivityStreamsPreferredUsername sets the "preferredUsername"
	// property.
	SetActivityStreamsPreferredUsername(i ActivityStreamsPreferredUsernameProperty)
	// SetActivityStreamsPreview sets the "preview" property.
	SetActivityStreamsPreview(i ActivityStreamsPreviewProperty)
	// SetActivityStreamsPublished sets the "published" property.
	SetActivityStreamsPublished(i ActivityStreamsPublishedProperty)
	// SetActivityStreamsReplies sets the "replies" property.
	SetActivityStreamsReplies(i ActivityStreamsRepliesProperty)
	// SetActivityStreamsShares sets the "shares" property.
	SetActivityStreamsShares(i ActivityStreamsSharesProperty)
	// SetActivityStreamsSource sets the "source" property.
	SetActivityStreamsSource(i ActivityStreamsSourceProperty)
	// SetActivityStreamsStartTime sets the "startTime" property.
	SetActivityStreamsStartTime(i ActivityStreamsStartTimeProperty)
	// SetActivityStreamsStreams sets the "streams" property.
	SetActivityStreamsStreams(i ActivityStreamsStreamsProperty)
	// SetActivityStreamsSummary sets the "summary" property.
	SetActivityStreamsSummary(i ActivityStreamsSummaryProperty)
	// SetActivityStreamsTag sets the "tag" property.
	SetActivityStreamsTag(i ActivityStreamsTagProperty)
	// SetActivityStreamsTo sets the "to" property.
	SetActivityStreamsTo(i ActivityStreamsToProperty)
	// SetActivityStreamsUpdated sets the "updated" property.
	SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
	// SetActivityStreamsUrl sets the "url" property.
	SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
	// SetForgeFedTeam sets the "team" property.
	SetForgeFedTeam(i ForgeFedTeamProperty)
	// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
	SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
	// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
	SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
	// SetJSONLDId sets the "id" property.
	SetJSONLDId(i JSONLDIdProperty)
	// SetJSONLDType sets the "type" property.
	SetJSONLDType(i JSONLDTypeProperty)
	// SetTootDiscoverable sets the "discoverable" property.
	SetTootDiscoverable(i TootDiscoverableProperty)
	// SetTootFeatured sets the "featured" property.
	SetTootFeatured(i TootFeaturedProperty)
	// SetW3IDSecurityV1PublicKey sets the "publicKey" property.
	SetW3IDSecurityV1PublicKey(i W3IDSecurityV1PublicKeyProperty)
	// VocabularyURI returns the vocabulary's URI as a string.
	VocabularyURI() string
}

Describes a software application.

Example 42 (https://www.w3.org/TR/activitystreams-vocabulary/#ex34-jsonld):

{
  "name": "Exampletron 3000",
  "type": "Application"
}

type ActivityStreamsArrive

type ActivityStreamsArrive interface {
	// GetActivityStreamsActor returns the "actor" property if it exists, and
	// nil otherwise.
	GetActivityStreamsActor() ActivityStreamsActorProperty
	// GetActivityStreamsAltitude returns the "altitude" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAltitude() ActivityStreamsAltitudeProperty
	// GetActivityStreamsAttachment returns the "attachment" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAttachment() ActivityStreamsAttachmentProperty
	// GetActivityStreamsAttributedTo returns the "attributedTo" property if
	// it exists, and nil otherwise.
	GetActivityStreamsAttributedTo() ActivityStreamsAttributedToProperty
	// GetActivityStreamsAudience returns the "audience" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAudience() ActivityStreamsAudienceProperty
	// GetActivityStreamsBcc returns the "bcc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBcc() ActivityStreamsBccProperty
	// GetActivityStreamsBto returns the "bto" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBto() ActivityStreamsBtoProperty
	// GetActivityStreamsCc returns the "cc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsCc() ActivityStreamsCcProperty
	// GetActivityStreamsContent returns the "content" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContent() ActivityStreamsContentProperty
	// GetActivityStreamsContext returns the "context" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContext() ActivityStreamsContextProperty
	// GetActivityStreamsDuration returns the "duration" property if it
	// exists, and nil otherwise.
	GetActivityStreamsDuration() ActivityStreamsDurationProperty
	// GetActivityStreamsEndTime returns the "endTime" property if it exists,
	// and nil otherwise.
	GetActivityStreamsEndTime() ActivityStreamsEndTimeProperty
	// GetActivityStreamsGenerator returns the "generator" property if it
	// exists, and nil otherwise.
	GetActivityStreamsGenerator() ActivityStreamsGeneratorProperty
	// GetActivityStreamsIcon returns the "icon" property if it exists, and
	// nil otherwise.
	GetActivityStreamsIcon() ActivityStreamsIconProperty
	// GetActivityStreamsImage returns the "image" property if it exists, and
	// nil otherwise.
	GetActivityStreamsImage() ActivityStreamsImageProperty
	// GetActivityStreamsInReplyTo returns the "inReplyTo" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInReplyTo() ActivityStreamsInReplyToProperty
	// GetActivityStreamsInstrument returns the "instrument" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInstrument() ActivityStreamsInstrumentProperty
	// GetActivityStreamsLikes returns the "likes" property if it exists, and
	// nil otherwise.
	GetActivityStreamsLikes() ActivityStreamsLikesProperty
	// GetActivityStreamsLocation returns the "location" property if it
	// exists, and nil otherwise.
	GetActivityStreamsLocation() ActivityStreamsLocationProperty
	// GetActivityStreamsMediaType returns the "mediaType" property if it
	// exists, and nil otherwise.
	GetActivityStreamsMediaType() ActivityStreamsMediaTypeProperty
	// GetActivityStreamsName returns the "name" property if it exists, and
	// nil otherwise.
	GetActivityStreamsName() ActivityStreamsNameProperty
	// GetActivityStreamsOrigin returns the "origin" property if it exists,
	// and nil otherwise.
	GetActivityStreamsOrigin() ActivityStreamsOriginProperty
	// GetActivityStreamsPreview returns the "preview" property if it exists,
	// and nil otherwise.
	GetActivityStreamsPreview() ActivityStreamsPreviewProperty
	// GetActivityStreamsPublished returns the "published" property if it
	// exists, and nil otherwise.
	GetActivityStreamsPublished() ActivityStreamsPublishedProperty
	// GetActivityStreamsReplies returns the "replies" property if it exists,
	// and nil otherwise.
	GetActivityStreamsReplies() ActivityStreamsRepliesProperty
	// GetActivityStreamsResult returns the "result" property if it exists,
	// and nil otherwise.
	GetActivityStreamsResult() ActivityStreamsResultProperty
	// GetActivityStreamsShares returns the "shares" property if it exists,
	// and nil otherwise.
	GetActivityStreamsShares() ActivityStreamsSharesProperty
	// GetActivityStreamsSource returns the "source" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSource() ActivityStreamsSourceProperty
	// GetActivityStreamsStartTime returns the "startTime" property if it
	// exists, and nil otherwise.
	GetActivityStreamsStartTime() ActivityStreamsStartTimeProperty
	// GetActivityStreamsSummary returns the "summary" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSummary() ActivityStreamsSummaryProperty
	// GetActivityStreamsTag returns the "tag" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTag() ActivityStreamsTagProperty
	// GetActivityStreamsTarget returns the "target" property if it exists,
	// and nil otherwise.
	GetActivityStreamsTarget() ActivityStreamsTargetProperty
	// GetActivityStreamsTo returns the "to" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTo() ActivityStreamsToProperty
	// GetActivityStreamsUpdated returns the "updated" property if it exists,
	// and nil otherwise.
	GetActivityStreamsUpdated() ActivityStreamsUpdatedProperty
	// GetActivityStreamsUrl returns the "url" property if it exists, and nil
	// otherwise.
	GetActivityStreamsUrl() ActivityStreamsUrlProperty
	// GetForgeFedTeam returns the "team" property if it exists, and nil
	// otherwise.
	GetForgeFedTeam() ForgeFedTeamProperty
	// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
	// it exists, and nil otherwise.
	GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
	// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
	// it exists, and nil otherwise.
	GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
	// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
	GetJSONLDId() JSONLDIdProperty
	// GetJSONLDType returns the "type" property if it exists, and nil
	// otherwise.
	GetJSONLDType() JSONLDTypeProperty
	// GetTypeName returns the name of this type.
	GetTypeName() string
	// GetUnknownProperties returns the unknown properties for the Arrive
	// type. Note that this should not be used by app developers. It is
	// only used to help determine which implementation is LessThan the
	// other. Developers who are creating a different implementation of
	// this type's interface can use this method in their LessThan
	// implementation, but routine ActivityPub applications should not use
	// this to bypass the code generation tool.
	GetUnknownProperties() map[string]interface{}
	// IsExtending returns true if the Arrive type extends from the other type.
	IsExtending(other Type) bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this type and the specific properties that are set. The value
	// in the map is the alias used to import the type and its properties.
	JSONLDContext() map[string]string
	// LessThan computes if this Arrive is lesser, with an arbitrary but
	// stable determination.
	LessThan(o ActivityStreamsArrive) bool
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format.
	Serialize() (map[string]interface{}, error)
	// SetActivityStreamsActor sets the "actor" property.
	SetActivityStreamsActor(i ActivityStreamsActorProperty)
	// SetActivityStreamsAltitude sets the "altitude" property.
	SetActivityStreamsAltitude(i ActivityStreamsAltitudeProperty)
	// SetActivityStreamsAttachment sets the "attachment" property.
	SetActivityStreamsAttachment(i ActivityStreamsAttachmentProperty)
	// SetActivityStreamsAttributedTo sets the "attributedTo" property.
	SetActivityStreamsAttributedTo(i ActivityStreamsAttributedToProperty)
	// SetActivityStreamsAudience sets the "audience" property.
	SetActivityStreamsAudience(i ActivityStreamsAudienceProperty)
	// SetActivityStreamsBcc sets the "bcc" property.
	SetActivityStreamsBcc(i ActivityStreamsBccProperty)
	// SetActivityStreamsBto sets the "bto" property.
	SetActivityStreamsBto(i ActivityStreamsBtoProperty)
	// SetActivityStreamsCc sets the "cc" property.
	SetActivityStreamsCc(i ActivityStreamsCcProperty)
	// SetActivityStreamsContent sets the "content" property.
	SetActivityStreamsContent(i ActivityStreamsContentProperty)
	// SetActivityStreamsContext sets the "context" property.
	SetActivityStreamsContext(i ActivityStreamsContextProperty)
	// SetActivityStreamsDuration sets the "duration" property.
	SetActivityStreamsDuration(i ActivityStreamsDurationProperty)
	// SetActivityStreamsEndTime sets the "endTime" property.
	SetActivityStreamsEndTime(i ActivityStreamsEndTimeProperty)
	// SetActivityStreamsGenerator sets the "generator" property.
	SetActivityStreamsGenerator(i ActivityStreamsGeneratorProperty)
	// SetActivityStreamsIcon sets the "icon" property.
	SetActivityStreamsIcon(i ActivityStreamsIconProperty)
	// SetActivityStreamsImage sets the "image" property.
	SetActivityStreamsImage(i ActivityStreamsImageProperty)
	// SetActivityStreamsInReplyTo sets the "inReplyTo" property.
	SetActivityStreamsInReplyTo(i ActivityStreamsInReplyToProperty)
	// SetActivityStreamsInstrument sets the "instrument" property.
	SetActivityStreamsInstrument(i ActivityStreamsInstrumentProperty)
	// SetActivityStreamsLikes sets the "likes" property.
	SetActivityStreamsLikes(i ActivityStreamsLikesProperty)
	// SetActivityStreamsLocation sets the "location" property.
	SetActivityStreamsLocation(i ActivityStreamsLocationProperty)
	// SetActivityStreamsMediaType sets the "mediaType" property.
	SetActivityStreamsMediaType(i ActivityStreamsMediaTypeProperty)
	// SetActivityStreamsName sets the "name" property.
	SetActivityStreamsName(i ActivityStreamsNameProperty)
	// SetActivityStreamsOrigin sets the "origin" property.
	SetActivityStreamsOrigin(i ActivityStreamsOriginProperty)
	// SetActivityStreamsPreview sets the "preview" property.
	SetActivityStreamsPreview(i ActivityStreamsPreviewProperty)
	// SetActivityStreamsPublished sets the "published" property.
	SetActivityStreamsPublished(i ActivityStreamsPublishedProperty)
	// SetActivityStreamsReplies sets the "replies" property.
	SetActivityStreamsReplies(i ActivityStreamsRepliesProperty)
	// SetActivityStreamsResult sets the "result" property.
	SetActivityStreamsResult(i ActivityStreamsResultProperty)
	// SetActivityStreamsShares sets the "shares" property.
	SetActivityStreamsShares(i ActivityStreamsSharesProperty)
	// SetActivityStreamsSource sets the "source" property.
	SetActivityStreamsSource(i ActivityStreamsSourceProperty)
	// SetActivityStreamsStartTime sets the "startTime" property.
	SetActivityStreamsStartTime(i ActivityStreamsStartTimeProperty)
	// SetActivityStreamsSummary sets the "summary" property.
	SetActivityStreamsSummary(i ActivityStreamsSummaryProperty)
	// SetActivityStreamsTag sets the "tag" property.
	SetActivityStreamsTag(i ActivityStreamsTagProperty)
	// SetActivityStreamsTarget sets the "target" property.
	SetActivityStreamsTarget(i ActivityStreamsTargetProperty)
	// SetActivityStreamsTo sets the "to" property.
	SetActivityStreamsTo(i ActivityStreamsToProperty)
	// SetActivityStreamsUpdated sets the "updated" property.
	SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
	// SetActivityStreamsUrl sets the "url" property.
	SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
	// SetForgeFedTeam sets the "team" property.
	SetForgeFedTeam(i ForgeFedTeamProperty)
	// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
	SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
	// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
	SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
	// SetJSONLDId sets the "id" property.
	SetJSONLDId(i JSONLDIdProperty)
	// SetJSONLDType sets the "type" property.
	SetJSONLDType(i JSONLDTypeProperty)
	// VocabularyURI returns the vocabulary's URI as a string.
	VocabularyURI() string
}

An IntransitiveActivity that indicates that the actor has arrived at the location. The origin can be used to identify the context from which the actor originated. The target typically has no defined meaning.

Example 14 (https://www.w3.org/TR/activitystreams-vocabulary/#ex11-jsonld):

{
  "actor": {
    "name": "Sally",
    "type": "Person"
  },
  "location": {
    "name": "Work",
    "type": "Place"
  },
  "origin": {
    "name": "Home",
    "type": "Place"
  },
  "summary": "Sally arrived at work",
  "type": "Arrive"
}

type ActivityStreamsArticle

type ActivityStreamsArticle interface {
	// GetActivityStreamsAltitude returns the "altitude" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAltitude() ActivityStreamsAltitudeProperty
	// GetActivityStreamsAttachment returns the "attachment" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAttachment() ActivityStreamsAttachmentProperty
	// GetActivityStreamsAttributedTo returns the "attributedTo" property if
	// it exists, and nil otherwise.
	GetActivityStreamsAttributedTo() ActivityStreamsAttributedToProperty
	// GetActivityStreamsAudience returns the "audience" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAudience() ActivityStreamsAudienceProperty
	// GetActivityStreamsBcc returns the "bcc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBcc() ActivityStreamsBccProperty
	// GetActivityStreamsBto returns the "bto" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBto() ActivityStreamsBtoProperty
	// GetActivityStreamsCc returns the "cc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsCc() ActivityStreamsCcProperty
	// GetActivityStreamsContent returns the "content" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContent() ActivityStreamsContentProperty
	// GetActivityStreamsContext returns the "context" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContext() ActivityStreamsContextProperty
	// GetActivityStreamsDuration returns the "duration" property if it
	// exists, and nil otherwise.
	GetActivityStreamsDuration() ActivityStreamsDurationProperty
	// GetActivityStreamsEndTime returns the "endTime" property if it exists,
	// and nil otherwise.
	GetActivityStreamsEndTime() ActivityStreamsEndTimeProperty
	// GetActivityStreamsGenerator returns the "generator" property if it
	// exists, and nil otherwise.
	GetActivityStreamsGenerator() ActivityStreamsGeneratorProperty
	// GetActivityStreamsIcon returns the "icon" property if it exists, and
	// nil otherwise.
	GetActivityStreamsIcon() ActivityStreamsIconProperty
	// GetActivityStreamsImage returns the "image" property if it exists, and
	// nil otherwise.
	GetActivityStreamsImage() ActivityStreamsImageProperty
	// GetActivityStreamsInReplyTo returns the "inReplyTo" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInReplyTo() ActivityStreamsInReplyToProperty
	// GetActivityStreamsLikes returns the "likes" property if it exists, and
	// nil otherwise.
	GetActivityStreamsLikes() ActivityStreamsLikesProperty
	// GetActivityStreamsLocation returns the "location" property if it
	// exists, and nil otherwise.
	GetActivityStreamsLocation() ActivityStreamsLocationProperty
	// GetActivityStreamsMediaType returns the "mediaType" property if it
	// exists, and nil otherwise.
	GetActivityStreamsMediaType() ActivityStreamsMediaTypeProperty
	// GetActivityStreamsName returns the "name" property if it exists, and
	// nil otherwise.
	GetActivityStreamsName() ActivityStreamsNameProperty
	// GetActivityStreamsObject returns the "object" property if it exists,
	// and nil otherwise.
	GetActivityStreamsObject() ActivityStreamsObjectProperty
	// GetActivityStreamsPreview returns the "preview" property if it exists,
	// and nil otherwise.
	GetActivityStreamsPreview() ActivityStreamsPreviewProperty
	// GetActivityStreamsPublished returns the "published" property if it
	// exists, and nil otherwise.
	GetActivityStreamsPublished() ActivityStreamsPublishedProperty
	// GetActivityStreamsReplies returns the "replies" property if it exists,
	// and nil otherwise.
	GetActivityStreamsReplies() ActivityStreamsRepliesProperty
	// GetActivityStreamsShares returns the "shares" property if it exists,
	// and nil otherwise.
	GetActivityStreamsShares() ActivityStreamsSharesProperty
	// GetActivityStreamsSource returns the "source" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSource() ActivityStreamsSourceProperty
	// GetActivityStreamsStartTime returns the "startTime" property if it
	// exists, and nil otherwise.
	GetActivityStreamsStartTime() ActivityStreamsStartTimeProperty
	// GetActivityStreamsSummary returns the "summary" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSummary() ActivityStreamsSummaryProperty
	// GetActivityStreamsTag returns the "tag" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTag() ActivityStreamsTagProperty
	// GetActivityStreamsTo returns the "to" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTo() ActivityStreamsToProperty
	// GetActivityStreamsUpdated returns the "updated" property if it exists,
	// and nil otherwise.
	GetActivityStreamsUpdated() ActivityStreamsUpdatedProperty
	// GetActivityStreamsUrl returns the "url" property if it exists, and nil
	// otherwise.
	GetActivityStreamsUrl() ActivityStreamsUrlProperty
	// GetForgeFedTeam returns the "team" property if it exists, and nil
	// otherwise.
	GetForgeFedTeam() ForgeFedTeamProperty
	// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
	// it exists, and nil otherwise.
	GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
	// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
	// it exists, and nil otherwise.
	GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
	// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
	GetJSONLDId() JSONLDIdProperty
	// GetJSONLDType returns the "type" property if it exists, and nil
	// otherwise.
	GetJSONLDType() JSONLDTypeProperty
	// GetTypeName returns the name of this type.
	GetTypeName() string
	// GetUnknownProperties returns the unknown properties for the Article
	// type. Note that this should not be used by app developers. It is
	// only used to help determine which implementation is LessThan the
	// other. Developers who are creating a different implementation of
	// this type's interface can use this method in their LessThan
	// implementation, but routine ActivityPub applications should not use
	// this to bypass the code generation tool.
	GetUnknownProperties() map[string]interface{}
	// IsExtending returns true if the Article type extends from the other
	// type.
	IsExtending(other Type) bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this type and the specific properties that are set. The value
	// in the map is the alias used to import the type and its properties.
	JSONLDContext() map[string]string
	// LessThan computes if this Article is lesser, with an arbitrary but
	// stable determination.
	LessThan(o ActivityStreamsArticle) bool
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format.
	Serialize() (map[string]interface{}, error)
	// SetActivityStreamsAltitude sets the "altitude" property.
	SetActivityStreamsAltitude(i ActivityStreamsAltitudeProperty)
	// SetActivityStreamsAttachment sets the "attachment" property.
	SetActivityStreamsAttachment(i ActivityStreamsAttachmentProperty)
	// SetActivityStreamsAttributedTo sets the "attributedTo" property.
	SetActivityStreamsAttributedTo(i ActivityStreamsAttributedToProperty)
	// SetActivityStreamsAudience sets the "audience" property.
	SetActivityStreamsAudience(i ActivityStreamsAudienceProperty)
	// SetActivityStreamsBcc sets the "bcc" property.
	SetActivityStreamsBcc(i ActivityStreamsBccProperty)
	// SetActivityStreamsBto sets the "bto" property.
	SetActivityStreamsBto(i ActivityStreamsBtoProperty)
	// SetActivityStreamsCc sets the "cc" property.
	SetActivityStreamsCc(i ActivityStreamsCcProperty)
	// SetActivityStreamsContent sets the "content" property.
	SetActivityStreamsContent(i ActivityStreamsContentProperty)
	// SetActivityStreamsContext sets the "context" property.
	SetActivityStreamsContext(i ActivityStreamsContextProperty)
	// SetActivityStreamsDuration sets the "duration" property.
	SetActivityStreamsDuration(i ActivityStreamsDurationProperty)
	// SetActivityStreamsEndTime sets the "endTime" property.
	SetActivityStreamsEndTime(i ActivityStreamsEndTimeProperty)
	// SetActivityStreamsGenerator sets the "generator" property.
	SetActivityStreamsGenerator(i ActivityStreamsGeneratorProperty)
	// SetActivityStreamsIcon sets the "icon" property.
	SetActivityStreamsIcon(i ActivityStreamsIconProperty)
	// SetActivityStreamsImage sets the "image" property.
	SetActivityStreamsImage(i ActivityStreamsImageProperty)
	// SetActivityStreamsInReplyTo sets the "inReplyTo" property.
	SetActivityStreamsInReplyTo(i ActivityStreamsInReplyToProperty)
	// SetActivityStreamsLikes sets the "likes" property.
	SetActivityStreamsLikes(i ActivityStreamsLikesProperty)
	// SetActivityStreamsLocation sets the "location" property.
	SetActivityStreamsLocation(i ActivityStreamsLocationProperty)
	// SetActivityStreamsMediaType sets the "mediaType" property.
	SetActivityStreamsMediaType(i ActivityStreamsMediaTypeProperty)
	// SetActivityStreamsName sets the "name" property.
	SetActivityStreamsName(i ActivityStreamsNameProperty)
	// SetActivityStreamsObject sets the "object" property.
	SetActivityStreamsObject(i ActivityStreamsObjectProperty)
	// SetActivityStreamsPreview sets the "preview" property.
	SetActivityStreamsPreview(i ActivityStreamsPreviewProperty)
	// SetActivityStreamsPublished sets the "published" property.
	SetActivityStreamsPublished(i ActivityStreamsPublishedProperty)
	// SetActivityStreamsReplies sets the "replies" property.
	SetActivityStreamsReplies(i ActivityStreamsRepliesProperty)
	// SetActivityStreamsShares sets the "shares" property.
	SetActivityStreamsShares(i ActivityStreamsSharesProperty)
	// SetActivityStreamsSource sets the "source" property.
	SetActivityStreamsSource(i ActivityStreamsSourceProperty)
	// SetActivityStreamsStartTime sets the "startTime" property.
	SetActivityStreamsStartTime(i ActivityStreamsStartTimeProperty)
	// SetActivityStreamsSummary sets the "summary" property.
	SetActivityStreamsSummary(i ActivityStreamsSummaryProperty)
	// SetActivityStreamsTag sets the "tag" property.
	SetActivityStreamsTag(i ActivityStreamsTagProperty)
	// SetActivityStreamsTo sets the "to" property.
	SetActivityStreamsTo(i ActivityStreamsToProperty)
	// SetActivityStreamsUpdated sets the "updated" property.
	SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
	// SetActivityStreamsUrl sets the "url" property.
	SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
	// SetForgeFedTeam sets the "team" property.
	SetForgeFedTeam(i ForgeFedTeamProperty)
	// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
	SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
	// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
	SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
	// SetJSONLDId sets the "id" property.
	SetJSONLDId(i JSONLDIdProperty)
	// SetJSONLDType sets the "type" property.
	SetJSONLDType(i JSONLDTypeProperty)
	// VocabularyURI returns the vocabulary's URI as a string.
	VocabularyURI() string
}

Represents any kind of multi-paragraph written work.

Example 48 (https://www.w3.org/TR/activitystreams-vocabulary/#ex43-jsonld):

{
  "attributedTo": "http://sally.example.org",
  "content": "\u003cdiv\u003e... you will never believe

...\u003c/div\u003e",

  "name": "What a Crazy Day I Had",
  "type": "Article"
}

type ActivityStreamsAttachmentProperty

type ActivityStreamsAttachmentProperty interface {
	// AppendActivityStreamsAccept appends a Accept value to the back of a
	// list of the property "attachment". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsAccept(v ActivityStreamsAccept)
	// AppendActivityStreamsActivity appends a Activity value to the back of a
	// list of the property "attachment". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsActivity(v ActivityStreamsActivity)
	// AppendActivityStreamsAdd appends a Add value to the back of a list of
	// the property "attachment". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsAdd(v ActivityStreamsAdd)
	// AppendActivityStreamsAnnounce appends a Announce value to the back of a
	// list of the property "attachment". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// AppendActivityStreamsApplication appends a Application value to the
	// back of a list of the property "attachment". Invalidates iterators
	// that are traversing using Prev.
	AppendActivityStreamsApplication(v ActivityStreamsApplication)
	// AppendActivityStreamsArrive appends a Arrive value to the back of a
	// list of the property "attachment". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsArrive(v ActivityStreamsArrive)
	// AppendActivityStreamsArticle appends a Article value to the back of a
	// list of the property "attachment". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsArticle(v ActivityStreamsArticle)
	// AppendActivityStreamsAudio appends a Audio value to the back of a list
	// of the property "attachment". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsAudio(v ActivityStreamsAudio)
	// AppendActivityStreamsBlock appends a Block value to the back of a list
	// of the property "attachment". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsBlock(v ActivityStreamsBlock)
	// AppendActivityStreamsCollection appends a Collection value to the back
	// of a list of the property "attachment". Invalidates iterators that
	// are traversing using Prev.
	AppendActivityStreamsCollection(v ActivityStreamsCollection)
	// AppendActivityStreamsCollectionPage appends a CollectionPage value to
	// the back of a list of the property "attachment". Invalidates
	// iterators that are traversing using Prev.
	AppendActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// AppendActivityStreamsCreate appends a Create value to the back of a
	// list of the property "attachment". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsCreate(v ActivityStreamsCreate)
	// AppendActivityStreamsDelete appends a Delete value to the back of a
	// list of the property "attachment". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDelete(v ActivityStreamsDelete)
	// AppendActivityStreamsDislike appends a Dislike value to the back of a
	// list of the property "attachment". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDislike(v ActivityStreamsDislike)
	// AppendActivityStreamsDocument appends a Document value to the back of a
	// list of the property "attachment". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDocument(v ActivityStreamsDocument)
	// AppendActivityStreamsEvent appends a Event value to the back of a list
	// of the property "attachment". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsEvent(v ActivityStreamsEvent)
	// AppendActivityStreamsFlag appends a Flag value to the back of a list of
	// the property "attachment". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsFlag(v ActivityStreamsFlag)
	// AppendActivityStreamsFollow appends a Follow value to the back of a
	// list of the property "attachment". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsFollow(v ActivityStreamsFollow)
	// AppendActivityStreamsGroup appends a Group value to the back of a list
	// of the property "attachment". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsGroup(v ActivityStreamsGroup)
	// AppendActivityStreamsIgnore appends a Ignore value to the back of a
	// list of the property "attachment". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsIgnore(v ActivityStreamsIgnore)
	// AppendActivityStreamsImage appends a Image value to the back of a list
	// of the property "attachment". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsImage(v ActivityStreamsImage)
	// AppendActivityStreamsIntransitiveActivity appends a
	// IntransitiveActivity value to the back of a list of the property
	// "attachment". Invalidates iterators that are traversing using Prev.
	AppendActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// AppendActivityStreamsInvite appends a Invite value to the back of a
	// list of the property "attachment". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsInvite(v ActivityStreamsInvite)
	// AppendActivityStreamsJoin appends a Join value to the back of a list of
	// the property "attachment". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsJoin(v ActivityStreamsJoin)
	// AppendActivityStreamsLeave appends a Leave value to the back of a list
	// of the property "attachment". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsLeave(v ActivityStreamsLeave)
	// AppendActivityStreamsLike appends a Like value to the back of a list of
	// the property "attachment". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsLike(v ActivityStreamsLike)
	// AppendActivityStreamsLink appends a Link value to the back of a list of
	// the property "attachment". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsLink(v ActivityStreamsLink)
	// AppendActivityStreamsListen appends a Listen value to the back of a
	// list of the property "attachment". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsListen(v ActivityStreamsListen)
	// AppendActivityStreamsMention appends a Mention value to the back of a
	// list of the property "attachment". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsMention(v ActivityStreamsMention)
	// AppendActivityStreamsMove appends a Move value to the back of a list of
	// the property "attachment". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsMove(v ActivityStreamsMove)
	// AppendActivityStreamsNote appends a Note value to the back of a list of
	// the property "attachment". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsNote(v ActivityStreamsNote)
	// AppendActivityStreamsObject appends a Object value to the back of a
	// list of the property "attachment". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsObject(v ActivityStreamsObject)
	// AppendActivityStreamsOffer appends a Offer value to the back of a list
	// of the property "attachment". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsOffer(v ActivityStreamsOffer)
	// AppendActivityStreamsOrderedCollection appends a OrderedCollection
	// value to the back of a list of the property "attachment".
	// Invalidates iterators that are traversing using Prev.
	AppendActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// AppendActivityStreamsOrderedCollectionPage appends a
	// OrderedCollectionPage value to the back of a list of the property
	// "attachment". Invalidates iterators that are traversing using Prev.
	AppendActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// AppendActivityStreamsOrganization appends a Organization value to the
	// back of a list of the property "attachment". Invalidates iterators
	// that are traversing using Prev.
	AppendActivityStreamsOrganization(v ActivityStreamsOrganization)
	// AppendActivityStreamsPage appends a Page value to the back of a list of
	// the property "attachment". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsPage(v ActivityStreamsPage)
	// AppendActivityStreamsPerson appends a Person value to the back of a
	// list of the property "attachment". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsPerson(v ActivityStreamsPerson)
	// AppendActivityStreamsPlace appends a Place value to the back of a list
	// of the property "attachment". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsPlace(v ActivityStreamsPlace)
	// AppendActivityStreamsProfile appends a Profile value to the back of a
	// list of the property "attachment". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsProfile(v ActivityStreamsProfile)
	// AppendActivityStreamsQuestion appends a Question value to the back of a
	// list of the property "attachment". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsQuestion(v ActivityStreamsQuestion)
	// AppendActivityStreamsRead appends a Read value to the back of a list of
	// the property "attachment". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsRead(v ActivityStreamsRead)
	// AppendActivityStreamsReject appends a Reject value to the back of a
	// list of the property "attachment". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsReject(v ActivityStreamsReject)
	// AppendActivityStreamsRelationship appends a Relationship value to the
	// back of a list of the property "attachment". Invalidates iterators
	// that are traversing using Prev.
	AppendActivityStreamsRelationship(v ActivityStreamsRelationship)
	// AppendActivityStreamsRemove appends a Remove value to the back of a
	// list of the property "attachment". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsRemove(v ActivityStreamsRemove)
	// AppendActivityStreamsService appends a Service value to the back of a
	// list of the property "attachment". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsService(v ActivityStreamsService)
	// AppendActivityStreamsTentativeAccept appends a TentativeAccept value to
	// the back of a list of the property "attachment". Invalidates
	// iterators that are traversing using Prev.
	AppendActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// AppendActivityStreamsTentativeReject appends a TentativeReject value to
	// the back of a list of the property "attachment". Invalidates
	// iterators that are traversing using Prev.
	AppendActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// AppendActivityStreamsTombstone appends a Tombstone value to the back of
	// a list of the property "attachment". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsTombstone(v ActivityStreamsTombstone)
	// AppendActivityStreamsTravel appends a Travel value to the back of a
	// list of the property "attachment". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsTravel(v ActivityStreamsTravel)
	// AppendActivityStreamsUndo appends a Undo value to the back of a list of
	// the property "attachment". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsUndo(v ActivityStreamsUndo)
	// AppendActivityStreamsUpdate appends a Update value to the back of a
	// list of the property "attachment". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsUpdate(v ActivityStreamsUpdate)
	// AppendActivityStreamsVideo appends a Video value to the back of a list
	// of the property "attachment". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsVideo(v ActivityStreamsVideo)
	// AppendActivityStreamsView appends a View value to the back of a list of
	// the property "attachment". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsView(v ActivityStreamsView)
	// AppendForgeFedBranch appends a Branch value to the back of a list of
	// the property "attachment". Invalidates iterators that are
	// traversing using Prev.
	AppendForgeFedBranch(v ForgeFedBranch)
	// AppendForgeFedCommit appends a Commit value to the back of a list of
	// the property "attachment". Invalidates iterators that are
	// traversing using Prev.
	AppendForgeFedCommit(v ForgeFedCommit)
	// AppendForgeFedPush appends a Push value to the back of a list of the
	// property "attachment". Invalidates iterators that are traversing
	// using Prev.
	AppendForgeFedPush(v ForgeFedPush)
	// AppendForgeFedRepository appends a Repository value to the back of a
	// list of the property "attachment". Invalidates iterators that are
	// traversing using Prev.
	AppendForgeFedRepository(v ForgeFedRepository)
	// AppendForgeFedTicket appends a Ticket value to the back of a list of
	// the property "attachment". Invalidates iterators that are
	// traversing using Prev.
	AppendForgeFedTicket(v ForgeFedTicket)
	// AppendForgeFedTicketDependency appends a TicketDependency value to the
	// back of a list of the property "attachment". Invalidates iterators
	// that are traversing using Prev.
	AppendForgeFedTicketDependency(v ForgeFedTicketDependency)
	// AppendIRI appends an IRI value to the back of a list of the property
	// "attachment"
	AppendIRI(v *url.URL)
	// AppendTootEmoji appends a Emoji value to the back of a list of the
	// property "attachment". Invalidates iterators that are traversing
	// using Prev.
	AppendTootEmoji(v TootEmoji)
	// AppendTootIdentityProof appends a IdentityProof value to the back of a
	// list of the property "attachment". Invalidates iterators that are
	// traversing using Prev.
	AppendTootIdentityProof(v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "attachment". Invalidates iterators that are
	// traversing using Prev. Returns an error if the type is not a valid
	// one to set for this property.
	AppendType(t Type) error
	// At returns the property value for the specified index. Panics if the
	// index is out of bounds.
	At(index int) ActivityStreamsAttachmentPropertyIterator
	// Begin returns the first iterator, or nil if empty. Can be used with the
	// iterator's Next method and this property's End method to iterate
	// from front to back through all values.
	Begin() ActivityStreamsAttachmentPropertyIterator
	// Empty returns returns true if there are no elements.
	Empty() bool
	// End returns beyond-the-last iterator, which is nil. Can be used with
	// the iterator's Next method and this property's Begin method to
	// iterate from front to back through all values.
	End() ActivityStreamsAttachmentPropertyIterator
	// InsertActivityStreamsAccept inserts a Accept value at the specified
	// index for a property "attachment". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAccept(idx int, v ActivityStreamsAccept)
	// InsertActivityStreamsActivity inserts a Activity value at the specified
	// index for a property "attachment". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsActivity(idx int, v ActivityStreamsActivity)
	// InsertActivityStreamsAdd inserts a Add value at the specified index for
	// a property "attachment". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAdd(idx int, v ActivityStreamsAdd)
	// InsertActivityStreamsAnnounce inserts a Announce value at the specified
	// index for a property "attachment". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAnnounce(idx int, v ActivityStreamsAnnounce)
	// InsertActivityStreamsApplication inserts a Application value at the
	// specified index for a property "attachment". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsApplication(idx int, v ActivityStreamsApplication)
	// InsertActivityStreamsArrive inserts a Arrive value at the specified
	// index for a property "attachment". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsArrive(idx int, v ActivityStreamsArrive)
	// InsertActivityStreamsArticle inserts a Article value at the specified
	// index for a property "attachment". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsArticle(idx int, v ActivityStreamsArticle)
	// InsertActivityStreamsAudio inserts a Audio value at the specified index
	// for a property "attachment". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAudio(idx int, v ActivityStreamsAudio)
	// InsertActivityStreamsBlock inserts a Block value at the specified index
	// for a property "attachment". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsBlock(idx int, v ActivityStreamsBlock)
	// InsertActivityStreamsCollection inserts a Collection value at the
	// specified index for a property "attachment". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsCollection(idx int, v ActivityStreamsCollection)
	// InsertActivityStreamsCollectionPage inserts a CollectionPage value at
	// the specified index for a property "attachment". Existing elements
	// at that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsCollectionPage(idx int, v ActivityStreamsCollectionPage)
	// InsertActivityStreamsCreate inserts a Create value at the specified
	// index for a property "attachment". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsCreate(idx int, v ActivityStreamsCreate)
	// InsertActivityStreamsDelete inserts a Delete value at the specified
	// index for a property "attachment". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDelete(idx int, v ActivityStreamsDelete)
	// InsertActivityStreamsDislike inserts a Dislike value at the specified
	// index for a property "attachment". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDislike(idx int, v ActivityStreamsDislike)
	// InsertActivityStreamsDocument inserts a Document value at the specified
	// index for a property "attachment". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDocument(idx int, v ActivityStreamsDocument)
	// InsertActivityStreamsEvent inserts a Event value at the specified index
	// for a property "attachment". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsEvent(idx int, v ActivityStreamsEvent)
	// InsertActivityStreamsFlag inserts a Flag value at the specified index
	// for a property "attachment". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsFlag(idx int, v ActivityStreamsFlag)
	// InsertActivityStreamsFollow inserts a Follow value at the specified
	// index for a property "attachment". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsFollow(idx int, v ActivityStreamsFollow)
	// InsertActivityStreamsGroup inserts a Group value at the specified index
	// for a property "attachment". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsGroup(idx int, v ActivityStreamsGroup)
	// InsertActivityStreamsIgnore inserts a Ignore value at the specified
	// index for a property "attachment". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsIgnore(idx int, v ActivityStreamsIgnore)
	// InsertActivityStreamsImage inserts a Image value at the specified index
	// for a property "attachment". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsImage(idx int, v ActivityStreamsImage)
	// InsertActivityStreamsIntransitiveActivity inserts a
	// IntransitiveActivity value at the specified index for a property
	// "attachment". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertActivityStreamsIntransitiveActivity(idx int, v ActivityStreamsIntransitiveActivity)
	// InsertActivityStreamsInvite inserts a Invite value at the specified
	// index for a property "attachment". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsInvite(idx int, v ActivityStreamsInvite)
	// InsertActivityStreamsJoin inserts a Join value at the specified index
	// for a property "attachment". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsJoin(idx int, v ActivityStreamsJoin)
	// InsertActivityStreamsLeave inserts a Leave value at the specified index
	// for a property "attachment". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsLeave(idx int, v ActivityStreamsLeave)
	// InsertActivityStreamsLike inserts a Like value at the specified index
	// for a property "attachment". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsLike(idx int, v ActivityStreamsLike)
	// InsertActivityStreamsLink inserts a Link value at the specified index
	// for a property "attachment". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsLink(idx int, v ActivityStreamsLink)
	// InsertActivityStreamsListen inserts a Listen value at the specified
	// index for a property "attachment". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsListen(idx int, v ActivityStreamsListen)
	// InsertActivityStreamsMention inserts a Mention value at the specified
	// index for a property "attachment". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsMention(idx int, v ActivityStreamsMention)
	// InsertActivityStreamsMove inserts a Move value at the specified index
	// for a property "attachment". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsMove(idx int, v ActivityStreamsMove)
	// InsertActivityStreamsNote inserts a Note value at the specified index
	// for a property "attachment". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsNote(idx int, v ActivityStreamsNote)
	// InsertActivityStreamsObject inserts a Object value at the specified
	// index for a property "attachment". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsObject(idx int, v ActivityStreamsObject)
	// InsertActivityStreamsOffer inserts a Offer value at the specified index
	// for a property "attachment". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsOffer(idx int, v ActivityStreamsOffer)
	// InsertActivityStreamsOrderedCollection inserts a OrderedCollection
	// value at the specified index for a property "attachment". Existing
	// elements at that index and higher are shifted back once.
	// Invalidates all iterators.
	InsertActivityStreamsOrderedCollection(idx int, v ActivityStreamsOrderedCollection)
	// InsertActivityStreamsOrderedCollectionPage inserts a
	// OrderedCollectionPage value at the specified index for a property
	// "attachment". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertActivityStreamsOrderedCollectionPage(idx int, v ActivityStreamsOrderedCollectionPage)
	// InsertActivityStreamsOrganization inserts a Organization value at the
	// specified index for a property "attachment". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsOrganization(idx int, v ActivityStreamsOrganization)
	// InsertActivityStreamsPage inserts a Page value at the specified index
	// for a property "attachment". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsPage(idx int, v ActivityStreamsPage)
	// InsertActivityStreamsPerson inserts a Person value at the specified
	// index for a property "attachment". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsPerson(idx int, v ActivityStreamsPerson)
	// InsertActivityStreamsPlace inserts a Place value at the specified index
	// for a property "attachment". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsPlace(idx int, v ActivityStreamsPlace)
	// InsertActivityStreamsProfile inserts a Profile value at the specified
	// index for a property "attachment". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsProfile(idx int, v ActivityStreamsProfile)
	// InsertActivityStreamsQuestion inserts a Question value at the specified
	// index for a property "attachment". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsQuestion(idx int, v ActivityStreamsQuestion)
	// InsertActivityStreamsRead inserts a Read value at the specified index
	// for a property "attachment". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsRead(idx int, v ActivityStreamsRead)
	// InsertActivityStreamsReject inserts a Reject value at the specified
	// index for a property "attachment". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsReject(idx int, v ActivityStreamsReject)
	// InsertActivityStreamsRelationship inserts a Relationship value at the
	// specified index for a property "attachment". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsRelationship(idx int, v ActivityStreamsRelationship)
	// InsertActivityStreamsRemove inserts a Remove value at the specified
	// index for a property "attachment". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsRemove(idx int, v ActivityStreamsRemove)
	// InsertActivityStreamsService inserts a Service value at the specified
	// index for a property "attachment". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsService(idx int, v ActivityStreamsService)
	// InsertActivityStreamsTentativeAccept inserts a TentativeAccept value at
	// the specified index for a property "attachment". Existing elements
	// at that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsTentativeAccept(idx int, v ActivityStreamsTentativeAccept)
	// InsertActivityStreamsTentativeReject inserts a TentativeReject value at
	// the specified index for a property "attachment". Existing elements
	// at that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsTentativeReject(idx int, v ActivityStreamsTentativeReject)
	// InsertActivityStreamsTombstone inserts a Tombstone value at the
	// specified index for a property "attachment". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsTombstone(idx int, v ActivityStreamsTombstone)
	// InsertActivityStreamsTravel inserts a Travel value at the specified
	// index for a property "attachment". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsTravel(idx int, v ActivityStreamsTravel)
	// InsertActivityStreamsUndo inserts a Undo value at the specified index
	// for a property "attachment". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsUndo(idx int, v ActivityStreamsUndo)
	// InsertActivityStreamsUpdate inserts a Update value at the specified
	// index for a property "attachment". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsUpdate(idx int, v ActivityStreamsUpdate)
	// InsertActivityStreamsVideo inserts a Video value at the specified index
	// for a property "attachment". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsVideo(idx int, v ActivityStreamsVideo)
	// InsertActivityStreamsView inserts a View value at the specified index
	// for a property "attachment". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsView(idx int, v ActivityStreamsView)
	// InsertForgeFedBranch inserts a Branch value at the specified index for
	// a property "attachment". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertForgeFedBranch(idx int, v ForgeFedBranch)
	// InsertForgeFedCommit inserts a Commit value at the specified index for
	// a property "attachment". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertForgeFedCommit(idx int, v ForgeFedCommit)
	// InsertForgeFedPush inserts a Push value at the specified index for a
	// property "attachment". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertForgeFedPush(idx int, v ForgeFedPush)
	// InsertForgeFedRepository inserts a Repository value at the specified
	// index for a property "attachment". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertForgeFedRepository(idx int, v ForgeFedRepository)
	// InsertForgeFedTicket inserts a Ticket value at the specified index for
	// a property "attachment". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertForgeFedTicket(idx int, v ForgeFedTicket)
	// InsertForgeFedTicketDependency inserts a TicketDependency value at the
	// specified index for a property "attachment". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
	// Insert inserts an IRI value at the specified index for a property
	// "attachment". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertIRI(idx int, v *url.URL)
	// InsertTootEmoji inserts a Emoji value at the specified index for a
	// property "attachment". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertTootEmoji(idx int, v TootEmoji)
	// InsertTootIdentityProof inserts a IdentityProof value at the specified
	// index for a property "attachment". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertTootIdentityProof(idx int, v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "attachment". Invalidates all iterators. Returns an
	// error if the type is not a valid one to set for this property.
	InsertType(idx int, t Type) error
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API method specifically needed only for alternate
	// implementations for go-fed. Applications should not use this
	// method. Panics if the index is out of bounds.
	KindIndex(idx int) int
	// Len returns the number of values that exist for the "attachment"
	// property.
	Len() (length int)
	// Less computes whether another property is less than this one. Mixing
	// types results in a consistent but arbitrary ordering
	Less(i, j int) bool
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsAttachmentProperty) bool
	// Name returns the name of this property ("attachment") with any alias.
	Name() string
	// PrependActivityStreamsAccept prepends a Accept value to the front of a
	// list of the property "attachment". Invalidates all iterators.
	PrependActivityStreamsAccept(v ActivityStreamsAccept)
	// PrependActivityStreamsActivity prepends a Activity value to the front
	// of a list of the property "attachment". Invalidates all iterators.
	PrependActivityStreamsActivity(v ActivityStreamsActivity)
	// PrependActivityStreamsAdd prepends a Add value to the front of a list
	// of the property "attachment". Invalidates all iterators.
	PrependActivityStreamsAdd(v ActivityStreamsAdd)
	// PrependActivityStreamsAnnounce prepends a Announce value to the front
	// of a list of the property "attachment". Invalidates all iterators.
	PrependActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// PrependActivityStreamsApplication prepends a Application value to the
	// front of a list of the property "attachment". Invalidates all
	// iterators.
	PrependActivityStreamsApplication(v ActivityStreamsApplication)
	// PrependActivityStreamsArrive prepends a Arrive value to the front of a
	// list of the property "attachment". Invalidates all iterators.
	PrependActivityStreamsArrive(v ActivityStreamsArrive)
	// PrependActivityStreamsArticle prepends a Article value to the front of
	// a list of the property "attachment". Invalidates all iterators.
	PrependActivityStreamsArticle(v ActivityStreamsArticle)
	// PrependActivityStreamsAudio prepends a Audio value to the front of a
	// list of the property "attachment". Invalidates all iterators.
	PrependActivityStreamsAudio(v ActivityStreamsAudio)
	// PrependActivityStreamsBlock prepends a Block value to the front of a
	// list of the property "attachment". Invalidates all iterators.
	PrependActivityStreamsBlock(v ActivityStreamsBlock)
	// PrependActivityStreamsCollection prepends a Collection value to the
	// front of a list of the property "attachment". Invalidates all
	// iterators.
	PrependActivityStreamsCollection(v ActivityStreamsCollection)
	// PrependActivityStreamsCollectionPage prepends a CollectionPage value to
	// the front of a list of the property "attachment". Invalidates all
	// iterators.
	PrependActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// PrependActivityStreamsCreate prepends a Create value to the front of a
	// list of the property "attachment". Invalidates all iterators.
	PrependActivityStreamsCreate(v ActivityStreamsCreate)
	// PrependActivityStreamsDelete prepends a Delete value to the front of a
	// list of the property "attachment". Invalidates all iterators.
	PrependActivityStreamsDelete(v ActivityStreamsDelete)
	// PrependActivityStreamsDislike prepends a Dislike value to the front of
	// a list of the property "attachment". Invalidates all iterators.
	PrependActivityStreamsDislike(v ActivityStreamsDislike)
	// PrependActivityStreamsDocument prepends a Document value to the front
	// of a list of the property "attachment". Invalidates all iterators.
	PrependActivityStreamsDocument(v ActivityStreamsDocument)
	// PrependActivityStreamsEvent prepends a Event value to the front of a
	// list of the property "attachment". Invalidates all iterators.
	PrependActivityStreamsEvent(v ActivityStreamsEvent)
	// PrependActivityStreamsFlag prepends a Flag value to the front of a list
	// of the property "attachment". Invalidates all iterators.
	PrependActivityStreamsFlag(v ActivityStreamsFlag)
	// PrependActivityStreamsFollow prepends a Follow value to the front of a
	// list of the property "attachment". Invalidates all iterators.
	PrependActivityStreamsFollow(v ActivityStreamsFollow)
	// PrependActivityStreamsGroup prepends a Group value to the front of a
	// list of the property "attachment". Invalidates all iterators.
	PrependActivityStreamsGroup(v ActivityStreamsGroup)
	// PrependActivityStreamsIgnore prepends a Ignore value to the front of a
	// list of the property "attachment". Invalidates all iterators.
	PrependActivityStreamsIgnore(v ActivityStreamsIgnore)
	// PrependActivityStreamsImage prepends a Image value to the front of a
	// list of the property "attachment". Invalidates all iterators.
	PrependActivityStreamsImage(v ActivityStreamsImage)
	// PrependActivityStreamsIntransitiveActivity prepends a
	// IntransitiveActivity value to the front of a list of the property
	// "attachment". Invalidates all iterators.
	PrependActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// PrependActivityStreamsInvite prepends a Invite value to the front of a
	// list of the property "attachment". Invalidates all iterators.
	PrependActivityStreamsInvite(v ActivityStreamsInvite)
	// PrependActivityStreamsJoin prepends a Join value to the front of a list
	// of the property "attachment". Invalidates all iterators.
	PrependActivityStreamsJoin(v ActivityStreamsJoin)
	// PrependActivityStreamsLeave prepends a Leave value to the front of a
	// list of the property "attachment". Invalidates all iterators.
	PrependActivityStreamsLeave(v ActivityStreamsLeave)
	// PrependActivityStreamsLike prepends a Like value to the front of a list
	// of the property "attachment". Invalidates all iterators.
	PrependActivityStreamsLike(v ActivityStreamsLike)
	// PrependActivityStreamsLink prepends a Link value to the front of a list
	// of the property "attachment". Invalidates all iterators.
	PrependActivityStreamsLink(v ActivityStreamsLink)
	// PrependActivityStreamsListen prepends a Listen value to the front of a
	// list of the property "attachment". Invalidates all iterators.
	PrependActivityStreamsListen(v ActivityStreamsListen)
	// PrependActivityStreamsMention prepends a Mention value to the front of
	// a list of the property "attachment". Invalidates all iterators.
	PrependActivityStreamsMention(v ActivityStreamsMention)
	// PrependActivityStreamsMove prepends a Move value to the front of a list
	// of the property "attachment". Invalidates all iterators.
	PrependActivityStreamsMove(v ActivityStreamsMove)
	// PrependActivityStreamsNote prepends a Note value to the front of a list
	// of the property "attachment". Invalidates all iterators.
	PrependActivityStreamsNote(v ActivityStreamsNote)
	// PrependActivityStreamsObject prepends a Object value to the front of a
	// list of the property "attachment". Invalidates all iterators.
	PrependActivityStreamsObject(v ActivityStreamsObject)
	// PrependActivityStreamsOffer prepends a Offer value to the front of a
	// list of the property "attachment". Invalidates all iterators.
	PrependActivityStreamsOffer(v ActivityStreamsOffer)
	// PrependActivityStreamsOrderedCollection prepends a OrderedCollection
	// value to the front of a list of the property "attachment".
	// Invalidates all iterators.
	PrependActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// PrependActivityStreamsOrderedCollectionPage prepends a
	// OrderedCollectionPage value to the front of a list of the property
	// "attachment". Invalidates all iterators.
	PrependActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// PrependActivityStreamsOrganization prepends a Organization value to the
	// front of a list of the property "attachment". Invalidates all
	// iterators.
	PrependActivityStreamsOrganization(v ActivityStreamsOrganization)
	// PrependActivityStreamsPage prepends a Page value to the front of a list
	// of the property "attachment". Invalidates all iterators.
	PrependActivityStreamsPage(v ActivityStreamsPage)
	// PrependActivityStreamsPerson prepends a Person value to the front of a
	// list of the property "attachment". Invalidates all iterators.
	PrependActivityStreamsPerson(v ActivityStreamsPerson)
	// PrependActivityStreamsPlace prepends a Place value to the front of a
	// list of the property "attachment". Invalidates all iterators.
	PrependActivityStreamsPlace(v ActivityStreamsPlace)
	// PrependActivityStreamsProfile prepends a Profile value to the front of
	// a list of the property "attachment". Invalidates all iterators.
	PrependActivityStreamsProfile(v ActivityStreamsProfile)
	// PrependActivityStreamsQuestion prepends a Question value to the front
	// of a list of the property "attachment". Invalidates all iterators.
	PrependActivityStreamsQuestion(v ActivityStreamsQuestion)
	// PrependActivityStreamsRead prepends a Read value to the front of a list
	// of the property "attachment". Invalidates all iterators.
	PrependActivityStreamsRead(v ActivityStreamsRead)
	// PrependActivityStreamsReject prepends a Reject value to the front of a
	// list of the property "attachment". Invalidates all iterators.
	PrependActivityStreamsReject(v ActivityStreamsReject)
	// PrependActivityStreamsRelationship prepends a Relationship value to the
	// front of a list of the property "attachment". Invalidates all
	// iterators.
	PrependActivityStreamsRelationship(v ActivityStreamsRelationship)
	// PrependActivityStreamsRemove prepends a Remove value to the front of a
	// list of the property "attachment". Invalidates all iterators.
	PrependActivityStreamsRemove(v ActivityStreamsRemove)
	// PrependActivityStreamsService prepends a Service value to the front of
	// a list of the property "attachment". Invalidates all iterators.
	PrependActivityStreamsService(v ActivityStreamsService)
	// PrependActivityStreamsTentativeAccept prepends a TentativeAccept value
	// to the front of a list of the property "attachment". Invalidates
	// all iterators.
	PrependActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// PrependActivityStreamsTentativeReject prepends a TentativeReject value
	// to the front of a list of the property "attachment". Invalidates
	// all iterators.
	PrependActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// PrependActivityStreamsTombstone prepends a Tombstone value to the front
	// of a list of the property "attachment". Invalidates all iterators.
	PrependActivityStreamsTombstone(v ActivityStreamsTombstone)
	// PrependActivityStreamsTravel prepends a Travel value to the front of a
	// list of the property "attachment". Invalidates all iterators.
	PrependActivityStreamsTravel(v ActivityStreamsTravel)
	// PrependActivityStreamsUndo prepends a Undo value to the front of a list
	// of the property "attachment". Invalidates all iterators.
	PrependActivityStreamsUndo(v ActivityStreamsUndo)
	// PrependActivityStreamsUpdate prepends a Update value to the front of a
	// list of the property "attachment". Invalidates all iterators.
	PrependActivityStreamsUpdate(v ActivityStreamsUpdate)
	// PrependActivityStreamsVideo prepends a Video value to the front of a
	// list of the property "attachment". Invalidates all iterators.
	PrependActivityStreamsVideo(v ActivityStreamsVideo)
	// PrependActivityStreamsView prepends a View value to the front of a list
	// of the property "attachment". Invalidates all iterators.
	PrependActivityStreamsView(v ActivityStreamsView)
	// PrependForgeFedBranch prepends a Branch value to the front of a list of
	// the property "attachment". Invalidates all iterators.
	PrependForgeFedBranch(v ForgeFedBranch)
	// PrependForgeFedCommit prepends a Commit value to the front of a list of
	// the property "attachment". Invalidates all iterators.
	PrependForgeFedCommit(v ForgeFedCommit)
	// PrependForgeFedPush prepends a Push value to the front of a list of the
	// property "attachment". Invalidates all iterators.
	PrependForgeFedPush(v ForgeFedPush)
	// PrependForgeFedRepository prepends a Repository value to the front of a
	// list of the property "attachment". Invalidates all iterators.
	PrependForgeFedRepository(v ForgeFedRepository)
	// PrependForgeFedTicket prepends a Ticket value to the front of a list of
	// the property "attachment". Invalidates all iterators.
	PrependForgeFedTicket(v ForgeFedTicket)
	// PrependForgeFedTicketDependency prepends a TicketDependency value to
	// the front of a list of the property "attachment". Invalidates all
	// iterators.
	PrependForgeFedTicketDependency(v ForgeFedTicketDependency)
	// PrependIRI prepends an IRI value to the front of a list of the property
	// "attachment".
	PrependIRI(v *url.URL)
	// PrependTootEmoji prepends a Emoji value to the front of a list of the
	// property "attachment". Invalidates all iterators.
	PrependTootEmoji(v TootEmoji)
	// PrependTootIdentityProof prepends a IdentityProof value to the front of
	// a list of the property "attachment". Invalidates all iterators.
	PrependTootIdentityProof(v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "attachment". Invalidates all iterators. Returns an
	// error if the type is not a valid one to set for this property.
	PrependType(t Type) error
	// Remove deletes an element at the specified index from a list of the
	// property "attachment", regardless of its type. Panics if the index
	// is out of bounds. Invalidates all iterators.
	Remove(idx int)
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// SetActivityStreamsAccept sets a Accept value to be at the specified
	// index for the property "attachment". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsAccept(idx int, v ActivityStreamsAccept)
	// SetActivityStreamsActivity sets a Activity value to be at the specified
	// index for the property "attachment". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsActivity(idx int, v ActivityStreamsActivity)
	// SetActivityStreamsAdd sets a Add value to be at the specified index for
	// the property "attachment". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsAdd(idx int, v ActivityStreamsAdd)
	// SetActivityStreamsAnnounce sets a Announce value to be at the specified
	// index for the property "attachment". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsAnnounce(idx int, v ActivityStreamsAnnounce)
	// SetActivityStreamsApplication sets a Application value to be at the
	// specified index for the property "attachment". Panics if the index
	// is out of bounds. Invalidates all iterators.
	SetActivityStreamsApplication(idx int, v ActivityStreamsApplication)
	// SetActivityStreamsArrive sets a Arrive value to be at the specified
	// index for the property "attachment". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsArrive(idx int, v ActivityStreamsArrive)
	// SetActivityStreamsArticle sets a Article value to be at the specified
	// index for the property "attachment". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsArticle(idx int, v ActivityStreamsArticle)
	// SetActivityStreamsAudio sets a Audio value to be at the specified index
	// for the property "attachment". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsAudio(idx int, v ActivityStreamsAudio)
	// SetActivityStreamsBlock sets a Block value to be at the specified index
	// for the property "attachment". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsBlock(idx int, v ActivityStreamsBlock)
	// SetActivityStreamsCollection sets a Collection value to be at the
	// specified index for the property "attachment". Panics if the index
	// is out of bounds. Invalidates all iterators.
	SetActivityStreamsCollection(idx int, v ActivityStreamsCollection)
	// SetActivityStreamsCollectionPage sets a CollectionPage value to be at
	// the specified index for the property "attachment". Panics if the
	// index is out of bounds. Invalidates all iterators.
	SetActivityStreamsCollectionPage(idx int, v ActivityStreamsCollectionPage)
	// SetActivityStreamsCreate sets a Create value to be at the specified
	// index for the property "attachment". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsCreate(idx int, v ActivityStreamsCreate)
	// SetActivityStreamsDelete sets a Delete value to be at the specified
	// index for the property "attachment". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsDelete(idx int, v ActivityStreamsDelete)
	// SetActivityStreamsDislike sets a Dislike value to be at the specified
	// index for the property "attachment". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsDislike(idx int, v ActivityStreamsDislike)
	// SetActivityStreamsDocument sets a Document value to be at the specified
	// index for the property "attachment". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsDocument(idx int, v ActivityStreamsDocument)
	// SetActivityStreamsEvent sets a Event value to be at the specified index
	// for the property "attachment". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsEvent(idx int, v ActivityStreamsEvent)
	// SetActivityStreamsFlag sets a Flag value to be at the specified index
	// for the property "attachment". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsFlag(idx int, v ActivityStreamsFlag)
	// SetActivityStreamsFollow sets a Follow value to be at the specified
	// index for the property "attachment". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsFollow(idx int, v ActivityStreamsFollow)
	// SetActivityStreamsGroup sets a Group value to be at the specified index
	// for the property "attachment". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsGroup(idx int, v ActivityStreamsGroup)
	// SetActivityStreamsIgnore sets a Ignore value to be at the specified
	// index for the property "attachment". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsIgnore(idx int, v ActivityStreamsIgnore)
	// SetActivityStreamsImage sets a Image value to be at the specified index
	// for the property "attachment". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsImage(idx int, v ActivityStreamsImage)
	// SetActivityStreamsIntransitiveActivity sets a IntransitiveActivity
	// value to be at the specified index for the property "attachment".
	// Panics if the index is out of bounds. Invalidates all iterators.
	SetActivityStreamsIntransitiveActivity(idx int, v ActivityStreamsIntransitiveActivity)
	// SetActivityStreamsInvite sets a Invite value to be at the specified
	// index for the property "attachment". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsInvite(idx int, v ActivityStreamsInvite)
	// SetActivityStreamsJoin sets a Join value to be at the specified index
	// for the property "attachment". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsJoin(idx int, v ActivityStreamsJoin)
	// SetActivityStreamsLeave sets a Leave value to be at the specified index
	// for the property "attachment". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsLeave(idx int, v ActivityStreamsLeave)
	// SetActivityStreamsLike sets a Like value to be at the specified index
	// for the property "attachment". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsLike(idx int, v ActivityStreamsLike)
	// SetActivityStreamsLink sets a Link value to be at the specified index
	// for the property "attachment". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsLink(idx int, v ActivityStreamsLink)
	// SetActivityStreamsListen sets a Listen value to be at the specified
	// index for the property "attachment". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsListen(idx int, v ActivityStreamsListen)
	// SetActivityStreamsMention sets a Mention value to be at the specified
	// index for the property "attachment". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsMention(idx int, v ActivityStreamsMention)
	// SetActivityStreamsMove sets a Move value to be at the specified index
	// for the property "attachment". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsMove(idx int, v ActivityStreamsMove)
	// SetActivityStreamsNote sets a Note value to be at the specified index
	// for the property "attachment". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsNote(idx int, v ActivityStreamsNote)
	// SetActivityStreamsObject sets a Object value to be at the specified
	// index for the property "attachment". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsObject(idx int, v ActivityStreamsObject)
	// SetActivityStreamsOffer sets a Offer value to be at the specified index
	// for the property "attachment". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsOffer(idx int, v ActivityStreamsOffer)
	// SetActivityStreamsOrderedCollection sets a OrderedCollection value to
	// be at the specified index for the property "attachment". Panics if
	// the index is out of bounds. Invalidates all iterators.
	SetActivityStreamsOrderedCollection(idx int, v ActivityStreamsOrderedCollection)
	// SetActivityStreamsOrderedCollectionPage sets a OrderedCollectionPage
	// value to be at the specified index for the property "attachment".
	// Panics if the index is out of bounds. Invalidates all iterators.
	SetActivityStreamsOrderedCollectionPage(idx int, v ActivityStreamsOrderedCollectionPage)
	// SetActivityStreamsOrganization sets a Organization value to be at the
	// specified index for the property "attachment". Panics if the index
	// is out of bounds. Invalidates all iterators.
	SetActivityStreamsOrganization(idx int, v ActivityStreamsOrganization)
	// SetActivityStreamsPage sets a Page value to be at the specified index
	// for the property "attachment". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsPage(idx int, v ActivityStreamsPage)
	// SetActivityStreamsPerson sets a Person value to be at the specified
	// index for the property "attachment". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsPerson(idx int, v ActivityStreamsPerson)
	// SetActivityStreamsPlace sets a Place value to be at the specified index
	// for the property "attachment". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsPlace(idx int, v ActivityStreamsPlace)
	// SetActivityStreamsProfile sets a Profile value to be at the specified
	// index for the property "attachment". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsProfile(idx int, v ActivityStreamsProfile)
	// SetActivityStreamsQuestion sets a Question value to be at the specified
	// index for the property "attachment". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsQuestion(idx int, v ActivityStreamsQuestion)
	// SetActivityStreamsRead sets a Read value to be at the specified index
	// for the property "attachment". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsRead(idx int, v ActivityStreamsRead)
	// SetActivityStreamsReject sets a Reject value to be at the specified
	// index for the property "attachment". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsReject(idx int, v ActivityStreamsReject)
	// SetActivityStreamsRelationship sets a Relationship value to be at the
	// specified index for the property "attachment". Panics if the index
	// is out of bounds. Invalidates all iterators.
	SetActivityStreamsRelationship(idx int, v ActivityStreamsRelationship)
	// SetActivityStreamsRemove sets a Remove value to be at the specified
	// index for the property "attachment". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsRemove(idx int, v ActivityStreamsRemove)
	// SetActivityStreamsService sets a Service value to be at the specified
	// index for the property "attachment". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsService(idx int, v ActivityStreamsService)
	// SetActivityStreamsTentativeAccept sets a TentativeAccept value to be at
	// the specified index for the property "attachment". Panics if the
	// index is out of bounds. Invalidates all iterators.
	SetActivityStreamsTentativeAccept(idx int, v ActivityStreamsTentativeAccept)
	// SetActivityStreamsTentativeReject sets a TentativeReject value to be at
	// the specified index for the property "attachment". Panics if the
	// index is out of bounds. Invalidates all iterators.
	SetActivityStreamsTentativeReject(idx int, v ActivityStreamsTentativeReject)
	// SetActivityStreamsTombstone sets a Tombstone value to be at the
	// specified index for the property "attachment". Panics if the index
	// is out of bounds. Invalidates all iterators.
	SetActivityStreamsTombstone(idx int, v ActivityStreamsTombstone)
	// SetActivityStreamsTravel sets a Travel value to be at the specified
	// index for the property "attachment". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsTravel(idx int, v ActivityStreamsTravel)
	// SetActivityStreamsUndo sets a Undo value to be at the specified index
	// for the property "attachment". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsUndo(idx int, v ActivityStreamsUndo)
	// SetActivityStreamsUpdate sets a Update value to be at the specified
	// index for the property "attachment". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsUpdate(idx int, v ActivityStreamsUpdate)
	// SetActivityStreamsVideo sets a Video value to be at the specified index
	// for the property "attachment". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsVideo(idx int, v ActivityStreamsVideo)
	// SetActivityStreamsView sets a View value to be at the specified index
	// for the property "attachment". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsView(idx int, v ActivityStreamsView)
	// SetForgeFedBranch sets a Branch value to be at the specified index for
	// the property "attachment". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedBranch(idx int, v ForgeFedBranch)
	// SetForgeFedCommit sets a Commit value to be at the specified index for
	// the property "attachment". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedCommit(idx int, v ForgeFedCommit)
	// SetForgeFedPush sets a Push value to be at the specified index for the
	// property "attachment". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedPush(idx int, v ForgeFedPush)
	// SetForgeFedRepository sets a Repository value to be at the specified
	// index for the property "attachment". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetForgeFedRepository(idx int, v ForgeFedRepository)
	// SetForgeFedTicket sets a Ticket value to be at the specified index for
	// the property "attachment". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedTicket(idx int, v ForgeFedTicket)
	// SetForgeFedTicketDependency sets a TicketDependency value to be at the
	// specified index for the property "attachment". Panics if the index
	// is out of bounds. Invalidates all iterators.
	SetForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
	// SetIRI sets an IRI value to be at the specified index for the property
	// "attachment". Panics if the index is out of bounds.
	SetIRI(idx int, v *url.URL)
	// SetTootEmoji sets a Emoji value to be at the specified index for the
	// property "attachment". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetTootEmoji(idx int, v TootEmoji)
	// SetTootIdentityProof sets a IdentityProof value to be at the specified
	// index for the property "attachment". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetTootIdentityProof(idx int, v TootIdentityProof)
	// SetType sets an arbitrary type value to the specified index of the
	// property "attachment". Invalidates all iterators. Returns an error
	// if the type is not a valid one to set for this property. Panics if
	// the index is out of bounds.
	SetType(idx int, t Type) error
	// Swap swaps the location of values at two indices for the "attachment"
	// property.
	Swap(i, j int)
}

Identifies a resource attached or related to an object that potentially requires special handling. The intent is to provide a model that is at least semantically similar to attachments in email.

Example 66 (https://www.w3.org/TR/activitystreams-vocabulary/#ex64-jsonld):

{
  "attachment": {
    "content": "This is what he looks like.",
    "type": "Image",
    "url": "http://example.org/cat.jpeg"
  },
  "name": "Have you seen my cat?",
  "type": "Note"
}

type ActivityStreamsAttachmentPropertyIterator

type ActivityStreamsAttachmentPropertyIterator interface {
	// GetActivityStreamsAccept returns the value of this property. When
	// IsActivityStreamsAccept returns false, GetActivityStreamsAccept
	// will return an arbitrary value.
	GetActivityStreamsAccept() ActivityStreamsAccept
	// GetActivityStreamsActivity returns the value of this property. When
	// IsActivityStreamsActivity returns false, GetActivityStreamsActivity
	// will return an arbitrary value.
	GetActivityStreamsActivity() ActivityStreamsActivity
	// GetActivityStreamsAdd returns the value of this property. When
	// IsActivityStreamsAdd returns false, GetActivityStreamsAdd will
	// return an arbitrary value.
	GetActivityStreamsAdd() ActivityStreamsAdd
	// GetActivityStreamsAnnounce returns the value of this property. When
	// IsActivityStreamsAnnounce returns false, GetActivityStreamsAnnounce
	// will return an arbitrary value.
	GetActivityStreamsAnnounce() ActivityStreamsAnnounce
	// GetActivityStreamsApplication returns the value of this property. When
	// IsActivityStreamsApplication returns false,
	// GetActivityStreamsApplication will return an arbitrary value.
	GetActivityStreamsApplication() ActivityStreamsApplication
	// GetActivityStreamsArrive returns the value of this property. When
	// IsActivityStreamsArrive returns false, GetActivityStreamsArrive
	// will return an arbitrary value.
	GetActivityStreamsArrive() ActivityStreamsArrive
	// GetActivityStreamsArticle returns the value of this property. When
	// IsActivityStreamsArticle returns false, GetActivityStreamsArticle
	// will return an arbitrary value.
	GetActivityStreamsArticle() ActivityStreamsArticle
	// GetActivityStreamsAudio returns the value of this property. When
	// IsActivityStreamsAudio returns false, GetActivityStreamsAudio will
	// return an arbitrary value.
	GetActivityStreamsAudio() ActivityStreamsAudio
	// GetActivityStreamsBlock returns the value of this property. When
	// IsActivityStreamsBlock returns false, GetActivityStreamsBlock will
	// return an arbitrary value.
	GetActivityStreamsBlock() ActivityStreamsBlock
	// GetActivityStreamsCollection returns the value of this property. When
	// IsActivityStreamsCollection returns false,
	// GetActivityStreamsCollection will return an arbitrary value.
	GetActivityStreamsCollection() ActivityStreamsCollection
	// GetActivityStreamsCollectionPage returns the value of this property.
	// When IsActivityStreamsCollectionPage returns false,
	// GetActivityStreamsCollectionPage will return an arbitrary value.
	GetActivityStreamsCollectionPage() ActivityStreamsCollectionPage
	// GetActivityStreamsCreate returns the value of this property. When
	// IsActivityStreamsCreate returns false, GetActivityStreamsCreate
	// will return an arbitrary value.
	GetActivityStreamsCreate() ActivityStreamsCreate
	// GetActivityStreamsDelete returns the value of this property. When
	// IsActivityStreamsDelete returns false, GetActivityStreamsDelete
	// will return an arbitrary value.
	GetActivityStreamsDelete() ActivityStreamsDelete
	// GetActivityStreamsDislike returns the value of this property. When
	// IsActivityStreamsDislike returns false, GetActivityStreamsDislike
	// will return an arbitrary value.
	GetActivityStreamsDislike() ActivityStreamsDislike
	// GetActivityStreamsDocument returns the value of this property. When
	// IsActivityStreamsDocument returns false, GetActivityStreamsDocument
	// will return an arbitrary value.
	GetActivityStreamsDocument() ActivityStreamsDocument
	// GetActivityStreamsEvent returns the value of this property. When
	// IsActivityStreamsEvent returns false, GetActivityStreamsEvent will
	// return an arbitrary value.
	GetActivityStreamsEvent() ActivityStreamsEvent
	// GetActivityStreamsFlag returns the value of this property. When
	// IsActivityStreamsFlag returns false, GetActivityStreamsFlag will
	// return an arbitrary value.
	GetActivityStreamsFlag() ActivityStreamsFlag
	// GetActivityStreamsFollow returns the value of this property. When
	// IsActivityStreamsFollow returns false, GetActivityStreamsFollow
	// will return an arbitrary value.
	GetActivityStreamsFollow() ActivityStreamsFollow
	// GetActivityStreamsGroup returns the value of this property. When
	// IsActivityStreamsGroup returns false, GetActivityStreamsGroup will
	// return an arbitrary value.
	GetActivityStreamsGroup() ActivityStreamsGroup
	// GetActivityStreamsIgnore returns the value of this property. When
	// IsActivityStreamsIgnore returns false, GetActivityStreamsIgnore
	// will return an arbitrary value.
	GetActivityStreamsIgnore() ActivityStreamsIgnore
	// GetActivityStreamsImage returns the value of this property. When
	// IsActivityStreamsImage returns false, GetActivityStreamsImage will
	// return an arbitrary value.
	GetActivityStreamsImage() ActivityStreamsImage
	// GetActivityStreamsIntransitiveActivity returns the value of this
	// property. When IsActivityStreamsIntransitiveActivity returns false,
	// GetActivityStreamsIntransitiveActivity will return an arbitrary
	// value.
	GetActivityStreamsIntransitiveActivity() ActivityStreamsIntransitiveActivity
	// GetActivityStreamsInvite returns the value of this property. When
	// IsActivityStreamsInvite returns false, GetActivityStreamsInvite
	// will return an arbitrary value.
	GetActivityStreamsInvite() ActivityStreamsInvite
	// GetActivityStreamsJoin returns the value of this property. When
	// IsActivityStreamsJoin returns false, GetActivityStreamsJoin will
	// return an arbitrary value.
	GetActivityStreamsJoin() ActivityStreamsJoin
	// GetActivityStreamsLeave returns the value of this property. When
	// IsActivityStreamsLeave returns false, GetActivityStreamsLeave will
	// return an arbitrary value.
	GetActivityStreamsLeave() ActivityStreamsLeave
	// GetActivityStreamsLike returns the value of this property. When
	// IsActivityStreamsLike returns false, GetActivityStreamsLike will
	// return an arbitrary value.
	GetActivityStreamsLike() ActivityStreamsLike
	// GetActivityStreamsLink returns the value of this property. When
	// IsActivityStreamsLink returns false, GetActivityStreamsLink will
	// return an arbitrary value.
	GetActivityStreamsLink() ActivityStreamsLink
	// GetActivityStreamsListen returns the value of this property. When
	// IsActivityStreamsListen returns false, GetActivityStreamsListen
	// will return an arbitrary value.
	GetActivityStreamsListen() ActivityStreamsListen
	// GetActivityStreamsMention returns the value of this property. When
	// IsActivityStreamsMention returns false, GetActivityStreamsMention
	// will return an arbitrary value.
	GetActivityStreamsMention() ActivityStreamsMention
	// GetActivityStreamsMove returns the value of this property. When
	// IsActivityStreamsMove returns false, GetActivityStreamsMove will
	// return an arbitrary value.
	GetActivityStreamsMove() ActivityStreamsMove
	// GetActivityStreamsNote returns the value of this property. When
	// IsActivityStreamsNote returns false, GetActivityStreamsNote will
	// return an arbitrary value.
	GetActivityStreamsNote() ActivityStreamsNote
	// GetActivityStreamsObject returns the value of this property. When
	// IsActivityStreamsObject returns false, GetActivityStreamsObject
	// will return an arbitrary value.
	GetActivityStreamsObject() ActivityStreamsObject
	// GetActivityStreamsOffer returns the value of this property. When
	// IsActivityStreamsOffer returns false, GetActivityStreamsOffer will
	// return an arbitrary value.
	GetActivityStreamsOffer() ActivityStreamsOffer
	// GetActivityStreamsOrderedCollection returns the value of this property.
	// When IsActivityStreamsOrderedCollection returns false,
	// GetActivityStreamsOrderedCollection will return an arbitrary value.
	GetActivityStreamsOrderedCollection() ActivityStreamsOrderedCollection
	// GetActivityStreamsOrderedCollectionPage returns the value of this
	// property. When IsActivityStreamsOrderedCollectionPage returns
	// false, GetActivityStreamsOrderedCollectionPage will return an
	// arbitrary value.
	GetActivityStreamsOrderedCollectionPage() ActivityStreamsOrderedCollectionPage
	// GetActivityStreamsOrganization returns the value of this property. When
	// IsActivityStreamsOrganization returns false,
	// GetActivityStreamsOrganization will return an arbitrary value.
	GetActivityStreamsOrganization() ActivityStreamsOrganization
	// GetActivityStreamsPage returns the value of this property. When
	// IsActivityStreamsPage returns false, GetActivityStreamsPage will
	// return an arbitrary value.
	GetActivityStreamsPage() ActivityStreamsPage
	// GetActivityStreamsPerson returns the value of this property. When
	// IsActivityStreamsPerson returns false, GetActivityStreamsPerson
	// will return an arbitrary value.
	GetActivityStreamsPerson() ActivityStreamsPerson
	// GetActivityStreamsPlace returns the value of this property. When
	// IsActivityStreamsPlace returns false, GetActivityStreamsPlace will
	// return an arbitrary value.
	GetActivityStreamsPlace() ActivityStreamsPlace
	// GetActivityStreamsProfile returns the value of this property. When
	// IsActivityStreamsProfile returns false, GetActivityStreamsProfile
	// will return an arbitrary value.
	GetActivityStreamsProfile() ActivityStreamsProfile
	// GetActivityStreamsQuestion returns the value of this property. When
	// IsActivityStreamsQuestion returns false, GetActivityStreamsQuestion
	// will return an arbitrary value.
	GetActivityStreamsQuestion() ActivityStreamsQuestion
	// GetActivityStreamsRead returns the value of this property. When
	// IsActivityStreamsRead returns false, GetActivityStreamsRead will
	// return an arbitrary value.
	GetActivityStreamsRead() ActivityStreamsRead
	// GetActivityStreamsReject returns the value of this property. When
	// IsActivityStreamsReject returns false, GetActivityStreamsReject
	// will return an arbitrary value.
	GetActivityStreamsReject() ActivityStreamsReject
	// GetActivityStreamsRelationship returns the value of this property. When
	// IsActivityStreamsRelationship returns false,
	// GetActivityStreamsRelationship will return an arbitrary value.
	GetActivityStreamsRelationship() ActivityStreamsRelationship
	// GetActivityStreamsRemove returns the value of this property. When
	// IsActivityStreamsRemove returns false, GetActivityStreamsRemove
	// will return an arbitrary value.
	GetActivityStreamsRemove() ActivityStreamsRemove
	// GetActivityStreamsService returns the value of this property. When
	// IsActivityStreamsService returns false, GetActivityStreamsService
	// will return an arbitrary value.
	GetActivityStreamsService() ActivityStreamsService
	// GetActivityStreamsTentativeAccept returns the value of this property.
	// When IsActivityStreamsTentativeAccept returns false,
	// GetActivityStreamsTentativeAccept will return an arbitrary value.
	GetActivityStreamsTentativeAccept() ActivityStreamsTentativeAccept
	// GetActivityStreamsTentativeReject returns the value of this property.
	// When IsActivityStreamsTentativeReject returns false,
	// GetActivityStreamsTentativeReject will return an arbitrary value.
	GetActivityStreamsTentativeReject() ActivityStreamsTentativeReject
	// GetActivityStreamsTombstone returns the value of this property. When
	// IsActivityStreamsTombstone returns false,
	// GetActivityStreamsTombstone will return an arbitrary value.
	GetActivityStreamsTombstone() ActivityStreamsTombstone
	// GetActivityStreamsTravel returns the value of this property. When
	// IsActivityStreamsTravel returns false, GetActivityStreamsTravel
	// will return an arbitrary value.
	GetActivityStreamsTravel() ActivityStreamsTravel
	// GetActivityStreamsUndo returns the value of this property. When
	// IsActivityStreamsUndo returns false, GetActivityStreamsUndo will
	// return an arbitrary value.
	GetActivityStreamsUndo() ActivityStreamsUndo
	// GetActivityStreamsUpdate returns the value of this property. When
	// IsActivityStreamsUpdate returns false, GetActivityStreamsUpdate
	// will return an arbitrary value.
	GetActivityStreamsUpdate() ActivityStreamsUpdate
	// GetActivityStreamsVideo returns the value of this property. When
	// IsActivityStreamsVideo returns false, GetActivityStreamsVideo will
	// return an arbitrary value.
	GetActivityStreamsVideo() ActivityStreamsVideo
	// GetActivityStreamsView returns the value of this property. When
	// IsActivityStreamsView returns false, GetActivityStreamsView will
	// return an arbitrary value.
	GetActivityStreamsView() ActivityStreamsView
	// GetForgeFedBranch returns the value of this property. When
	// IsForgeFedBranch returns false, GetForgeFedBranch will return an
	// arbitrary value.
	GetForgeFedBranch() ForgeFedBranch
	// GetForgeFedCommit returns the value of this property. When
	// IsForgeFedCommit returns false, GetForgeFedCommit will return an
	// arbitrary value.
	GetForgeFedCommit() ForgeFedCommit
	// GetForgeFedPush returns the value of this property. When IsForgeFedPush
	// returns false, GetForgeFedPush will return an arbitrary value.
	GetForgeFedPush() ForgeFedPush
	// GetForgeFedRepository returns the value of this property. When
	// IsForgeFedRepository returns false, GetForgeFedRepository will
	// return an arbitrary value.
	GetForgeFedRepository() ForgeFedRepository
	// GetForgeFedTicket returns the value of this property. When
	// IsForgeFedTicket returns false, GetForgeFedTicket will return an
	// arbitrary value.
	GetForgeFedTicket() ForgeFedTicket
	// GetForgeFedTicketDependency returns the value of this property. When
	// IsForgeFedTicketDependency returns false,
	// GetForgeFedTicketDependency will return an arbitrary value.
	GetForgeFedTicketDependency() ForgeFedTicketDependency
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return an arbitrary value.
	GetIRI() *url.URL
	// GetTootEmoji returns the value of this property. When IsTootEmoji
	// returns false, GetTootEmoji will return an arbitrary value.
	GetTootEmoji() TootEmoji
	// GetTootIdentityProof returns the value of this property. When
	// IsTootIdentityProof returns false, GetTootIdentityProof will return
	// an arbitrary value.
	GetTootIdentityProof() TootIdentityProof
	// GetType returns the value in this property as a Type. Returns nil if
	// the value is not an ActivityStreams type, such as an IRI or another
	// value.
	GetType() Type
	// HasAny returns true if any of the different values is set.
	HasAny() bool
	// IsActivityStreamsAccept returns true if this property has a type of
	// "Accept". When true, use the GetActivityStreamsAccept and
	// SetActivityStreamsAccept methods to access and set this property.
	IsActivityStreamsAccept() bool
	// IsActivityStreamsActivity returns true if this property has a type of
	// "Activity". When true, use the GetActivityStreamsActivity and
	// SetActivityStreamsActivity methods to access and set this property.
	IsActivityStreamsActivity() bool
	// IsActivityStreamsAdd returns true if this property has a type of "Add".
	// When true, use the GetActivityStreamsAdd and SetActivityStreamsAdd
	// methods to access and set this property.
	IsActivityStreamsAdd() bool
	// IsActivityStreamsAnnounce returns true if this property has a type of
	// "Announce". When true, use the GetActivityStreamsAnnounce and
	// SetActivityStreamsAnnounce methods to access and set this property.
	IsActivityStreamsAnnounce() bool
	// IsActivityStreamsApplication returns true if this property has a type
	// of "Application". When true, use the GetActivityStreamsApplication
	// and SetActivityStreamsApplication methods to access and set this
	// property.
	IsActivityStreamsApplication() bool
	// IsActivityStreamsArrive returns true if this property has a type of
	// "Arrive". When true, use the GetActivityStreamsArrive and
	// SetActivityStreamsArrive methods to access and set this property.
	IsActivityStreamsArrive() bool
	// IsActivityStreamsArticle returns true if this property has a type of
	// "Article". When true, use the GetActivityStreamsArticle and
	// SetActivityStreamsArticle methods to access and set this property.
	IsActivityStreamsArticle() bool
	// IsActivityStreamsAudio returns true if this property has a type of
	// "Audio". When true, use the GetActivityStreamsAudio and
	// SetActivityStreamsAudio methods to access and set this property.
	IsActivityStreamsAudio() bool
	// IsActivityStreamsBlock returns true if this property has a type of
	// "Block". When true, use the GetActivityStreamsBlock and
	// SetActivityStreamsBlock methods to access and set this property.
	IsActivityStreamsBlock() bool
	// IsActivityStreamsCollection returns true if this property has a type of
	// "Collection". When true, use the GetActivityStreamsCollection and
	// SetActivityStreamsCollection methods to access and set this
	// property.
	IsActivityStreamsCollection() bool
	// IsActivityStreamsCollectionPage returns true if this property has a
	// type of "CollectionPage". When true, use the
	// GetActivityStreamsCollectionPage and
	// SetActivityStreamsCollectionPage methods to access and set this
	// property.
	IsActivityStreamsCollectionPage() bool
	// IsActivityStreamsCreate returns true if this property has a type of
	// "Create". When true, use the GetActivityStreamsCreate and
	// SetActivityStreamsCreate methods to access and set this property.
	IsActivityStreamsCreate() bool
	// IsActivityStreamsDelete returns true if this property has a type of
	// "Delete". When true, use the GetActivityStreamsDelete and
	// SetActivityStreamsDelete methods to access and set this property.
	IsActivityStreamsDelete() bool
	// IsActivityStreamsDislike returns true if this property has a type of
	// "Dislike". When true, use the GetActivityStreamsDislike and
	// SetActivityStreamsDislike methods to access and set this property.
	IsActivityStreamsDislike() bool
	// IsActivityStreamsDocument returns true if this property has a type of
	// "Document". When true, use the GetActivityStreamsDocument and
	// SetActivityStreamsDocument methods to access and set this property.
	IsActivityStreamsDocument() bool
	// IsActivityStreamsEvent returns true if this property has a type of
	// "Event". When true, use the GetActivityStreamsEvent and
	// SetActivityStreamsEvent methods to access and set this property.
	IsActivityStreamsEvent() bool
	// IsActivityStreamsFlag returns true if this property has a type of
	// "Flag". When true, use the GetActivityStreamsFlag and
	// SetActivityStreamsFlag methods to access and set this property.
	IsActivityStreamsFlag() bool
	// IsActivityStreamsFollow returns true if this property has a type of
	// "Follow". When true, use the GetActivityStreamsFollow and
	// SetActivityStreamsFollow methods to access and set this property.
	IsActivityStreamsFollow() bool
	// IsActivityStreamsGroup returns true if this property has a type of
	// "Group". When true, use the GetActivityStreamsGroup and
	// SetActivityStreamsGroup methods to access and set this property.
	IsActivityStreamsGroup() bool
	// IsActivityStreamsIgnore returns true if this property has a type of
	// "Ignore". When true, use the GetActivityStreamsIgnore and
	// SetActivityStreamsIgnore methods to access and set this property.
	IsActivityStreamsIgnore() bool
	// IsActivityStreamsImage returns true if this property has a type of
	// "Image". When true, use the GetActivityStreamsImage and
	// SetActivityStreamsImage methods to access and set this property.
	IsActivityStreamsImage() bool
	// IsActivityStreamsIntransitiveActivity returns true if this property has
	// a type of "IntransitiveActivity". When true, use the
	// GetActivityStreamsIntransitiveActivity and
	// SetActivityStreamsIntransitiveActivity methods to access and set
	// this property.
	IsActivityStreamsIntransitiveActivity() bool
	// IsActivityStreamsInvite returns true if this property has a type of
	// "Invite". When true, use the GetActivityStreamsInvite and
	// SetActivityStreamsInvite methods to access and set this property.
	IsActivityStreamsInvite() bool
	// IsActivityStreamsJoin returns true if this property has a type of
	// "Join". When true, use the GetActivityStreamsJoin and
	// SetActivityStreamsJoin methods to access and set this property.
	IsActivityStreamsJoin() bool
	// IsActivityStreamsLeave returns true if this property has a type of
	// "Leave". When true, use the GetActivityStreamsLeave and
	// SetActivityStreamsLeave methods to access and set this property.
	IsActivityStreamsLeave() bool
	// IsActivityStreamsLike returns true if this property has a type of
	// "Like". When true, use the GetActivityStreamsLike and
	// SetActivityStreamsLike methods to access and set this property.
	IsActivityStreamsLike() bool
	// IsActivityStreamsLink returns true if this property has a type of
	// "Link". When true, use the GetActivityStreamsLink and
	// SetActivityStreamsLink methods to access and set this property.
	IsActivityStreamsLink() bool
	// IsActivityStreamsListen returns true if this property has a type of
	// "Listen". When true, use the GetActivityStreamsListen and
	// SetActivityStreamsListen methods to access and set this property.
	IsActivityStreamsListen() bool
	// IsActivityStreamsMention returns true if this property has a type of
	// "Mention". When true, use the GetActivityStreamsMention and
	// SetActivityStreamsMention methods to access and set this property.
	IsActivityStreamsMention() bool
	// IsActivityStreamsMove returns true if this property has a type of
	// "Move". When true, use the GetActivityStreamsMove and
	// SetActivityStreamsMove methods to access and set this property.
	IsActivityStreamsMove() bool
	// IsActivityStreamsNote returns true if this property has a type of
	// "Note". When true, use the GetActivityStreamsNote and
	// SetActivityStreamsNote methods to access and set this property.
	IsActivityStreamsNote() bool
	// IsActivityStreamsObject returns true if this property has a type of
	// "Object". When true, use the GetActivityStreamsObject and
	// SetActivityStreamsObject methods to access and set this property.
	IsActivityStreamsObject() bool
	// IsActivityStreamsOffer returns true if this property has a type of
	// "Offer". When true, use the GetActivityStreamsOffer and
	// SetActivityStreamsOffer methods to access and set this property.
	IsActivityStreamsOffer() bool
	// IsActivityStreamsOrderedCollection returns true if this property has a
	// type of "OrderedCollection". When true, use the
	// GetActivityStreamsOrderedCollection and
	// SetActivityStreamsOrderedCollection methods to access and set this
	// property.
	IsActivityStreamsOrderedCollection() bool
	// IsActivityStreamsOrderedCollectionPage returns true if this property
	// has a type of "OrderedCollectionPage". When true, use the
	// GetActivityStreamsOrderedCollectionPage and
	// SetActivityStreamsOrderedCollectionPage methods to access and set
	// this property.
	IsActivityStreamsOrderedCollectionPage() bool
	// IsActivityStreamsOrganization returns true if this property has a type
	// of "Organization". When true, use the
	// GetActivityStreamsOrganization and SetActivityStreamsOrganization
	// methods to access and set this property.
	IsActivityStreamsOrganization() bool
	// IsActivityStreamsPage returns true if this property has a type of
	// "Page". When true, use the GetActivityStreamsPage and
	// SetActivityStreamsPage methods to access and set this property.
	IsActivityStreamsPage() bool
	// IsActivityStreamsPerson returns true if this property has a type of
	// "Person". When true, use the GetActivityStreamsPerson and
	// SetActivityStreamsPerson methods to access and set this property.
	IsActivityStreamsPerson() bool
	// IsActivityStreamsPlace returns true if this property has a type of
	// "Place". When true, use the GetActivityStreamsPlace and
	// SetActivityStreamsPlace methods to access and set this property.
	IsActivityStreamsPlace() bool
	// IsActivityStreamsProfile returns true if this property has a type of
	// "Profile". When true, use the GetActivityStreamsProfile and
	// SetActivityStreamsProfile methods to access and set this property.
	IsActivityStreamsProfile() bool
	// IsActivityStreamsQuestion returns true if this property has a type of
	// "Question". When true, use the GetActivityStreamsQuestion and
	// SetActivityStreamsQuestion methods to access and set this property.
	IsActivityStreamsQuestion() bool
	// IsActivityStreamsRead returns true if this property has a type of
	// "Read". When true, use the GetActivityStreamsRead and
	// SetActivityStreamsRead methods to access and set this property.
	IsActivityStreamsRead() bool
	// IsActivityStreamsReject returns true if this property has a type of
	// "Reject". When true, use the GetActivityStreamsReject and
	// SetActivityStreamsReject methods to access and set this property.
	IsActivityStreamsReject() bool
	// IsActivityStreamsRelationship returns true if this property has a type
	// of "Relationship". When true, use the
	// GetActivityStreamsRelationship and SetActivityStreamsRelationship
	// methods to access and set this property.
	IsActivityStreamsRelationship() bool
	// IsActivityStreamsRemove returns true if this property has a type of
	// "Remove". When true, use the GetActivityStreamsRemove and
	// SetActivityStreamsRemove methods to access and set this property.
	IsActivityStreamsRemove() bool
	// IsActivityStreamsService returns true if this property has a type of
	// "Service". When true, use the GetActivityStreamsService and
	// SetActivityStreamsService methods to access and set this property.
	IsActivityStreamsService() bool
	// IsActivityStreamsTentativeAccept returns true if this property has a
	// type of "TentativeAccept". When true, use the
	// GetActivityStreamsTentativeAccept and
	// SetActivityStreamsTentativeAccept methods to access and set this
	// property.
	IsActivityStreamsTentativeAccept() bool
	// IsActivityStreamsTentativeReject returns true if this property has a
	// type of "TentativeReject". When true, use the
	// GetActivityStreamsTentativeReject and
	// SetActivityStreamsTentativeReject methods to access and set this
	// property.
	IsActivityStreamsTentativeReject() bool
	// IsActivityStreamsTombstone returns true if this property has a type of
	// "Tombstone". When true, use the GetActivityStreamsTombstone and
	// SetActivityStreamsTombstone methods to access and set this property.
	IsActivityStreamsTombstone() bool
	// IsActivityStreamsTravel returns true if this property has a type of
	// "Travel". When true, use the GetActivityStreamsTravel and
	// SetActivityStreamsTravel methods to access and set this property.
	IsActivityStreamsTravel() bool
	// IsActivityStreamsUndo returns true if this property has a type of
	// "Undo". When true, use the GetActivityStreamsUndo and
	// SetActivityStreamsUndo methods to access and set this property.
	IsActivityStreamsUndo() bool
	// IsActivityStreamsUpdate returns true if this property has a type of
	// "Update". When true, use the GetActivityStreamsUpdate and
	// SetActivityStreamsUpdate methods to access and set this property.
	IsActivityStreamsUpdate() bool
	// IsActivityStreamsVideo returns true if this property has a type of
	// "Video". When true, use the GetActivityStreamsVideo and
	// SetActivityStreamsVideo methods to access and set this property.
	IsActivityStreamsVideo() bool
	// IsActivityStreamsView returns true if this property has a type of
	// "View". When true, use the GetActivityStreamsView and
	// SetActivityStreamsView methods to access and set this property.
	IsActivityStreamsView() bool
	// IsForgeFedBranch returns true if this property has a type of "Branch".
	// When true, use the GetForgeFedBranch and SetForgeFedBranch methods
	// to access and set this property.
	IsForgeFedBranch() bool
	// IsForgeFedCommit returns true if this property has a type of "Commit".
	// When true, use the GetForgeFedCommit and SetForgeFedCommit methods
	// to access and set this property.
	IsForgeFedCommit() bool
	// IsForgeFedPush returns true if this property has a type of "Push". When
	// true, use the GetForgeFedPush and SetForgeFedPush methods to access
	// and set this property.
	IsForgeFedPush() bool
	// IsForgeFedRepository returns true if this property has a type of
	// "Repository". When true, use the GetForgeFedRepository and
	// SetForgeFedRepository methods to access and set this property.
	IsForgeFedRepository() bool
	// IsForgeFedTicket returns true if this property has a type of "Ticket".
	// When true, use the GetForgeFedTicket and SetForgeFedTicket methods
	// to access and set this property.
	IsForgeFedTicket() bool
	// IsForgeFedTicketDependency returns true if this property has a type of
	// "TicketDependency". When true, use the GetForgeFedTicketDependency
	// and SetForgeFedTicketDependency methods to access and set this
	// property.
	IsForgeFedTicketDependency() bool
	// IsIRI returns true if this property is an IRI. When true, use GetIRI
	// and SetIRI to access and set this property
	IsIRI() bool
	// IsTootEmoji returns true if this property has a type of "Emoji". When
	// true, use the GetTootEmoji and SetTootEmoji methods to access and
	// set this property.
	IsTootEmoji() bool
	// IsTootIdentityProof returns true if this property has a type of
	// "IdentityProof". When true, use the GetTootIdentityProof and
	// SetTootIdentityProof methods to access and set this property.
	IsTootIdentityProof() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsAttachmentPropertyIterator) bool
	// Name returns the name of this property: "ActivityStreamsAttachment".
	Name() string
	// Next returns the next iterator, or nil if there is no next iterator.
	Next() ActivityStreamsAttachmentPropertyIterator
	// Prev returns the previous iterator, or nil if there is no previous
	// iterator.
	Prev() ActivityStreamsAttachmentPropertyIterator
	// SetActivityStreamsAccept sets the value of this property. Calling
	// IsActivityStreamsAccept afterwards returns true.
	SetActivityStreamsAccept(v ActivityStreamsAccept)
	// SetActivityStreamsActivity sets the value of this property. Calling
	// IsActivityStreamsActivity afterwards returns true.
	SetActivityStreamsActivity(v ActivityStreamsActivity)
	// SetActivityStreamsAdd sets the value of this property. Calling
	// IsActivityStreamsAdd afterwards returns true.
	SetActivityStreamsAdd(v ActivityStreamsAdd)
	// SetActivityStreamsAnnounce sets the value of this property. Calling
	// IsActivityStreamsAnnounce afterwards returns true.
	SetActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// SetActivityStreamsApplication sets the value of this property. Calling
	// IsActivityStreamsApplication afterwards returns true.
	SetActivityStreamsApplication(v ActivityStreamsApplication)
	// SetActivityStreamsArrive sets the value of this property. Calling
	// IsActivityStreamsArrive afterwards returns true.
	SetActivityStreamsArrive(v ActivityStreamsArrive)
	// SetActivityStreamsArticle sets the value of this property. Calling
	// IsActivityStreamsArticle afterwards returns true.
	SetActivityStreamsArticle(v ActivityStreamsArticle)
	// SetActivityStreamsAudio sets the value of this property. Calling
	// IsActivityStreamsAudio afterwards returns true.
	SetActivityStreamsAudio(v ActivityStreamsAudio)
	// SetActivityStreamsBlock sets the value of this property. Calling
	// IsActivityStreamsBlock afterwards returns true.
	SetActivityStreamsBlock(v ActivityStreamsBlock)
	// SetActivityStreamsCollection sets the value of this property. Calling
	// IsActivityStreamsCollection afterwards returns true.
	SetActivityStreamsCollection(v ActivityStreamsCollection)
	// SetActivityStreamsCollectionPage sets the value of this property.
	// Calling IsActivityStreamsCollectionPage afterwards returns true.
	SetActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// SetActivityStreamsCreate sets the value of this property. Calling
	// IsActivityStreamsCreate afterwards returns true.
	SetActivityStreamsCreate(v ActivityStreamsCreate)
	// SetActivityStreamsDelete sets the value of this property. Calling
	// IsActivityStreamsDelete afterwards returns true.
	SetActivityStreamsDelete(v ActivityStreamsDelete)
	// SetActivityStreamsDislike sets the value of this property. Calling
	// IsActivityStreamsDislike afterwards returns true.
	SetActivityStreamsDislike(v ActivityStreamsDislike)
	// SetActivityStreamsDocument sets the value of this property. Calling
	// IsActivityStreamsDocument afterwards returns true.
	SetActivityStreamsDocument(v ActivityStreamsDocument)
	// SetActivityStreamsEvent sets the value of this property. Calling
	// IsActivityStreamsEvent afterwards returns true.
	SetActivityStreamsEvent(v ActivityStreamsEvent)
	// SetActivityStreamsFlag sets the value of this property. Calling
	// IsActivityStreamsFlag afterwards returns true.
	SetActivityStreamsFlag(v ActivityStreamsFlag)
	// SetActivityStreamsFollow sets the value of this property. Calling
	// IsActivityStreamsFollow afterwards returns true.
	SetActivityStreamsFollow(v ActivityStreamsFollow)
	// SetActivityStreamsGroup sets the value of this property. Calling
	// IsActivityStreamsGroup afterwards returns true.
	SetActivityStreamsGroup(v ActivityStreamsGroup)
	// SetActivityStreamsIgnore sets the value of this property. Calling
	// IsActivityStreamsIgnore afterwards returns true.
	SetActivityStreamsIgnore(v ActivityStreamsIgnore)
	// SetActivityStreamsImage sets the value of this property. Calling
	// IsActivityStreamsImage afterwards returns true.
	SetActivityStreamsImage(v ActivityStreamsImage)
	// SetActivityStreamsIntransitiveActivity sets the value of this property.
	// Calling IsActivityStreamsIntransitiveActivity afterwards returns
	// true.
	SetActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// SetActivityStreamsInvite sets the value of this property. Calling
	// IsActivityStreamsInvite afterwards returns true.
	SetActivityStreamsInvite(v ActivityStreamsInvite)
	// SetActivityStreamsJoin sets the value of this property. Calling
	// IsActivityStreamsJoin afterwards returns true.
	SetActivityStreamsJoin(v ActivityStreamsJoin)
	// SetActivityStreamsLeave sets the value of this property. Calling
	// IsActivityStreamsLeave afterwards returns true.
	SetActivityStreamsLeave(v ActivityStreamsLeave)
	// SetActivityStreamsLike sets the value of this property. Calling
	// IsActivityStreamsLike afterwards returns true.
	SetActivityStreamsLike(v ActivityStreamsLike)
	// SetActivityStreamsLink sets the value of this property. Calling
	// IsActivityStreamsLink afterwards returns true.
	SetActivityStreamsLink(v ActivityStreamsLink)
	// SetActivityStreamsListen sets the value of this property. Calling
	// IsActivityStreamsListen afterwards returns true.
	SetActivityStreamsListen(v ActivityStreamsListen)
	// SetActivityStreamsMention sets the value of this property. Calling
	// IsActivityStreamsMention afterwards returns true.
	SetActivityStreamsMention(v ActivityStreamsMention)
	// SetActivityStreamsMove sets the value of this property. Calling
	// IsActivityStreamsMove afterwards returns true.
	SetActivityStreamsMove(v ActivityStreamsMove)
	// SetActivityStreamsNote sets the value of this property. Calling
	// IsActivityStreamsNote afterwards returns true.
	SetActivityStreamsNote(v ActivityStreamsNote)
	// SetActivityStreamsObject sets the value of this property. Calling
	// IsActivityStreamsObject afterwards returns true.
	SetActivityStreamsObject(v ActivityStreamsObject)
	// SetActivityStreamsOffer sets the value of this property. Calling
	// IsActivityStreamsOffer afterwards returns true.
	SetActivityStreamsOffer(v ActivityStreamsOffer)
	// SetActivityStreamsOrderedCollection sets the value of this property.
	// Calling IsActivityStreamsOrderedCollection afterwards returns true.
	SetActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// SetActivityStreamsOrderedCollectionPage sets the value of this
	// property. Calling IsActivityStreamsOrderedCollectionPage afterwards
	// returns true.
	SetActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// SetActivityStreamsOrganization sets the value of this property. Calling
	// IsActivityStreamsOrganization afterwards returns true.
	SetActivityStreamsOrganization(v ActivityStreamsOrganization)
	// SetActivityStreamsPage sets the value of this property. Calling
	// IsActivityStreamsPage afterwards returns true.
	SetActivityStreamsPage(v ActivityStreamsPage)
	// SetActivityStreamsPerson sets the value of this property. Calling
	// IsActivityStreamsPerson afterwards returns true.
	SetActivityStreamsPerson(v ActivityStreamsPerson)
	// SetActivityStreamsPlace sets the value of this property. Calling
	// IsActivityStreamsPlace afterwards returns true.
	SetActivityStreamsPlace(v ActivityStreamsPlace)
	// SetActivityStreamsProfile sets the value of this property. Calling
	// IsActivityStreamsProfile afterwards returns true.
	SetActivityStreamsProfile(v ActivityStreamsProfile)
	// SetActivityStreamsQuestion sets the value of this property. Calling
	// IsActivityStreamsQuestion afterwards returns true.
	SetActivityStreamsQuestion(v ActivityStreamsQuestion)
	// SetActivityStreamsRead sets the value of this property. Calling
	// IsActivityStreamsRead afterwards returns true.
	SetActivityStreamsRead(v ActivityStreamsRead)
	// SetActivityStreamsReject sets the value of this property. Calling
	// IsActivityStreamsReject afterwards returns true.
	SetActivityStreamsReject(v ActivityStreamsReject)
	// SetActivityStreamsRelationship sets the value of this property. Calling
	// IsActivityStreamsRelationship afterwards returns true.
	SetActivityStreamsRelationship(v ActivityStreamsRelationship)
	// SetActivityStreamsRemove sets the value of this property. Calling
	// IsActivityStreamsRemove afterwards returns true.
	SetActivityStreamsRemove(v ActivityStreamsRemove)
	// SetActivityStreamsService sets the value of this property. Calling
	// IsActivityStreamsService afterwards returns true.
	SetActivityStreamsService(v ActivityStreamsService)
	// SetActivityStreamsTentativeAccept sets the value of this property.
	// Calling IsActivityStreamsTentativeAccept afterwards returns true.
	SetActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// SetActivityStreamsTentativeReject sets the value of this property.
	// Calling IsActivityStreamsTentativeReject afterwards returns true.
	SetActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// SetActivityStreamsTombstone sets the value of this property. Calling
	// IsActivityStreamsTombstone afterwards returns true.
	SetActivityStreamsTombstone(v ActivityStreamsTombstone)
	// SetActivityStreamsTravel sets the value of this property. Calling
	// IsActivityStreamsTravel afterwards returns true.
	SetActivityStreamsTravel(v ActivityStreamsTravel)
	// SetActivityStreamsUndo sets the value of this property. Calling
	// IsActivityStreamsUndo afterwards returns true.
	SetActivityStreamsUndo(v ActivityStreamsUndo)
	// SetActivityStreamsUpdate sets the value of this property. Calling
	// IsActivityStreamsUpdate afterwards returns true.
	SetActivityStreamsUpdate(v ActivityStreamsUpdate)
	// SetActivityStreamsVideo sets the value of this property. Calling
	// IsActivityStreamsVideo afterwards returns true.
	SetActivityStreamsVideo(v ActivityStreamsVideo)
	// SetActivityStreamsView sets the value of this property. Calling
	// IsActivityStreamsView afterwards returns true.
	SetActivityStreamsView(v ActivityStreamsView)
	// SetForgeFedBranch sets the value of this property. Calling
	// IsForgeFedBranch afterwards returns true.
	SetForgeFedBranch(v ForgeFedBranch)
	// SetForgeFedCommit sets the value of this property. Calling
	// IsForgeFedCommit afterwards returns true.
	SetForgeFedCommit(v ForgeFedCommit)
	// SetForgeFedPush sets the value of this property. Calling IsForgeFedPush
	// afterwards returns true.
	SetForgeFedPush(v ForgeFedPush)
	// SetForgeFedRepository sets the value of this property. Calling
	// IsForgeFedRepository afterwards returns true.
	SetForgeFedRepository(v ForgeFedRepository)
	// SetForgeFedTicket sets the value of this property. Calling
	// IsForgeFedTicket afterwards returns true.
	SetForgeFedTicket(v ForgeFedTicket)
	// SetForgeFedTicketDependency sets the value of this property. Calling
	// IsForgeFedTicketDependency afterwards returns true.
	SetForgeFedTicketDependency(v ForgeFedTicketDependency)
	// SetIRI sets the value of this property. Calling IsIRI afterwards
	// returns true.
	SetIRI(v *url.URL)
	// SetTootEmoji sets the value of this property. Calling IsTootEmoji
	// afterwards returns true.
	SetTootEmoji(v TootEmoji)
	// SetTootIdentityProof sets the value of this property. Calling
	// IsTootIdentityProof afterwards returns true.
	SetTootIdentityProof(v TootIdentityProof)
	// SetType attempts to set the property for the arbitrary type. Returns an
	// error if it is not a valid type to set on this property.
	SetType(t Type) error
}

ActivityStreamsAttachmentPropertyIterator represents a single value for the "attachment" property.

type ActivityStreamsAttributedToProperty

type ActivityStreamsAttributedToProperty interface {
	// AppendActivityStreamsAccept appends a Accept value to the back of a
	// list of the property "attributedTo". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsAccept(v ActivityStreamsAccept)
	// AppendActivityStreamsActivity appends a Activity value to the back of a
	// list of the property "attributedTo". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsActivity(v ActivityStreamsActivity)
	// AppendActivityStreamsAdd appends a Add value to the back of a list of
	// the property "attributedTo". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsAdd(v ActivityStreamsAdd)
	// AppendActivityStreamsAnnounce appends a Announce value to the back of a
	// list of the property "attributedTo". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// AppendActivityStreamsApplication appends a Application value to the
	// back of a list of the property "attributedTo". Invalidates
	// iterators that are traversing using Prev.
	AppendActivityStreamsApplication(v ActivityStreamsApplication)
	// AppendActivityStreamsArrive appends a Arrive value to the back of a
	// list of the property "attributedTo". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsArrive(v ActivityStreamsArrive)
	// AppendActivityStreamsArticle appends a Article value to the back of a
	// list of the property "attributedTo". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsArticle(v ActivityStreamsArticle)
	// AppendActivityStreamsAudio appends a Audio value to the back of a list
	// of the property "attributedTo". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsAudio(v ActivityStreamsAudio)
	// AppendActivityStreamsBlock appends a Block value to the back of a list
	// of the property "attributedTo". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsBlock(v ActivityStreamsBlock)
	// AppendActivityStreamsCollection appends a Collection value to the back
	// of a list of the property "attributedTo". Invalidates iterators
	// that are traversing using Prev.
	AppendActivityStreamsCollection(v ActivityStreamsCollection)
	// AppendActivityStreamsCollectionPage appends a CollectionPage value to
	// the back of a list of the property "attributedTo". Invalidates
	// iterators that are traversing using Prev.
	AppendActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// AppendActivityStreamsCreate appends a Create value to the back of a
	// list of the property "attributedTo". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsCreate(v ActivityStreamsCreate)
	// AppendActivityStreamsDelete appends a Delete value to the back of a
	// list of the property "attributedTo". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDelete(v ActivityStreamsDelete)
	// AppendActivityStreamsDislike appends a Dislike value to the back of a
	// list of the property "attributedTo". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDislike(v ActivityStreamsDislike)
	// AppendActivityStreamsDocument appends a Document value to the back of a
	// list of the property "attributedTo". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDocument(v ActivityStreamsDocument)
	// AppendActivityStreamsEvent appends a Event value to the back of a list
	// of the property "attributedTo". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsEvent(v ActivityStreamsEvent)
	// AppendActivityStreamsFlag appends a Flag value to the back of a list of
	// the property "attributedTo". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsFlag(v ActivityStreamsFlag)
	// AppendActivityStreamsFollow appends a Follow value to the back of a
	// list of the property "attributedTo". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsFollow(v ActivityStreamsFollow)
	// AppendActivityStreamsGroup appends a Group value to the back of a list
	// of the property "attributedTo". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsGroup(v ActivityStreamsGroup)
	// AppendActivityStreamsIgnore appends a Ignore value to the back of a
	// list of the property "attributedTo". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsIgnore(v ActivityStreamsIgnore)
	// AppendActivityStreamsImage appends a Image value to the back of a list
	// of the property "attributedTo". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsImage(v ActivityStreamsImage)
	// AppendActivityStreamsIntransitiveActivity appends a
	// IntransitiveActivity value to the back of a list of the property
	// "attributedTo". Invalidates iterators that are traversing using
	// Prev.
	AppendActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// AppendActivityStreamsInvite appends a Invite value to the back of a
	// list of the property "attributedTo". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsInvite(v ActivityStreamsInvite)
	// AppendActivityStreamsJoin appends a Join value to the back of a list of
	// the property "attributedTo". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsJoin(v ActivityStreamsJoin)
	// AppendActivityStreamsLeave appends a Leave value to the back of a list
	// of the property "attributedTo". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsLeave(v ActivityStreamsLeave)
	// AppendActivityStreamsLike appends a Like value to the back of a list of
	// the property "attributedTo". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsLike(v ActivityStreamsLike)
	// AppendActivityStreamsLink appends a Link value to the back of a list of
	// the property "attributedTo". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsLink(v ActivityStreamsLink)
	// AppendActivityStreamsListen appends a Listen value to the back of a
	// list of the property "attributedTo". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsListen(v ActivityStreamsListen)
	// AppendActivityStreamsMention appends a Mention value to the back of a
	// list of the property "attributedTo". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsMention(v ActivityStreamsMention)
	// AppendActivityStreamsMove appends a Move value to the back of a list of
	// the property "attributedTo". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsMove(v ActivityStreamsMove)
	// AppendActivityStreamsNote appends a Note value to the back of a list of
	// the property "attributedTo". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsNote(v ActivityStreamsNote)
	// AppendActivityStreamsObject appends a Object value to the back of a
	// list of the property "attributedTo". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsObject(v ActivityStreamsObject)
	// AppendActivityStreamsOffer appends a Offer value to the back of a list
	// of the property "attributedTo". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsOffer(v ActivityStreamsOffer)
	// AppendActivityStreamsOrderedCollection appends a OrderedCollection
	// value to the back of a list of the property "attributedTo".
	// Invalidates iterators that are traversing using Prev.
	AppendActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// AppendActivityStreamsOrderedCollectionPage appends a
	// OrderedCollectionPage value to the back of a list of the property
	// "attributedTo". Invalidates iterators that are traversing using
	// Prev.
	AppendActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// AppendActivityStreamsOrganization appends a Organization value to the
	// back of a list of the property "attributedTo". Invalidates
	// iterators that are traversing using Prev.
	AppendActivityStreamsOrganization(v ActivityStreamsOrganization)
	// AppendActivityStreamsPage appends a Page value to the back of a list of
	// the property "attributedTo". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsPage(v ActivityStreamsPage)
	// AppendActivityStreamsPerson appends a Person value to the back of a
	// list of the property "attributedTo". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsPerson(v ActivityStreamsPerson)
	// AppendActivityStreamsPlace appends a Place value to the back of a list
	// of the property "attributedTo". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsPlace(v ActivityStreamsPlace)
	// AppendActivityStreamsProfile appends a Profile value to the back of a
	// list of the property "attributedTo". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsProfile(v ActivityStreamsProfile)
	// AppendActivityStreamsQuestion appends a Question value to the back of a
	// list of the property "attributedTo". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsQuestion(v ActivityStreamsQuestion)
	// AppendActivityStreamsRead appends a Read value to the back of a list of
	// the property "attributedTo". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsRead(v ActivityStreamsRead)
	// AppendActivityStreamsReject appends a Reject value to the back of a
	// list of the property "attributedTo". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsReject(v ActivityStreamsReject)
	// AppendActivityStreamsRelationship appends a Relationship value to the
	// back of a list of the property "attributedTo". Invalidates
	// iterators that are traversing using Prev.
	AppendActivityStreamsRelationship(v ActivityStreamsRelationship)
	// AppendActivityStreamsRemove appends a Remove value to the back of a
	// list of the property "attributedTo". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsRemove(v ActivityStreamsRemove)
	// AppendActivityStreamsService appends a Service value to the back of a
	// list of the property "attributedTo". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsService(v ActivityStreamsService)
	// AppendActivityStreamsTentativeAccept appends a TentativeAccept value to
	// the back of a list of the property "attributedTo". Invalidates
	// iterators that are traversing using Prev.
	AppendActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// AppendActivityStreamsTentativeReject appends a TentativeReject value to
	// the back of a list of the property "attributedTo". Invalidates
	// iterators that are traversing using Prev.
	AppendActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// AppendActivityStreamsTombstone appends a Tombstone value to the back of
	// a list of the property "attributedTo". Invalidates iterators that
	// are traversing using Prev.
	AppendActivityStreamsTombstone(v ActivityStreamsTombstone)
	// AppendActivityStreamsTravel appends a Travel value to the back of a
	// list of the property "attributedTo". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsTravel(v ActivityStreamsTravel)
	// AppendActivityStreamsUndo appends a Undo value to the back of a list of
	// the property "attributedTo". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsUndo(v ActivityStreamsUndo)
	// AppendActivityStreamsUpdate appends a Update value to the back of a
	// list of the property "attributedTo". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsUpdate(v ActivityStreamsUpdate)
	// AppendActivityStreamsVideo appends a Video value to the back of a list
	// of the property "attributedTo". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsVideo(v ActivityStreamsVideo)
	// AppendActivityStreamsView appends a View value to the back of a list of
	// the property "attributedTo". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsView(v ActivityStreamsView)
	// AppendForgeFedBranch appends a Branch value to the back of a list of
	// the property "attributedTo". Invalidates iterators that are
	// traversing using Prev.
	AppendForgeFedBranch(v ForgeFedBranch)
	// AppendForgeFedCommit appends a Commit value to the back of a list of
	// the property "attributedTo". Invalidates iterators that are
	// traversing using Prev.
	AppendForgeFedCommit(v ForgeFedCommit)
	// AppendForgeFedPush appends a Push value to the back of a list of the
	// property "attributedTo". Invalidates iterators that are traversing
	// using Prev.
	AppendForgeFedPush(v ForgeFedPush)
	// AppendForgeFedRepository appends a Repository value to the back of a
	// list of the property "attributedTo". Invalidates iterators that are
	// traversing using Prev.
	AppendForgeFedRepository(v ForgeFedRepository)
	// AppendForgeFedTicket appends a Ticket value to the back of a list of
	// the property "attributedTo". Invalidates iterators that are
	// traversing using Prev.
	AppendForgeFedTicket(v ForgeFedTicket)
	// AppendForgeFedTicketDependency appends a TicketDependency value to the
	// back of a list of the property "attributedTo". Invalidates
	// iterators that are traversing using Prev.
	AppendForgeFedTicketDependency(v ForgeFedTicketDependency)
	// AppendIRI appends an IRI value to the back of a list of the property
	// "attributedTo"
	AppendIRI(v *url.URL)
	// AppendTootEmoji appends a Emoji value to the back of a list of the
	// property "attributedTo". Invalidates iterators that are traversing
	// using Prev.
	AppendTootEmoji(v TootEmoji)
	// AppendTootIdentityProof appends a IdentityProof value to the back of a
	// list of the property "attributedTo". Invalidates iterators that are
	// traversing using Prev.
	AppendTootIdentityProof(v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "attributedTo". Invalidates iterators that are
	// traversing using Prev. Returns an error if the type is not a valid
	// one to set for this property.
	AppendType(t Type) error
	// At returns the property value for the specified index. Panics if the
	// index is out of bounds.
	At(index int) ActivityStreamsAttributedToPropertyIterator
	// Begin returns the first iterator, or nil if empty. Can be used with the
	// iterator's Next method and this property's End method to iterate
	// from front to back through all values.
	Begin() ActivityStreamsAttributedToPropertyIterator
	// Empty returns returns true if there are no elements.
	Empty() bool
	// End returns beyond-the-last iterator, which is nil. Can be used with
	// the iterator's Next method and this property's Begin method to
	// iterate from front to back through all values.
	End() ActivityStreamsAttributedToPropertyIterator
	// InsertActivityStreamsAccept inserts a Accept value at the specified
	// index for a property "attributedTo". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAccept(idx int, v ActivityStreamsAccept)
	// InsertActivityStreamsActivity inserts a Activity value at the specified
	// index for a property "attributedTo". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsActivity(idx int, v ActivityStreamsActivity)
	// InsertActivityStreamsAdd inserts a Add value at the specified index for
	// a property "attributedTo". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAdd(idx int, v ActivityStreamsAdd)
	// InsertActivityStreamsAnnounce inserts a Announce value at the specified
	// index for a property "attributedTo". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAnnounce(idx int, v ActivityStreamsAnnounce)
	// InsertActivityStreamsApplication inserts a Application value at the
	// specified index for a property "attributedTo". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsApplication(idx int, v ActivityStreamsApplication)
	// InsertActivityStreamsArrive inserts a Arrive value at the specified
	// index for a property "attributedTo". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsArrive(idx int, v ActivityStreamsArrive)
	// InsertActivityStreamsArticle inserts a Article value at the specified
	// index for a property "attributedTo". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsArticle(idx int, v ActivityStreamsArticle)
	// InsertActivityStreamsAudio inserts a Audio value at the specified index
	// for a property "attributedTo". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAudio(idx int, v ActivityStreamsAudio)
	// InsertActivityStreamsBlock inserts a Block value at the specified index
	// for a property "attributedTo". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsBlock(idx int, v ActivityStreamsBlock)
	// InsertActivityStreamsCollection inserts a Collection value at the
	// specified index for a property "attributedTo". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsCollection(idx int, v ActivityStreamsCollection)
	// InsertActivityStreamsCollectionPage inserts a CollectionPage value at
	// the specified index for a property "attributedTo". Existing
	// elements at that index and higher are shifted back once.
	// Invalidates all iterators.
	InsertActivityStreamsCollectionPage(idx int, v ActivityStreamsCollectionPage)
	// InsertActivityStreamsCreate inserts a Create value at the specified
	// index for a property "attributedTo". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsCreate(idx int, v ActivityStreamsCreate)
	// InsertActivityStreamsDelete inserts a Delete value at the specified
	// index for a property "attributedTo". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDelete(idx int, v ActivityStreamsDelete)
	// InsertActivityStreamsDislike inserts a Dislike value at the specified
	// index for a property "attributedTo". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDislike(idx int, v ActivityStreamsDislike)
	// InsertActivityStreamsDocument inserts a Document value at the specified
	// index for a property "attributedTo". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDocument(idx int, v ActivityStreamsDocument)
	// InsertActivityStreamsEvent inserts a Event value at the specified index
	// for a property "attributedTo". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsEvent(idx int, v ActivityStreamsEvent)
	// InsertActivityStreamsFlag inserts a Flag value at the specified index
	// for a property "attributedTo". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsFlag(idx int, v ActivityStreamsFlag)
	// InsertActivityStreamsFollow inserts a Follow value at the specified
	// index for a property "attributedTo". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsFollow(idx int, v ActivityStreamsFollow)
	// InsertActivityStreamsGroup inserts a Group value at the specified index
	// for a property "attributedTo". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsGroup(idx int, v ActivityStreamsGroup)
	// InsertActivityStreamsIgnore inserts a Ignore value at the specified
	// index for a property "attributedTo". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsIgnore(idx int, v ActivityStreamsIgnore)
	// InsertActivityStreamsImage inserts a Image value at the specified index
	// for a property "attributedTo". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsImage(idx int, v ActivityStreamsImage)
	// InsertActivityStreamsIntransitiveActivity inserts a
	// IntransitiveActivity value at the specified index for a property
	// "attributedTo". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertActivityStreamsIntransitiveActivity(idx int, v ActivityStreamsIntransitiveActivity)
	// InsertActivityStreamsInvite inserts a Invite value at the specified
	// index for a property "attributedTo". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsInvite(idx int, v ActivityStreamsInvite)
	// InsertActivityStreamsJoin inserts a Join value at the specified index
	// for a property "attributedTo". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsJoin(idx int, v ActivityStreamsJoin)
	// InsertActivityStreamsLeave inserts a Leave value at the specified index
	// for a property "attributedTo". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsLeave(idx int, v ActivityStreamsLeave)
	// InsertActivityStreamsLike inserts a Like value at the specified index
	// for a property "attributedTo". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsLike(idx int, v ActivityStreamsLike)
	// InsertActivityStreamsLink inserts a Link value at the specified index
	// for a property "attributedTo". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsLink(idx int, v ActivityStreamsLink)
	// InsertActivityStreamsListen inserts a Listen value at the specified
	// index for a property "attributedTo". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsListen(idx int, v ActivityStreamsListen)
	// InsertActivityStreamsMention inserts a Mention value at the specified
	// index for a property "attributedTo". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsMention(idx int, v ActivityStreamsMention)
	// InsertActivityStreamsMove inserts a Move value at the specified index
	// for a property "attributedTo". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsMove(idx int, v ActivityStreamsMove)
	// InsertActivityStreamsNote inserts a Note value at the specified index
	// for a property "attributedTo". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsNote(idx int, v ActivityStreamsNote)
	// InsertActivityStreamsObject inserts a Object value at the specified
	// index for a property "attributedTo". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsObject(idx int, v ActivityStreamsObject)
	// InsertActivityStreamsOffer inserts a Offer value at the specified index
	// for a property "attributedTo". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsOffer(idx int, v ActivityStreamsOffer)
	// InsertActivityStreamsOrderedCollection inserts a OrderedCollection
	// value at the specified index for a property "attributedTo".
	// Existing elements at that index and higher are shifted back once.
	// Invalidates all iterators.
	InsertActivityStreamsOrderedCollection(idx int, v ActivityStreamsOrderedCollection)
	// InsertActivityStreamsOrderedCollectionPage inserts a
	// OrderedCollectionPage value at the specified index for a property
	// "attributedTo". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertActivityStreamsOrderedCollectionPage(idx int, v ActivityStreamsOrderedCollectionPage)
	// InsertActivityStreamsOrganization inserts a Organization value at the
	// specified index for a property "attributedTo". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsOrganization(idx int, v ActivityStreamsOrganization)
	// InsertActivityStreamsPage inserts a Page value at the specified index
	// for a property "attributedTo". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsPage(idx int, v ActivityStreamsPage)
	// InsertActivityStreamsPerson inserts a Person value at the specified
	// index for a property "attributedTo". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsPerson(idx int, v ActivityStreamsPerson)
	// InsertActivityStreamsPlace inserts a Place value at the specified index
	// for a property "attributedTo". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsPlace(idx int, v ActivityStreamsPlace)
	// InsertActivityStreamsProfile inserts a Profile value at the specified
	// index for a property "attributedTo". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsProfile(idx int, v ActivityStreamsProfile)
	// InsertActivityStreamsQuestion inserts a Question value at the specified
	// index for a property "attributedTo". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsQuestion(idx int, v ActivityStreamsQuestion)
	// InsertActivityStreamsRead inserts a Read value at the specified index
	// for a property "attributedTo". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsRead(idx int, v ActivityStreamsRead)
	// InsertActivityStreamsReject inserts a Reject value at the specified
	// index for a property "attributedTo". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsReject(idx int, v ActivityStreamsReject)
	// InsertActivityStreamsRelationship inserts a Relationship value at the
	// specified index for a property "attributedTo". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsRelationship(idx int, v ActivityStreamsRelationship)
	// InsertActivityStreamsRemove inserts a Remove value at the specified
	// index for a property "attributedTo". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsRemove(idx int, v ActivityStreamsRemove)
	// InsertActivityStreamsService inserts a Service value at the specified
	// index for a property "attributedTo". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsService(idx int, v ActivityStreamsService)
	// InsertActivityStreamsTentativeAccept inserts a TentativeAccept value at
	// the specified index for a property "attributedTo". Existing
	// elements at that index and higher are shifted back once.
	// Invalidates all iterators.
	InsertActivityStreamsTentativeAccept(idx int, v ActivityStreamsTentativeAccept)
	// InsertActivityStreamsTentativeReject inserts a TentativeReject value at
	// the specified index for a property "attributedTo". Existing
	// elements at that index and higher are shifted back once.
	// Invalidates all iterators.
	InsertActivityStreamsTentativeReject(idx int, v ActivityStreamsTentativeReject)
	// InsertActivityStreamsTombstone inserts a Tombstone value at the
	// specified index for a property "attributedTo". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsTombstone(idx int, v ActivityStreamsTombstone)
	// InsertActivityStreamsTravel inserts a Travel value at the specified
	// index for a property "attributedTo". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsTravel(idx int, v ActivityStreamsTravel)
	// InsertActivityStreamsUndo inserts a Undo value at the specified index
	// for a property "attributedTo". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsUndo(idx int, v ActivityStreamsUndo)
	// InsertActivityStreamsUpdate inserts a Update value at the specified
	// index for a property "attributedTo". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsUpdate(idx int, v ActivityStreamsUpdate)
	// InsertActivityStreamsVideo inserts a Video value at the specified index
	// for a property "attributedTo". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsVideo(idx int, v ActivityStreamsVideo)
	// InsertActivityStreamsView inserts a View value at the specified index
	// for a property "attributedTo". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsView(idx int, v ActivityStreamsView)
	// InsertForgeFedBranch inserts a Branch value at the specified index for
	// a property "attributedTo". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertForgeFedBranch(idx int, v ForgeFedBranch)
	// InsertForgeFedCommit inserts a Commit value at the specified index for
	// a property "attributedTo". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertForgeFedCommit(idx int, v ForgeFedCommit)
	// InsertForgeFedPush inserts a Push value at the specified index for a
	// property "attributedTo". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertForgeFedPush(idx int, v ForgeFedPush)
	// InsertForgeFedRepository inserts a Repository value at the specified
	// index for a property "attributedTo". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertForgeFedRepository(idx int, v ForgeFedRepository)
	// InsertForgeFedTicket inserts a Ticket value at the specified index for
	// a property "attributedTo". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertForgeFedTicket(idx int, v ForgeFedTicket)
	// InsertForgeFedTicketDependency inserts a TicketDependency value at the
	// specified index for a property "attributedTo". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
	// Insert inserts an IRI value at the specified index for a property
	// "attributedTo". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertIRI(idx int, v *url.URL)
	// InsertTootEmoji inserts a Emoji value at the specified index for a
	// property "attributedTo". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertTootEmoji(idx int, v TootEmoji)
	// InsertTootIdentityProof inserts a IdentityProof value at the specified
	// index for a property "attributedTo". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertTootIdentityProof(idx int, v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "attributedTo". Invalidates all iterators. Returns an
	// error if the type is not a valid one to set for this property.
	InsertType(idx int, t Type) error
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API method specifically needed only for alternate
	// implementations for go-fed. Applications should not use this
	// method. Panics if the index is out of bounds.
	KindIndex(idx int) int
	// Len returns the number of values that exist for the "attributedTo"
	// property.
	Len() (length int)
	// Less computes whether another property is less than this one. Mixing
	// types results in a consistent but arbitrary ordering
	Less(i, j int) bool
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsAttributedToProperty) bool
	// Name returns the name of this property ("attributedTo") with any alias.
	Name() string
	// PrependActivityStreamsAccept prepends a Accept value to the front of a
	// list of the property "attributedTo". Invalidates all iterators.
	PrependActivityStreamsAccept(v ActivityStreamsAccept)
	// PrependActivityStreamsActivity prepends a Activity value to the front
	// of a list of the property "attributedTo". Invalidates all iterators.
	PrependActivityStreamsActivity(v ActivityStreamsActivity)
	// PrependActivityStreamsAdd prepends a Add value to the front of a list
	// of the property "attributedTo". Invalidates all iterators.
	PrependActivityStreamsAdd(v ActivityStreamsAdd)
	// PrependActivityStreamsAnnounce prepends a Announce value to the front
	// of a list of the property "attributedTo". Invalidates all iterators.
	PrependActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// PrependActivityStreamsApplication prepends a Application value to the
	// front of a list of the property "attributedTo". Invalidates all
	// iterators.
	PrependActivityStreamsApplication(v ActivityStreamsApplication)
	// PrependActivityStreamsArrive prepends a Arrive value to the front of a
	// list of the property "attributedTo". Invalidates all iterators.
	PrependActivityStreamsArrive(v ActivityStreamsArrive)
	// PrependActivityStreamsArticle prepends a Article value to the front of
	// a list of the property "attributedTo". Invalidates all iterators.
	PrependActivityStreamsArticle(v ActivityStreamsArticle)
	// PrependActivityStreamsAudio prepends a Audio value to the front of a
	// list of the property "attributedTo". Invalidates all iterators.
	PrependActivityStreamsAudio(v ActivityStreamsAudio)
	// PrependActivityStreamsBlock prepends a Block value to the front of a
	// list of the property "attributedTo". Invalidates all iterators.
	PrependActivityStreamsBlock(v ActivityStreamsBlock)
	// PrependActivityStreamsCollection prepends a Collection value to the
	// front of a list of the property "attributedTo". Invalidates all
	// iterators.
	PrependActivityStreamsCollection(v ActivityStreamsCollection)
	// PrependActivityStreamsCollectionPage prepends a CollectionPage value to
	// the front of a list of the property "attributedTo". Invalidates all
	// iterators.
	PrependActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// PrependActivityStreamsCreate prepends a Create value to the front of a
	// list of the property "attributedTo". Invalidates all iterators.
	PrependActivityStreamsCreate(v ActivityStreamsCreate)
	// PrependActivityStreamsDelete prepends a Delete value to the front of a
	// list of the property "attributedTo". Invalidates all iterators.
	PrependActivityStreamsDelete(v ActivityStreamsDelete)
	// PrependActivityStreamsDislike prepends a Dislike value to the front of
	// a list of the property "attributedTo". Invalidates all iterators.
	PrependActivityStreamsDislike(v ActivityStreamsDislike)
	// PrependActivityStreamsDocument prepends a Document value to the front
	// of a list of the property "attributedTo". Invalidates all iterators.
	PrependActivityStreamsDocument(v ActivityStreamsDocument)
	// PrependActivityStreamsEvent prepends a Event value to the front of a
	// list of the property "attributedTo". Invalidates all iterators.
	PrependActivityStreamsEvent(v ActivityStreamsEvent)
	// PrependActivityStreamsFlag prepends a Flag value to the front of a list
	// of the property "attributedTo". Invalidates all iterators.
	PrependActivityStreamsFlag(v ActivityStreamsFlag)
	// PrependActivityStreamsFollow prepends a Follow value to the front of a
	// list of the property "attributedTo". Invalidates all iterators.
	PrependActivityStreamsFollow(v ActivityStreamsFollow)
	// PrependActivityStreamsGroup prepends a Group value to the front of a
	// list of the property "attributedTo". Invalidates all iterators.
	PrependActivityStreamsGroup(v ActivityStreamsGroup)
	// PrependActivityStreamsIgnore prepends a Ignore value to the front of a
	// list of the property "attributedTo". Invalidates all iterators.
	PrependActivityStreamsIgnore(v ActivityStreamsIgnore)
	// PrependActivityStreamsImage prepends a Image value to the front of a
	// list of the property "attributedTo". Invalidates all iterators.
	PrependActivityStreamsImage(v ActivityStreamsImage)
	// PrependActivityStreamsIntransitiveActivity prepends a
	// IntransitiveActivity value to the front of a list of the property
	// "attributedTo". Invalidates all iterators.
	PrependActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// PrependActivityStreamsInvite prepends a Invite value to the front of a
	// list of the property "attributedTo". Invalidates all iterators.
	PrependActivityStreamsInvite(v ActivityStreamsInvite)
	// PrependActivityStreamsJoin prepends a Join value to the front of a list
	// of the property "attributedTo". Invalidates all iterators.
	PrependActivityStreamsJoin(v ActivityStreamsJoin)
	// PrependActivityStreamsLeave prepends a Leave value to the front of a
	// list of the property "attributedTo". Invalidates all iterators.
	PrependActivityStreamsLeave(v ActivityStreamsLeave)
	// PrependActivityStreamsLike prepends a Like value to the front of a list
	// of the property "attributedTo". Invalidates all iterators.
	PrependActivityStreamsLike(v ActivityStreamsLike)
	// PrependActivityStreamsLink prepends a Link value to the front of a list
	// of the property "attributedTo". Invalidates all iterators.
	PrependActivityStreamsLink(v ActivityStreamsLink)
	// PrependActivityStreamsListen prepends a Listen value to the front of a
	// list of the property "attributedTo". Invalidates all iterators.
	PrependActivityStreamsListen(v ActivityStreamsListen)
	// PrependActivityStreamsMention prepends a Mention value to the front of
	// a list of the property "attributedTo". Invalidates all iterators.
	PrependActivityStreamsMention(v ActivityStreamsMention)
	// PrependActivityStreamsMove prepends a Move value to the front of a list
	// of the property "attributedTo". Invalidates all iterators.
	PrependActivityStreamsMove(v ActivityStreamsMove)
	// PrependActivityStreamsNote prepends a Note value to the front of a list
	// of the property "attributedTo". Invalidates all iterators.
	PrependActivityStreamsNote(v ActivityStreamsNote)
	// PrependActivityStreamsObject prepends a Object value to the front of a
	// list of the property "attributedTo". Invalidates all iterators.
	PrependActivityStreamsObject(v ActivityStreamsObject)
	// PrependActivityStreamsOffer prepends a Offer value to the front of a
	// list of the property "attributedTo". Invalidates all iterators.
	PrependActivityStreamsOffer(v ActivityStreamsOffer)
	// PrependActivityStreamsOrderedCollection prepends a OrderedCollection
	// value to the front of a list of the property "attributedTo".
	// Invalidates all iterators.
	PrependActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// PrependActivityStreamsOrderedCollectionPage prepends a
	// OrderedCollectionPage value to the front of a list of the property
	// "attributedTo". Invalidates all iterators.
	PrependActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// PrependActivityStreamsOrganization prepends a Organization value to the
	// front of a list of the property "attributedTo". Invalidates all
	// iterators.
	PrependActivityStreamsOrganization(v ActivityStreamsOrganization)
	// PrependActivityStreamsPage prepends a Page value to the front of a list
	// of the property "attributedTo". Invalidates all iterators.
	PrependActivityStreamsPage(v ActivityStreamsPage)
	// PrependActivityStreamsPerson prepends a Person value to the front of a
	// list of the property "attributedTo". Invalidates all iterators.
	PrependActivityStreamsPerson(v ActivityStreamsPerson)
	// PrependActivityStreamsPlace prepends a Place value to the front of a
	// list of the property "attributedTo". Invalidates all iterators.
	PrependActivityStreamsPlace(v ActivityStreamsPlace)
	// PrependActivityStreamsProfile prepends a Profile value to the front of
	// a list of the property "attributedTo". Invalidates all iterators.
	PrependActivityStreamsProfile(v ActivityStreamsProfile)
	// PrependActivityStreamsQuestion prepends a Question value to the front
	// of a list of the property "attributedTo". Invalidates all iterators.
	PrependActivityStreamsQuestion(v ActivityStreamsQuestion)
	// PrependActivityStreamsRead prepends a Read value to the front of a list
	// of the property "attributedTo". Invalidates all iterators.
	PrependActivityStreamsRead(v ActivityStreamsRead)
	// PrependActivityStreamsReject prepends a Reject value to the front of a
	// list of the property "attributedTo". Invalidates all iterators.
	PrependActivityStreamsReject(v ActivityStreamsReject)
	// PrependActivityStreamsRelationship prepends a Relationship value to the
	// front of a list of the property "attributedTo". Invalidates all
	// iterators.
	PrependActivityStreamsRelationship(v ActivityStreamsRelationship)
	// PrependActivityStreamsRemove prepends a Remove value to the front of a
	// list of the property "attributedTo". Invalidates all iterators.
	PrependActivityStreamsRemove(v ActivityStreamsRemove)
	// PrependActivityStreamsService prepends a Service value to the front of
	// a list of the property "attributedTo". Invalidates all iterators.
	PrependActivityStreamsService(v ActivityStreamsService)
	// PrependActivityStreamsTentativeAccept prepends a TentativeAccept value
	// to the front of a list of the property "attributedTo". Invalidates
	// all iterators.
	PrependActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// PrependActivityStreamsTentativeReject prepends a TentativeReject value
	// to the front of a list of the property "attributedTo". Invalidates
	// all iterators.
	PrependActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// PrependActivityStreamsTombstone prepends a Tombstone value to the front
	// of a list of the property "attributedTo". Invalidates all iterators.
	PrependActivityStreamsTombstone(v ActivityStreamsTombstone)
	// PrependActivityStreamsTravel prepends a Travel value to the front of a
	// list of the property "attributedTo". Invalidates all iterators.
	PrependActivityStreamsTravel(v ActivityStreamsTravel)
	// PrependActivityStreamsUndo prepends a Undo value to the front of a list
	// of the property "attributedTo". Invalidates all iterators.
	PrependActivityStreamsUndo(v ActivityStreamsUndo)
	// PrependActivityStreamsUpdate prepends a Update value to the front of a
	// list of the property "attributedTo". Invalidates all iterators.
	PrependActivityStreamsUpdate(v ActivityStreamsUpdate)
	// PrependActivityStreamsVideo prepends a Video value to the front of a
	// list of the property "attributedTo". Invalidates all iterators.
	PrependActivityStreamsVideo(v ActivityStreamsVideo)
	// PrependActivityStreamsView prepends a View value to the front of a list
	// of the property "attributedTo". Invalidates all iterators.
	PrependActivityStreamsView(v ActivityStreamsView)
	// PrependForgeFedBranch prepends a Branch value to the front of a list of
	// the property "attributedTo". Invalidates all iterators.
	PrependForgeFedBranch(v ForgeFedBranch)
	// PrependForgeFedCommit prepends a Commit value to the front of a list of
	// the property "attributedTo". Invalidates all iterators.
	PrependForgeFedCommit(v ForgeFedCommit)
	// PrependForgeFedPush prepends a Push value to the front of a list of the
	// property "attributedTo". Invalidates all iterators.
	PrependForgeFedPush(v ForgeFedPush)
	// PrependForgeFedRepository prepends a Repository value to the front of a
	// list of the property "attributedTo". Invalidates all iterators.
	PrependForgeFedRepository(v ForgeFedRepository)
	// PrependForgeFedTicket prepends a Ticket value to the front of a list of
	// the property "attributedTo". Invalidates all iterators.
	PrependForgeFedTicket(v ForgeFedTicket)
	// PrependForgeFedTicketDependency prepends a TicketDependency value to
	// the front of a list of the property "attributedTo". Invalidates all
	// iterators.
	PrependForgeFedTicketDependency(v ForgeFedTicketDependency)
	// PrependIRI prepends an IRI value to the front of a list of the property
	// "attributedTo".
	PrependIRI(v *url.URL)
	// PrependTootEmoji prepends a Emoji value to the front of a list of the
	// property "attributedTo". Invalidates all iterators.
	PrependTootEmoji(v TootEmoji)
	// PrependTootIdentityProof prepends a IdentityProof value to the front of
	// a list of the property "attributedTo". Invalidates all iterators.
	PrependTootIdentityProof(v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "attributedTo". Invalidates all iterators. Returns an
	// error if the type is not a valid one to set for this property.
	PrependType(t Type) error
	// Remove deletes an element at the specified index from a list of the
	// property "attributedTo", regardless of its type. Panics if the
	// index is out of bounds. Invalidates all iterators.
	Remove(idx int)
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// SetActivityStreamsAccept sets a Accept value to be at the specified
	// index for the property "attributedTo". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsAccept(idx int, v ActivityStreamsAccept)
	// SetActivityStreamsActivity sets a Activity value to be at the specified
	// index for the property "attributedTo". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsActivity(idx int, v ActivityStreamsActivity)
	// SetActivityStreamsAdd sets a Add value to be at the specified index for
	// the property "attributedTo". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsAdd(idx int, v ActivityStreamsAdd)
	// SetActivityStreamsAnnounce sets a Announce value to be at the specified
	// index for the property "attributedTo". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsAnnounce(idx int, v ActivityStreamsAnnounce)
	// SetActivityStreamsApplication sets a Application value to be at the
	// specified index for the property "attributedTo". Panics if the
	// index is out of bounds. Invalidates all iterators.
	SetActivityStreamsApplication(idx int, v ActivityStreamsApplication)
	// SetActivityStreamsArrive sets a Arrive value to be at the specified
	// index for the property "attributedTo". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsArrive(idx int, v ActivityStreamsArrive)
	// SetActivityStreamsArticle sets a Article value to be at the specified
	// index for the property "attributedTo". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsArticle(idx int, v ActivityStreamsArticle)
	// SetActivityStreamsAudio sets a Audio value to be at the specified index
	// for the property "attributedTo". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsAudio(idx int, v ActivityStreamsAudio)
	// SetActivityStreamsBlock sets a Block value to be at the specified index
	// for the property "attributedTo". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsBlock(idx int, v ActivityStreamsBlock)
	// SetActivityStreamsCollection sets a Collection value to be at the
	// specified index for the property "attributedTo". Panics if the
	// index is out of bounds. Invalidates all iterators.
	SetActivityStreamsCollection(idx int, v ActivityStreamsCollection)
	// SetActivityStreamsCollectionPage sets a CollectionPage value to be at
	// the specified index for the property "attributedTo". Panics if the
	// index is out of bounds. Invalidates all iterators.
	SetActivityStreamsCollectionPage(idx int, v ActivityStreamsCollectionPage)
	// SetActivityStreamsCreate sets a Create value to be at the specified
	// index for the property "attributedTo". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsCreate(idx int, v ActivityStreamsCreate)
	// SetActivityStreamsDelete sets a Delete value to be at the specified
	// index for the property "attributedTo". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsDelete(idx int, v ActivityStreamsDelete)
	// SetActivityStreamsDislike sets a Dislike value to be at the specified
	// index for the property "attributedTo". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsDislike(idx int, v ActivityStreamsDislike)
	// SetActivityStreamsDocument sets a Document value to be at the specified
	// index for the property "attributedTo". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsDocument(idx int, v ActivityStreamsDocument)
	// SetActivityStreamsEvent sets a Event value to be at the specified index
	// for the property "attributedTo". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsEvent(idx int, v ActivityStreamsEvent)
	// SetActivityStreamsFlag sets a Flag value to be at the specified index
	// for the property "attributedTo". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsFlag(idx int, v ActivityStreamsFlag)
	// SetActivityStreamsFollow sets a Follow value to be at the specified
	// index for the property "attributedTo". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsFollow(idx int, v ActivityStreamsFollow)
	// SetActivityStreamsGroup sets a Group value to be at the specified index
	// for the property "attributedTo". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsGroup(idx int, v ActivityStreamsGroup)
	// SetActivityStreamsIgnore sets a Ignore value to be at the specified
	// index for the property "attributedTo". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsIgnore(idx int, v ActivityStreamsIgnore)
	// SetActivityStreamsImage sets a Image value to be at the specified index
	// for the property "attributedTo". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsImage(idx int, v ActivityStreamsImage)
	// SetActivityStreamsIntransitiveActivity sets a IntransitiveActivity
	// value to be at the specified index for the property "attributedTo".
	// Panics if the index is out of bounds. Invalidates all iterators.
	SetActivityStreamsIntransitiveActivity(idx int, v ActivityStreamsIntransitiveActivity)
	// SetActivityStreamsInvite sets a Invite value to be at the specified
	// index for the property "attributedTo". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsInvite(idx int, v ActivityStreamsInvite)
	// SetActivityStreamsJoin sets a Join value to be at the specified index
	// for the property "attributedTo". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsJoin(idx int, v ActivityStreamsJoin)
	// SetActivityStreamsLeave sets a Leave value to be at the specified index
	// for the property "attributedTo". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsLeave(idx int, v ActivityStreamsLeave)
	// SetActivityStreamsLike sets a Like value to be at the specified index
	// for the property "attributedTo". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsLike(idx int, v ActivityStreamsLike)
	// SetActivityStreamsLink sets a Link value to be at the specified index
	// for the property "attributedTo". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsLink(idx int, v ActivityStreamsLink)
	// SetActivityStreamsListen sets a Listen value to be at the specified
	// index for the property "attributedTo". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsListen(idx int, v ActivityStreamsListen)
	// SetActivityStreamsMention sets a Mention value to be at the specified
	// index for the property "attributedTo". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsMention(idx int, v ActivityStreamsMention)
	// SetActivityStreamsMove sets a Move value to be at the specified index
	// for the property "attributedTo". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsMove(idx int, v ActivityStreamsMove)
	// SetActivityStreamsNote sets a Note value to be at the specified index
	// for the property "attributedTo". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsNote(idx int, v ActivityStreamsNote)
	// SetActivityStreamsObject sets a Object value to be at the specified
	// index for the property "attributedTo". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsObject(idx int, v ActivityStreamsObject)
	// SetActivityStreamsOffer sets a Offer value to be at the specified index
	// for the property "attributedTo". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsOffer(idx int, v ActivityStreamsOffer)
	// SetActivityStreamsOrderedCollection sets a OrderedCollection value to
	// be at the specified index for the property "attributedTo". Panics
	// if the index is out of bounds. Invalidates all iterators.
	SetActivityStreamsOrderedCollection(idx int, v ActivityStreamsOrderedCollection)
	// SetActivityStreamsOrderedCollectionPage sets a OrderedCollectionPage
	// value to be at the specified index for the property "attributedTo".
	// Panics if the index is out of bounds. Invalidates all iterators.
	SetActivityStreamsOrderedCollectionPage(idx int, v ActivityStreamsOrderedCollectionPage)
	// SetActivityStreamsOrganization sets a Organization value to be at the
	// specified index for the property "attributedTo". Panics if the
	// index is out of bounds. Invalidates all iterators.
	SetActivityStreamsOrganization(idx int, v ActivityStreamsOrganization)
	// SetActivityStreamsPage sets a Page value to be at the specified index
	// for the property "attributedTo". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsPage(idx int, v ActivityStreamsPage)
	// SetActivityStreamsPerson sets a Person value to be at the specified
	// index for the property "attributedTo". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsPerson(idx int, v ActivityStreamsPerson)
	// SetActivityStreamsPlace sets a Place value to be at the specified index
	// for the property "attributedTo". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsPlace(idx int, v ActivityStreamsPlace)
	// SetActivityStreamsProfile sets a Profile value to be at the specified
	// index for the property "attributedTo". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsProfile(idx int, v ActivityStreamsProfile)
	// SetActivityStreamsQuestion sets a Question value to be at the specified
	// index for the property "attributedTo". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsQuestion(idx int, v ActivityStreamsQuestion)
	// SetActivityStreamsRead sets a Read value to be at the specified index
	// for the property "attributedTo". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsRead(idx int, v ActivityStreamsRead)
	// SetActivityStreamsReject sets a Reject value to be at the specified
	// index for the property "attributedTo". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsReject(idx int, v ActivityStreamsReject)
	// SetActivityStreamsRelationship sets a Relationship value to be at the
	// specified index for the property "attributedTo". Panics if the
	// index is out of bounds. Invalidates all iterators.
	SetActivityStreamsRelationship(idx int, v ActivityStreamsRelationship)
	// SetActivityStreamsRemove sets a Remove value to be at the specified
	// index for the property "attributedTo". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsRemove(idx int, v ActivityStreamsRemove)
	// SetActivityStreamsService sets a Service value to be at the specified
	// index for the property "attributedTo". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsService(idx int, v ActivityStreamsService)
	// SetActivityStreamsTentativeAccept sets a TentativeAccept value to be at
	// the specified index for the property "attributedTo". Panics if the
	// index is out of bounds. Invalidates all iterators.
	SetActivityStreamsTentativeAccept(idx int, v ActivityStreamsTentativeAccept)
	// SetActivityStreamsTentativeReject sets a TentativeReject value to be at
	// the specified index for the property "attributedTo". Panics if the
	// index is out of bounds. Invalidates all iterators.
	SetActivityStreamsTentativeReject(idx int, v ActivityStreamsTentativeReject)
	// SetActivityStreamsTombstone sets a Tombstone value to be at the
	// specified index for the property "attributedTo". Panics if the
	// index is out of bounds. Invalidates all iterators.
	SetActivityStreamsTombstone(idx int, v ActivityStreamsTombstone)
	// SetActivityStreamsTravel sets a Travel value to be at the specified
	// index for the property "attributedTo". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsTravel(idx int, v ActivityStreamsTravel)
	// SetActivityStreamsUndo sets a Undo value to be at the specified index
	// for the property "attributedTo". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsUndo(idx int, v ActivityStreamsUndo)
	// SetActivityStreamsUpdate sets a Update value to be at the specified
	// index for the property "attributedTo". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsUpdate(idx int, v ActivityStreamsUpdate)
	// SetActivityStreamsVideo sets a Video value to be at the specified index
	// for the property "attributedTo". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsVideo(idx int, v ActivityStreamsVideo)
	// SetActivityStreamsView sets a View value to be at the specified index
	// for the property "attributedTo". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsView(idx int, v ActivityStreamsView)
	// SetForgeFedBranch sets a Branch value to be at the specified index for
	// the property "attributedTo". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedBranch(idx int, v ForgeFedBranch)
	// SetForgeFedCommit sets a Commit value to be at the specified index for
	// the property "attributedTo". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedCommit(idx int, v ForgeFedCommit)
	// SetForgeFedPush sets a Push value to be at the specified index for the
	// property "attributedTo". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedPush(idx int, v ForgeFedPush)
	// SetForgeFedRepository sets a Repository value to be at the specified
	// index for the property "attributedTo". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetForgeFedRepository(idx int, v ForgeFedRepository)
	// SetForgeFedTicket sets a Ticket value to be at the specified index for
	// the property "attributedTo". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedTicket(idx int, v ForgeFedTicket)
	// SetForgeFedTicketDependency sets a TicketDependency value to be at the
	// specified index for the property "attributedTo". Panics if the
	// index is out of bounds. Invalidates all iterators.
	SetForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
	// SetIRI sets an IRI value to be at the specified index for the property
	// "attributedTo". Panics if the index is out of bounds.
	SetIRI(idx int, v *url.URL)
	// SetTootEmoji sets a Emoji value to be at the specified index for the
	// property "attributedTo". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetTootEmoji(idx int, v TootEmoji)
	// SetTootIdentityProof sets a IdentityProof value to be at the specified
	// index for the property "attributedTo". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetTootIdentityProof(idx int, v TootIdentityProof)
	// SetType sets an arbitrary type value to the specified index of the
	// property "attributedTo". Invalidates all iterators. Returns an
	// error if the type is not a valid one to set for this property.
	// Panics if the index is out of bounds.
	SetType(idx int, t Type) error
	// Swap swaps the location of values at two indices for the "attributedTo"
	// property.
	Swap(i, j int)
}

Identifies one or more entities to which this object is attributed. The attributed entities might not be Actors. For instance, an object might be attributed to the completion of another activity.

Example 67 (https://www.w3.org/TR/activitystreams-vocabulary/#ex65-jsonld):

{
  "attributedTo": {
    "name": "Sally",
    "type": "Person"
  },
  "name": "My cat taking a nap",
  "type": "Image",
  "url": "http://example.org/cat.jpeg"
}

Example 68 (https://www.w3.org/TR/activitystreams-vocabulary/#ex66-jsonld):

{
  "attributedTo": [
    "http://joe.example.org",
    {
      "name": "Sally",
      "type": "Person"
    }
  ],
  "name": "My cat taking a nap",
  "type": "Image",
  "url": "http://example.org/cat.jpeg"
}

type ActivityStreamsAttributedToPropertyIterator

type ActivityStreamsAttributedToPropertyIterator interface {
	// GetActivityStreamsAccept returns the value of this property. When
	// IsActivityStreamsAccept returns false, GetActivityStreamsAccept
	// will return an arbitrary value.
	GetActivityStreamsAccept() ActivityStreamsAccept
	// GetActivityStreamsActivity returns the value of this property. When
	// IsActivityStreamsActivity returns false, GetActivityStreamsActivity
	// will return an arbitrary value.
	GetActivityStreamsActivity() ActivityStreamsActivity
	// GetActivityStreamsAdd returns the value of this property. When
	// IsActivityStreamsAdd returns false, GetActivityStreamsAdd will
	// return an arbitrary value.
	GetActivityStreamsAdd() ActivityStreamsAdd
	// GetActivityStreamsAnnounce returns the value of this property. When
	// IsActivityStreamsAnnounce returns false, GetActivityStreamsAnnounce
	// will return an arbitrary value.
	GetActivityStreamsAnnounce() ActivityStreamsAnnounce
	// GetActivityStreamsApplication returns the value of this property. When
	// IsActivityStreamsApplication returns false,
	// GetActivityStreamsApplication will return an arbitrary value.
	GetActivityStreamsApplication() ActivityStreamsApplication
	// GetActivityStreamsArrive returns the value of this property. When
	// IsActivityStreamsArrive returns false, GetActivityStreamsArrive
	// will return an arbitrary value.
	GetActivityStreamsArrive() ActivityStreamsArrive
	// GetActivityStreamsArticle returns the value of this property. When
	// IsActivityStreamsArticle returns false, GetActivityStreamsArticle
	// will return an arbitrary value.
	GetActivityStreamsArticle() ActivityStreamsArticle
	// GetActivityStreamsAudio returns the value of this property. When
	// IsActivityStreamsAudio returns false, GetActivityStreamsAudio will
	// return an arbitrary value.
	GetActivityStreamsAudio() ActivityStreamsAudio
	// GetActivityStreamsBlock returns the value of this property. When
	// IsActivityStreamsBlock returns false, GetActivityStreamsBlock will
	// return an arbitrary value.
	GetActivityStreamsBlock() ActivityStreamsBlock
	// GetActivityStreamsCollection returns the value of this property. When
	// IsActivityStreamsCollection returns false,
	// GetActivityStreamsCollection will return an arbitrary value.
	GetActivityStreamsCollection() ActivityStreamsCollection
	// GetActivityStreamsCollectionPage returns the value of this property.
	// When IsActivityStreamsCollectionPage returns false,
	// GetActivityStreamsCollectionPage will return an arbitrary value.
	GetActivityStreamsCollectionPage() ActivityStreamsCollectionPage
	// GetActivityStreamsCreate returns the value of this property. When
	// IsActivityStreamsCreate returns false, GetActivityStreamsCreate
	// will return an arbitrary value.
	GetActivityStreamsCreate() ActivityStreamsCreate
	// GetActivityStreamsDelete returns the value of this property. When
	// IsActivityStreamsDelete returns false, GetActivityStreamsDelete
	// will return an arbitrary value.
	GetActivityStreamsDelete() ActivityStreamsDelete
	// GetActivityStreamsDislike returns the value of this property. When
	// IsActivityStreamsDislike returns false, GetActivityStreamsDislike
	// will return an arbitrary value.
	GetActivityStreamsDislike() ActivityStreamsDislike
	// GetActivityStreamsDocument returns the value of this property. When
	// IsActivityStreamsDocument returns false, GetActivityStreamsDocument
	// will return an arbitrary value.
	GetActivityStreamsDocument() ActivityStreamsDocument
	// GetActivityStreamsEvent returns the value of this property. When
	// IsActivityStreamsEvent returns false, GetActivityStreamsEvent will
	// return an arbitrary value.
	GetActivityStreamsEvent() ActivityStreamsEvent
	// GetActivityStreamsFlag returns the value of this property. When
	// IsActivityStreamsFlag returns false, GetActivityStreamsFlag will
	// return an arbitrary value.
	GetActivityStreamsFlag() ActivityStreamsFlag
	// GetActivityStreamsFollow returns the value of this property. When
	// IsActivityStreamsFollow returns false, GetActivityStreamsFollow
	// will return an arbitrary value.
	GetActivityStreamsFollow() ActivityStreamsFollow
	// GetActivityStreamsGroup returns the value of this property. When
	// IsActivityStreamsGroup returns false, GetActivityStreamsGroup will
	// return an arbitrary value.
	GetActivityStreamsGroup() ActivityStreamsGroup
	// GetActivityStreamsIgnore returns the value of this property. When
	// IsActivityStreamsIgnore returns false, GetActivityStreamsIgnore
	// will return an arbitrary value.
	GetActivityStreamsIgnore() ActivityStreamsIgnore
	// GetActivityStreamsImage returns the value of this property. When
	// IsActivityStreamsImage returns false, GetActivityStreamsImage will
	// return an arbitrary value.
	GetActivityStreamsImage() ActivityStreamsImage
	// GetActivityStreamsIntransitiveActivity returns the value of this
	// property. When IsActivityStreamsIntransitiveActivity returns false,
	// GetActivityStreamsIntransitiveActivity will return an arbitrary
	// value.
	GetActivityStreamsIntransitiveActivity() ActivityStreamsIntransitiveActivity
	// GetActivityStreamsInvite returns the value of this property. When
	// IsActivityStreamsInvite returns false, GetActivityStreamsInvite
	// will return an arbitrary value.
	GetActivityStreamsInvite() ActivityStreamsInvite
	// GetActivityStreamsJoin returns the value of this property. When
	// IsActivityStreamsJoin returns false, GetActivityStreamsJoin will
	// return an arbitrary value.
	GetActivityStreamsJoin() ActivityStreamsJoin
	// GetActivityStreamsLeave returns the value of this property. When
	// IsActivityStreamsLeave returns false, GetActivityStreamsLeave will
	// return an arbitrary value.
	GetActivityStreamsLeave() ActivityStreamsLeave
	// GetActivityStreamsLike returns the value of this property. When
	// IsActivityStreamsLike returns false, GetActivityStreamsLike will
	// return an arbitrary value.
	GetActivityStreamsLike() ActivityStreamsLike
	// GetActivityStreamsLink returns the value of this property. When
	// IsActivityStreamsLink returns false, GetActivityStreamsLink will
	// return an arbitrary value.
	GetActivityStreamsLink() ActivityStreamsLink
	// GetActivityStreamsListen returns the value of this property. When
	// IsActivityStreamsListen returns false, GetActivityStreamsListen
	// will return an arbitrary value.
	GetActivityStreamsListen() ActivityStreamsListen
	// GetActivityStreamsMention returns the value of this property. When
	// IsActivityStreamsMention returns false, GetActivityStreamsMention
	// will return an arbitrary value.
	GetActivityStreamsMention() ActivityStreamsMention
	// GetActivityStreamsMove returns the value of this property. When
	// IsActivityStreamsMove returns false, GetActivityStreamsMove will
	// return an arbitrary value.
	GetActivityStreamsMove() ActivityStreamsMove
	// GetActivityStreamsNote returns the value of this property. When
	// IsActivityStreamsNote returns false, GetActivityStreamsNote will
	// return an arbitrary value.
	GetActivityStreamsNote() ActivityStreamsNote
	// GetActivityStreamsObject returns the value of this property. When
	// IsActivityStreamsObject returns false, GetActivityStreamsObject
	// will return an arbitrary value.
	GetActivityStreamsObject() ActivityStreamsObject
	// GetActivityStreamsOffer returns the value of this property. When
	// IsActivityStreamsOffer returns false, GetActivityStreamsOffer will
	// return an arbitrary value.
	GetActivityStreamsOffer() ActivityStreamsOffer
	// GetActivityStreamsOrderedCollection returns the value of this property.
	// When IsActivityStreamsOrderedCollection returns false,
	// GetActivityStreamsOrderedCollection will return an arbitrary value.
	GetActivityStreamsOrderedCollection() ActivityStreamsOrderedCollection
	// GetActivityStreamsOrderedCollectionPage returns the value of this
	// property. When IsActivityStreamsOrderedCollectionPage returns
	// false, GetActivityStreamsOrderedCollectionPage will return an
	// arbitrary value.
	GetActivityStreamsOrderedCollectionPage() ActivityStreamsOrderedCollectionPage
	// GetActivityStreamsOrganization returns the value of this property. When
	// IsActivityStreamsOrganization returns false,
	// GetActivityStreamsOrganization will return an arbitrary value.
	GetActivityStreamsOrganization() ActivityStreamsOrganization
	// GetActivityStreamsPage returns the value of this property. When
	// IsActivityStreamsPage returns false, GetActivityStreamsPage will
	// return an arbitrary value.
	GetActivityStreamsPage() ActivityStreamsPage
	// GetActivityStreamsPerson returns the value of this property. When
	// IsActivityStreamsPerson returns false, GetActivityStreamsPerson
	// will return an arbitrary value.
	GetActivityStreamsPerson() ActivityStreamsPerson
	// GetActivityStreamsPlace returns the value of this property. When
	// IsActivityStreamsPlace returns false, GetActivityStreamsPlace will
	// return an arbitrary value.
	GetActivityStreamsPlace() ActivityStreamsPlace
	// GetActivityStreamsProfile returns the value of this property. When
	// IsActivityStreamsProfile returns false, GetActivityStreamsProfile
	// will return an arbitrary value.
	GetActivityStreamsProfile() ActivityStreamsProfile
	// GetActivityStreamsQuestion returns the value of this property. When
	// IsActivityStreamsQuestion returns false, GetActivityStreamsQuestion
	// will return an arbitrary value.
	GetActivityStreamsQuestion() ActivityStreamsQuestion
	// GetActivityStreamsRead returns the value of this property. When
	// IsActivityStreamsRead returns false, GetActivityStreamsRead will
	// return an arbitrary value.
	GetActivityStreamsRead() ActivityStreamsRead
	// GetActivityStreamsReject returns the value of this property. When
	// IsActivityStreamsReject returns false, GetActivityStreamsReject
	// will return an arbitrary value.
	GetActivityStreamsReject() ActivityStreamsReject
	// GetActivityStreamsRelationship returns the value of this property. When
	// IsActivityStreamsRelationship returns false,
	// GetActivityStreamsRelationship will return an arbitrary value.
	GetActivityStreamsRelationship() ActivityStreamsRelationship
	// GetActivityStreamsRemove returns the value of this property. When
	// IsActivityStreamsRemove returns false, GetActivityStreamsRemove
	// will return an arbitrary value.
	GetActivityStreamsRemove() ActivityStreamsRemove
	// GetActivityStreamsService returns the value of this property. When
	// IsActivityStreamsService returns false, GetActivityStreamsService
	// will return an arbitrary value.
	GetActivityStreamsService() ActivityStreamsService
	// GetActivityStreamsTentativeAccept returns the value of this property.
	// When IsActivityStreamsTentativeAccept returns false,
	// GetActivityStreamsTentativeAccept will return an arbitrary value.
	GetActivityStreamsTentativeAccept() ActivityStreamsTentativeAccept
	// GetActivityStreamsTentativeReject returns the value of this property.
	// When IsActivityStreamsTentativeReject returns false,
	// GetActivityStreamsTentativeReject will return an arbitrary value.
	GetActivityStreamsTentativeReject() ActivityStreamsTentativeReject
	// GetActivityStreamsTombstone returns the value of this property. When
	// IsActivityStreamsTombstone returns false,
	// GetActivityStreamsTombstone will return an arbitrary value.
	GetActivityStreamsTombstone() ActivityStreamsTombstone
	// GetActivityStreamsTravel returns the value of this property. When
	// IsActivityStreamsTravel returns false, GetActivityStreamsTravel
	// will return an arbitrary value.
	GetActivityStreamsTravel() ActivityStreamsTravel
	// GetActivityStreamsUndo returns the value of this property. When
	// IsActivityStreamsUndo returns false, GetActivityStreamsUndo will
	// return an arbitrary value.
	GetActivityStreamsUndo() ActivityStreamsUndo
	// GetActivityStreamsUpdate returns the value of this property. When
	// IsActivityStreamsUpdate returns false, GetActivityStreamsUpdate
	// will return an arbitrary value.
	GetActivityStreamsUpdate() ActivityStreamsUpdate
	// GetActivityStreamsVideo returns the value of this property. When
	// IsActivityStreamsVideo returns false, GetActivityStreamsVideo will
	// return an arbitrary value.
	GetActivityStreamsVideo() ActivityStreamsVideo
	// GetActivityStreamsView returns the value of this property. When
	// IsActivityStreamsView returns false, GetActivityStreamsView will
	// return an arbitrary value.
	GetActivityStreamsView() ActivityStreamsView
	// GetForgeFedBranch returns the value of this property. When
	// IsForgeFedBranch returns false, GetForgeFedBranch will return an
	// arbitrary value.
	GetForgeFedBranch() ForgeFedBranch
	// GetForgeFedCommit returns the value of this property. When
	// IsForgeFedCommit returns false, GetForgeFedCommit will return an
	// arbitrary value.
	GetForgeFedCommit() ForgeFedCommit
	// GetForgeFedPush returns the value of this property. When IsForgeFedPush
	// returns false, GetForgeFedPush will return an arbitrary value.
	GetForgeFedPush() ForgeFedPush
	// GetForgeFedRepository returns the value of this property. When
	// IsForgeFedRepository returns false, GetForgeFedRepository will
	// return an arbitrary value.
	GetForgeFedRepository() ForgeFedRepository
	// GetForgeFedTicket returns the value of this property. When
	// IsForgeFedTicket returns false, GetForgeFedTicket will return an
	// arbitrary value.
	GetForgeFedTicket() ForgeFedTicket
	// GetForgeFedTicketDependency returns the value of this property. When
	// IsForgeFedTicketDependency returns false,
	// GetForgeFedTicketDependency will return an arbitrary value.
	GetForgeFedTicketDependency() ForgeFedTicketDependency
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return an arbitrary value.
	GetIRI() *url.URL
	// GetTootEmoji returns the value of this property. When IsTootEmoji
	// returns false, GetTootEmoji will return an arbitrary value.
	GetTootEmoji() TootEmoji
	// GetTootIdentityProof returns the value of this property. When
	// IsTootIdentityProof returns false, GetTootIdentityProof will return
	// an arbitrary value.
	GetTootIdentityProof() TootIdentityProof
	// GetType returns the value in this property as a Type. Returns nil if
	// the value is not an ActivityStreams type, such as an IRI or another
	// value.
	GetType() Type
	// HasAny returns true if any of the different values is set.
	HasAny() bool
	// IsActivityStreamsAccept returns true if this property has a type of
	// "Accept". When true, use the GetActivityStreamsAccept and
	// SetActivityStreamsAccept methods to access and set this property.
	IsActivityStreamsAccept() bool
	// IsActivityStreamsActivity returns true if this property has a type of
	// "Activity". When true, use the GetActivityStreamsActivity and
	// SetActivityStreamsActivity methods to access and set this property.
	IsActivityStreamsActivity() bool
	// IsActivityStreamsAdd returns true if this property has a type of "Add".
	// When true, use the GetActivityStreamsAdd and SetActivityStreamsAdd
	// methods to access and set this property.
	IsActivityStreamsAdd() bool
	// IsActivityStreamsAnnounce returns true if this property has a type of
	// "Announce". When true, use the GetActivityStreamsAnnounce and
	// SetActivityStreamsAnnounce methods to access and set this property.
	IsActivityStreamsAnnounce() bool
	// IsActivityStreamsApplication returns true if this property has a type
	// of "Application". When true, use the GetActivityStreamsApplication
	// and SetActivityStreamsApplication methods to access and set this
	// property.
	IsActivityStreamsApplication() bool
	// IsActivityStreamsArrive returns true if this property has a type of
	// "Arrive". When true, use the GetActivityStreamsArrive and
	// SetActivityStreamsArrive methods to access and set this property.
	IsActivityStreamsArrive() bool
	// IsActivityStreamsArticle returns true if this property has a type of
	// "Article". When true, use the GetActivityStreamsArticle and
	// SetActivityStreamsArticle methods to access and set this property.
	IsActivityStreamsArticle() bool
	// IsActivityStreamsAudio returns true if this property has a type of
	// "Audio". When true, use the GetActivityStreamsAudio and
	// SetActivityStreamsAudio methods to access and set this property.
	IsActivityStreamsAudio() bool
	// IsActivityStreamsBlock returns true if this property has a type of
	// "Block". When true, use the GetActivityStreamsBlock and
	// SetActivityStreamsBlock methods to access and set this property.
	IsActivityStreamsBlock() bool
	// IsActivityStreamsCollection returns true if this property has a type of
	// "Collection". When true, use the GetActivityStreamsCollection and
	// SetActivityStreamsCollection methods to access and set this
	// property.
	IsActivityStreamsCollection() bool
	// IsActivityStreamsCollectionPage returns true if this property has a
	// type of "CollectionPage". When true, use the
	// GetActivityStreamsCollectionPage and
	// SetActivityStreamsCollectionPage methods to access and set this
	// property.
	IsActivityStreamsCollectionPage() bool
	// IsActivityStreamsCreate returns true if this property has a type of
	// "Create". When true, use the GetActivityStreamsCreate and
	// SetActivityStreamsCreate methods to access and set this property.
	IsActivityStreamsCreate() bool
	// IsActivityStreamsDelete returns true if this property has a type of
	// "Delete". When true, use the GetActivityStreamsDelete and
	// SetActivityStreamsDelete methods to access and set this property.
	IsActivityStreamsDelete() bool
	// IsActivityStreamsDislike returns true if this property has a type of
	// "Dislike". When true, use the GetActivityStreamsDislike and
	// SetActivityStreamsDislike methods to access and set this property.
	IsActivityStreamsDislike() bool
	// IsActivityStreamsDocument returns true if this property has a type of
	// "Document". When true, use the GetActivityStreamsDocument and
	// SetActivityStreamsDocument methods to access and set this property.
	IsActivityStreamsDocument() bool
	// IsActivityStreamsEvent returns true if this property has a type of
	// "Event". When true, use the GetActivityStreamsEvent and
	// SetActivityStreamsEvent methods to access and set this property.
	IsActivityStreamsEvent() bool
	// IsActivityStreamsFlag returns true if this property has a type of
	// "Flag". When true, use the GetActivityStreamsFlag and
	// SetActivityStreamsFlag methods to access and set this property.
	IsActivityStreamsFlag() bool
	// IsActivityStreamsFollow returns true if this property has a type of
	// "Follow". When true, use the GetActivityStreamsFollow and
	// SetActivityStreamsFollow methods to access and set this property.
	IsActivityStreamsFollow() bool
	// IsActivityStreamsGroup returns true if this property has a type of
	// "Group". When true, use the GetActivityStreamsGroup and
	// SetActivityStreamsGroup methods to access and set this property.
	IsActivityStreamsGroup() bool
	// IsActivityStreamsIgnore returns true if this property has a type of
	// "Ignore". When true, use the GetActivityStreamsIgnore and
	// SetActivityStreamsIgnore methods to access and set this property.
	IsActivityStreamsIgnore() bool
	// IsActivityStreamsImage returns true if this property has a type of
	// "Image". When true, use the GetActivityStreamsImage and
	// SetActivityStreamsImage methods to access and set this property.
	IsActivityStreamsImage() bool
	// IsActivityStreamsIntransitiveActivity returns true if this property has
	// a type of "IntransitiveActivity". When true, use the
	// GetActivityStreamsIntransitiveActivity and
	// SetActivityStreamsIntransitiveActivity methods to access and set
	// this property.
	IsActivityStreamsIntransitiveActivity() bool
	// IsActivityStreamsInvite returns true if this property has a type of
	// "Invite". When true, use the GetActivityStreamsInvite and
	// SetActivityStreamsInvite methods to access and set this property.
	IsActivityStreamsInvite() bool
	// IsActivityStreamsJoin returns true if this property has a type of
	// "Join". When true, use the GetActivityStreamsJoin and
	// SetActivityStreamsJoin methods to access and set this property.
	IsActivityStreamsJoin() bool
	// IsActivityStreamsLeave returns true if this property has a type of
	// "Leave". When true, use the GetActivityStreamsLeave and
	// SetActivityStreamsLeave methods to access and set this property.
	IsActivityStreamsLeave() bool
	// IsActivityStreamsLike returns true if this property has a type of
	// "Like". When true, use the GetActivityStreamsLike and
	// SetActivityStreamsLike methods to access and set this property.
	IsActivityStreamsLike() bool
	// IsActivityStreamsLink returns true if this property has a type of
	// "Link". When true, use the GetActivityStreamsLink and
	// SetActivityStreamsLink methods to access and set this property.
	IsActivityStreamsLink() bool
	// IsActivityStreamsListen returns true if this property has a type of
	// "Listen". When true, use the GetActivityStreamsListen and
	// SetActivityStreamsListen methods to access and set this property.
	IsActivityStreamsListen() bool
	// IsActivityStreamsMention returns true if this property has a type of
	// "Mention". When true, use the GetActivityStreamsMention and
	// SetActivityStreamsMention methods to access and set this property.
	IsActivityStreamsMention() bool
	// IsActivityStreamsMove returns true if this property has a type of
	// "Move". When true, use the GetActivityStreamsMove and
	// SetActivityStreamsMove methods to access and set this property.
	IsActivityStreamsMove() bool
	// IsActivityStreamsNote returns true if this property has a type of
	// "Note". When true, use the GetActivityStreamsNote and
	// SetActivityStreamsNote methods to access and set this property.
	IsActivityStreamsNote() bool
	// IsActivityStreamsObject returns true if this property has a type of
	// "Object". When true, use the GetActivityStreamsObject and
	// SetActivityStreamsObject methods to access and set this property.
	IsActivityStreamsObject() bool
	// IsActivityStreamsOffer returns true if this property has a type of
	// "Offer". When true, use the GetActivityStreamsOffer and
	// SetActivityStreamsOffer methods to access and set this property.
	IsActivityStreamsOffer() bool
	// IsActivityStreamsOrderedCollection returns true if this property has a
	// type of "OrderedCollection". When true, use the
	// GetActivityStreamsOrderedCollection and
	// SetActivityStreamsOrderedCollection methods to access and set this
	// property.
	IsActivityStreamsOrderedCollection() bool
	// IsActivityStreamsOrderedCollectionPage returns true if this property
	// has a type of "OrderedCollectionPage". When true, use the
	// GetActivityStreamsOrderedCollectionPage and
	// SetActivityStreamsOrderedCollectionPage methods to access and set
	// this property.
	IsActivityStreamsOrderedCollectionPage() bool
	// IsActivityStreamsOrganization returns true if this property has a type
	// of "Organization". When true, use the
	// GetActivityStreamsOrganization and SetActivityStreamsOrganization
	// methods to access and set this property.
	IsActivityStreamsOrganization() bool
	// IsActivityStreamsPage returns true if this property has a type of
	// "Page". When true, use the GetActivityStreamsPage and
	// SetActivityStreamsPage methods to access and set this property.
	IsActivityStreamsPage() bool
	// IsActivityStreamsPerson returns true if this property has a type of
	// "Person". When true, use the GetActivityStreamsPerson and
	// SetActivityStreamsPerson methods to access and set this property.
	IsActivityStreamsPerson() bool
	// IsActivityStreamsPlace returns true if this property has a type of
	// "Place". When true, use the GetActivityStreamsPlace and
	// SetActivityStreamsPlace methods to access and set this property.
	IsActivityStreamsPlace() bool
	// IsActivityStreamsProfile returns true if this property has a type of
	// "Profile". When true, use the GetActivityStreamsProfile and
	// SetActivityStreamsProfile methods to access and set this property.
	IsActivityStreamsProfile() bool
	// IsActivityStreamsQuestion returns true if this property has a type of
	// "Question". When true, use the GetActivityStreamsQuestion and
	// SetActivityStreamsQuestion methods to access and set this property.
	IsActivityStreamsQuestion() bool
	// IsActivityStreamsRead returns true if this property has a type of
	// "Read". When true, use the GetActivityStreamsRead and
	// SetActivityStreamsRead methods to access and set this property.
	IsActivityStreamsRead() bool
	// IsActivityStreamsReject returns true if this property has a type of
	// "Reject". When true, use the GetActivityStreamsReject and
	// SetActivityStreamsReject methods to access and set this property.
	IsActivityStreamsReject() bool
	// IsActivityStreamsRelationship returns true if this property has a type
	// of "Relationship". When true, use the
	// GetActivityStreamsRelationship and SetActivityStreamsRelationship
	// methods to access and set this property.
	IsActivityStreamsRelationship() bool
	// IsActivityStreamsRemove returns true if this property has a type of
	// "Remove". When true, use the GetActivityStreamsRemove and
	// SetActivityStreamsRemove methods to access and set this property.
	IsActivityStreamsRemove() bool
	// IsActivityStreamsService returns true if this property has a type of
	// "Service". When true, use the GetActivityStreamsService and
	// SetActivityStreamsService methods to access and set this property.
	IsActivityStreamsService() bool
	// IsActivityStreamsTentativeAccept returns true if this property has a
	// type of "TentativeAccept". When true, use the
	// GetActivityStreamsTentativeAccept and
	// SetActivityStreamsTentativeAccept methods to access and set this
	// property.
	IsActivityStreamsTentativeAccept() bool
	// IsActivityStreamsTentativeReject returns true if this property has a
	// type of "TentativeReject". When true, use the
	// GetActivityStreamsTentativeReject and
	// SetActivityStreamsTentativeReject methods to access and set this
	// property.
	IsActivityStreamsTentativeReject() bool
	// IsActivityStreamsTombstone returns true if this property has a type of
	// "Tombstone". When true, use the GetActivityStreamsTombstone and
	// SetActivityStreamsTombstone methods to access and set this property.
	IsActivityStreamsTombstone() bool
	// IsActivityStreamsTravel returns true if this property has a type of
	// "Travel". When true, use the GetActivityStreamsTravel and
	// SetActivityStreamsTravel methods to access and set this property.
	IsActivityStreamsTravel() bool
	// IsActivityStreamsUndo returns true if this property has a type of
	// "Undo". When true, use the GetActivityStreamsUndo and
	// SetActivityStreamsUndo methods to access and set this property.
	IsActivityStreamsUndo() bool
	// IsActivityStreamsUpdate returns true if this property has a type of
	// "Update". When true, use the GetActivityStreamsUpdate and
	// SetActivityStreamsUpdate methods to access and set this property.
	IsActivityStreamsUpdate() bool
	// IsActivityStreamsVideo returns true if this property has a type of
	// "Video". When true, use the GetActivityStreamsVideo and
	// SetActivityStreamsVideo methods to access and set this property.
	IsActivityStreamsVideo() bool
	// IsActivityStreamsView returns true if this property has a type of
	// "View". When true, use the GetActivityStreamsView and
	// SetActivityStreamsView methods to access and set this property.
	IsActivityStreamsView() bool
	// IsForgeFedBranch returns true if this property has a type of "Branch".
	// When true, use the GetForgeFedBranch and SetForgeFedBranch methods
	// to access and set this property.
	IsForgeFedBranch() bool
	// IsForgeFedCommit returns true if this property has a type of "Commit".
	// When true, use the GetForgeFedCommit and SetForgeFedCommit methods
	// to access and set this property.
	IsForgeFedCommit() bool
	// IsForgeFedPush returns true if this property has a type of "Push". When
	// true, use the GetForgeFedPush and SetForgeFedPush methods to access
	// and set this property.
	IsForgeFedPush() bool
	// IsForgeFedRepository returns true if this property has a type of
	// "Repository". When true, use the GetForgeFedRepository and
	// SetForgeFedRepository methods to access and set this property.
	IsForgeFedRepository() bool
	// IsForgeFedTicket returns true if this property has a type of "Ticket".
	// When true, use the GetForgeFedTicket and SetForgeFedTicket methods
	// to access and set this property.
	IsForgeFedTicket() bool
	// IsForgeFedTicketDependency returns true if this property has a type of
	// "TicketDependency". When true, use the GetForgeFedTicketDependency
	// and SetForgeFedTicketDependency methods to access and set this
	// property.
	IsForgeFedTicketDependency() bool
	// IsIRI returns true if this property is an IRI. When true, use GetIRI
	// and SetIRI to access and set this property
	IsIRI() bool
	// IsTootEmoji returns true if this property has a type of "Emoji". When
	// true, use the GetTootEmoji and SetTootEmoji methods to access and
	// set this property.
	IsTootEmoji() bool
	// IsTootIdentityProof returns true if this property has a type of
	// "IdentityProof". When true, use the GetTootIdentityProof and
	// SetTootIdentityProof methods to access and set this property.
	IsTootIdentityProof() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsAttributedToPropertyIterator) bool
	// Name returns the name of this property: "ActivityStreamsAttributedTo".
	Name() string
	// Next returns the next iterator, or nil if there is no next iterator.
	Next() ActivityStreamsAttributedToPropertyIterator
	// Prev returns the previous iterator, or nil if there is no previous
	// iterator.
	Prev() ActivityStreamsAttributedToPropertyIterator
	// SetActivityStreamsAccept sets the value of this property. Calling
	// IsActivityStreamsAccept afterwards returns true.
	SetActivityStreamsAccept(v ActivityStreamsAccept)
	// SetActivityStreamsActivity sets the value of this property. Calling
	// IsActivityStreamsActivity afterwards returns true.
	SetActivityStreamsActivity(v ActivityStreamsActivity)
	// SetActivityStreamsAdd sets the value of this property. Calling
	// IsActivityStreamsAdd afterwards returns true.
	SetActivityStreamsAdd(v ActivityStreamsAdd)
	// SetActivityStreamsAnnounce sets the value of this property. Calling
	// IsActivityStreamsAnnounce afterwards returns true.
	SetActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// SetActivityStreamsApplication sets the value of this property. Calling
	// IsActivityStreamsApplication afterwards returns true.
	SetActivityStreamsApplication(v ActivityStreamsApplication)
	// SetActivityStreamsArrive sets the value of this property. Calling
	// IsActivityStreamsArrive afterwards returns true.
	SetActivityStreamsArrive(v ActivityStreamsArrive)
	// SetActivityStreamsArticle sets the value of this property. Calling
	// IsActivityStreamsArticle afterwards returns true.
	SetActivityStreamsArticle(v ActivityStreamsArticle)
	// SetActivityStreamsAudio sets the value of this property. Calling
	// IsActivityStreamsAudio afterwards returns true.
	SetActivityStreamsAudio(v ActivityStreamsAudio)
	// SetActivityStreamsBlock sets the value of this property. Calling
	// IsActivityStreamsBlock afterwards returns true.
	SetActivityStreamsBlock(v ActivityStreamsBlock)
	// SetActivityStreamsCollection sets the value of this property. Calling
	// IsActivityStreamsCollection afterwards returns true.
	SetActivityStreamsCollection(v ActivityStreamsCollection)
	// SetActivityStreamsCollectionPage sets the value of this property.
	// Calling IsActivityStreamsCollectionPage afterwards returns true.
	SetActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// SetActivityStreamsCreate sets the value of this property. Calling
	// IsActivityStreamsCreate afterwards returns true.
	SetActivityStreamsCreate(v ActivityStreamsCreate)
	// SetActivityStreamsDelete sets the value of this property. Calling
	// IsActivityStreamsDelete afterwards returns true.
	SetActivityStreamsDelete(v ActivityStreamsDelete)
	// SetActivityStreamsDislike sets the value of this property. Calling
	// IsActivityStreamsDislike afterwards returns true.
	SetActivityStreamsDislike(v ActivityStreamsDislike)
	// SetActivityStreamsDocument sets the value of this property. Calling
	// IsActivityStreamsDocument afterwards returns true.
	SetActivityStreamsDocument(v ActivityStreamsDocument)
	// SetActivityStreamsEvent sets the value of this property. Calling
	// IsActivityStreamsEvent afterwards returns true.
	SetActivityStreamsEvent(v ActivityStreamsEvent)
	// SetActivityStreamsFlag sets the value of this property. Calling
	// IsActivityStreamsFlag afterwards returns true.
	SetActivityStreamsFlag(v ActivityStreamsFlag)
	// SetActivityStreamsFollow sets the value of this property. Calling
	// IsActivityStreamsFollow afterwards returns true.
	SetActivityStreamsFollow(v ActivityStreamsFollow)
	// SetActivityStreamsGroup sets the value of this property. Calling
	// IsActivityStreamsGroup afterwards returns true.
	SetActivityStreamsGroup(v ActivityStreamsGroup)
	// SetActivityStreamsIgnore sets the value of this property. Calling
	// IsActivityStreamsIgnore afterwards returns true.
	SetActivityStreamsIgnore(v ActivityStreamsIgnore)
	// SetActivityStreamsImage sets the value of this property. Calling
	// IsActivityStreamsImage afterwards returns true.
	SetActivityStreamsImage(v ActivityStreamsImage)
	// SetActivityStreamsIntransitiveActivity sets the value of this property.
	// Calling IsActivityStreamsIntransitiveActivity afterwards returns
	// true.
	SetActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// SetActivityStreamsInvite sets the value of this property. Calling
	// IsActivityStreamsInvite afterwards returns true.
	SetActivityStreamsInvite(v ActivityStreamsInvite)
	// SetActivityStreamsJoin sets the value of this property. Calling
	// IsActivityStreamsJoin afterwards returns true.
	SetActivityStreamsJoin(v ActivityStreamsJoin)
	// SetActivityStreamsLeave sets the value of this property. Calling
	// IsActivityStreamsLeave afterwards returns true.
	SetActivityStreamsLeave(v ActivityStreamsLeave)
	// SetActivityStreamsLike sets the value of this property. Calling
	// IsActivityStreamsLike afterwards returns true.
	SetActivityStreamsLike(v ActivityStreamsLike)
	// SetActivityStreamsLink sets the value of this property. Calling
	// IsActivityStreamsLink afterwards returns true.
	SetActivityStreamsLink(v ActivityStreamsLink)
	// SetActivityStreamsListen sets the value of this property. Calling
	// IsActivityStreamsListen afterwards returns true.
	SetActivityStreamsListen(v ActivityStreamsListen)
	// SetActivityStreamsMention sets the value of this property. Calling
	// IsActivityStreamsMention afterwards returns true.
	SetActivityStreamsMention(v ActivityStreamsMention)
	// SetActivityStreamsMove sets the value of this property. Calling
	// IsActivityStreamsMove afterwards returns true.
	SetActivityStreamsMove(v ActivityStreamsMove)
	// SetActivityStreamsNote sets the value of this property. Calling
	// IsActivityStreamsNote afterwards returns true.
	SetActivityStreamsNote(v ActivityStreamsNote)
	// SetActivityStreamsObject sets the value of this property. Calling
	// IsActivityStreamsObject afterwards returns true.
	SetActivityStreamsObject(v ActivityStreamsObject)
	// SetActivityStreamsOffer sets the value of this property. Calling
	// IsActivityStreamsOffer afterwards returns true.
	SetActivityStreamsOffer(v ActivityStreamsOffer)
	// SetActivityStreamsOrderedCollection sets the value of this property.
	// Calling IsActivityStreamsOrderedCollection afterwards returns true.
	SetActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// SetActivityStreamsOrderedCollectionPage sets the value of this
	// property. Calling IsActivityStreamsOrderedCollectionPage afterwards
	// returns true.
	SetActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// SetActivityStreamsOrganization sets the value of this property. Calling
	// IsActivityStreamsOrganization afterwards returns true.
	SetActivityStreamsOrganization(v ActivityStreamsOrganization)
	// SetActivityStreamsPage sets the value of this property. Calling
	// IsActivityStreamsPage afterwards returns true.
	SetActivityStreamsPage(v ActivityStreamsPage)
	// SetActivityStreamsPerson sets the value of this property. Calling
	// IsActivityStreamsPerson afterwards returns true.
	SetActivityStreamsPerson(v ActivityStreamsPerson)
	// SetActivityStreamsPlace sets the value of this property. Calling
	// IsActivityStreamsPlace afterwards returns true.
	SetActivityStreamsPlace(v ActivityStreamsPlace)
	// SetActivityStreamsProfile sets the value of this property. Calling
	// IsActivityStreamsProfile afterwards returns true.
	SetActivityStreamsProfile(v ActivityStreamsProfile)
	// SetActivityStreamsQuestion sets the value of this property. Calling
	// IsActivityStreamsQuestion afterwards returns true.
	SetActivityStreamsQuestion(v ActivityStreamsQuestion)
	// SetActivityStreamsRead sets the value of this property. Calling
	// IsActivityStreamsRead afterwards returns true.
	SetActivityStreamsRead(v ActivityStreamsRead)
	// SetActivityStreamsReject sets the value of this property. Calling
	// IsActivityStreamsReject afterwards returns true.
	SetActivityStreamsReject(v ActivityStreamsReject)
	// SetActivityStreamsRelationship sets the value of this property. Calling
	// IsActivityStreamsRelationship afterwards returns true.
	SetActivityStreamsRelationship(v ActivityStreamsRelationship)
	// SetActivityStreamsRemove sets the value of this property. Calling
	// IsActivityStreamsRemove afterwards returns true.
	SetActivityStreamsRemove(v ActivityStreamsRemove)
	// SetActivityStreamsService sets the value of this property. Calling
	// IsActivityStreamsService afterwards returns true.
	SetActivityStreamsService(v ActivityStreamsService)
	// SetActivityStreamsTentativeAccept sets the value of this property.
	// Calling IsActivityStreamsTentativeAccept afterwards returns true.
	SetActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// SetActivityStreamsTentativeReject sets the value of this property.
	// Calling IsActivityStreamsTentativeReject afterwards returns true.
	SetActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// SetActivityStreamsTombstone sets the value of this property. Calling
	// IsActivityStreamsTombstone afterwards returns true.
	SetActivityStreamsTombstone(v ActivityStreamsTombstone)
	// SetActivityStreamsTravel sets the value of this property. Calling
	// IsActivityStreamsTravel afterwards returns true.
	SetActivityStreamsTravel(v ActivityStreamsTravel)
	// SetActivityStreamsUndo sets the value of this property. Calling
	// IsActivityStreamsUndo afterwards returns true.
	SetActivityStreamsUndo(v ActivityStreamsUndo)
	// SetActivityStreamsUpdate sets the value of this property. Calling
	// IsActivityStreamsUpdate afterwards returns true.
	SetActivityStreamsUpdate(v ActivityStreamsUpdate)
	// SetActivityStreamsVideo sets the value of this property. Calling
	// IsActivityStreamsVideo afterwards returns true.
	SetActivityStreamsVideo(v ActivityStreamsVideo)
	// SetActivityStreamsView sets the value of this property. Calling
	// IsActivityStreamsView afterwards returns true.
	SetActivityStreamsView(v ActivityStreamsView)
	// SetForgeFedBranch sets the value of this property. Calling
	// IsForgeFedBranch afterwards returns true.
	SetForgeFedBranch(v ForgeFedBranch)
	// SetForgeFedCommit sets the value of this property. Calling
	// IsForgeFedCommit afterwards returns true.
	SetForgeFedCommit(v ForgeFedCommit)
	// SetForgeFedPush sets the value of this property. Calling IsForgeFedPush
	// afterwards returns true.
	SetForgeFedPush(v ForgeFedPush)
	// SetForgeFedRepository sets the value of this property. Calling
	// IsForgeFedRepository afterwards returns true.
	SetForgeFedRepository(v ForgeFedRepository)
	// SetForgeFedTicket sets the value of this property. Calling
	// IsForgeFedTicket afterwards returns true.
	SetForgeFedTicket(v ForgeFedTicket)
	// SetForgeFedTicketDependency sets the value of this property. Calling
	// IsForgeFedTicketDependency afterwards returns true.
	SetForgeFedTicketDependency(v ForgeFedTicketDependency)
	// SetIRI sets the value of this property. Calling IsIRI afterwards
	// returns true.
	SetIRI(v *url.URL)
	// SetTootEmoji sets the value of this property. Calling IsTootEmoji
	// afterwards returns true.
	SetTootEmoji(v TootEmoji)
	// SetTootIdentityProof sets the value of this property. Calling
	// IsTootIdentityProof afterwards returns true.
	SetTootIdentityProof(v TootIdentityProof)
	// SetType attempts to set the property for the arbitrary type. Returns an
	// error if it is not a valid type to set on this property.
	SetType(t Type) error
}

ActivityStreamsAttributedToPropertyIterator represents a single value for the "attributedTo" property.

type ActivityStreamsAudienceProperty

type ActivityStreamsAudienceProperty interface {
	// AppendActivityStreamsAccept appends a Accept value to the back of a
	// list of the property "audience". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsAccept(v ActivityStreamsAccept)
	// AppendActivityStreamsActivity appends a Activity value to the back of a
	// list of the property "audience". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsActivity(v ActivityStreamsActivity)
	// AppendActivityStreamsAdd appends a Add value to the back of a list of
	// the property "audience". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsAdd(v ActivityStreamsAdd)
	// AppendActivityStreamsAnnounce appends a Announce value to the back of a
	// list of the property "audience". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// AppendActivityStreamsApplication appends a Application value to the
	// back of a list of the property "audience". Invalidates iterators
	// that are traversing using Prev.
	AppendActivityStreamsApplication(v ActivityStreamsApplication)
	// AppendActivityStreamsArrive appends a Arrive value to the back of a
	// list of the property "audience". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsArrive(v ActivityStreamsArrive)
	// AppendActivityStreamsArticle appends a Article value to the back of a
	// list of the property "audience". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsArticle(v ActivityStreamsArticle)
	// AppendActivityStreamsAudio appends a Audio value to the back of a list
	// of the property "audience". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsAudio(v ActivityStreamsAudio)
	// AppendActivityStreamsBlock appends a Block value to the back of a list
	// of the property "audience". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsBlock(v ActivityStreamsBlock)
	// AppendActivityStreamsCollection appends a Collection value to the back
	// of a list of the property "audience". Invalidates iterators that
	// are traversing using Prev.
	AppendActivityStreamsCollection(v ActivityStreamsCollection)
	// AppendActivityStreamsCollectionPage appends a CollectionPage value to
	// the back of a list of the property "audience". Invalidates
	// iterators that are traversing using Prev.
	AppendActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// AppendActivityStreamsCreate appends a Create value to the back of a
	// list of the property "audience". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsCreate(v ActivityStreamsCreate)
	// AppendActivityStreamsDelete appends a Delete value to the back of a
	// list of the property "audience". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDelete(v ActivityStreamsDelete)
	// AppendActivityStreamsDislike appends a Dislike value to the back of a
	// list of the property "audience". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDislike(v ActivityStreamsDislike)
	// AppendActivityStreamsDocument appends a Document value to the back of a
	// list of the property "audience". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDocument(v ActivityStreamsDocument)
	// AppendActivityStreamsEvent appends a Event value to the back of a list
	// of the property "audience". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsEvent(v ActivityStreamsEvent)
	// AppendActivityStreamsFlag appends a Flag value to the back of a list of
	// the property "audience". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsFlag(v ActivityStreamsFlag)
	// AppendActivityStreamsFollow appends a Follow value to the back of a
	// list of the property "audience". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsFollow(v ActivityStreamsFollow)
	// AppendActivityStreamsGroup appends a Group value to the back of a list
	// of the property "audience". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsGroup(v ActivityStreamsGroup)
	// AppendActivityStreamsIgnore appends a Ignore value to the back of a
	// list of the property "audience". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsIgnore(v ActivityStreamsIgnore)
	// AppendActivityStreamsImage appends a Image value to the back of a list
	// of the property "audience". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsImage(v ActivityStreamsImage)
	// AppendActivityStreamsIntransitiveActivity appends a
	// IntransitiveActivity value to the back of a list of the property
	// "audience". Invalidates iterators that are traversing using Prev.
	AppendActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// AppendActivityStreamsInvite appends a Invite value to the back of a
	// list of the property "audience". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsInvite(v ActivityStreamsInvite)
	// AppendActivityStreamsJoin appends a Join value to the back of a list of
	// the property "audience". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsJoin(v ActivityStreamsJoin)
	// AppendActivityStreamsLeave appends a Leave value to the back of a list
	// of the property "audience". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsLeave(v ActivityStreamsLeave)
	// AppendActivityStreamsLike appends a Like value to the back of a list of
	// the property "audience". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsLike(v ActivityStreamsLike)
	// AppendActivityStreamsLink appends a Link value to the back of a list of
	// the property "audience". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsLink(v ActivityStreamsLink)
	// AppendActivityStreamsListen appends a Listen value to the back of a
	// list of the property "audience". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsListen(v ActivityStreamsListen)
	// AppendActivityStreamsMention appends a Mention value to the back of a
	// list of the property "audience". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsMention(v ActivityStreamsMention)
	// AppendActivityStreamsMove appends a Move value to the back of a list of
	// the property "audience". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsMove(v ActivityStreamsMove)
	// AppendActivityStreamsNote appends a Note value to the back of a list of
	// the property "audience". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsNote(v ActivityStreamsNote)
	// AppendActivityStreamsObject appends a Object value to the back of a
	// list of the property "audience". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsObject(v ActivityStreamsObject)
	// AppendActivityStreamsOffer appends a Offer value to the back of a list
	// of the property "audience". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsOffer(v ActivityStreamsOffer)
	// AppendActivityStreamsOrderedCollection appends a OrderedCollection
	// value to the back of a list of the property "audience". Invalidates
	// iterators that are traversing using Prev.
	AppendActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// AppendActivityStreamsOrderedCollectionPage appends a
	// OrderedCollectionPage value to the back of a list of the property
	// "audience". Invalidates iterators that are traversing using Prev.
	AppendActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// AppendActivityStreamsOrganization appends a Organization value to the
	// back of a list of the property "audience". Invalidates iterators
	// that are traversing using Prev.
	AppendActivityStreamsOrganization(v ActivityStreamsOrganization)
	// AppendActivityStreamsPage appends a Page value to the back of a list of
	// the property "audience". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsPage(v ActivityStreamsPage)
	// AppendActivityStreamsPerson appends a Person value to the back of a
	// list of the property "audience". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsPerson(v ActivityStreamsPerson)
	// AppendActivityStreamsPlace appends a Place value to the back of a list
	// of the property "audience". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsPlace(v ActivityStreamsPlace)
	// AppendActivityStreamsProfile appends a Profile value to the back of a
	// list of the property "audience". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsProfile(v ActivityStreamsProfile)
	// AppendActivityStreamsQuestion appends a Question value to the back of a
	// list of the property "audience". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsQuestion(v ActivityStreamsQuestion)
	// AppendActivityStreamsRead appends a Read value to the back of a list of
	// the property "audience". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsRead(v ActivityStreamsRead)
	// AppendActivityStreamsReject appends a Reject value to the back of a
	// list of the property "audience". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsReject(v ActivityStreamsReject)
	// AppendActivityStreamsRelationship appends a Relationship value to the
	// back of a list of the property "audience". Invalidates iterators
	// that are traversing using Prev.
	AppendActivityStreamsRelationship(v ActivityStreamsRelationship)
	// AppendActivityStreamsRemove appends a Remove value to the back of a
	// list of the property "audience". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsRemove(v ActivityStreamsRemove)
	// AppendActivityStreamsService appends a Service value to the back of a
	// list of the property "audience". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsService(v ActivityStreamsService)
	// AppendActivityStreamsTentativeAccept appends a TentativeAccept value to
	// the back of a list of the property "audience". Invalidates
	// iterators that are traversing using Prev.
	AppendActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// AppendActivityStreamsTentativeReject appends a TentativeReject value to
	// the back of a list of the property "audience". Invalidates
	// iterators that are traversing using Prev.
	AppendActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// AppendActivityStreamsTombstone appends a Tombstone value to the back of
	// a list of the property "audience". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsTombstone(v ActivityStreamsTombstone)
	// AppendActivityStreamsTravel appends a Travel value to the back of a
	// list of the property "audience". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsTravel(v ActivityStreamsTravel)
	// AppendActivityStreamsUndo appends a Undo value to the back of a list of
	// the property "audience". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsUndo(v ActivityStreamsUndo)
	// AppendActivityStreamsUpdate appends a Update value to the back of a
	// list of the property "audience". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsUpdate(v ActivityStreamsUpdate)
	// AppendActivityStreamsVideo appends a Video value to the back of a list
	// of the property "audience". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsVideo(v ActivityStreamsVideo)
	// AppendActivityStreamsView appends a View value to the back of a list of
	// the property "audience". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsView(v ActivityStreamsView)
	// AppendForgeFedBranch appends a Branch value to the back of a list of
	// the property "audience". Invalidates iterators that are traversing
	// using Prev.
	AppendForgeFedBranch(v ForgeFedBranch)
	// AppendForgeFedCommit appends a Commit value to the back of a list of
	// the property "audience". Invalidates iterators that are traversing
	// using Prev.
	AppendForgeFedCommit(v ForgeFedCommit)
	// AppendForgeFedPush appends a Push value to the back of a list of the
	// property "audience". Invalidates iterators that are traversing
	// using Prev.
	AppendForgeFedPush(v ForgeFedPush)
	// AppendForgeFedRepository appends a Repository value to the back of a
	// list of the property "audience". Invalidates iterators that are
	// traversing using Prev.
	AppendForgeFedRepository(v ForgeFedRepository)
	// AppendForgeFedTicket appends a Ticket value to the back of a list of
	// the property "audience". Invalidates iterators that are traversing
	// using Prev.
	AppendForgeFedTicket(v ForgeFedTicket)
	// AppendForgeFedTicketDependency appends a TicketDependency value to the
	// back of a list of the property "audience". Invalidates iterators
	// that are traversing using Prev.
	AppendForgeFedTicketDependency(v ForgeFedTicketDependency)
	// AppendIRI appends an IRI value to the back of a list of the property
	// "audience"
	AppendIRI(v *url.URL)
	// AppendTootEmoji appends a Emoji value to the back of a list of the
	// property "audience". Invalidates iterators that are traversing
	// using Prev.
	AppendTootEmoji(v TootEmoji)
	// AppendTootIdentityProof appends a IdentityProof value to the back of a
	// list of the property "audience". Invalidates iterators that are
	// traversing using Prev.
	AppendTootIdentityProof(v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "audience". Invalidates iterators that are traversing
	// using Prev. Returns an error if the type is not a valid one to set
	// for this property.
	AppendType(t Type) error
	// At returns the property value for the specified index. Panics if the
	// index is out of bounds.
	At(index int) ActivityStreamsAudiencePropertyIterator
	// Begin returns the first iterator, or nil if empty. Can be used with the
	// iterator's Next method and this property's End method to iterate
	// from front to back through all values.
	Begin() ActivityStreamsAudiencePropertyIterator
	// Empty returns returns true if there are no elements.
	Empty() bool
	// End returns beyond-the-last iterator, which is nil. Can be used with
	// the iterator's Next method and this property's Begin method to
	// iterate from front to back through all values.
	End() ActivityStreamsAudiencePropertyIterator
	// InsertActivityStreamsAccept inserts a Accept value at the specified
	// index for a property "audience". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAccept(idx int, v ActivityStreamsAccept)
	// InsertActivityStreamsActivity inserts a Activity value at the specified
	// index for a property "audience". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsActivity(idx int, v ActivityStreamsActivity)
	// InsertActivityStreamsAdd inserts a Add value at the specified index for
	// a property "audience". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAdd(idx int, v ActivityStreamsAdd)
	// InsertActivityStreamsAnnounce inserts a Announce value at the specified
	// index for a property "audience". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAnnounce(idx int, v ActivityStreamsAnnounce)
	// InsertActivityStreamsApplication inserts a Application value at the
	// specified index for a property "audience". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsApplication(idx int, v ActivityStreamsApplication)
	// InsertActivityStreamsArrive inserts a Arrive value at the specified
	// index for a property "audience". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsArrive(idx int, v ActivityStreamsArrive)
	// InsertActivityStreamsArticle inserts a Article value at the specified
	// index for a property "audience". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsArticle(idx int, v ActivityStreamsArticle)
	// InsertActivityStreamsAudio inserts a Audio value at the specified index
	// for a property "audience". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAudio(idx int, v ActivityStreamsAudio)
	// InsertActivityStreamsBlock inserts a Block value at the specified index
	// for a property "audience". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsBlock(idx int, v ActivityStreamsBlock)
	// InsertActivityStreamsCollection inserts a Collection value at the
	// specified index for a property "audience". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsCollection(idx int, v ActivityStreamsCollection)
	// InsertActivityStreamsCollectionPage inserts a CollectionPage value at
	// the specified index for a property "audience". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsCollectionPage(idx int, v ActivityStreamsCollectionPage)
	// InsertActivityStreamsCreate inserts a Create value at the specified
	// index for a property "audience". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsCreate(idx int, v ActivityStreamsCreate)
	// InsertActivityStreamsDelete inserts a Delete value at the specified
	// index for a property "audience". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDelete(idx int, v ActivityStreamsDelete)
	// InsertActivityStreamsDislike inserts a Dislike value at the specified
	// index for a property "audience". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDislike(idx int, v ActivityStreamsDislike)
	// InsertActivityStreamsDocument inserts a Document value at the specified
	// index for a property "audience". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDocument(idx int, v ActivityStreamsDocument)
	// InsertActivityStreamsEvent inserts a Event value at the specified index
	// for a property "audience". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsEvent(idx int, v ActivityStreamsEvent)
	// InsertActivityStreamsFlag inserts a Flag value at the specified index
	// for a property "audience". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsFlag(idx int, v ActivityStreamsFlag)
	// InsertActivityStreamsFollow inserts a Follow value at the specified
	// index for a property "audience". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsFollow(idx int, v ActivityStreamsFollow)
	// InsertActivityStreamsGroup inserts a Group value at the specified index
	// for a property "audience". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsGroup(idx int, v ActivityStreamsGroup)
	// InsertActivityStreamsIgnore inserts a Ignore value at the specified
	// index for a property "audience". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsIgnore(idx int, v ActivityStreamsIgnore)
	// InsertActivityStreamsImage inserts a Image value at the specified index
	// for a property "audience". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsImage(idx int, v ActivityStreamsImage)
	// InsertActivityStreamsIntransitiveActivity inserts a
	// IntransitiveActivity value at the specified index for a property
	// "audience". Existing elements at that index and higher are shifted
	// back once. Invalidates all iterators.
	InsertActivityStreamsIntransitiveActivity(idx int, v ActivityStreamsIntransitiveActivity)
	// InsertActivityStreamsInvite inserts a Invite value at the specified
	// index for a property "audience". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsInvite(idx int, v ActivityStreamsInvite)
	// InsertActivityStreamsJoin inserts a Join value at the specified index
	// for a property "audience". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsJoin(idx int, v ActivityStreamsJoin)
	// InsertActivityStreamsLeave inserts a Leave value at the specified index
	// for a property "audience". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsLeave(idx int, v ActivityStreamsLeave)
	// InsertActivityStreamsLike inserts a Like value at the specified index
	// for a property "audience". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsLike(idx int, v ActivityStreamsLike)
	// InsertActivityStreamsLink inserts a Link value at the specified index
	// for a property "audience". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsLink(idx int, v ActivityStreamsLink)
	// InsertActivityStreamsListen inserts a Listen value at the specified
	// index for a property "audience". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsListen(idx int, v ActivityStreamsListen)
	// InsertActivityStreamsMention inserts a Mention value at the specified
	// index for a property "audience". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsMention(idx int, v ActivityStreamsMention)
	// InsertActivityStreamsMove inserts a Move value at the specified index
	// for a property "audience". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsMove(idx int, v ActivityStreamsMove)
	// InsertActivityStreamsNote inserts a Note value at the specified index
	// for a property "audience". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsNote(idx int, v ActivityStreamsNote)
	// InsertActivityStreamsObject inserts a Object value at the specified
	// index for a property "audience". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsObject(idx int, v ActivityStreamsObject)
	// InsertActivityStreamsOffer inserts a Offer value at the specified index
	// for a property "audience". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsOffer(idx int, v ActivityStreamsOffer)
	// InsertActivityStreamsOrderedCollection inserts a OrderedCollection
	// value at the specified index for a property "audience". Existing
	// elements at that index and higher are shifted back once.
	// Invalidates all iterators.
	InsertActivityStreamsOrderedCollection(idx int, v ActivityStreamsOrderedCollection)
	// InsertActivityStreamsOrderedCollectionPage inserts a
	// OrderedCollectionPage value at the specified index for a property
	// "audience". Existing elements at that index and higher are shifted
	// back once. Invalidates all iterators.
	InsertActivityStreamsOrderedCollectionPage(idx int, v ActivityStreamsOrderedCollectionPage)
	// InsertActivityStreamsOrganization inserts a Organization value at the
	// specified index for a property "audience". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsOrganization(idx int, v ActivityStreamsOrganization)
	// InsertActivityStreamsPage inserts a Page value at the specified index
	// for a property "audience". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsPage(idx int, v ActivityStreamsPage)
	// InsertActivityStreamsPerson inserts a Person value at the specified
	// index for a property "audience". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsPerson(idx int, v ActivityStreamsPerson)
	// InsertActivityStreamsPlace inserts a Place value at the specified index
	// for a property "audience". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsPlace(idx int, v ActivityStreamsPlace)
	// InsertActivityStreamsProfile inserts a Profile value at the specified
	// index for a property "audience". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsProfile(idx int, v ActivityStreamsProfile)
	// InsertActivityStreamsQuestion inserts a Question value at the specified
	// index for a property "audience". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsQuestion(idx int, v ActivityStreamsQuestion)
	// InsertActivityStreamsRead inserts a Read value at the specified index
	// for a property "audience". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsRead(idx int, v ActivityStreamsRead)
	// InsertActivityStreamsReject inserts a Reject value at the specified
	// index for a property "audience". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsReject(idx int, v ActivityStreamsReject)
	// InsertActivityStreamsRelationship inserts a Relationship value at the
	// specified index for a property "audience". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsRelationship(idx int, v ActivityStreamsRelationship)
	// InsertActivityStreamsRemove inserts a Remove value at the specified
	// index for a property "audience". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsRemove(idx int, v ActivityStreamsRemove)
	// InsertActivityStreamsService inserts a Service value at the specified
	// index for a property "audience". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsService(idx int, v ActivityStreamsService)
	// InsertActivityStreamsTentativeAccept inserts a TentativeAccept value at
	// the specified index for a property "audience". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsTentativeAccept(idx int, v ActivityStreamsTentativeAccept)
	// InsertActivityStreamsTentativeReject inserts a TentativeReject value at
	// the specified index for a property "audience". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsTentativeReject(idx int, v ActivityStreamsTentativeReject)
	// InsertActivityStreamsTombstone inserts a Tombstone value at the
	// specified index for a property "audience". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsTombstone(idx int, v ActivityStreamsTombstone)
	// InsertActivityStreamsTravel inserts a Travel value at the specified
	// index for a property "audience". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsTravel(idx int, v ActivityStreamsTravel)
	// InsertActivityStreamsUndo inserts a Undo value at the specified index
	// for a property "audience". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsUndo(idx int, v ActivityStreamsUndo)
	// InsertActivityStreamsUpdate inserts a Update value at the specified
	// index for a property "audience". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsUpdate(idx int, v ActivityStreamsUpdate)
	// InsertActivityStreamsVideo inserts a Video value at the specified index
	// for a property "audience". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsVideo(idx int, v ActivityStreamsVideo)
	// InsertActivityStreamsView inserts a View value at the specified index
	// for a property "audience". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsView(idx int, v ActivityStreamsView)
	// InsertForgeFedBranch inserts a Branch value at the specified index for
	// a property "audience". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertForgeFedBranch(idx int, v ForgeFedBranch)
	// InsertForgeFedCommit inserts a Commit value at the specified index for
	// a property "audience". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertForgeFedCommit(idx int, v ForgeFedCommit)
	// InsertForgeFedPush inserts a Push value at the specified index for a
	// property "audience". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertForgeFedPush(idx int, v ForgeFedPush)
	// InsertForgeFedRepository inserts a Repository value at the specified
	// index for a property "audience". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertForgeFedRepository(idx int, v ForgeFedRepository)
	// InsertForgeFedTicket inserts a Ticket value at the specified index for
	// a property "audience". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertForgeFedTicket(idx int, v ForgeFedTicket)
	// InsertForgeFedTicketDependency inserts a TicketDependency value at the
	// specified index for a property "audience". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
	// Insert inserts an IRI value at the specified index for a property
	// "audience". Existing elements at that index and higher are shifted
	// back once. Invalidates all iterators.
	InsertIRI(idx int, v *url.URL)
	// InsertTootEmoji inserts a Emoji value at the specified index for a
	// property "audience". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertTootEmoji(idx int, v TootEmoji)
	// InsertTootIdentityProof inserts a IdentityProof value at the specified
	// index for a property "audience". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertTootIdentityProof(idx int, v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "audience". Invalidates all iterators. Returns an
	// error if the type is not a valid one to set for this property.
	InsertType(idx int, t Type) error
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API method specifically needed only for alternate
	// implementations for go-fed. Applications should not use this
	// method. Panics if the index is out of bounds.
	KindIndex(idx int) int
	// Len returns the number of values that exist for the "audience" property.
	Len() (length int)
	// Less computes whether another property is less than this one. Mixing
	// types results in a consistent but arbitrary ordering
	Less(i, j int) bool
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsAudienceProperty) bool
	// Name returns the name of this property ("audience") with any alias.
	Name() string
	// PrependActivityStreamsAccept prepends a Accept value to the front of a
	// list of the property "audience". Invalidates all iterators.
	PrependActivityStreamsAccept(v ActivityStreamsAccept)
	// PrependActivityStreamsActivity prepends a Activity value to the front
	// of a list of the property "audience". Invalidates all iterators.
	PrependActivityStreamsActivity(v ActivityStreamsActivity)
	// PrependActivityStreamsAdd prepends a Add value to the front of a list
	// of the property "audience". Invalidates all iterators.
	PrependActivityStreamsAdd(v ActivityStreamsAdd)
	// PrependActivityStreamsAnnounce prepends a Announce value to the front
	// of a list of the property "audience". Invalidates all iterators.
	PrependActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// PrependActivityStreamsApplication prepends a Application value to the
	// front of a list of the property "audience". Invalidates all
	// iterators.
	PrependActivityStreamsApplication(v ActivityStreamsApplication)
	// PrependActivityStreamsArrive prepends a Arrive value to the front of a
	// list of the property "audience". Invalidates all iterators.
	PrependActivityStreamsArrive(v ActivityStreamsArrive)
	// PrependActivityStreamsArticle prepends a Article value to the front of
	// a list of the property "audience". Invalidates all iterators.
	PrependActivityStreamsArticle(v ActivityStreamsArticle)
	// PrependActivityStreamsAudio prepends a Audio value to the front of a
	// list of the property "audience". Invalidates all iterators.
	PrependActivityStreamsAudio(v ActivityStreamsAudio)
	// PrependActivityStreamsBlock prepends a Block value to the front of a
	// list of the property "audience". Invalidates all iterators.
	PrependActivityStreamsBlock(v ActivityStreamsBlock)
	// PrependActivityStreamsCollection prepends a Collection value to the
	// front of a list of the property "audience". Invalidates all
	// iterators.
	PrependActivityStreamsCollection(v ActivityStreamsCollection)
	// PrependActivityStreamsCollectionPage prepends a CollectionPage value to
	// the front of a list of the property "audience". Invalidates all
	// iterators.
	PrependActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// PrependActivityStreamsCreate prepends a Create value to the front of a
	// list of the property "audience". Invalidates all iterators.
	PrependActivityStreamsCreate(v ActivityStreamsCreate)
	// PrependActivityStreamsDelete prepends a Delete value to the front of a
	// list of the property "audience". Invalidates all iterators.
	PrependActivityStreamsDelete(v ActivityStreamsDelete)
	// PrependActivityStreamsDislike prepends a Dislike value to the front of
	// a list of the property "audience". Invalidates all iterators.
	PrependActivityStreamsDislike(v ActivityStreamsDislike)
	// PrependActivityStreamsDocument prepends a Document value to the front
	// of a list of the property "audience". Invalidates all iterators.
	PrependActivityStreamsDocument(v ActivityStreamsDocument)
	// PrependActivityStreamsEvent prepends a Event value to the front of a
	// list of the property "audience". Invalidates all iterators.
	PrependActivityStreamsEvent(v ActivityStreamsEvent)
	// PrependActivityStreamsFlag prepends a Flag value to the front of a list
	// of the property "audience". Invalidates all iterators.
	PrependActivityStreamsFlag(v ActivityStreamsFlag)
	// PrependActivityStreamsFollow prepends a Follow value to the front of a
	// list of the property "audience". Invalidates all iterators.
	PrependActivityStreamsFollow(v ActivityStreamsFollow)
	// PrependActivityStreamsGroup prepends a Group value to the front of a
	// list of the property "audience". Invalidates all iterators.
	PrependActivityStreamsGroup(v ActivityStreamsGroup)
	// PrependActivityStreamsIgnore prepends a Ignore value to the front of a
	// list of the property "audience". Invalidates all iterators.
	PrependActivityStreamsIgnore(v ActivityStreamsIgnore)
	// PrependActivityStreamsImage prepends a Image value to the front of a
	// list of the property "audience". Invalidates all iterators.
	PrependActivityStreamsImage(v ActivityStreamsImage)
	// PrependActivityStreamsIntransitiveActivity prepends a
	// IntransitiveActivity value to the front of a list of the property
	// "audience". Invalidates all iterators.
	PrependActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// PrependActivityStreamsInvite prepends a Invite value to the front of a
	// list of the property "audience". Invalidates all iterators.
	PrependActivityStreamsInvite(v ActivityStreamsInvite)
	// PrependActivityStreamsJoin prepends a Join value to the front of a list
	// of the property "audience". Invalidates all iterators.
	PrependActivityStreamsJoin(v ActivityStreamsJoin)
	// PrependActivityStreamsLeave prepends a Leave value to the front of a
	// list of the property "audience". Invalidates all iterators.
	PrependActivityStreamsLeave(v ActivityStreamsLeave)
	// PrependActivityStreamsLike prepends a Like value to the front of a list
	// of the property "audience". Invalidates all iterators.
	PrependActivityStreamsLike(v ActivityStreamsLike)
	// PrependActivityStreamsLink prepends a Link value to the front of a list
	// of the property "audience". Invalidates all iterators.
	PrependActivityStreamsLink(v ActivityStreamsLink)
	// PrependActivityStreamsListen prepends a Listen value to the front of a
	// list of the property "audience". Invalidates all iterators.
	PrependActivityStreamsListen(v ActivityStreamsListen)
	// PrependActivityStreamsMention prepends a Mention value to the front of
	// a list of the property "audience". Invalidates all iterators.
	PrependActivityStreamsMention(v ActivityStreamsMention)
	// PrependActivityStreamsMove prepends a Move value to the front of a list
	// of the property "audience". Invalidates all iterators.
	PrependActivityStreamsMove(v ActivityStreamsMove)
	// PrependActivityStreamsNote prepends a Note value to the front of a list
	// of the property "audience". Invalidates all iterators.
	PrependActivityStreamsNote(v ActivityStreamsNote)
	// PrependActivityStreamsObject prepends a Object value to the front of a
	// list of the property "audience". Invalidates all iterators.
	PrependActivityStreamsObject(v ActivityStreamsObject)
	// PrependActivityStreamsOffer prepends a Offer value to the front of a
	// list of the property "audience". Invalidates all iterators.
	PrependActivityStreamsOffer(v ActivityStreamsOffer)
	// PrependActivityStreamsOrderedCollection prepends a OrderedCollection
	// value to the front of a list of the property "audience".
	// Invalidates all iterators.
	PrependActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// PrependActivityStreamsOrderedCollectionPage prepends a
	// OrderedCollectionPage value to the front of a list of the property
	// "audience". Invalidates all iterators.
	PrependActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// PrependActivityStreamsOrganization prepends a Organization value to the
	// front of a list of the property "audience". Invalidates all
	// iterators.
	PrependActivityStreamsOrganization(v ActivityStreamsOrganization)
	// PrependActivityStreamsPage prepends a Page value to the front of a list
	// of the property "audience". Invalidates all iterators.
	PrependActivityStreamsPage(v ActivityStreamsPage)
	// PrependActivityStreamsPerson prepends a Person value to the front of a
	// list of the property "audience". Invalidates all iterators.
	PrependActivityStreamsPerson(v ActivityStreamsPerson)
	// PrependActivityStreamsPlace prepends a Place value to the front of a
	// list of the property "audience". Invalidates all iterators.
	PrependActivityStreamsPlace(v ActivityStreamsPlace)
	// PrependActivityStreamsProfile prepends a Profile value to the front of
	// a list of the property "audience". Invalidates all iterators.
	PrependActivityStreamsProfile(v ActivityStreamsProfile)
	// PrependActivityStreamsQuestion prepends a Question value to the front
	// of a list of the property "audience". Invalidates all iterators.
	PrependActivityStreamsQuestion(v ActivityStreamsQuestion)
	// PrependActivityStreamsRead prepends a Read value to the front of a list
	// of the property "audience". Invalidates all iterators.
	PrependActivityStreamsRead(v ActivityStreamsRead)
	// PrependActivityStreamsReject prepends a Reject value to the front of a
	// list of the property "audience". Invalidates all iterators.
	PrependActivityStreamsReject(v ActivityStreamsReject)
	// PrependActivityStreamsRelationship prepends a Relationship value to the
	// front of a list of the property "audience". Invalidates all
	// iterators.
	PrependActivityStreamsRelationship(v ActivityStreamsRelationship)
	// PrependActivityStreamsRemove prepends a Remove value to the front of a
	// list of the property "audience". Invalidates all iterators.
	PrependActivityStreamsRemove(v ActivityStreamsRemove)
	// PrependActivityStreamsService prepends a Service value to the front of
	// a list of the property "audience". Invalidates all iterators.
	PrependActivityStreamsService(v ActivityStreamsService)
	// PrependActivityStreamsTentativeAccept prepends a TentativeAccept value
	// to the front of a list of the property "audience". Invalidates all
	// iterators.
	PrependActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// PrependActivityStreamsTentativeReject prepends a TentativeReject value
	// to the front of a list of the property "audience". Invalidates all
	// iterators.
	PrependActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// PrependActivityStreamsTombstone prepends a Tombstone value to the front
	// of a list of the property "audience". Invalidates all iterators.
	PrependActivityStreamsTombstone(v ActivityStreamsTombstone)
	// PrependActivityStreamsTravel prepends a Travel value to the front of a
	// list of the property "audience". Invalidates all iterators.
	PrependActivityStreamsTravel(v ActivityStreamsTravel)
	// PrependActivityStreamsUndo prepends a Undo value to the front of a list
	// of the property "audience". Invalidates all iterators.
	PrependActivityStreamsUndo(v ActivityStreamsUndo)
	// PrependActivityStreamsUpdate prepends a Update value to the front of a
	// list of the property "audience". Invalidates all iterators.
	PrependActivityStreamsUpdate(v ActivityStreamsUpdate)
	// PrependActivityStreamsVideo prepends a Video value to the front of a
	// list of the property "audience". Invalidates all iterators.
	PrependActivityStreamsVideo(v ActivityStreamsVideo)
	// PrependActivityStreamsView prepends a View value to the front of a list
	// of the property "audience". Invalidates all iterators.
	PrependActivityStreamsView(v ActivityStreamsView)
	// PrependForgeFedBranch prepends a Branch value to the front of a list of
	// the property "audience". Invalidates all iterators.
	PrependForgeFedBranch(v ForgeFedBranch)
	// PrependForgeFedCommit prepends a Commit value to the front of a list of
	// the property "audience". Invalidates all iterators.
	PrependForgeFedCommit(v ForgeFedCommit)
	// PrependForgeFedPush prepends a Push value to the front of a list of the
	// property "audience". Invalidates all iterators.
	PrependForgeFedPush(v ForgeFedPush)
	// PrependForgeFedRepository prepends a Repository value to the front of a
	// list of the property "audience". Invalidates all iterators.
	PrependForgeFedRepository(v ForgeFedRepository)
	// PrependForgeFedTicket prepends a Ticket value to the front of a list of
	// the property "audience". Invalidates all iterators.
	PrependForgeFedTicket(v ForgeFedTicket)
	// PrependForgeFedTicketDependency prepends a TicketDependency value to
	// the front of a list of the property "audience". Invalidates all
	// iterators.
	PrependForgeFedTicketDependency(v ForgeFedTicketDependency)
	// PrependIRI prepends an IRI value to the front of a list of the property
	// "audience".
	PrependIRI(v *url.URL)
	// PrependTootEmoji prepends a Emoji value to the front of a list of the
	// property "audience". Invalidates all iterators.
	PrependTootEmoji(v TootEmoji)
	// PrependTootIdentityProof prepends a IdentityProof value to the front of
	// a list of the property "audience". Invalidates all iterators.
	PrependTootIdentityProof(v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "audience". Invalidates all iterators. Returns an
	// error if the type is not a valid one to set for this property.
	PrependType(t Type) error
	// Remove deletes an element at the specified index from a list of the
	// property "audience", regardless of its type. Panics if the index is
	// out of bounds. Invalidates all iterators.
	Remove(idx int)
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// SetActivityStreamsAccept sets a Accept value to be at the specified
	// index for the property "audience". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsAccept(idx int, v ActivityStreamsAccept)
	// SetActivityStreamsActivity sets a Activity value to be at the specified
	// index for the property "audience". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsActivity(idx int, v ActivityStreamsActivity)
	// SetActivityStreamsAdd sets a Add value to be at the specified index for
	// the property "audience". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsAdd(idx int, v ActivityStreamsAdd)
	// SetActivityStreamsAnnounce sets a Announce value to be at the specified
	// index for the property "audience". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsAnnounce(idx int, v ActivityStreamsAnnounce)
	// SetActivityStreamsApplication sets a Application value to be at the
	// specified index for the property "audience". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsApplication(idx int, v ActivityStreamsApplication)
	// SetActivityStreamsArrive sets a Arrive value to be at the specified
	// index for the property "audience". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsArrive(idx int, v ActivityStreamsArrive)
	// SetActivityStreamsArticle sets a Article value to be at the specified
	// index for the property "audience". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsArticle(idx int, v ActivityStreamsArticle)
	// SetActivityStreamsAudio sets a Audio value to be at the specified index
	// for the property "audience". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsAudio(idx int, v ActivityStreamsAudio)
	// SetActivityStreamsBlock sets a Block value to be at the specified index
	// for the property "audience". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsBlock(idx int, v ActivityStreamsBlock)
	// SetActivityStreamsCollection sets a Collection value to be at the
	// specified index for the property "audience". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsCollection(idx int, v ActivityStreamsCollection)
	// SetActivityStreamsCollectionPage sets a CollectionPage value to be at
	// the specified index for the property "audience". Panics if the
	// index is out of bounds. Invalidates all iterators.
	SetActivityStreamsCollectionPage(idx int, v ActivityStreamsCollectionPage)
	// SetActivityStreamsCreate sets a Create value to be at the specified
	// index for the property "audience". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsCreate(idx int, v ActivityStreamsCreate)
	// SetActivityStreamsDelete sets a Delete value to be at the specified
	// index for the property "audience". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsDelete(idx int, v ActivityStreamsDelete)
	// SetActivityStreamsDislike sets a Dislike value to be at the specified
	// index for the property "audience". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsDislike(idx int, v ActivityStreamsDislike)
	// SetActivityStreamsDocument sets a Document value to be at the specified
	// index for the property "audience". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsDocument(idx int, v ActivityStreamsDocument)
	// SetActivityStreamsEvent sets a Event value to be at the specified index
	// for the property "audience". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsEvent(idx int, v ActivityStreamsEvent)
	// SetActivityStreamsFlag sets a Flag value to be at the specified index
	// for the property "audience". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsFlag(idx int, v ActivityStreamsFlag)
	// SetActivityStreamsFollow sets a Follow value to be at the specified
	// index for the property "audience". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsFollow(idx int, v ActivityStreamsFollow)
	// SetActivityStreamsGroup sets a Group value to be at the specified index
	// for the property "audience". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsGroup(idx int, v ActivityStreamsGroup)
	// SetActivityStreamsIgnore sets a Ignore value to be at the specified
	// index for the property "audience". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsIgnore(idx int, v ActivityStreamsIgnore)
	// SetActivityStreamsImage sets a Image value to be at the specified index
	// for the property "audience". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsImage(idx int, v ActivityStreamsImage)
	// SetActivityStreamsIntransitiveActivity sets a IntransitiveActivity
	// value to be at the specified index for the property "audience".
	// Panics if the index is out of bounds. Invalidates all iterators.
	SetActivityStreamsIntransitiveActivity(idx int, v ActivityStreamsIntransitiveActivity)
	// SetActivityStreamsInvite sets a Invite value to be at the specified
	// index for the property "audience". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsInvite(idx int, v ActivityStreamsInvite)
	// SetActivityStreamsJoin sets a Join value to be at the specified index
	// for the property "audience". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsJoin(idx int, v ActivityStreamsJoin)
	// SetActivityStreamsLeave sets a Leave value to be at the specified index
	// for the property "audience". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsLeave(idx int, v ActivityStreamsLeave)
	// SetActivityStreamsLike sets a Like value to be at the specified index
	// for the property "audience". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsLike(idx int, v ActivityStreamsLike)
	// SetActivityStreamsLink sets a Link value to be at the specified index
	// for the property "audience". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsLink(idx int, v ActivityStreamsLink)
	// SetActivityStreamsListen sets a Listen value to be at the specified
	// index for the property "audience". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsListen(idx int, v ActivityStreamsListen)
	// SetActivityStreamsMention sets a Mention value to be at the specified
	// index for the property "audience". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsMention(idx int, v ActivityStreamsMention)
	// SetActivityStreamsMove sets a Move value to be at the specified index
	// for the property "audience". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsMove(idx int, v ActivityStreamsMove)
	// SetActivityStreamsNote sets a Note value to be at the specified index
	// for the property "audience". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsNote(idx int, v ActivityStreamsNote)
	// SetActivityStreamsObject sets a Object value to be at the specified
	// index for the property "audience". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsObject(idx int, v ActivityStreamsObject)
	// SetActivityStreamsOffer sets a Offer value to be at the specified index
	// for the property "audience". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsOffer(idx int, v ActivityStreamsOffer)
	// SetActivityStreamsOrderedCollection sets a OrderedCollection value to
	// be at the specified index for the property "audience". Panics if
	// the index is out of bounds. Invalidates all iterators.
	SetActivityStreamsOrderedCollection(idx int, v ActivityStreamsOrderedCollection)
	// SetActivityStreamsOrderedCollectionPage sets a OrderedCollectionPage
	// value to be at the specified index for the property "audience".
	// Panics if the index is out of bounds. Invalidates all iterators.
	SetActivityStreamsOrderedCollectionPage(idx int, v ActivityStreamsOrderedCollectionPage)
	// SetActivityStreamsOrganization sets a Organization value to be at the
	// specified index for the property "audience". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsOrganization(idx int, v ActivityStreamsOrganization)
	// SetActivityStreamsPage sets a Page value to be at the specified index
	// for the property "audience". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsPage(idx int, v ActivityStreamsPage)
	// SetActivityStreamsPerson sets a Person value to be at the specified
	// index for the property "audience". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsPerson(idx int, v ActivityStreamsPerson)
	// SetActivityStreamsPlace sets a Place value to be at the specified index
	// for the property "audience". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsPlace(idx int, v ActivityStreamsPlace)
	// SetActivityStreamsProfile sets a Profile value to be at the specified
	// index for the property "audience". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsProfile(idx int, v ActivityStreamsProfile)
	// SetActivityStreamsQuestion sets a Question value to be at the specified
	// index for the property "audience". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsQuestion(idx int, v ActivityStreamsQuestion)
	// SetActivityStreamsRead sets a Read value to be at the specified index
	// for the property "audience". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsRead(idx int, v ActivityStreamsRead)
	// SetActivityStreamsReject sets a Reject value to be at the specified
	// index for the property "audience". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsReject(idx int, v ActivityStreamsReject)
	// SetActivityStreamsRelationship sets a Relationship value to be at the
	// specified index for the property "audience". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsRelationship(idx int, v ActivityStreamsRelationship)
	// SetActivityStreamsRemove sets a Remove value to be at the specified
	// index for the property "audience". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsRemove(idx int, v ActivityStreamsRemove)
	// SetActivityStreamsService sets a Service value to be at the specified
	// index for the property "audience". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsService(idx int, v ActivityStreamsService)
	// SetActivityStreamsTentativeAccept sets a TentativeAccept value to be at
	// the specified index for the property "audience". Panics if the
	// index is out of bounds. Invalidates all iterators.
	SetActivityStreamsTentativeAccept(idx int, v ActivityStreamsTentativeAccept)
	// SetActivityStreamsTentativeReject sets a TentativeReject value to be at
	// the specified index for the property "audience". Panics if the
	// index is out of bounds. Invalidates all iterators.
	SetActivityStreamsTentativeReject(idx int, v ActivityStreamsTentativeReject)
	// SetActivityStreamsTombstone sets a Tombstone value to be at the
	// specified index for the property "audience". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsTombstone(idx int, v ActivityStreamsTombstone)
	// SetActivityStreamsTravel sets a Travel value to be at the specified
	// index for the property "audience". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsTravel(idx int, v ActivityStreamsTravel)
	// SetActivityStreamsUndo sets a Undo value to be at the specified index
	// for the property "audience". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsUndo(idx int, v ActivityStreamsUndo)
	// SetActivityStreamsUpdate sets a Update value to be at the specified
	// index for the property "audience". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsUpdate(idx int, v ActivityStreamsUpdate)
	// SetActivityStreamsVideo sets a Video value to be at the specified index
	// for the property "audience". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsVideo(idx int, v ActivityStreamsVideo)
	// SetActivityStreamsView sets a View value to be at the specified index
	// for the property "audience". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsView(idx int, v ActivityStreamsView)
	// SetForgeFedBranch sets a Branch value to be at the specified index for
	// the property "audience". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedBranch(idx int, v ForgeFedBranch)
	// SetForgeFedCommit sets a Commit value to be at the specified index for
	// the property "audience". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedCommit(idx int, v ForgeFedCommit)
	// SetForgeFedPush sets a Push value to be at the specified index for the
	// property "audience". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedPush(idx int, v ForgeFedPush)
	// SetForgeFedRepository sets a Repository value to be at the specified
	// index for the property "audience". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetForgeFedRepository(idx int, v ForgeFedRepository)
	// SetForgeFedTicket sets a Ticket value to be at the specified index for
	// the property "audience". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedTicket(idx int, v ForgeFedTicket)
	// SetForgeFedTicketDependency sets a TicketDependency value to be at the
	// specified index for the property "audience". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
	// SetIRI sets an IRI value to be at the specified index for the property
	// "audience". Panics if the index is out of bounds.
	SetIRI(idx int, v *url.URL)
	// SetTootEmoji sets a Emoji value to be at the specified index for the
	// property "audience". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetTootEmoji(idx int, v TootEmoji)
	// SetTootIdentityProof sets a IdentityProof value to be at the specified
	// index for the property "audience". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetTootIdentityProof(idx int, v TootIdentityProof)
	// SetType sets an arbitrary type value to the specified index of the
	// property "audience". Invalidates all iterators. Returns an error if
	// the type is not a valid one to set for this property. Panics if the
	// index is out of bounds.
	SetType(idx int, t Type) error
	// Swap swaps the location of values at two indices for the "audience"
	// property.
	Swap(i, j int)
}

Identifies one or more entities that represent the total population of entities for which the object can considered to be relevant.

Example 69 (https://www.w3.org/TR/activitystreams-vocabulary/#ex113-jsonld):

{
  "audience": {
    "name": "ExampleCo LLC",
    "type": "http://example.org/Organization"
  },
  "content": "Thursday will be a company-wide holiday. Enjoy your day

off!",

  "name": "Holiday announcement",
  "type": "Note"
}

type ActivityStreamsAudiencePropertyIterator

type ActivityStreamsAudiencePropertyIterator interface {
	// GetActivityStreamsAccept returns the value of this property. When
	// IsActivityStreamsAccept returns false, GetActivityStreamsAccept
	// will return an arbitrary value.
	GetActivityStreamsAccept() ActivityStreamsAccept
	// GetActivityStreamsActivity returns the value of this property. When
	// IsActivityStreamsActivity returns false, GetActivityStreamsActivity
	// will return an arbitrary value.
	GetActivityStreamsActivity() ActivityStreamsActivity
	// GetActivityStreamsAdd returns the value of this property. When
	// IsActivityStreamsAdd returns false, GetActivityStreamsAdd will
	// return an arbitrary value.
	GetActivityStreamsAdd() ActivityStreamsAdd
	// GetActivityStreamsAnnounce returns the value of this property. When
	// IsActivityStreamsAnnounce returns false, GetActivityStreamsAnnounce
	// will return an arbitrary value.
	GetActivityStreamsAnnounce() ActivityStreamsAnnounce
	// GetActivityStreamsApplication returns the value of this property. When
	// IsActivityStreamsApplication returns false,
	// GetActivityStreamsApplication will return an arbitrary value.
	GetActivityStreamsApplication() ActivityStreamsApplication
	// GetActivityStreamsArrive returns the value of this property. When
	// IsActivityStreamsArrive returns false, GetActivityStreamsArrive
	// will return an arbitrary value.
	GetActivityStreamsArrive() ActivityStreamsArrive
	// GetActivityStreamsArticle returns the value of this property. When
	// IsActivityStreamsArticle returns false, GetActivityStreamsArticle
	// will return an arbitrary value.
	GetActivityStreamsArticle() ActivityStreamsArticle
	// GetActivityStreamsAudio returns the value of this property. When
	// IsActivityStreamsAudio returns false, GetActivityStreamsAudio will
	// return an arbitrary value.
	GetActivityStreamsAudio() ActivityStreamsAudio
	// GetActivityStreamsBlock returns the value of this property. When
	// IsActivityStreamsBlock returns false, GetActivityStreamsBlock will
	// return an arbitrary value.
	GetActivityStreamsBlock() ActivityStreamsBlock
	// GetActivityStreamsCollection returns the value of this property. When
	// IsActivityStreamsCollection returns false,
	// GetActivityStreamsCollection will return an arbitrary value.
	GetActivityStreamsCollection() ActivityStreamsCollection
	// GetActivityStreamsCollectionPage returns the value of this property.
	// When IsActivityStreamsCollectionPage returns false,
	// GetActivityStreamsCollectionPage will return an arbitrary value.
	GetActivityStreamsCollectionPage() ActivityStreamsCollectionPage
	// GetActivityStreamsCreate returns the value of this property. When
	// IsActivityStreamsCreate returns false, GetActivityStreamsCreate
	// will return an arbitrary value.
	GetActivityStreamsCreate() ActivityStreamsCreate
	// GetActivityStreamsDelete returns the value of this property. When
	// IsActivityStreamsDelete returns false, GetActivityStreamsDelete
	// will return an arbitrary value.
	GetActivityStreamsDelete() ActivityStreamsDelete
	// GetActivityStreamsDislike returns the value of this property. When
	// IsActivityStreamsDislike returns false, GetActivityStreamsDislike
	// will return an arbitrary value.
	GetActivityStreamsDislike() ActivityStreamsDislike
	// GetActivityStreamsDocument returns the value of this property. When
	// IsActivityStreamsDocument returns false, GetActivityStreamsDocument
	// will return an arbitrary value.
	GetActivityStreamsDocument() ActivityStreamsDocument
	// GetActivityStreamsEvent returns the value of this property. When
	// IsActivityStreamsEvent returns false, GetActivityStreamsEvent will
	// return an arbitrary value.
	GetActivityStreamsEvent() ActivityStreamsEvent
	// GetActivityStreamsFlag returns the value of this property. When
	// IsActivityStreamsFlag returns false, GetActivityStreamsFlag will
	// return an arbitrary value.
	GetActivityStreamsFlag() ActivityStreamsFlag
	// GetActivityStreamsFollow returns the value of this property. When
	// IsActivityStreamsFollow returns false, GetActivityStreamsFollow
	// will return an arbitrary value.
	GetActivityStreamsFollow() ActivityStreamsFollow
	// GetActivityStreamsGroup returns the value of this property. When
	// IsActivityStreamsGroup returns false, GetActivityStreamsGroup will
	// return an arbitrary value.
	GetActivityStreamsGroup() ActivityStreamsGroup
	// GetActivityStreamsIgnore returns the value of this property. When
	// IsActivityStreamsIgnore returns false, GetActivityStreamsIgnore
	// will return an arbitrary value.
	GetActivityStreamsIgnore() ActivityStreamsIgnore
	// GetActivityStreamsImage returns the value of this property. When
	// IsActivityStreamsImage returns false, GetActivityStreamsImage will
	// return an arbitrary value.
	GetActivityStreamsImage() ActivityStreamsImage
	// GetActivityStreamsIntransitiveActivity returns the value of this
	// property. When IsActivityStreamsIntransitiveActivity returns false,
	// GetActivityStreamsIntransitiveActivity will return an arbitrary
	// value.
	GetActivityStreamsIntransitiveActivity() ActivityStreamsIntransitiveActivity
	// GetActivityStreamsInvite returns the value of this property. When
	// IsActivityStreamsInvite returns false, GetActivityStreamsInvite
	// will return an arbitrary value.
	GetActivityStreamsInvite() ActivityStreamsInvite
	// GetActivityStreamsJoin returns the value of this property. When
	// IsActivityStreamsJoin returns false, GetActivityStreamsJoin will
	// return an arbitrary value.
	GetActivityStreamsJoin() ActivityStreamsJoin
	// GetActivityStreamsLeave returns the value of this property. When
	// IsActivityStreamsLeave returns false, GetActivityStreamsLeave will
	// return an arbitrary value.
	GetActivityStreamsLeave() ActivityStreamsLeave
	// GetActivityStreamsLike returns the value of this property. When
	// IsActivityStreamsLike returns false, GetActivityStreamsLike will
	// return an arbitrary value.
	GetActivityStreamsLike() ActivityStreamsLike
	// GetActivityStreamsLink returns the value of this property. When
	// IsActivityStreamsLink returns false, GetActivityStreamsLink will
	// return an arbitrary value.
	GetActivityStreamsLink() ActivityStreamsLink
	// GetActivityStreamsListen returns the value of this property. When
	// IsActivityStreamsListen returns false, GetActivityStreamsListen
	// will return an arbitrary value.
	GetActivityStreamsListen() ActivityStreamsListen
	// GetActivityStreamsMention returns the value of this property. When
	// IsActivityStreamsMention returns false, GetActivityStreamsMention
	// will return an arbitrary value.
	GetActivityStreamsMention() ActivityStreamsMention
	// GetActivityStreamsMove returns the value of this property. When
	// IsActivityStreamsMove returns false, GetActivityStreamsMove will
	// return an arbitrary value.
	GetActivityStreamsMove() ActivityStreamsMove
	// GetActivityStreamsNote returns the value of this property. When
	// IsActivityStreamsNote returns false, GetActivityStreamsNote will
	// return an arbitrary value.
	GetActivityStreamsNote() ActivityStreamsNote
	// GetActivityStreamsObject returns the value of this property. When
	// IsActivityStreamsObject returns false, GetActivityStreamsObject
	// will return an arbitrary value.
	GetActivityStreamsObject() ActivityStreamsObject
	// GetActivityStreamsOffer returns the value of this property. When
	// IsActivityStreamsOffer returns false, GetActivityStreamsOffer will
	// return an arbitrary value.
	GetActivityStreamsOffer() ActivityStreamsOffer
	// GetActivityStreamsOrderedCollection returns the value of this property.
	// When IsActivityStreamsOrderedCollection returns false,
	// GetActivityStreamsOrderedCollection will return an arbitrary value.
	GetActivityStreamsOrderedCollection() ActivityStreamsOrderedCollection
	// GetActivityStreamsOrderedCollectionPage returns the value of this
	// property. When IsActivityStreamsOrderedCollectionPage returns
	// false, GetActivityStreamsOrderedCollectionPage will return an
	// arbitrary value.
	GetActivityStreamsOrderedCollectionPage() ActivityStreamsOrderedCollectionPage
	// GetActivityStreamsOrganization returns the value of this property. When
	// IsActivityStreamsOrganization returns false,
	// GetActivityStreamsOrganization will return an arbitrary value.
	GetActivityStreamsOrganization() ActivityStreamsOrganization
	// GetActivityStreamsPage returns the value of this property. When
	// IsActivityStreamsPage returns false, GetActivityStreamsPage will
	// return an arbitrary value.
	GetActivityStreamsPage() ActivityStreamsPage
	// GetActivityStreamsPerson returns the value of this property. When
	// IsActivityStreamsPerson returns false, GetActivityStreamsPerson
	// will return an arbitrary value.
	GetActivityStreamsPerson() ActivityStreamsPerson
	// GetActivityStreamsPlace returns the value of this property. When
	// IsActivityStreamsPlace returns false, GetActivityStreamsPlace will
	// return an arbitrary value.
	GetActivityStreamsPlace() ActivityStreamsPlace
	// GetActivityStreamsProfile returns the value of this property. When
	// IsActivityStreamsProfile returns false, GetActivityStreamsProfile
	// will return an arbitrary value.
	GetActivityStreamsProfile() ActivityStreamsProfile
	// GetActivityStreamsQuestion returns the value of this property. When
	// IsActivityStreamsQuestion returns false, GetActivityStreamsQuestion
	// will return an arbitrary value.
	GetActivityStreamsQuestion() ActivityStreamsQuestion
	// GetActivityStreamsRead returns the value of this property. When
	// IsActivityStreamsRead returns false, GetActivityStreamsRead will
	// return an arbitrary value.
	GetActivityStreamsRead() ActivityStreamsRead
	// GetActivityStreamsReject returns the value of this property. When
	// IsActivityStreamsReject returns false, GetActivityStreamsReject
	// will return an arbitrary value.
	GetActivityStreamsReject() ActivityStreamsReject
	// GetActivityStreamsRelationship returns the value of this property. When
	// IsActivityStreamsRelationship returns false,
	// GetActivityStreamsRelationship will return an arbitrary value.
	GetActivityStreamsRelationship() ActivityStreamsRelationship
	// GetActivityStreamsRemove returns the value of this property. When
	// IsActivityStreamsRemove returns false, GetActivityStreamsRemove
	// will return an arbitrary value.
	GetActivityStreamsRemove() ActivityStreamsRemove
	// GetActivityStreamsService returns the value of this property. When
	// IsActivityStreamsService returns false, GetActivityStreamsService
	// will return an arbitrary value.
	GetActivityStreamsService() ActivityStreamsService
	// GetActivityStreamsTentativeAccept returns the value of this property.
	// When IsActivityStreamsTentativeAccept returns false,
	// GetActivityStreamsTentativeAccept will return an arbitrary value.
	GetActivityStreamsTentativeAccept() ActivityStreamsTentativeAccept
	// GetActivityStreamsTentativeReject returns the value of this property.
	// When IsActivityStreamsTentativeReject returns false,
	// GetActivityStreamsTentativeReject will return an arbitrary value.
	GetActivityStreamsTentativeReject() ActivityStreamsTentativeReject
	// GetActivityStreamsTombstone returns the value of this property. When
	// IsActivityStreamsTombstone returns false,
	// GetActivityStreamsTombstone will return an arbitrary value.
	GetActivityStreamsTombstone() ActivityStreamsTombstone
	// GetActivityStreamsTravel returns the value of this property. When
	// IsActivityStreamsTravel returns false, GetActivityStreamsTravel
	// will return an arbitrary value.
	GetActivityStreamsTravel() ActivityStreamsTravel
	// GetActivityStreamsUndo returns the value of this property. When
	// IsActivityStreamsUndo returns false, GetActivityStreamsUndo will
	// return an arbitrary value.
	GetActivityStreamsUndo() ActivityStreamsUndo
	// GetActivityStreamsUpdate returns the value of this property. When
	// IsActivityStreamsUpdate returns false, GetActivityStreamsUpdate
	// will return an arbitrary value.
	GetActivityStreamsUpdate() ActivityStreamsUpdate
	// GetActivityStreamsVideo returns the value of this property. When
	// IsActivityStreamsVideo returns false, GetActivityStreamsVideo will
	// return an arbitrary value.
	GetActivityStreamsVideo() ActivityStreamsVideo
	// GetActivityStreamsView returns the value of this property. When
	// IsActivityStreamsView returns false, GetActivityStreamsView will
	// return an arbitrary value.
	GetActivityStreamsView() ActivityStreamsView
	// GetForgeFedBranch returns the value of this property. When
	// IsForgeFedBranch returns false, GetForgeFedBranch will return an
	// arbitrary value.
	GetForgeFedBranch() ForgeFedBranch
	// GetForgeFedCommit returns the value of this property. When
	// IsForgeFedCommit returns false, GetForgeFedCommit will return an
	// arbitrary value.
	GetForgeFedCommit() ForgeFedCommit
	// GetForgeFedPush returns the value of this property. When IsForgeFedPush
	// returns false, GetForgeFedPush will return an arbitrary value.
	GetForgeFedPush() ForgeFedPush
	// GetForgeFedRepository returns the value of this property. When
	// IsForgeFedRepository returns false, GetForgeFedRepository will
	// return an arbitrary value.
	GetForgeFedRepository() ForgeFedRepository
	// GetForgeFedTicket returns the value of this property. When
	// IsForgeFedTicket returns false, GetForgeFedTicket will return an
	// arbitrary value.
	GetForgeFedTicket() ForgeFedTicket
	// GetForgeFedTicketDependency returns the value of this property. When
	// IsForgeFedTicketDependency returns false,
	// GetForgeFedTicketDependency will return an arbitrary value.
	GetForgeFedTicketDependency() ForgeFedTicketDependency
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return an arbitrary value.
	GetIRI() *url.URL
	// GetTootEmoji returns the value of this property. When IsTootEmoji
	// returns false, GetTootEmoji will return an arbitrary value.
	GetTootEmoji() TootEmoji
	// GetTootIdentityProof returns the value of this property. When
	// IsTootIdentityProof returns false, GetTootIdentityProof will return
	// an arbitrary value.
	GetTootIdentityProof() TootIdentityProof
	// GetType returns the value in this property as a Type. Returns nil if
	// the value is not an ActivityStreams type, such as an IRI or another
	// value.
	GetType() Type
	// HasAny returns true if any of the different values is set.
	HasAny() bool
	// IsActivityStreamsAccept returns true if this property has a type of
	// "Accept". When true, use the GetActivityStreamsAccept and
	// SetActivityStreamsAccept methods to access and set this property.
	IsActivityStreamsAccept() bool
	// IsActivityStreamsActivity returns true if this property has a type of
	// "Activity". When true, use the GetActivityStreamsActivity and
	// SetActivityStreamsActivity methods to access and set this property.
	IsActivityStreamsActivity() bool
	// IsActivityStreamsAdd returns true if this property has a type of "Add".
	// When true, use the GetActivityStreamsAdd and SetActivityStreamsAdd
	// methods to access and set this property.
	IsActivityStreamsAdd() bool
	// IsActivityStreamsAnnounce returns true if this property has a type of
	// "Announce". When true, use the GetActivityStreamsAnnounce and
	// SetActivityStreamsAnnounce methods to access and set this property.
	IsActivityStreamsAnnounce() bool
	// IsActivityStreamsApplication returns true if this property has a type
	// of "Application". When true, use the GetActivityStreamsApplication
	// and SetActivityStreamsApplication methods to access and set this
	// property.
	IsActivityStreamsApplication() bool
	// IsActivityStreamsArrive returns true if this property has a type of
	// "Arrive". When true, use the GetActivityStreamsArrive and
	// SetActivityStreamsArrive methods to access and set this property.
	IsActivityStreamsArrive() bool
	// IsActivityStreamsArticle returns true if this property has a type of
	// "Article". When true, use the GetActivityStreamsArticle and
	// SetActivityStreamsArticle methods to access and set this property.
	IsActivityStreamsArticle() bool
	// IsActivityStreamsAudio returns true if this property has a type of
	// "Audio". When true, use the GetActivityStreamsAudio and
	// SetActivityStreamsAudio methods to access and set this property.
	IsActivityStreamsAudio() bool
	// IsActivityStreamsBlock returns true if this property has a type of
	// "Block". When true, use the GetActivityStreamsBlock and
	// SetActivityStreamsBlock methods to access and set this property.
	IsActivityStreamsBlock() bool
	// IsActivityStreamsCollection returns true if this property has a type of
	// "Collection". When true, use the GetActivityStreamsCollection and
	// SetActivityStreamsCollection methods to access and set this
	// property.
	IsActivityStreamsCollection() bool
	// IsActivityStreamsCollectionPage returns true if this property has a
	// type of "CollectionPage". When true, use the
	// GetActivityStreamsCollectionPage and
	// SetActivityStreamsCollectionPage methods to access and set this
	// property.
	IsActivityStreamsCollectionPage() bool
	// IsActivityStreamsCreate returns true if this property has a type of
	// "Create". When true, use the GetActivityStreamsCreate and
	// SetActivityStreamsCreate methods to access and set this property.
	IsActivityStreamsCreate() bool
	// IsActivityStreamsDelete returns true if this property has a type of
	// "Delete". When true, use the GetActivityStreamsDelete and
	// SetActivityStreamsDelete methods to access and set this property.
	IsActivityStreamsDelete() bool
	// IsActivityStreamsDislike returns true if this property has a type of
	// "Dislike". When true, use the GetActivityStreamsDislike and
	// SetActivityStreamsDislike methods to access and set this property.
	IsActivityStreamsDislike() bool
	// IsActivityStreamsDocument returns true if this property has a type of
	// "Document". When true, use the GetActivityStreamsDocument and
	// SetActivityStreamsDocument methods to access and set this property.
	IsActivityStreamsDocument() bool
	// IsActivityStreamsEvent returns true if this property has a type of
	// "Event". When true, use the GetActivityStreamsEvent and
	// SetActivityStreamsEvent methods to access and set this property.
	IsActivityStreamsEvent() bool
	// IsActivityStreamsFlag returns true if this property has a type of
	// "Flag". When true, use the GetActivityStreamsFlag and
	// SetActivityStreamsFlag methods to access and set this property.
	IsActivityStreamsFlag() bool
	// IsActivityStreamsFollow returns true if this property has a type of
	// "Follow". When true, use the GetActivityStreamsFollow and
	// SetActivityStreamsFollow methods to access and set this property.
	IsActivityStreamsFollow() bool
	// IsActivityStreamsGroup returns true if this property has a type of
	// "Group". When true, use the GetActivityStreamsGroup and
	// SetActivityStreamsGroup methods to access and set this property.
	IsActivityStreamsGroup() bool
	// IsActivityStreamsIgnore returns true if this property has a type of
	// "Ignore". When true, use the GetActivityStreamsIgnore and
	// SetActivityStreamsIgnore methods to access and set this property.
	IsActivityStreamsIgnore() bool
	// IsActivityStreamsImage returns true if this property has a type of
	// "Image". When true, use the GetActivityStreamsImage and
	// SetActivityStreamsImage methods to access and set this property.
	IsActivityStreamsImage() bool
	// IsActivityStreamsIntransitiveActivity returns true if this property has
	// a type of "IntransitiveActivity". When true, use the
	// GetActivityStreamsIntransitiveActivity and
	// SetActivityStreamsIntransitiveActivity methods to access and set
	// this property.
	IsActivityStreamsIntransitiveActivity() bool
	// IsActivityStreamsInvite returns true if this property has a type of
	// "Invite". When true, use the GetActivityStreamsInvite and
	// SetActivityStreamsInvite methods to access and set this property.
	IsActivityStreamsInvite() bool
	// IsActivityStreamsJoin returns true if this property has a type of
	// "Join". When true, use the GetActivityStreamsJoin and
	// SetActivityStreamsJoin methods to access and set this property.
	IsActivityStreamsJoin() bool
	// IsActivityStreamsLeave returns true if this property has a type of
	// "Leave". When true, use the GetActivityStreamsLeave and
	// SetActivityStreamsLeave methods to access and set this property.
	IsActivityStreamsLeave() bool
	// IsActivityStreamsLike returns true if this property has a type of
	// "Like". When true, use the GetActivityStreamsLike and
	// SetActivityStreamsLike methods to access and set this property.
	IsActivityStreamsLike() bool
	// IsActivityStreamsLink returns true if this property has a type of
	// "Link". When true, use the GetActivityStreamsLink and
	// SetActivityStreamsLink methods to access and set this property.
	IsActivityStreamsLink() bool
	// IsActivityStreamsListen returns true if this property has a type of
	// "Listen". When true, use the GetActivityStreamsListen and
	// SetActivityStreamsListen methods to access and set this property.
	IsActivityStreamsListen() bool
	// IsActivityStreamsMention returns true if this property has a type of
	// "Mention". When true, use the GetActivityStreamsMention and
	// SetActivityStreamsMention methods to access and set this property.
	IsActivityStreamsMention() bool
	// IsActivityStreamsMove returns true if this property has a type of
	// "Move". When true, use the GetActivityStreamsMove and
	// SetActivityStreamsMove methods to access and set this property.
	IsActivityStreamsMove() bool
	// IsActivityStreamsNote returns true if this property has a type of
	// "Note". When true, use the GetActivityStreamsNote and
	// SetActivityStreamsNote methods to access and set this property.
	IsActivityStreamsNote() bool
	// IsActivityStreamsObject returns true if this property has a type of
	// "Object". When true, use the GetActivityStreamsObject and
	// SetActivityStreamsObject methods to access and set this property.
	IsActivityStreamsObject() bool
	// IsActivityStreamsOffer returns true if this property has a type of
	// "Offer". When true, use the GetActivityStreamsOffer and
	// SetActivityStreamsOffer methods to access and set this property.
	IsActivityStreamsOffer() bool
	// IsActivityStreamsOrderedCollection returns true if this property has a
	// type of "OrderedCollection". When true, use the
	// GetActivityStreamsOrderedCollection and
	// SetActivityStreamsOrderedCollection methods to access and set this
	// property.
	IsActivityStreamsOrderedCollection() bool
	// IsActivityStreamsOrderedCollectionPage returns true if this property
	// has a type of "OrderedCollectionPage". When true, use the
	// GetActivityStreamsOrderedCollectionPage and
	// SetActivityStreamsOrderedCollectionPage methods to access and set
	// this property.
	IsActivityStreamsOrderedCollectionPage() bool
	// IsActivityStreamsOrganization returns true if this property has a type
	// of "Organization". When true, use the
	// GetActivityStreamsOrganization and SetActivityStreamsOrganization
	// methods to access and set this property.
	IsActivityStreamsOrganization() bool
	// IsActivityStreamsPage returns true if this property has a type of
	// "Page". When true, use the GetActivityStreamsPage and
	// SetActivityStreamsPage methods to access and set this property.
	IsActivityStreamsPage() bool
	// IsActivityStreamsPerson returns true if this property has a type of
	// "Person". When true, use the GetActivityStreamsPerson and
	// SetActivityStreamsPerson methods to access and set this property.
	IsActivityStreamsPerson() bool
	// IsActivityStreamsPlace returns true if this property has a type of
	// "Place". When true, use the GetActivityStreamsPlace and
	// SetActivityStreamsPlace methods to access and set this property.
	IsActivityStreamsPlace() bool
	// IsActivityStreamsProfile returns true if this property has a type of
	// "Profile". When true, use the GetActivityStreamsProfile and
	// SetActivityStreamsProfile methods to access and set this property.
	IsActivityStreamsProfile() bool
	// IsActivityStreamsQuestion returns true if this property has a type of
	// "Question". When true, use the GetActivityStreamsQuestion and
	// SetActivityStreamsQuestion methods to access and set this property.
	IsActivityStreamsQuestion() bool
	// IsActivityStreamsRead returns true if this property has a type of
	// "Read". When true, use the GetActivityStreamsRead and
	// SetActivityStreamsRead methods to access and set this property.
	IsActivityStreamsRead() bool
	// IsActivityStreamsReject returns true if this property has a type of
	// "Reject". When true, use the GetActivityStreamsReject and
	// SetActivityStreamsReject methods to access and set this property.
	IsActivityStreamsReject() bool
	// IsActivityStreamsRelationship returns true if this property has a type
	// of "Relationship". When true, use the
	// GetActivityStreamsRelationship and SetActivityStreamsRelationship
	// methods to access and set this property.
	IsActivityStreamsRelationship() bool
	// IsActivityStreamsRemove returns true if this property has a type of
	// "Remove". When true, use the GetActivityStreamsRemove and
	// SetActivityStreamsRemove methods to access and set this property.
	IsActivityStreamsRemove() bool
	// IsActivityStreamsService returns true if this property has a type of
	// "Service". When true, use the GetActivityStreamsService and
	// SetActivityStreamsService methods to access and set this property.
	IsActivityStreamsService() bool
	// IsActivityStreamsTentativeAccept returns true if this property has a
	// type of "TentativeAccept". When true, use the
	// GetActivityStreamsTentativeAccept and
	// SetActivityStreamsTentativeAccept methods to access and set this
	// property.
	IsActivityStreamsTentativeAccept() bool
	// IsActivityStreamsTentativeReject returns true if this property has a
	// type of "TentativeReject". When true, use the
	// GetActivityStreamsTentativeReject and
	// SetActivityStreamsTentativeReject methods to access and set this
	// property.
	IsActivityStreamsTentativeReject() bool
	// IsActivityStreamsTombstone returns true if this property has a type of
	// "Tombstone". When true, use the GetActivityStreamsTombstone and
	// SetActivityStreamsTombstone methods to access and set this property.
	IsActivityStreamsTombstone() bool
	// IsActivityStreamsTravel returns true if this property has a type of
	// "Travel". When true, use the GetActivityStreamsTravel and
	// SetActivityStreamsTravel methods to access and set this property.
	IsActivityStreamsTravel() bool
	// IsActivityStreamsUndo returns true if this property has a type of
	// "Undo". When true, use the GetActivityStreamsUndo and
	// SetActivityStreamsUndo methods to access and set this property.
	IsActivityStreamsUndo() bool
	// IsActivityStreamsUpdate returns true if this property has a type of
	// "Update". When true, use the GetActivityStreamsUpdate and
	// SetActivityStreamsUpdate methods to access and set this property.
	IsActivityStreamsUpdate() bool
	// IsActivityStreamsVideo returns true if this property has a type of
	// "Video". When true, use the GetActivityStreamsVideo and
	// SetActivityStreamsVideo methods to access and set this property.
	IsActivityStreamsVideo() bool
	// IsActivityStreamsView returns true if this property has a type of
	// "View". When true, use the GetActivityStreamsView and
	// SetActivityStreamsView methods to access and set this property.
	IsActivityStreamsView() bool
	// IsForgeFedBranch returns true if this property has a type of "Branch".
	// When true, use the GetForgeFedBranch and SetForgeFedBranch methods
	// to access and set this property.
	IsForgeFedBranch() bool
	// IsForgeFedCommit returns true if this property has a type of "Commit".
	// When true, use the GetForgeFedCommit and SetForgeFedCommit methods
	// to access and set this property.
	IsForgeFedCommit() bool
	// IsForgeFedPush returns true if this property has a type of "Push". When
	// true, use the GetForgeFedPush and SetForgeFedPush methods to access
	// and set this property.
	IsForgeFedPush() bool
	// IsForgeFedRepository returns true if this property has a type of
	// "Repository". When true, use the GetForgeFedRepository and
	// SetForgeFedRepository methods to access and set this property.
	IsForgeFedRepository() bool
	// IsForgeFedTicket returns true if this property has a type of "Ticket".
	// When true, use the GetForgeFedTicket and SetForgeFedTicket methods
	// to access and set this property.
	IsForgeFedTicket() bool
	// IsForgeFedTicketDependency returns true if this property has a type of
	// "TicketDependency". When true, use the GetForgeFedTicketDependency
	// and SetForgeFedTicketDependency methods to access and set this
	// property.
	IsForgeFedTicketDependency() bool
	// IsIRI returns true if this property is an IRI. When true, use GetIRI
	// and SetIRI to access and set this property
	IsIRI() bool
	// IsTootEmoji returns true if this property has a type of "Emoji". When
	// true, use the GetTootEmoji and SetTootEmoji methods to access and
	// set this property.
	IsTootEmoji() bool
	// IsTootIdentityProof returns true if this property has a type of
	// "IdentityProof". When true, use the GetTootIdentityProof and
	// SetTootIdentityProof methods to access and set this property.
	IsTootIdentityProof() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsAudiencePropertyIterator) bool
	// Name returns the name of this property: "ActivityStreamsAudience".
	Name() string
	// Next returns the next iterator, or nil if there is no next iterator.
	Next() ActivityStreamsAudiencePropertyIterator
	// Prev returns the previous iterator, or nil if there is no previous
	// iterator.
	Prev() ActivityStreamsAudiencePropertyIterator
	// SetActivityStreamsAccept sets the value of this property. Calling
	// IsActivityStreamsAccept afterwards returns true.
	SetActivityStreamsAccept(v ActivityStreamsAccept)
	// SetActivityStreamsActivity sets the value of this property. Calling
	// IsActivityStreamsActivity afterwards returns true.
	SetActivityStreamsActivity(v ActivityStreamsActivity)
	// SetActivityStreamsAdd sets the value of this property. Calling
	// IsActivityStreamsAdd afterwards returns true.
	SetActivityStreamsAdd(v ActivityStreamsAdd)
	// SetActivityStreamsAnnounce sets the value of this property. Calling
	// IsActivityStreamsAnnounce afterwards returns true.
	SetActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// SetActivityStreamsApplication sets the value of this property. Calling
	// IsActivityStreamsApplication afterwards returns true.
	SetActivityStreamsApplication(v ActivityStreamsApplication)
	// SetActivityStreamsArrive sets the value of this property. Calling
	// IsActivityStreamsArrive afterwards returns true.
	SetActivityStreamsArrive(v ActivityStreamsArrive)
	// SetActivityStreamsArticle sets the value of this property. Calling
	// IsActivityStreamsArticle afterwards returns true.
	SetActivityStreamsArticle(v ActivityStreamsArticle)
	// SetActivityStreamsAudio sets the value of this property. Calling
	// IsActivityStreamsAudio afterwards returns true.
	SetActivityStreamsAudio(v ActivityStreamsAudio)
	// SetActivityStreamsBlock sets the value of this property. Calling
	// IsActivityStreamsBlock afterwards returns true.
	SetActivityStreamsBlock(v ActivityStreamsBlock)
	// SetActivityStreamsCollection sets the value of this property. Calling
	// IsActivityStreamsCollection afterwards returns true.
	SetActivityStreamsCollection(v ActivityStreamsCollection)
	// SetActivityStreamsCollectionPage sets the value of this property.
	// Calling IsActivityStreamsCollectionPage afterwards returns true.
	SetActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// SetActivityStreamsCreate sets the value of this property. Calling
	// IsActivityStreamsCreate afterwards returns true.
	SetActivityStreamsCreate(v ActivityStreamsCreate)
	// SetActivityStreamsDelete sets the value of this property. Calling
	// IsActivityStreamsDelete afterwards returns true.
	SetActivityStreamsDelete(v ActivityStreamsDelete)
	// SetActivityStreamsDislike sets the value of this property. Calling
	// IsActivityStreamsDislike afterwards returns true.
	SetActivityStreamsDislike(v ActivityStreamsDislike)
	// SetActivityStreamsDocument sets the value of this property. Calling
	// IsActivityStreamsDocument afterwards returns true.
	SetActivityStreamsDocument(v ActivityStreamsDocument)
	// SetActivityStreamsEvent sets the value of this property. Calling
	// IsActivityStreamsEvent afterwards returns true.
	SetActivityStreamsEvent(v ActivityStreamsEvent)
	// SetActivityStreamsFlag sets the value of this property. Calling
	// IsActivityStreamsFlag afterwards returns true.
	SetActivityStreamsFlag(v ActivityStreamsFlag)
	// SetActivityStreamsFollow sets the value of this property. Calling
	// IsActivityStreamsFollow afterwards returns true.
	SetActivityStreamsFollow(v ActivityStreamsFollow)
	// SetActivityStreamsGroup sets the value of this property. Calling
	// IsActivityStreamsGroup afterwards returns true.
	SetActivityStreamsGroup(v ActivityStreamsGroup)
	// SetActivityStreamsIgnore sets the value of this property. Calling
	// IsActivityStreamsIgnore afterwards returns true.
	SetActivityStreamsIgnore(v ActivityStreamsIgnore)
	// SetActivityStreamsImage sets the value of this property. Calling
	// IsActivityStreamsImage afterwards returns true.
	SetActivityStreamsImage(v ActivityStreamsImage)
	// SetActivityStreamsIntransitiveActivity sets the value of this property.
	// Calling IsActivityStreamsIntransitiveActivity afterwards returns
	// true.
	SetActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// SetActivityStreamsInvite sets the value of this property. Calling
	// IsActivityStreamsInvite afterwards returns true.
	SetActivityStreamsInvite(v ActivityStreamsInvite)
	// SetActivityStreamsJoin sets the value of this property. Calling
	// IsActivityStreamsJoin afterwards returns true.
	SetActivityStreamsJoin(v ActivityStreamsJoin)
	// SetActivityStreamsLeave sets the value of this property. Calling
	// IsActivityStreamsLeave afterwards returns true.
	SetActivityStreamsLeave(v ActivityStreamsLeave)
	// SetActivityStreamsLike sets the value of this property. Calling
	// IsActivityStreamsLike afterwards returns true.
	SetActivityStreamsLike(v ActivityStreamsLike)
	// SetActivityStreamsLink sets the value of this property. Calling
	// IsActivityStreamsLink afterwards returns true.
	SetActivityStreamsLink(v ActivityStreamsLink)
	// SetActivityStreamsListen sets the value of this property. Calling
	// IsActivityStreamsListen afterwards returns true.
	SetActivityStreamsListen(v ActivityStreamsListen)
	// SetActivityStreamsMention sets the value of this property. Calling
	// IsActivityStreamsMention afterwards returns true.
	SetActivityStreamsMention(v ActivityStreamsMention)
	// SetActivityStreamsMove sets the value of this property. Calling
	// IsActivityStreamsMove afterwards returns true.
	SetActivityStreamsMove(v ActivityStreamsMove)
	// SetActivityStreamsNote sets the value of this property. Calling
	// IsActivityStreamsNote afterwards returns true.
	SetActivityStreamsNote(v ActivityStreamsNote)
	// SetActivityStreamsObject sets the value of this property. Calling
	// IsActivityStreamsObject afterwards returns true.
	SetActivityStreamsObject(v ActivityStreamsObject)
	// SetActivityStreamsOffer sets the value of this property. Calling
	// IsActivityStreamsOffer afterwards returns true.
	SetActivityStreamsOffer(v ActivityStreamsOffer)
	// SetActivityStreamsOrderedCollection sets the value of this property.
	// Calling IsActivityStreamsOrderedCollection afterwards returns true.
	SetActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// SetActivityStreamsOrderedCollectionPage sets the value of this
	// property. Calling IsActivityStreamsOrderedCollectionPage afterwards
	// returns true.
	SetActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// SetActivityStreamsOrganization sets the value of this property. Calling
	// IsActivityStreamsOrganization afterwards returns true.
	SetActivityStreamsOrganization(v ActivityStreamsOrganization)
	// SetActivityStreamsPage sets the value of this property. Calling
	// IsActivityStreamsPage afterwards returns true.
	SetActivityStreamsPage(v ActivityStreamsPage)
	// SetActivityStreamsPerson sets the value of this property. Calling
	// IsActivityStreamsPerson afterwards returns true.
	SetActivityStreamsPerson(v ActivityStreamsPerson)
	// SetActivityStreamsPlace sets the value of this property. Calling
	// IsActivityStreamsPlace afterwards returns true.
	SetActivityStreamsPlace(v ActivityStreamsPlace)
	// SetActivityStreamsProfile sets the value of this property. Calling
	// IsActivityStreamsProfile afterwards returns true.
	SetActivityStreamsProfile(v ActivityStreamsProfile)
	// SetActivityStreamsQuestion sets the value of this property. Calling
	// IsActivityStreamsQuestion afterwards returns true.
	SetActivityStreamsQuestion(v ActivityStreamsQuestion)
	// SetActivityStreamsRead sets the value of this property. Calling
	// IsActivityStreamsRead afterwards returns true.
	SetActivityStreamsRead(v ActivityStreamsRead)
	// SetActivityStreamsReject sets the value of this property. Calling
	// IsActivityStreamsReject afterwards returns true.
	SetActivityStreamsReject(v ActivityStreamsReject)
	// SetActivityStreamsRelationship sets the value of this property. Calling
	// IsActivityStreamsRelationship afterwards returns true.
	SetActivityStreamsRelationship(v ActivityStreamsRelationship)
	// SetActivityStreamsRemove sets the value of this property. Calling
	// IsActivityStreamsRemove afterwards returns true.
	SetActivityStreamsRemove(v ActivityStreamsRemove)
	// SetActivityStreamsService sets the value of this property. Calling
	// IsActivityStreamsService afterwards returns true.
	SetActivityStreamsService(v ActivityStreamsService)
	// SetActivityStreamsTentativeAccept sets the value of this property.
	// Calling IsActivityStreamsTentativeAccept afterwards returns true.
	SetActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// SetActivityStreamsTentativeReject sets the value of this property.
	// Calling IsActivityStreamsTentativeReject afterwards returns true.
	SetActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// SetActivityStreamsTombstone sets the value of this property. Calling
	// IsActivityStreamsTombstone afterwards returns true.
	SetActivityStreamsTombstone(v ActivityStreamsTombstone)
	// SetActivityStreamsTravel sets the value of this property. Calling
	// IsActivityStreamsTravel afterwards returns true.
	SetActivityStreamsTravel(v ActivityStreamsTravel)
	// SetActivityStreamsUndo sets the value of this property. Calling
	// IsActivityStreamsUndo afterwards returns true.
	SetActivityStreamsUndo(v ActivityStreamsUndo)
	// SetActivityStreamsUpdate sets the value of this property. Calling
	// IsActivityStreamsUpdate afterwards returns true.
	SetActivityStreamsUpdate(v ActivityStreamsUpdate)
	// SetActivityStreamsVideo sets the value of this property. Calling
	// IsActivityStreamsVideo afterwards returns true.
	SetActivityStreamsVideo(v ActivityStreamsVideo)
	// SetActivityStreamsView sets the value of this property. Calling
	// IsActivityStreamsView afterwards returns true.
	SetActivityStreamsView(v ActivityStreamsView)
	// SetForgeFedBranch sets the value of this property. Calling
	// IsForgeFedBranch afterwards returns true.
	SetForgeFedBranch(v ForgeFedBranch)
	// SetForgeFedCommit sets the value of this property. Calling
	// IsForgeFedCommit afterwards returns true.
	SetForgeFedCommit(v ForgeFedCommit)
	// SetForgeFedPush sets the value of this property. Calling IsForgeFedPush
	// afterwards returns true.
	SetForgeFedPush(v ForgeFedPush)
	// SetForgeFedRepository sets the value of this property. Calling
	// IsForgeFedRepository afterwards returns true.
	SetForgeFedRepository(v ForgeFedRepository)
	// SetForgeFedTicket sets the value of this property. Calling
	// IsForgeFedTicket afterwards returns true.
	SetForgeFedTicket(v ForgeFedTicket)
	// SetForgeFedTicketDependency sets the value of this property. Calling
	// IsForgeFedTicketDependency afterwards returns true.
	SetForgeFedTicketDependency(v ForgeFedTicketDependency)
	// SetIRI sets the value of this property. Calling IsIRI afterwards
	// returns true.
	SetIRI(v *url.URL)
	// SetTootEmoji sets the value of this property. Calling IsTootEmoji
	// afterwards returns true.
	SetTootEmoji(v TootEmoji)
	// SetTootIdentityProof sets the value of this property. Calling
	// IsTootIdentityProof afterwards returns true.
	SetTootIdentityProof(v TootIdentityProof)
	// SetType attempts to set the property for the arbitrary type. Returns an
	// error if it is not a valid type to set on this property.
	SetType(t Type) error
}

ActivityStreamsAudiencePropertyIterator represents a single value for the "audience" property.

type ActivityStreamsAudio

type ActivityStreamsAudio interface {
	// GetActivityStreamsAltitude returns the "altitude" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAltitude() ActivityStreamsAltitudeProperty
	// GetActivityStreamsAttachment returns the "attachment" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAttachment() ActivityStreamsAttachmentProperty
	// GetActivityStreamsAttributedTo returns the "attributedTo" property if
	// it exists, and nil otherwise.
	GetActivityStreamsAttributedTo() ActivityStreamsAttributedToProperty
	// GetActivityStreamsAudience returns the "audience" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAudience() ActivityStreamsAudienceProperty
	// GetActivityStreamsBcc returns the "bcc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBcc() ActivityStreamsBccProperty
	// GetActivityStreamsBto returns the "bto" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBto() ActivityStreamsBtoProperty
	// GetActivityStreamsCc returns the "cc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsCc() ActivityStreamsCcProperty
	// GetActivityStreamsContent returns the "content" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContent() ActivityStreamsContentProperty
	// GetActivityStreamsContext returns the "context" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContext() ActivityStreamsContextProperty
	// GetActivityStreamsDuration returns the "duration" property if it
	// exists, and nil otherwise.
	GetActivityStreamsDuration() ActivityStreamsDurationProperty
	// GetActivityStreamsEndTime returns the "endTime" property if it exists,
	// and nil otherwise.
	GetActivityStreamsEndTime() ActivityStreamsEndTimeProperty
	// GetActivityStreamsGenerator returns the "generator" property if it
	// exists, and nil otherwise.
	GetActivityStreamsGenerator() ActivityStreamsGeneratorProperty
	// GetActivityStreamsIcon returns the "icon" property if it exists, and
	// nil otherwise.
	GetActivityStreamsIcon() ActivityStreamsIconProperty
	// GetActivityStreamsImage returns the "image" property if it exists, and
	// nil otherwise.
	GetActivityStreamsImage() ActivityStreamsImageProperty
	// GetActivityStreamsInReplyTo returns the "inReplyTo" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInReplyTo() ActivityStreamsInReplyToProperty
	// GetActivityStreamsLikes returns the "likes" property if it exists, and
	// nil otherwise.
	GetActivityStreamsLikes() ActivityStreamsLikesProperty
	// GetActivityStreamsLocation returns the "location" property if it
	// exists, and nil otherwise.
	GetActivityStreamsLocation() ActivityStreamsLocationProperty
	// GetActivityStreamsMediaType returns the "mediaType" property if it
	// exists, and nil otherwise.
	GetActivityStreamsMediaType() ActivityStreamsMediaTypeProperty
	// GetActivityStreamsName returns the "name" property if it exists, and
	// nil otherwise.
	GetActivityStreamsName() ActivityStreamsNameProperty
	// GetActivityStreamsObject returns the "object" property if it exists,
	// and nil otherwise.
	GetActivityStreamsObject() ActivityStreamsObjectProperty
	// GetActivityStreamsPreview returns the "preview" property if it exists,
	// and nil otherwise.
	GetActivityStreamsPreview() ActivityStreamsPreviewProperty
	// GetActivityStreamsPublished returns the "published" property if it
	// exists, and nil otherwise.
	GetActivityStreamsPublished() ActivityStreamsPublishedProperty
	// GetActivityStreamsReplies returns the "replies" property if it exists,
	// and nil otherwise.
	GetActivityStreamsReplies() ActivityStreamsRepliesProperty
	// GetActivityStreamsShares returns the "shares" property if it exists,
	// and nil otherwise.
	GetActivityStreamsShares() ActivityStreamsSharesProperty
	// GetActivityStreamsSource returns the "source" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSource() ActivityStreamsSourceProperty
	// GetActivityStreamsStartTime returns the "startTime" property if it
	// exists, and nil otherwise.
	GetActivityStreamsStartTime() ActivityStreamsStartTimeProperty
	// GetActivityStreamsSummary returns the "summary" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSummary() ActivityStreamsSummaryProperty
	// GetActivityStreamsTag returns the "tag" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTag() ActivityStreamsTagProperty
	// GetActivityStreamsTo returns the "to" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTo() ActivityStreamsToProperty
	// GetActivityStreamsUpdated returns the "updated" property if it exists,
	// and nil otherwise.
	GetActivityStreamsUpdated() ActivityStreamsUpdatedProperty
	// GetActivityStreamsUrl returns the "url" property if it exists, and nil
	// otherwise.
	GetActivityStreamsUrl() ActivityStreamsUrlProperty
	// GetForgeFedTeam returns the "team" property if it exists, and nil
	// otherwise.
	GetForgeFedTeam() ForgeFedTeamProperty
	// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
	// it exists, and nil otherwise.
	GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
	// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
	// it exists, and nil otherwise.
	GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
	// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
	GetJSONLDId() JSONLDIdProperty
	// GetJSONLDType returns the "type" property if it exists, and nil
	// otherwise.
	GetJSONLDType() JSONLDTypeProperty
	// GetTootBlurhash returns the "blurhash" property if it exists, and nil
	// otherwise.
	GetTootBlurhash() TootBlurhashProperty
	// GetTypeName returns the name of this type.
	GetTypeName() string
	// GetUnknownProperties returns the unknown properties for the Audio type.
	// Note that this should not be used by app developers. It is only
	// used to help determine which implementation is LessThan the other.
	// Developers who are creating a different implementation of this
	// type's interface can use this method in their LessThan
	// implementation, but routine ActivityPub applications should not use
	// this to bypass the code generation tool.
	GetUnknownProperties() map[string]interface{}
	// IsExtending returns true if the Audio type extends from the other type.
	IsExtending(other Type) bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this type and the specific properties that are set. The value
	// in the map is the alias used to import the type and its properties.
	JSONLDContext() map[string]string
	// LessThan computes if this Audio is lesser, with an arbitrary but stable
	// determination.
	LessThan(o ActivityStreamsAudio) bool
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format.
	Serialize() (map[string]interface{}, error)
	// SetActivityStreamsAltitude sets the "altitude" property.
	SetActivityStreamsAltitude(i ActivityStreamsAltitudeProperty)
	// SetActivityStreamsAttachment sets the "attachment" property.
	SetActivityStreamsAttachment(i ActivityStreamsAttachmentProperty)
	// SetActivityStreamsAttributedTo sets the "attributedTo" property.
	SetActivityStreamsAttributedTo(i ActivityStreamsAttributedToProperty)
	// SetActivityStreamsAudience sets the "audience" property.
	SetActivityStreamsAudience(i ActivityStreamsAudienceProperty)
	// SetActivityStreamsBcc sets the "bcc" property.
	SetActivityStreamsBcc(i ActivityStreamsBccProperty)
	// SetActivityStreamsBto sets the "bto" property.
	SetActivityStreamsBto(i ActivityStreamsBtoProperty)
	// SetActivityStreamsCc sets the "cc" property.
	SetActivityStreamsCc(i ActivityStreamsCcProperty)
	// SetActivityStreamsContent sets the "content" property.
	SetActivityStreamsContent(i ActivityStreamsContentProperty)
	// SetActivityStreamsContext sets the "context" property.
	SetActivityStreamsContext(i ActivityStreamsContextProperty)
	// SetActivityStreamsDuration sets the "duration" property.
	SetActivityStreamsDuration(i ActivityStreamsDurationProperty)
	// SetActivityStreamsEndTime sets the "endTime" property.
	SetActivityStreamsEndTime(i ActivityStreamsEndTimeProperty)
	// SetActivityStreamsGenerator sets the "generator" property.
	SetActivityStreamsGenerator(i ActivityStreamsGeneratorProperty)
	// SetActivityStreamsIcon sets the "icon" property.
	SetActivityStreamsIcon(i ActivityStreamsIconProperty)
	// SetActivityStreamsImage sets the "image" property.
	SetActivityStreamsImage(i ActivityStreamsImageProperty)
	// SetActivityStreamsInReplyTo sets the "inReplyTo" property.
	SetActivityStreamsInReplyTo(i ActivityStreamsInReplyToProperty)
	// SetActivityStreamsLikes sets the "likes" property.
	SetActivityStreamsLikes(i ActivityStreamsLikesProperty)
	// SetActivityStreamsLocation sets the "location" property.
	SetActivityStreamsLocation(i ActivityStreamsLocationProperty)
	// SetActivityStreamsMediaType sets the "mediaType" property.
	SetActivityStreamsMediaType(i ActivityStreamsMediaTypeProperty)
	// SetActivityStreamsName sets the "name" property.
	SetActivityStreamsName(i ActivityStreamsNameProperty)
	// SetActivityStreamsObject sets the "object" property.
	SetActivityStreamsObject(i ActivityStreamsObjectProperty)
	// SetActivityStreamsPreview sets the "preview" property.
	SetActivityStreamsPreview(i ActivityStreamsPreviewProperty)
	// SetActivityStreamsPublished sets the "published" property.
	SetActivityStreamsPublished(i ActivityStreamsPublishedProperty)
	// SetActivityStreamsReplies sets the "replies" property.
	SetActivityStreamsReplies(i ActivityStreamsRepliesProperty)
	// SetActivityStreamsShares sets the "shares" property.
	SetActivityStreamsShares(i ActivityStreamsSharesProperty)
	// SetActivityStreamsSource sets the "source" property.
	SetActivityStreamsSource(i ActivityStreamsSourceProperty)
	// SetActivityStreamsStartTime sets the "startTime" property.
	SetActivityStreamsStartTime(i ActivityStreamsStartTimeProperty)
	// SetActivityStreamsSummary sets the "summary" property.
	SetActivityStreamsSummary(i ActivityStreamsSummaryProperty)
	// SetActivityStreamsTag sets the "tag" property.
	SetActivityStreamsTag(i ActivityStreamsTagProperty)
	// SetActivityStreamsTo sets the "to" property.
	SetActivityStreamsTo(i ActivityStreamsToProperty)
	// SetActivityStreamsUpdated sets the "updated" property.
	SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
	// SetActivityStreamsUrl sets the "url" property.
	SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
	// SetForgeFedTeam sets the "team" property.
	SetForgeFedTeam(i ForgeFedTeamProperty)
	// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
	SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
	// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
	SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
	// SetJSONLDId sets the "id" property.
	SetJSONLDId(i JSONLDIdProperty)
	// SetJSONLDType sets the "type" property.
	SetJSONLDType(i JSONLDTypeProperty)
	// SetTootBlurhash sets the "blurhash" property.
	SetTootBlurhash(i TootBlurhashProperty)
	// VocabularyURI returns the vocabulary's URI as a string.
	VocabularyURI() string
}

Represents an audio document of any kind.

Example 50 (https://www.w3.org/TR/activitystreams-vocabulary/#ex49-jsonld):

{
  "name": "Interview With A Famous Technologist",
  "type": "Audio",
  "url": {
    "mediaType": "audio/mp3",
    "type": "owl:Class",
    "url": "http://example.org/podcast.mp3"
  }
}

type ActivityStreamsBccProperty

type ActivityStreamsBccProperty interface {
	// AppendActivityStreamsAccept appends a Accept value to the back of a
	// list of the property "bcc". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsAccept(v ActivityStreamsAccept)
	// AppendActivityStreamsActivity appends a Activity value to the back of a
	// list of the property "bcc". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsActivity(v ActivityStreamsActivity)
	// AppendActivityStreamsAdd appends a Add value to the back of a list of
	// the property "bcc". Invalidates iterators that are traversing using
	// Prev.
	AppendActivityStreamsAdd(v ActivityStreamsAdd)
	// AppendActivityStreamsAnnounce appends a Announce value to the back of a
	// list of the property "bcc". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// AppendActivityStreamsApplication appends a Application value to the
	// back of a list of the property "bcc". Invalidates iterators that
	// are traversing using Prev.
	AppendActivityStreamsApplication(v ActivityStreamsApplication)
	// AppendActivityStreamsArrive appends a Arrive value to the back of a
	// list of the property "bcc". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsArrive(v ActivityStreamsArrive)
	// AppendActivityStreamsArticle appends a Article value to the back of a
	// list of the property "bcc". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsArticle(v ActivityStreamsArticle)
	// AppendActivityStreamsAudio appends a Audio value to the back of a list
	// of the property "bcc". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsAudio(v ActivityStreamsAudio)
	// AppendActivityStreamsBlock appends a Block value to the back of a list
	// of the property "bcc". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsBlock(v ActivityStreamsBlock)
	// AppendActivityStreamsCollection appends a Collection value to the back
	// of a list of the property "bcc". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsCollection(v ActivityStreamsCollection)
	// AppendActivityStreamsCollectionPage appends a CollectionPage value to
	// the back of a list of the property "bcc". Invalidates iterators
	// that are traversing using Prev.
	AppendActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// AppendActivityStreamsCreate appends a Create value to the back of a
	// list of the property "bcc". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsCreate(v ActivityStreamsCreate)
	// AppendActivityStreamsDelete appends a Delete value to the back of a
	// list of the property "bcc". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDelete(v ActivityStreamsDelete)
	// AppendActivityStreamsDislike appends a Dislike value to the back of a
	// list of the property "bcc". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDislike(v ActivityStreamsDislike)
	// AppendActivityStreamsDocument appends a Document value to the back of a
	// list of the property "bcc". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDocument(v ActivityStreamsDocument)
	// AppendActivityStreamsEvent appends a Event value to the back of a list
	// of the property "bcc". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsEvent(v ActivityStreamsEvent)
	// AppendActivityStreamsFlag appends a Flag value to the back of a list of
	// the property "bcc". Invalidates iterators that are traversing using
	// Prev.
	AppendActivityStreamsFlag(v ActivityStreamsFlag)
	// AppendActivityStreamsFollow appends a Follow value to the back of a
	// list of the property "bcc". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsFollow(v ActivityStreamsFollow)
	// AppendActivityStreamsGroup appends a Group value to the back of a list
	// of the property "bcc". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsGroup(v ActivityStreamsGroup)
	// AppendActivityStreamsIgnore appends a Ignore value to the back of a
	// list of the property "bcc". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsIgnore(v ActivityStreamsIgnore)
	// AppendActivityStreamsImage appends a Image value to the back of a list
	// of the property "bcc". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsImage(v ActivityStreamsImage)
	// AppendActivityStreamsIntransitiveActivity appends a
	// IntransitiveActivity value to the back of a list of the property
	// "bcc". Invalidates iterators that are traversing using Prev.
	AppendActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// AppendActivityStreamsInvite appends a Invite value to the back of a
	// list of the property "bcc". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsInvite(v ActivityStreamsInvite)
	// AppendActivityStreamsJoin appends a Join value to the back of a list of
	// the property "bcc". Invalidates iterators that are traversing using
	// Prev.
	AppendActivityStreamsJoin(v ActivityStreamsJoin)
	// AppendActivityStreamsLeave appends a Leave value to the back of a list
	// of the property "bcc". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsLeave(v ActivityStreamsLeave)
	// AppendActivityStreamsLike appends a Like value to the back of a list of
	// the property "bcc". Invalidates iterators that are traversing using
	// Prev.
	AppendActivityStreamsLike(v ActivityStreamsLike)
	// AppendActivityStreamsLink appends a Link value to the back of a list of
	// the property "bcc". Invalidates iterators that are traversing using
	// Prev.
	AppendActivityStreamsLink(v ActivityStreamsLink)
	// AppendActivityStreamsListen appends a Listen value to the back of a
	// list of the property "bcc". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsListen(v ActivityStreamsListen)
	// AppendActivityStreamsMention appends a Mention value to the back of a
	// list of the property "bcc". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsMention(v ActivityStreamsMention)
	// AppendActivityStreamsMove appends a Move value to the back of a list of
	// the property "bcc". Invalidates iterators that are traversing using
	// Prev.
	AppendActivityStreamsMove(v ActivityStreamsMove)
	// AppendActivityStreamsNote appends a Note value to the back of a list of
	// the property "bcc". Invalidates iterators that are traversing using
	// Prev.
	AppendActivityStreamsNote(v ActivityStreamsNote)
	// AppendActivityStreamsObject appends a Object value to the back of a
	// list of the property "bcc". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsObject(v ActivityStreamsObject)
	// AppendActivityStreamsOffer appends a Offer value to the back of a list
	// of the property "bcc". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsOffer(v ActivityStreamsOffer)
	// AppendActivityStreamsOrderedCollection appends a OrderedCollection
	// value to the back of a list of the property "bcc". Invalidates
	// iterators that are traversing using Prev.
	AppendActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// AppendActivityStreamsOrderedCollectionPage appends a
	// OrderedCollectionPage value to the back of a list of the property
	// "bcc". Invalidates iterators that are traversing using Prev.
	AppendActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// AppendActivityStreamsOrganization appends a Organization value to the
	// back of a list of the property "bcc". Invalidates iterators that
	// are traversing using Prev.
	AppendActivityStreamsOrganization(v ActivityStreamsOrganization)
	// AppendActivityStreamsPage appends a Page value to the back of a list of
	// the property "bcc". Invalidates iterators that are traversing using
	// Prev.
	AppendActivityStreamsPage(v ActivityStreamsPage)
	// AppendActivityStreamsPerson appends a Person value to the back of a
	// list of the property "bcc". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsPerson(v ActivityStreamsPerson)
	// AppendActivityStreamsPlace appends a Place value to the back of a list
	// of the property "bcc". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsPlace(v ActivityStreamsPlace)
	// AppendActivityStreamsProfile appends a Profile value to the back of a
	// list of the property "bcc". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsProfile(v ActivityStreamsProfile)
	// AppendActivityStreamsQuestion appends a Question value to the back of a
	// list of the property "bcc". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsQuestion(v ActivityStreamsQuestion)
	// AppendActivityStreamsRead appends a Read value to the back of a list of
	// the property "bcc". Invalidates iterators that are traversing using
	// Prev.
	AppendActivityStreamsRead(v ActivityStreamsRead)
	// AppendActivityStreamsReject appends a Reject value to the back of a
	// list of the property "bcc". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsReject(v ActivityStreamsReject)
	// AppendActivityStreamsRelationship appends a Relationship value to the
	// back of a list of the property "bcc". Invalidates iterators that
	// are traversing using Prev.
	AppendActivityStreamsRelationship(v ActivityStreamsRelationship)
	// AppendActivityStreamsRemove appends a Remove value to the back of a
	// list of the property "bcc". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsRemove(v ActivityStreamsRemove)
	// AppendActivityStreamsService appends a Service value to the back of a
	// list of the property "bcc". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsService(v ActivityStreamsService)
	// AppendActivityStreamsTentativeAccept appends a TentativeAccept value to
	// the back of a list of the property "bcc". Invalidates iterators
	// that are traversing using Prev.
	AppendActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// AppendActivityStreamsTentativeReject appends a TentativeReject value to
	// the back of a list of the property "bcc". Invalidates iterators
	// that are traversing using Prev.
	AppendActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// AppendActivityStreamsTombstone appends a Tombstone value to the back of
	// a list of the property "bcc". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsTombstone(v ActivityStreamsTombstone)
	// AppendActivityStreamsTravel appends a Travel value to the back of a
	// list of the property "bcc". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsTravel(v ActivityStreamsTravel)
	// AppendActivityStreamsUndo appends a Undo value to the back of a list of
	// the property "bcc". Invalidates iterators that are traversing using
	// Prev.
	AppendActivityStreamsUndo(v ActivityStreamsUndo)
	// AppendActivityStreamsUpdate appends a Update value to the back of a
	// list of the property "bcc". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsUpdate(v ActivityStreamsUpdate)
	// AppendActivityStreamsVideo appends a Video value to the back of a list
	// of the property "bcc". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsVideo(v ActivityStreamsVideo)
	// AppendActivityStreamsView appends a View value to the back of a list of
	// the property "bcc". Invalidates iterators that are traversing using
	// Prev.
	AppendActivityStreamsView(v ActivityStreamsView)
	// AppendForgeFedBranch appends a Branch value to the back of a list of
	// the property "bcc". Invalidates iterators that are traversing using
	// Prev.
	AppendForgeFedBranch(v ForgeFedBranch)
	// AppendForgeFedCommit appends a Commit value to the back of a list of
	// the property "bcc". Invalidates iterators that are traversing using
	// Prev.
	AppendForgeFedCommit(v ForgeFedCommit)
	// AppendForgeFedPush appends a Push value to the back of a list of the
	// property "bcc". Invalidates iterators that are traversing using
	// Prev.
	AppendForgeFedPush(v ForgeFedPush)
	// AppendForgeFedRepository appends a Repository value to the back of a
	// list of the property "bcc". Invalidates iterators that are
	// traversing using Prev.
	AppendForgeFedRepository(v ForgeFedRepository)
	// AppendForgeFedTicket appends a Ticket value to the back of a list of
	// the property "bcc". Invalidates iterators that are traversing using
	// Prev.
	AppendForgeFedTicket(v ForgeFedTicket)
	// AppendForgeFedTicketDependency appends a TicketDependency value to the
	// back of a list of the property "bcc". Invalidates iterators that
	// are traversing using Prev.
	AppendForgeFedTicketDependency(v ForgeFedTicketDependency)
	// AppendIRI appends an IRI value to the back of a list of the property
	// "bcc"
	AppendIRI(v *url.URL)
	// AppendTootEmoji appends a Emoji value to the back of a list of the
	// property "bcc". Invalidates iterators that are traversing using
	// Prev.
	AppendTootEmoji(v TootEmoji)
	// AppendTootIdentityProof appends a IdentityProof value to the back of a
	// list of the property "bcc". Invalidates iterators that are
	// traversing using Prev.
	AppendTootIdentityProof(v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "bcc". Invalidates iterators that are traversing using
	// Prev. Returns an error if the type is not a valid one to set for
	// this property.
	AppendType(t Type) error
	// At returns the property value for the specified index. Panics if the
	// index is out of bounds.
	At(index int) ActivityStreamsBccPropertyIterator
	// Begin returns the first iterator, or nil if empty. Can be used with the
	// iterator's Next method and this property's End method to iterate
	// from front to back through all values.
	Begin() ActivityStreamsBccPropertyIterator
	// Empty returns returns true if there are no elements.
	Empty() bool
	// End returns beyond-the-last iterator, which is nil. Can be used with
	// the iterator's Next method and this property's Begin method to
	// iterate from front to back through all values.
	End() ActivityStreamsBccPropertyIterator
	// InsertActivityStreamsAccept inserts a Accept value at the specified
	// index for a property "bcc". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAccept(idx int, v ActivityStreamsAccept)
	// InsertActivityStreamsActivity inserts a Activity value at the specified
	// index for a property "bcc". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsActivity(idx int, v ActivityStreamsActivity)
	// InsertActivityStreamsAdd inserts a Add value at the specified index for
	// a property "bcc". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertActivityStreamsAdd(idx int, v ActivityStreamsAdd)
	// InsertActivityStreamsAnnounce inserts a Announce value at the specified
	// index for a property "bcc". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAnnounce(idx int, v ActivityStreamsAnnounce)
	// InsertActivityStreamsApplication inserts a Application value at the
	// specified index for a property "bcc". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsApplication(idx int, v ActivityStreamsApplication)
	// InsertActivityStreamsArrive inserts a Arrive value at the specified
	// index for a property "bcc". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsArrive(idx int, v ActivityStreamsArrive)
	// InsertActivityStreamsArticle inserts a Article value at the specified
	// index for a property "bcc". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsArticle(idx int, v ActivityStreamsArticle)
	// InsertActivityStreamsAudio inserts a Audio value at the specified index
	// for a property "bcc". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAudio(idx int, v ActivityStreamsAudio)
	// InsertActivityStreamsBlock inserts a Block value at the specified index
	// for a property "bcc". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsBlock(idx int, v ActivityStreamsBlock)
	// InsertActivityStreamsCollection inserts a Collection value at the
	// specified index for a property "bcc". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsCollection(idx int, v ActivityStreamsCollection)
	// InsertActivityStreamsCollectionPage inserts a CollectionPage value at
	// the specified index for a property "bcc". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsCollectionPage(idx int, v ActivityStreamsCollectionPage)
	// InsertActivityStreamsCreate inserts a Create value at the specified
	// index for a property "bcc". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsCreate(idx int, v ActivityStreamsCreate)
	// InsertActivityStreamsDelete inserts a Delete value at the specified
	// index for a property "bcc". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDelete(idx int, v ActivityStreamsDelete)
	// InsertActivityStreamsDislike inserts a Dislike value at the specified
	// index for a property "bcc". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDislike(idx int, v ActivityStreamsDislike)
	// InsertActivityStreamsDocument inserts a Document value at the specified
	// index for a property "bcc". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDocument(idx int, v ActivityStreamsDocument)
	// InsertActivityStreamsEvent inserts a Event value at the specified index
	// for a property "bcc". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsEvent(idx int, v ActivityStreamsEvent)
	// InsertActivityStreamsFlag inserts a Flag value at the specified index
	// for a property "bcc". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsFlag(idx int, v ActivityStreamsFlag)
	// InsertActivityStreamsFollow inserts a Follow value at the specified
	// index for a property "bcc". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsFollow(idx int, v ActivityStreamsFollow)
	// InsertActivityStreamsGroup inserts a Group value at the specified index
	// for a property "bcc". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsGroup(idx int, v ActivityStreamsGroup)
	// InsertActivityStreamsIgnore inserts a Ignore value at the specified
	// index for a property "bcc". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsIgnore(idx int, v ActivityStreamsIgnore)
	// InsertActivityStreamsImage inserts a Image value at the specified index
	// for a property "bcc". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsImage(idx int, v ActivityStreamsImage)
	// InsertActivityStreamsIntransitiveActivity inserts a
	// IntransitiveActivity value at the specified index for a property
	// "bcc". Existing elements at that index and higher are shifted back
	// once. Invalidates all iterators.
	InsertActivityStreamsIntransitiveActivity(idx int, v ActivityStreamsIntransitiveActivity)
	// InsertActivityStreamsInvite inserts a Invite value at the specified
	// index for a property "bcc". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsInvite(idx int, v ActivityStreamsInvite)
	// InsertActivityStreamsJoin inserts a Join value at the specified index
	// for a property "bcc". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsJoin(idx int, v ActivityStreamsJoin)
	// InsertActivityStreamsLeave inserts a Leave value at the specified index
	// for a property "bcc". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsLeave(idx int, v ActivityStreamsLeave)
	// InsertActivityStreamsLike inserts a Like value at the specified index
	// for a property "bcc". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsLike(idx int, v ActivityStreamsLike)
	// InsertActivityStreamsLink inserts a Link value at the specified index
	// for a property "bcc". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsLink(idx int, v ActivityStreamsLink)
	// InsertActivityStreamsListen inserts a Listen value at the specified
	// index for a property "bcc". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsListen(idx int, v ActivityStreamsListen)
	// InsertActivityStreamsMention inserts a Mention value at the specified
	// index for a property "bcc". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsMention(idx int, v ActivityStreamsMention)
	// InsertActivityStreamsMove inserts a Move value at the specified index
	// for a property "bcc". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsMove(idx int, v ActivityStreamsMove)
	// InsertActivityStreamsNote inserts a Note value at the specified index
	// for a property "bcc". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsNote(idx int, v ActivityStreamsNote)
	// InsertActivityStreamsObject inserts a Object value at the specified
	// index for a property "bcc". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsObject(idx int, v ActivityStreamsObject)
	// InsertActivityStreamsOffer inserts a Offer value at the specified index
	// for a property "bcc". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsOffer(idx int, v ActivityStreamsOffer)
	// InsertActivityStreamsOrderedCollection inserts a OrderedCollection
	// value at the specified index for a property "bcc". Existing
	// elements at that index and higher are shifted back once.
	// Invalidates all iterators.
	InsertActivityStreamsOrderedCollection(idx int, v ActivityStreamsOrderedCollection)
	// InsertActivityStreamsOrderedCollectionPage inserts a
	// OrderedCollectionPage value at the specified index for a property
	// "bcc". Existing elements at that index and higher are shifted back
	// once. Invalidates all iterators.
	InsertActivityStreamsOrderedCollectionPage(idx int, v ActivityStreamsOrderedCollectionPage)
	// InsertActivityStreamsOrganization inserts a Organization value at the
	// specified index for a property "bcc". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsOrganization(idx int, v ActivityStreamsOrganization)
	// InsertActivityStreamsPage inserts a Page value at the specified index
	// for a property "bcc". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsPage(idx int, v ActivityStreamsPage)
	// InsertActivityStreamsPerson inserts a Person value at the specified
	// index for a property "bcc". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsPerson(idx int, v ActivityStreamsPerson)
	// InsertActivityStreamsPlace inserts a Place value at the specified index
	// for a property "bcc". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsPlace(idx int, v ActivityStreamsPlace)
	// InsertActivityStreamsProfile inserts a Profile value at the specified
	// index for a property "bcc". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsProfile(idx int, v ActivityStreamsProfile)
	// InsertActivityStreamsQuestion inserts a Question value at the specified
	// index for a property "bcc". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsQuestion(idx int, v ActivityStreamsQuestion)
	// InsertActivityStreamsRead inserts a Read value at the specified index
	// for a property "bcc". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsRead(idx int, v ActivityStreamsRead)
	// InsertActivityStreamsReject inserts a Reject value at the specified
	// index for a property "bcc". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsReject(idx int, v ActivityStreamsReject)
	// InsertActivityStreamsRelationship inserts a Relationship value at the
	// specified index for a property "bcc". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsRelationship(idx int, v ActivityStreamsRelationship)
	// InsertActivityStreamsRemove inserts a Remove value at the specified
	// index for a property "bcc". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsRemove(idx int, v ActivityStreamsRemove)
	// InsertActivityStreamsService inserts a Service value at the specified
	// index for a property "bcc". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsService(idx int, v ActivityStreamsService)
	// InsertActivityStreamsTentativeAccept inserts a TentativeAccept value at
	// the specified index for a property "bcc". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsTentativeAccept(idx int, v ActivityStreamsTentativeAccept)
	// InsertActivityStreamsTentativeReject inserts a TentativeReject value at
	// the specified index for a property "bcc". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsTentativeReject(idx int, v ActivityStreamsTentativeReject)
	// InsertActivityStreamsTombstone inserts a Tombstone value at the
	// specified index for a property "bcc". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsTombstone(idx int, v ActivityStreamsTombstone)
	// InsertActivityStreamsTravel inserts a Travel value at the specified
	// index for a property "bcc". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsTravel(idx int, v ActivityStreamsTravel)
	// InsertActivityStreamsUndo inserts a Undo value at the specified index
	// for a property "bcc". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsUndo(idx int, v ActivityStreamsUndo)
	// InsertActivityStreamsUpdate inserts a Update value at the specified
	// index for a property "bcc". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsUpdate(idx int, v ActivityStreamsUpdate)
	// InsertActivityStreamsVideo inserts a Video value at the specified index
	// for a property "bcc". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsVideo(idx int, v ActivityStreamsVideo)
	// InsertActivityStreamsView inserts a View value at the specified index
	// for a property "bcc". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsView(idx int, v ActivityStreamsView)
	// InsertForgeFedBranch inserts a Branch value at the specified index for
	// a property "bcc". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertForgeFedBranch(idx int, v ForgeFedBranch)
	// InsertForgeFedCommit inserts a Commit value at the specified index for
	// a property "bcc". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertForgeFedCommit(idx int, v ForgeFedCommit)
	// InsertForgeFedPush inserts a Push value at the specified index for a
	// property "bcc". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertForgeFedPush(idx int, v ForgeFedPush)
	// InsertForgeFedRepository inserts a Repository value at the specified
	// index for a property "bcc". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertForgeFedRepository(idx int, v ForgeFedRepository)
	// InsertForgeFedTicket inserts a Ticket value at the specified index for
	// a property "bcc". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertForgeFedTicket(idx int, v ForgeFedTicket)
	// InsertForgeFedTicketDependency inserts a TicketDependency value at the
	// specified index for a property "bcc". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
	// Insert inserts an IRI value at the specified index for a property
	// "bcc". Existing elements at that index and higher are shifted back
	// once. Invalidates all iterators.
	InsertIRI(idx int, v *url.URL)
	// InsertTootEmoji inserts a Emoji value at the specified index for a
	// property "bcc". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertTootEmoji(idx int, v TootEmoji)
	// InsertTootIdentityProof inserts a IdentityProof value at the specified
	// index for a property "bcc". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertTootIdentityProof(idx int, v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "bcc". Invalidates all iterators. Returns an error if
	// the type is not a valid one to set for this property.
	InsertType(idx int, t Type) error
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API method specifically needed only for alternate
	// implementations for go-fed. Applications should not use this
	// method. Panics if the index is out of bounds.
	KindIndex(idx int) int
	// Len returns the number of values that exist for the "bcc" property.
	Len() (length int)
	// Less computes whether another property is less than this one. Mixing
	// types results in a consistent but arbitrary ordering
	Less(i, j int) bool
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsBccProperty) bool
	// Name returns the name of this property ("bcc") with any alias.
	Name() string
	// PrependActivityStreamsAccept prepends a Accept value to the front of a
	// list of the property "bcc". Invalidates all iterators.
	PrependActivityStreamsAccept(v ActivityStreamsAccept)
	// PrependActivityStreamsActivity prepends a Activity value to the front
	// of a list of the property "bcc". Invalidates all iterators.
	PrependActivityStreamsActivity(v ActivityStreamsActivity)
	// PrependActivityStreamsAdd prepends a Add value to the front of a list
	// of the property "bcc". Invalidates all iterators.
	PrependActivityStreamsAdd(v ActivityStreamsAdd)
	// PrependActivityStreamsAnnounce prepends a Announce value to the front
	// of a list of the property "bcc". Invalidates all iterators.
	PrependActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// PrependActivityStreamsApplication prepends a Application value to the
	// front of a list of the property "bcc". Invalidates all iterators.
	PrependActivityStreamsApplication(v ActivityStreamsApplication)
	// PrependActivityStreamsArrive prepends a Arrive value to the front of a
	// list of the property "bcc". Invalidates all iterators.
	PrependActivityStreamsArrive(v ActivityStreamsArrive)
	// PrependActivityStreamsArticle prepends a Article value to the front of
	// a list of the property "bcc". Invalidates all iterators.
	PrependActivityStreamsArticle(v ActivityStreamsArticle)
	// PrependActivityStreamsAudio prepends a Audio value to the front of a
	// list of the property "bcc". Invalidates all iterators.
	PrependActivityStreamsAudio(v ActivityStreamsAudio)
	// PrependActivityStreamsBlock prepends a Block value to the front of a
	// list of the property "bcc". Invalidates all iterators.
	PrependActivityStreamsBlock(v ActivityStreamsBlock)
	// PrependActivityStreamsCollection prepends a Collection value to the
	// front of a list of the property "bcc". Invalidates all iterators.
	PrependActivityStreamsCollection(v ActivityStreamsCollection)
	// PrependActivityStreamsCollectionPage prepends a CollectionPage value to
	// the front of a list of the property "bcc". Invalidates all
	// iterators.
	PrependActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// PrependActivityStreamsCreate prepends a Create value to the front of a
	// list of the property "bcc". Invalidates all iterators.
	PrependActivityStreamsCreate(v ActivityStreamsCreate)
	// PrependActivityStreamsDelete prepends a Delete value to the front of a
	// list of the property "bcc". Invalidates all iterators.
	PrependActivityStreamsDelete(v ActivityStreamsDelete)
	// PrependActivityStreamsDislike prepends a Dislike value to the front of
	// a list of the property "bcc". Invalidates all iterators.
	PrependActivityStreamsDislike(v ActivityStreamsDislike)
	// PrependActivityStreamsDocument prepends a Document value to the front
	// of a list of the property "bcc". Invalidates all iterators.
	PrependActivityStreamsDocument(v ActivityStreamsDocument)
	// PrependActivityStreamsEvent prepends a Event value to the front of a
	// list of the property "bcc". Invalidates all iterators.
	PrependActivityStreamsEvent(v ActivityStreamsEvent)
	// PrependActivityStreamsFlag prepends a Flag value to the front of a list
	// of the property "bcc". Invalidates all iterators.
	PrependActivityStreamsFlag(v ActivityStreamsFlag)
	// PrependActivityStreamsFollow prepends a Follow value to the front of a
	// list of the property "bcc". Invalidates all iterators.
	PrependActivityStreamsFollow(v ActivityStreamsFollow)
	// PrependActivityStreamsGroup prepends a Group value to the front of a
	// list of the property "bcc". Invalidates all iterators.
	PrependActivityStreamsGroup(v ActivityStreamsGroup)
	// PrependActivityStreamsIgnore prepends a Ignore value to the front of a
	// list of the property "bcc". Invalidates all iterators.
	PrependActivityStreamsIgnore(v ActivityStreamsIgnore)
	// PrependActivityStreamsImage prepends a Image value to the front of a
	// list of the property "bcc". Invalidates all iterators.
	PrependActivityStreamsImage(v ActivityStreamsImage)
	// PrependActivityStreamsIntransitiveActivity prepends a
	// IntransitiveActivity value to the front of a list of the property
	// "bcc". Invalidates all iterators.
	PrependActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// PrependActivityStreamsInvite prepends a Invite value to the front of a
	// list of the property "bcc". Invalidates all iterators.
	PrependActivityStreamsInvite(v ActivityStreamsInvite)
	// PrependActivityStreamsJoin prepends a Join value to the front of a list
	// of the property "bcc". Invalidates all iterators.
	PrependActivityStreamsJoin(v ActivityStreamsJoin)
	// PrependActivityStreamsLeave prepends a Leave value to the front of a
	// list of the property "bcc". Invalidates all iterators.
	PrependActivityStreamsLeave(v ActivityStreamsLeave)
	// PrependActivityStreamsLike prepends a Like value to the front of a list
	// of the property "bcc". Invalidates all iterators.
	PrependActivityStreamsLike(v ActivityStreamsLike)
	// PrependActivityStreamsLink prepends a Link value to the front of a list
	// of the property "bcc". Invalidates all iterators.
	PrependActivityStreamsLink(v ActivityStreamsLink)
	// PrependActivityStreamsListen prepends a Listen value to the front of a
	// list of the property "bcc". Invalidates all iterators.
	PrependActivityStreamsListen(v ActivityStreamsListen)
	// PrependActivityStreamsMention prepends a Mention value to the front of
	// a list of the property "bcc". Invalidates all iterators.
	PrependActivityStreamsMention(v ActivityStreamsMention)
	// PrependActivityStreamsMove prepends a Move value to the front of a list
	// of the property "bcc". Invalidates all iterators.
	PrependActivityStreamsMove(v ActivityStreamsMove)
	// PrependActivityStreamsNote prepends a Note value to the front of a list
	// of the property "bcc". Invalidates all iterators.
	PrependActivityStreamsNote(v ActivityStreamsNote)
	// PrependActivityStreamsObject prepends a Object value to the front of a
	// list of the property "bcc". Invalidates all iterators.
	PrependActivityStreamsObject(v ActivityStreamsObject)
	// PrependActivityStreamsOffer prepends a Offer value to the front of a
	// list of the property "bcc". Invalidates all iterators.
	PrependActivityStreamsOffer(v ActivityStreamsOffer)
	// PrependActivityStreamsOrderedCollection prepends a OrderedCollection
	// value to the front of a list of the property "bcc". Invalidates all
	// iterators.
	PrependActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// PrependActivityStreamsOrderedCollectionPage prepends a
	// OrderedCollectionPage value to the front of a list of the property
	// "bcc". Invalidates all iterators.
	PrependActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// PrependActivityStreamsOrganization prepends a Organization value to the
	// front of a list of the property "bcc". Invalidates all iterators.
	PrependActivityStreamsOrganization(v ActivityStreamsOrganization)
	// PrependActivityStreamsPage prepends a Page value to the front of a list
	// of the property "bcc". Invalidates all iterators.
	PrependActivityStreamsPage(v ActivityStreamsPage)
	// PrependActivityStreamsPerson prepends a Person value to the front of a
	// list of the property "bcc". Invalidates all iterators.
	PrependActivityStreamsPerson(v ActivityStreamsPerson)
	// PrependActivityStreamsPlace prepends a Place value to the front of a
	// list of the property "bcc". Invalidates all iterators.
	PrependActivityStreamsPlace(v ActivityStreamsPlace)
	// PrependActivityStreamsProfile prepends a Profile value to the front of
	// a list of the property "bcc". Invalidates all iterators.
	PrependActivityStreamsProfile(v ActivityStreamsProfile)
	// PrependActivityStreamsQuestion prepends a Question value to the front
	// of a list of the property "bcc". Invalidates all iterators.
	PrependActivityStreamsQuestion(v ActivityStreamsQuestion)
	// PrependActivityStreamsRead prepends a Read value to the front of a list
	// of the property "bcc". Invalidates all iterators.
	PrependActivityStreamsRead(v ActivityStreamsRead)
	// PrependActivityStreamsReject prepends a Reject value to the front of a
	// list of the property "bcc". Invalidates all iterators.
	PrependActivityStreamsReject(v ActivityStreamsReject)
	// PrependActivityStreamsRelationship prepends a Relationship value to the
	// front of a list of the property "bcc". Invalidates all iterators.
	PrependActivityStreamsRelationship(v ActivityStreamsRelationship)
	// PrependActivityStreamsRemove prepends a Remove value to the front of a
	// list of the property "bcc". Invalidates all iterators.
	PrependActivityStreamsRemove(v ActivityStreamsRemove)
	// PrependActivityStreamsService prepends a Service value to the front of
	// a list of the property "bcc". Invalidates all iterators.
	PrependActivityStreamsService(v ActivityStreamsService)
	// PrependActivityStreamsTentativeAccept prepends a TentativeAccept value
	// to the front of a list of the property "bcc". Invalidates all
	// iterators.
	PrependActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// PrependActivityStreamsTentativeReject prepends a TentativeReject value
	// to the front of a list of the property "bcc". Invalidates all
	// iterators.
	PrependActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// PrependActivityStreamsTombstone prepends a Tombstone value to the front
	// of a list of the property "bcc". Invalidates all iterators.
	PrependActivityStreamsTombstone(v ActivityStreamsTombstone)
	// PrependActivityStreamsTravel prepends a Travel value to the front of a
	// list of the property "bcc". Invalidates all iterators.
	PrependActivityStreamsTravel(v ActivityStreamsTravel)
	// PrependActivityStreamsUndo prepends a Undo value to the front of a list
	// of the property "bcc". Invalidates all iterators.
	PrependActivityStreamsUndo(v ActivityStreamsUndo)
	// PrependActivityStreamsUpdate prepends a Update value to the front of a
	// list of the property "bcc". Invalidates all iterators.
	PrependActivityStreamsUpdate(v ActivityStreamsUpdate)
	// PrependActivityStreamsVideo prepends a Video value to the front of a
	// list of the property "bcc". Invalidates all iterators.
	PrependActivityStreamsVideo(v ActivityStreamsVideo)
	// PrependActivityStreamsView prepends a View value to the front of a list
	// of the property "bcc". Invalidates all iterators.
	PrependActivityStreamsView(v ActivityStreamsView)
	// PrependForgeFedBranch prepends a Branch value to the front of a list of
	// the property "bcc". Invalidates all iterators.
	PrependForgeFedBranch(v ForgeFedBranch)
	// PrependForgeFedCommit prepends a Commit value to the front of a list of
	// the property "bcc". Invalidates all iterators.
	PrependForgeFedCommit(v ForgeFedCommit)
	// PrependForgeFedPush prepends a Push value to the front of a list of the
	// property "bcc". Invalidates all iterators.
	PrependForgeFedPush(v ForgeFedPush)
	// PrependForgeFedRepository prepends a Repository value to the front of a
	// list of the property "bcc". Invalidates all iterators.
	PrependForgeFedRepository(v ForgeFedRepository)
	// PrependForgeFedTicket prepends a Ticket value to the front of a list of
	// the property "bcc". Invalidates all iterators.
	PrependForgeFedTicket(v ForgeFedTicket)
	// PrependForgeFedTicketDependency prepends a TicketDependency value to
	// the front of a list of the property "bcc". Invalidates all
	// iterators.
	PrependForgeFedTicketDependency(v ForgeFedTicketDependency)
	// PrependIRI prepends an IRI value to the front of a list of the property
	// "bcc".
	PrependIRI(v *url.URL)
	// PrependTootEmoji prepends a Emoji value to the front of a list of the
	// property "bcc". Invalidates all iterators.
	PrependTootEmoji(v TootEmoji)
	// PrependTootIdentityProof prepends a IdentityProof value to the front of
	// a list of the property "bcc". Invalidates all iterators.
	PrependTootIdentityProof(v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "bcc". Invalidates all iterators. Returns an error if
	// the type is not a valid one to set for this property.
	PrependType(t Type) error
	// Remove deletes an element at the specified index from a list of the
	// property "bcc", regardless of its type. Panics if the index is out
	// of bounds. Invalidates all iterators.
	Remove(idx int)
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// SetActivityStreamsAccept sets a Accept value to be at the specified
	// index for the property "bcc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsAccept(idx int, v ActivityStreamsAccept)
	// SetActivityStreamsActivity sets a Activity value to be at the specified
	// index for the property "bcc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsActivity(idx int, v ActivityStreamsActivity)
	// SetActivityStreamsAdd sets a Add value to be at the specified index for
	// the property "bcc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsAdd(idx int, v ActivityStreamsAdd)
	// SetActivityStreamsAnnounce sets a Announce value to be at the specified
	// index for the property "bcc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsAnnounce(idx int, v ActivityStreamsAnnounce)
	// SetActivityStreamsApplication sets a Application value to be at the
	// specified index for the property "bcc". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsApplication(idx int, v ActivityStreamsApplication)
	// SetActivityStreamsArrive sets a Arrive value to be at the specified
	// index for the property "bcc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsArrive(idx int, v ActivityStreamsArrive)
	// SetActivityStreamsArticle sets a Article value to be at the specified
	// index for the property "bcc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsArticle(idx int, v ActivityStreamsArticle)
	// SetActivityStreamsAudio sets a Audio value to be at the specified index
	// for the property "bcc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsAudio(idx int, v ActivityStreamsAudio)
	// SetActivityStreamsBlock sets a Block value to be at the specified index
	// for the property "bcc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsBlock(idx int, v ActivityStreamsBlock)
	// SetActivityStreamsCollection sets a Collection value to be at the
	// specified index for the property "bcc". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsCollection(idx int, v ActivityStreamsCollection)
	// SetActivityStreamsCollectionPage sets a CollectionPage value to be at
	// the specified index for the property "bcc". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsCollectionPage(idx int, v ActivityStreamsCollectionPage)
	// SetActivityStreamsCreate sets a Create value to be at the specified
	// index for the property "bcc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsCreate(idx int, v ActivityStreamsCreate)
	// SetActivityStreamsDelete sets a Delete value to be at the specified
	// index for the property "bcc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsDelete(idx int, v ActivityStreamsDelete)
	// SetActivityStreamsDislike sets a Dislike value to be at the specified
	// index for the property "bcc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsDislike(idx int, v ActivityStreamsDislike)
	// SetActivityStreamsDocument sets a Document value to be at the specified
	// index for the property "bcc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsDocument(idx int, v ActivityStreamsDocument)
	// SetActivityStreamsEvent sets a Event value to be at the specified index
	// for the property "bcc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsEvent(idx int, v ActivityStreamsEvent)
	// SetActivityStreamsFlag sets a Flag value to be at the specified index
	// for the property "bcc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsFlag(idx int, v ActivityStreamsFlag)
	// SetActivityStreamsFollow sets a Follow value to be at the specified
	// index for the property "bcc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsFollow(idx int, v ActivityStreamsFollow)
	// SetActivityStreamsGroup sets a Group value to be at the specified index
	// for the property "bcc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsGroup(idx int, v ActivityStreamsGroup)
	// SetActivityStreamsIgnore sets a Ignore value to be at the specified
	// index for the property "bcc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsIgnore(idx int, v ActivityStreamsIgnore)
	// SetActivityStreamsImage sets a Image value to be at the specified index
	// for the property "bcc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsImage(idx int, v ActivityStreamsImage)
	// SetActivityStreamsIntransitiveActivity sets a IntransitiveActivity
	// value to be at the specified index for the property "bcc". Panics
	// if the index is out of bounds. Invalidates all iterators.
	SetActivityStreamsIntransitiveActivity(idx int, v ActivityStreamsIntransitiveActivity)
	// SetActivityStreamsInvite sets a Invite value to be at the specified
	// index for the property "bcc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsInvite(idx int, v ActivityStreamsInvite)
	// SetActivityStreamsJoin sets a Join value to be at the specified index
	// for the property "bcc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsJoin(idx int, v ActivityStreamsJoin)
	// SetActivityStreamsLeave sets a Leave value to be at the specified index
	// for the property "bcc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsLeave(idx int, v ActivityStreamsLeave)
	// SetActivityStreamsLike sets a Like value to be at the specified index
	// for the property "bcc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsLike(idx int, v ActivityStreamsLike)
	// SetActivityStreamsLink sets a Link value to be at the specified index
	// for the property "bcc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsLink(idx int, v ActivityStreamsLink)
	// SetActivityStreamsListen sets a Listen value to be at the specified
	// index for the property "bcc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsListen(idx int, v ActivityStreamsListen)
	// SetActivityStreamsMention sets a Mention value to be at the specified
	// index for the property "bcc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsMention(idx int, v ActivityStreamsMention)
	// SetActivityStreamsMove sets a Move value to be at the specified index
	// for the property "bcc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsMove(idx int, v ActivityStreamsMove)
	// SetActivityStreamsNote sets a Note value to be at the specified index
	// for the property "bcc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsNote(idx int, v ActivityStreamsNote)
	// SetActivityStreamsObject sets a Object value to be at the specified
	// index for the property "bcc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsObject(idx int, v ActivityStreamsObject)
	// SetActivityStreamsOffer sets a Offer value to be at the specified index
	// for the property "bcc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsOffer(idx int, v ActivityStreamsOffer)
	// SetActivityStreamsOrderedCollection sets a OrderedCollection value to
	// be at the specified index for the property "bcc". Panics if the
	// index is out of bounds. Invalidates all iterators.
	SetActivityStreamsOrderedCollection(idx int, v ActivityStreamsOrderedCollection)
	// SetActivityStreamsOrderedCollectionPage sets a OrderedCollectionPage
	// value to be at the specified index for the property "bcc". Panics
	// if the index is out of bounds. Invalidates all iterators.
	SetActivityStreamsOrderedCollectionPage(idx int, v ActivityStreamsOrderedCollectionPage)
	// SetActivityStreamsOrganization sets a Organization value to be at the
	// specified index for the property "bcc". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsOrganization(idx int, v ActivityStreamsOrganization)
	// SetActivityStreamsPage sets a Page value to be at the specified index
	// for the property "bcc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsPage(idx int, v ActivityStreamsPage)
	// SetActivityStreamsPerson sets a Person value to be at the specified
	// index for the property "bcc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsPerson(idx int, v ActivityStreamsPerson)
	// SetActivityStreamsPlace sets a Place value to be at the specified index
	// for the property "bcc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsPlace(idx int, v ActivityStreamsPlace)
	// SetActivityStreamsProfile sets a Profile value to be at the specified
	// index for the property "bcc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsProfile(idx int, v ActivityStreamsProfile)
	// SetActivityStreamsQuestion sets a Question value to be at the specified
	// index for the property "bcc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsQuestion(idx int, v ActivityStreamsQuestion)
	// SetActivityStreamsRead sets a Read value to be at the specified index
	// for the property "bcc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsRead(idx int, v ActivityStreamsRead)
	// SetActivityStreamsReject sets a Reject value to be at the specified
	// index for the property "bcc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsReject(idx int, v ActivityStreamsReject)
	// SetActivityStreamsRelationship sets a Relationship value to be at the
	// specified index for the property "bcc". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsRelationship(idx int, v ActivityStreamsRelationship)
	// SetActivityStreamsRemove sets a Remove value to be at the specified
	// index for the property "bcc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsRemove(idx int, v ActivityStreamsRemove)
	// SetActivityStreamsService sets a Service value to be at the specified
	// index for the property "bcc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsService(idx int, v ActivityStreamsService)
	// SetActivityStreamsTentativeAccept sets a TentativeAccept value to be at
	// the specified index for the property "bcc". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsTentativeAccept(idx int, v ActivityStreamsTentativeAccept)
	// SetActivityStreamsTentativeReject sets a TentativeReject value to be at
	// the specified index for the property "bcc". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsTentativeReject(idx int, v ActivityStreamsTentativeReject)
	// SetActivityStreamsTombstone sets a Tombstone value to be at the
	// specified index for the property "bcc". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsTombstone(idx int, v ActivityStreamsTombstone)
	// SetActivityStreamsTravel sets a Travel value to be at the specified
	// index for the property "bcc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsTravel(idx int, v ActivityStreamsTravel)
	// SetActivityStreamsUndo sets a Undo value to be at the specified index
	// for the property "bcc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsUndo(idx int, v ActivityStreamsUndo)
	// SetActivityStreamsUpdate sets a Update value to be at the specified
	// index for the property "bcc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsUpdate(idx int, v ActivityStreamsUpdate)
	// SetActivityStreamsVideo sets a Video value to be at the specified index
	// for the property "bcc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsVideo(idx int, v ActivityStreamsVideo)
	// SetActivityStreamsView sets a View value to be at the specified index
	// for the property "bcc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsView(idx int, v ActivityStreamsView)
	// SetForgeFedBranch sets a Branch value to be at the specified index for
	// the property "bcc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedBranch(idx int, v ForgeFedBranch)
	// SetForgeFedCommit sets a Commit value to be at the specified index for
	// the property "bcc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedCommit(idx int, v ForgeFedCommit)
	// SetForgeFedPush sets a Push value to be at the specified index for the
	// property "bcc". Panics if the index is out of bounds. Invalidates
	// all iterators.
	SetForgeFedPush(idx int, v ForgeFedPush)
	// SetForgeFedRepository sets a Repository value to be at the specified
	// index for the property "bcc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedRepository(idx int, v ForgeFedRepository)
	// SetForgeFedTicket sets a Ticket value to be at the specified index for
	// the property "bcc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedTicket(idx int, v ForgeFedTicket)
	// SetForgeFedTicketDependency sets a TicketDependency value to be at the
	// specified index for the property "bcc". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
	// SetIRI sets an IRI value to be at the specified index for the property
	// "bcc". Panics if the index is out of bounds.
	SetIRI(idx int, v *url.URL)
	// SetTootEmoji sets a Emoji value to be at the specified index for the
	// property "bcc". Panics if the index is out of bounds. Invalidates
	// all iterators.
	SetTootEmoji(idx int, v TootEmoji)
	// SetTootIdentityProof sets a IdentityProof value to be at the specified
	// index for the property "bcc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetTootIdentityProof(idx int, v TootIdentityProof)
	// SetType sets an arbitrary type value to the specified index of the
	// property "bcc". Invalidates all iterators. Returns an error if the
	// type is not a valid one to set for this property. Panics if the
	// index is out of bounds.
	SetType(idx int, t Type) error
	// Swap swaps the location of values at two indices for the "bcc" property.
	Swap(i, j int)
}

Identifies one or more Objects that are part of the private secondary audience of this Object.

Example 70 (https://www.w3.org/TR/activitystreams-vocabulary/#ex68-jsonld):

{
  "actor": "http://sally.example.org",
  "bcc": "http://joe.example.org",
  "object": "http://example.org/posts/1",
  "summary": "Sally offered a post to John",
  "target": "http://john.example.org",
  "type": "Offer"
}

type ActivityStreamsBccPropertyIterator

type ActivityStreamsBccPropertyIterator interface {
	// GetActivityStreamsAccept returns the value of this property. When
	// IsActivityStreamsAccept returns false, GetActivityStreamsAccept
	// will return an arbitrary value.
	GetActivityStreamsAccept() ActivityStreamsAccept
	// GetActivityStreamsActivity returns the value of this property. When
	// IsActivityStreamsActivity returns false, GetActivityStreamsActivity
	// will return an arbitrary value.
	GetActivityStreamsActivity() ActivityStreamsActivity
	// GetActivityStreamsAdd returns the value of this property. When
	// IsActivityStreamsAdd returns false, GetActivityStreamsAdd will
	// return an arbitrary value.
	GetActivityStreamsAdd() ActivityStreamsAdd
	// GetActivityStreamsAnnounce returns the value of this property. When
	// IsActivityStreamsAnnounce returns false, GetActivityStreamsAnnounce
	// will return an arbitrary value.
	GetActivityStreamsAnnounce() ActivityStreamsAnnounce
	// GetActivityStreamsApplication returns the value of this property. When
	// IsActivityStreamsApplication returns false,
	// GetActivityStreamsApplication will return an arbitrary value.
	GetActivityStreamsApplication() ActivityStreamsApplication
	// GetActivityStreamsArrive returns the value of this property. When
	// IsActivityStreamsArrive returns false, GetActivityStreamsArrive
	// will return an arbitrary value.
	GetActivityStreamsArrive() ActivityStreamsArrive
	// GetActivityStreamsArticle returns the value of this property. When
	// IsActivityStreamsArticle returns false, GetActivityStreamsArticle
	// will return an arbitrary value.
	GetActivityStreamsArticle() ActivityStreamsArticle
	// GetActivityStreamsAudio returns the value of this property. When
	// IsActivityStreamsAudio returns false, GetActivityStreamsAudio will
	// return an arbitrary value.
	GetActivityStreamsAudio() ActivityStreamsAudio
	// GetActivityStreamsBlock returns the value of this property. When
	// IsActivityStreamsBlock returns false, GetActivityStreamsBlock will
	// return an arbitrary value.
	GetActivityStreamsBlock() ActivityStreamsBlock
	// GetActivityStreamsCollection returns the value of this property. When
	// IsActivityStreamsCollection returns false,
	// GetActivityStreamsCollection will return an arbitrary value.
	GetActivityStreamsCollection() ActivityStreamsCollection
	// GetActivityStreamsCollectionPage returns the value of this property.
	// When IsActivityStreamsCollectionPage returns false,
	// GetActivityStreamsCollectionPage will return an arbitrary value.
	GetActivityStreamsCollectionPage() ActivityStreamsCollectionPage
	// GetActivityStreamsCreate returns the value of this property. When
	// IsActivityStreamsCreate returns false, GetActivityStreamsCreate
	// will return an arbitrary value.
	GetActivityStreamsCreate() ActivityStreamsCreate
	// GetActivityStreamsDelete returns the value of this property. When
	// IsActivityStreamsDelete returns false, GetActivityStreamsDelete
	// will return an arbitrary value.
	GetActivityStreamsDelete() ActivityStreamsDelete
	// GetActivityStreamsDislike returns the value of this property. When
	// IsActivityStreamsDislike returns false, GetActivityStreamsDislike
	// will return an arbitrary value.
	GetActivityStreamsDislike() ActivityStreamsDislike
	// GetActivityStreamsDocument returns the value of this property. When
	// IsActivityStreamsDocument returns false, GetActivityStreamsDocument
	// will return an arbitrary value.
	GetActivityStreamsDocument() ActivityStreamsDocument
	// GetActivityStreamsEvent returns the value of this property. When
	// IsActivityStreamsEvent returns false, GetActivityStreamsEvent will
	// return an arbitrary value.
	GetActivityStreamsEvent() ActivityStreamsEvent
	// GetActivityStreamsFlag returns the value of this property. When
	// IsActivityStreamsFlag returns false, GetActivityStreamsFlag will
	// return an arbitrary value.
	GetActivityStreamsFlag() ActivityStreamsFlag
	// GetActivityStreamsFollow returns the value of this property. When
	// IsActivityStreamsFollow returns false, GetActivityStreamsFollow
	// will return an arbitrary value.
	GetActivityStreamsFollow() ActivityStreamsFollow
	// GetActivityStreamsGroup returns the value of this property. When
	// IsActivityStreamsGroup returns false, GetActivityStreamsGroup will
	// return an arbitrary value.
	GetActivityStreamsGroup() ActivityStreamsGroup
	// GetActivityStreamsIgnore returns the value of this property. When
	// IsActivityStreamsIgnore returns false, GetActivityStreamsIgnore
	// will return an arbitrary value.
	GetActivityStreamsIgnore() ActivityStreamsIgnore
	// GetActivityStreamsImage returns the value of this property. When
	// IsActivityStreamsImage returns false, GetActivityStreamsImage will
	// return an arbitrary value.
	GetActivityStreamsImage() ActivityStreamsImage
	// GetActivityStreamsIntransitiveActivity returns the value of this
	// property. When IsActivityStreamsIntransitiveActivity returns false,
	// GetActivityStreamsIntransitiveActivity will return an arbitrary
	// value.
	GetActivityStreamsIntransitiveActivity() ActivityStreamsIntransitiveActivity
	// GetActivityStreamsInvite returns the value of this property. When
	// IsActivityStreamsInvite returns false, GetActivityStreamsInvite
	// will return an arbitrary value.
	GetActivityStreamsInvite() ActivityStreamsInvite
	// GetActivityStreamsJoin returns the value of this property. When
	// IsActivityStreamsJoin returns false, GetActivityStreamsJoin will
	// return an arbitrary value.
	GetActivityStreamsJoin() ActivityStreamsJoin
	// GetActivityStreamsLeave returns the value of this property. When
	// IsActivityStreamsLeave returns false, GetActivityStreamsLeave will
	// return an arbitrary value.
	GetActivityStreamsLeave() ActivityStreamsLeave
	// GetActivityStreamsLike returns the value of this property. When
	// IsActivityStreamsLike returns false, GetActivityStreamsLike will
	// return an arbitrary value.
	GetActivityStreamsLike() ActivityStreamsLike
	// GetActivityStreamsLink returns the value of this property. When
	// IsActivityStreamsLink returns false, GetActivityStreamsLink will
	// return an arbitrary value.
	GetActivityStreamsLink() ActivityStreamsLink
	// GetActivityStreamsListen returns the value of this property. When
	// IsActivityStreamsListen returns false, GetActivityStreamsListen
	// will return an arbitrary value.
	GetActivityStreamsListen() ActivityStreamsListen
	// GetActivityStreamsMention returns the value of this property. When
	// IsActivityStreamsMention returns false, GetActivityStreamsMention
	// will return an arbitrary value.
	GetActivityStreamsMention() ActivityStreamsMention
	// GetActivityStreamsMove returns the value of this property. When
	// IsActivityStreamsMove returns false, GetActivityStreamsMove will
	// return an arbitrary value.
	GetActivityStreamsMove() ActivityStreamsMove
	// GetActivityStreamsNote returns the value of this property. When
	// IsActivityStreamsNote returns false, GetActivityStreamsNote will
	// return an arbitrary value.
	GetActivityStreamsNote() ActivityStreamsNote
	// GetActivityStreamsObject returns the value of this property. When
	// IsActivityStreamsObject returns false, GetActivityStreamsObject
	// will return an arbitrary value.
	GetActivityStreamsObject() ActivityStreamsObject
	// GetActivityStreamsOffer returns the value of this property. When
	// IsActivityStreamsOffer returns false, GetActivityStreamsOffer will
	// return an arbitrary value.
	GetActivityStreamsOffer() ActivityStreamsOffer
	// GetActivityStreamsOrderedCollection returns the value of this property.
	// When IsActivityStreamsOrderedCollection returns false,
	// GetActivityStreamsOrderedCollection will return an arbitrary value.
	GetActivityStreamsOrderedCollection() ActivityStreamsOrderedCollection
	// GetActivityStreamsOrderedCollectionPage returns the value of this
	// property. When IsActivityStreamsOrderedCollectionPage returns
	// false, GetActivityStreamsOrderedCollectionPage will return an
	// arbitrary value.
	GetActivityStreamsOrderedCollectionPage() ActivityStreamsOrderedCollectionPage
	// GetActivityStreamsOrganization returns the value of this property. When
	// IsActivityStreamsOrganization returns false,
	// GetActivityStreamsOrganization will return an arbitrary value.
	GetActivityStreamsOrganization() ActivityStreamsOrganization
	// GetActivityStreamsPage returns the value of this property. When
	// IsActivityStreamsPage returns false, GetActivityStreamsPage will
	// return an arbitrary value.
	GetActivityStreamsPage() ActivityStreamsPage
	// GetActivityStreamsPerson returns the value of this property. When
	// IsActivityStreamsPerson returns false, GetActivityStreamsPerson
	// will return an arbitrary value.
	GetActivityStreamsPerson() ActivityStreamsPerson
	// GetActivityStreamsPlace returns the value of this property. When
	// IsActivityStreamsPlace returns false, GetActivityStreamsPlace will
	// return an arbitrary value.
	GetActivityStreamsPlace() ActivityStreamsPlace
	// GetActivityStreamsProfile returns the value of this property. When
	// IsActivityStreamsProfile returns false, GetActivityStreamsProfile
	// will return an arbitrary value.
	GetActivityStreamsProfile() ActivityStreamsProfile
	// GetActivityStreamsQuestion returns the value of this property. When
	// IsActivityStreamsQuestion returns false, GetActivityStreamsQuestion
	// will return an arbitrary value.
	GetActivityStreamsQuestion() ActivityStreamsQuestion
	// GetActivityStreamsRead returns the value of this property. When
	// IsActivityStreamsRead returns false, GetActivityStreamsRead will
	// return an arbitrary value.
	GetActivityStreamsRead() ActivityStreamsRead
	// GetActivityStreamsReject returns the value of this property. When
	// IsActivityStreamsReject returns false, GetActivityStreamsReject
	// will return an arbitrary value.
	GetActivityStreamsReject() ActivityStreamsReject
	// GetActivityStreamsRelationship returns the value of this property. When
	// IsActivityStreamsRelationship returns false,
	// GetActivityStreamsRelationship will return an arbitrary value.
	GetActivityStreamsRelationship() ActivityStreamsRelationship
	// GetActivityStreamsRemove returns the value of this property. When
	// IsActivityStreamsRemove returns false, GetActivityStreamsRemove
	// will return an arbitrary value.
	GetActivityStreamsRemove() ActivityStreamsRemove
	// GetActivityStreamsService returns the value of this property. When
	// IsActivityStreamsService returns false, GetActivityStreamsService
	// will return an arbitrary value.
	GetActivityStreamsService() ActivityStreamsService
	// GetActivityStreamsTentativeAccept returns the value of this property.
	// When IsActivityStreamsTentativeAccept returns false,
	// GetActivityStreamsTentativeAccept will return an arbitrary value.
	GetActivityStreamsTentativeAccept() ActivityStreamsTentativeAccept
	// GetActivityStreamsTentativeReject returns the value of this property.
	// When IsActivityStreamsTentativeReject returns false,
	// GetActivityStreamsTentativeReject will return an arbitrary value.
	GetActivityStreamsTentativeReject() ActivityStreamsTentativeReject
	// GetActivityStreamsTombstone returns the value of this property. When
	// IsActivityStreamsTombstone returns false,
	// GetActivityStreamsTombstone will return an arbitrary value.
	GetActivityStreamsTombstone() ActivityStreamsTombstone
	// GetActivityStreamsTravel returns the value of this property. When
	// IsActivityStreamsTravel returns false, GetActivityStreamsTravel
	// will return an arbitrary value.
	GetActivityStreamsTravel() ActivityStreamsTravel
	// GetActivityStreamsUndo returns the value of this property. When
	// IsActivityStreamsUndo returns false, GetActivityStreamsUndo will
	// return an arbitrary value.
	GetActivityStreamsUndo() ActivityStreamsUndo
	// GetActivityStreamsUpdate returns the value of this property. When
	// IsActivityStreamsUpdate returns false, GetActivityStreamsUpdate
	// will return an arbitrary value.
	GetActivityStreamsUpdate() ActivityStreamsUpdate
	// GetActivityStreamsVideo returns the value of this property. When
	// IsActivityStreamsVideo returns false, GetActivityStreamsVideo will
	// return an arbitrary value.
	GetActivityStreamsVideo() ActivityStreamsVideo
	// GetActivityStreamsView returns the value of this property. When
	// IsActivityStreamsView returns false, GetActivityStreamsView will
	// return an arbitrary value.
	GetActivityStreamsView() ActivityStreamsView
	// GetForgeFedBranch returns the value of this property. When
	// IsForgeFedBranch returns false, GetForgeFedBranch will return an
	// arbitrary value.
	GetForgeFedBranch() ForgeFedBranch
	// GetForgeFedCommit returns the value of this property. When
	// IsForgeFedCommit returns false, GetForgeFedCommit will return an
	// arbitrary value.
	GetForgeFedCommit() ForgeFedCommit
	// GetForgeFedPush returns the value of this property. When IsForgeFedPush
	// returns false, GetForgeFedPush will return an arbitrary value.
	GetForgeFedPush() ForgeFedPush
	// GetForgeFedRepository returns the value of this property. When
	// IsForgeFedRepository returns false, GetForgeFedRepository will
	// return an arbitrary value.
	GetForgeFedRepository() ForgeFedRepository
	// GetForgeFedTicket returns the value of this property. When
	// IsForgeFedTicket returns false, GetForgeFedTicket will return an
	// arbitrary value.
	GetForgeFedTicket() ForgeFedTicket
	// GetForgeFedTicketDependency returns the value of this property. When
	// IsForgeFedTicketDependency returns false,
	// GetForgeFedTicketDependency will return an arbitrary value.
	GetForgeFedTicketDependency() ForgeFedTicketDependency
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return an arbitrary value.
	GetIRI() *url.URL
	// GetTootEmoji returns the value of this property. When IsTootEmoji
	// returns false, GetTootEmoji will return an arbitrary value.
	GetTootEmoji() TootEmoji
	// GetTootIdentityProof returns the value of this property. When
	// IsTootIdentityProof returns false, GetTootIdentityProof will return
	// an arbitrary value.
	GetTootIdentityProof() TootIdentityProof
	// GetType returns the value in this property as a Type. Returns nil if
	// the value is not an ActivityStreams type, such as an IRI or another
	// value.
	GetType() Type
	// HasAny returns true if any of the different values is set.
	HasAny() bool
	// IsActivityStreamsAccept returns true if this property has a type of
	// "Accept". When true, use the GetActivityStreamsAccept and
	// SetActivityStreamsAccept methods to access and set this property.
	IsActivityStreamsAccept() bool
	// IsActivityStreamsActivity returns true if this property has a type of
	// "Activity". When true, use the GetActivityStreamsActivity and
	// SetActivityStreamsActivity methods to access and set this property.
	IsActivityStreamsActivity() bool
	// IsActivityStreamsAdd returns true if this property has a type of "Add".
	// When true, use the GetActivityStreamsAdd and SetActivityStreamsAdd
	// methods to access and set this property.
	IsActivityStreamsAdd() bool
	// IsActivityStreamsAnnounce returns true if this property has a type of
	// "Announce". When true, use the GetActivityStreamsAnnounce and
	// SetActivityStreamsAnnounce methods to access and set this property.
	IsActivityStreamsAnnounce() bool
	// IsActivityStreamsApplication returns true if this property has a type
	// of "Application". When true, use the GetActivityStreamsApplication
	// and SetActivityStreamsApplication methods to access and set this
	// property.
	IsActivityStreamsApplication() bool
	// IsActivityStreamsArrive returns true if this property has a type of
	// "Arrive". When true, use the GetActivityStreamsArrive and
	// SetActivityStreamsArrive methods to access and set this property.
	IsActivityStreamsArrive() bool
	// IsActivityStreamsArticle returns true if this property has a type of
	// "Article". When true, use the GetActivityStreamsArticle and
	// SetActivityStreamsArticle methods to access and set this property.
	IsActivityStreamsArticle() bool
	// IsActivityStreamsAudio returns true if this property has a type of
	// "Audio". When true, use the GetActivityStreamsAudio and
	// SetActivityStreamsAudio methods to access and set this property.
	IsActivityStreamsAudio() bool
	// IsActivityStreamsBlock returns true if this property has a type of
	// "Block". When true, use the GetActivityStreamsBlock and
	// SetActivityStreamsBlock methods to access and set this property.
	IsActivityStreamsBlock() bool
	// IsActivityStreamsCollection returns true if this property has a type of
	// "Collection". When true, use the GetActivityStreamsCollection and
	// SetActivityStreamsCollection methods to access and set this
	// property.
	IsActivityStreamsCollection() bool
	// IsActivityStreamsCollectionPage returns true if this property has a
	// type of "CollectionPage". When true, use the
	// GetActivityStreamsCollectionPage and
	// SetActivityStreamsCollectionPage methods to access and set this
	// property.
	IsActivityStreamsCollectionPage() bool
	// IsActivityStreamsCreate returns true if this property has a type of
	// "Create". When true, use the GetActivityStreamsCreate and
	// SetActivityStreamsCreate methods to access and set this property.
	IsActivityStreamsCreate() bool
	// IsActivityStreamsDelete returns true if this property has a type of
	// "Delete". When true, use the GetActivityStreamsDelete and
	// SetActivityStreamsDelete methods to access and set this property.
	IsActivityStreamsDelete() bool
	// IsActivityStreamsDislike returns true if this property has a type of
	// "Dislike". When true, use the GetActivityStreamsDislike and
	// SetActivityStreamsDislike methods to access and set this property.
	IsActivityStreamsDislike() bool
	// IsActivityStreamsDocument returns true if this property has a type of
	// "Document". When true, use the GetActivityStreamsDocument and
	// SetActivityStreamsDocument methods to access and set this property.
	IsActivityStreamsDocument() bool
	// IsActivityStreamsEvent returns true if this property has a type of
	// "Event". When true, use the GetActivityStreamsEvent and
	// SetActivityStreamsEvent methods to access and set this property.
	IsActivityStreamsEvent() bool
	// IsActivityStreamsFlag returns true if this property has a type of
	// "Flag". When true, use the GetActivityStreamsFlag and
	// SetActivityStreamsFlag methods to access and set this property.
	IsActivityStreamsFlag() bool
	// IsActivityStreamsFollow returns true if this property has a type of
	// "Follow". When true, use the GetActivityStreamsFollow and
	// SetActivityStreamsFollow methods to access and set this property.
	IsActivityStreamsFollow() bool
	// IsActivityStreamsGroup returns true if this property has a type of
	// "Group". When true, use the GetActivityStreamsGroup and
	// SetActivityStreamsGroup methods to access and set this property.
	IsActivityStreamsGroup() bool
	// IsActivityStreamsIgnore returns true if this property has a type of
	// "Ignore". When true, use the GetActivityStreamsIgnore and
	// SetActivityStreamsIgnore methods to access and set this property.
	IsActivityStreamsIgnore() bool
	// IsActivityStreamsImage returns true if this property has a type of
	// "Image". When true, use the GetActivityStreamsImage and
	// SetActivityStreamsImage methods to access and set this property.
	IsActivityStreamsImage() bool
	// IsActivityStreamsIntransitiveActivity returns true if this property has
	// a type of "IntransitiveActivity". When true, use the
	// GetActivityStreamsIntransitiveActivity and
	// SetActivityStreamsIntransitiveActivity methods to access and set
	// this property.
	IsActivityStreamsIntransitiveActivity() bool
	// IsActivityStreamsInvite returns true if this property has a type of
	// "Invite". When true, use the GetActivityStreamsInvite and
	// SetActivityStreamsInvite methods to access and set this property.
	IsActivityStreamsInvite() bool
	// IsActivityStreamsJoin returns true if this property has a type of
	// "Join". When true, use the GetActivityStreamsJoin and
	// SetActivityStreamsJoin methods to access and set this property.
	IsActivityStreamsJoin() bool
	// IsActivityStreamsLeave returns true if this property has a type of
	// "Leave". When true, use the GetActivityStreamsLeave and
	// SetActivityStreamsLeave methods to access and set this property.
	IsActivityStreamsLeave() bool
	// IsActivityStreamsLike returns true if this property has a type of
	// "Like". When true, use the GetActivityStreamsLike and
	// SetActivityStreamsLike methods to access and set this property.
	IsActivityStreamsLike() bool
	// IsActivityStreamsLink returns true if this property has a type of
	// "Link". When true, use the GetActivityStreamsLink and
	// SetActivityStreamsLink methods to access and set this property.
	IsActivityStreamsLink() bool
	// IsActivityStreamsListen returns true if this property has a type of
	// "Listen". When true, use the GetActivityStreamsListen and
	// SetActivityStreamsListen methods to access and set this property.
	IsActivityStreamsListen() bool
	// IsActivityStreamsMention returns true if this property has a type of
	// "Mention". When true, use the GetActivityStreamsMention and
	// SetActivityStreamsMention methods to access and set this property.
	IsActivityStreamsMention() bool
	// IsActivityStreamsMove returns true if this property has a type of
	// "Move". When true, use the GetActivityStreamsMove and
	// SetActivityStreamsMove methods to access and set this property.
	IsActivityStreamsMove() bool
	// IsActivityStreamsNote returns true if this property has a type of
	// "Note". When true, use the GetActivityStreamsNote and
	// SetActivityStreamsNote methods to access and set this property.
	IsActivityStreamsNote() bool
	// IsActivityStreamsObject returns true if this property has a type of
	// "Object". When true, use the GetActivityStreamsObject and
	// SetActivityStreamsObject methods to access and set this property.
	IsActivityStreamsObject() bool
	// IsActivityStreamsOffer returns true if this property has a type of
	// "Offer". When true, use the GetActivityStreamsOffer and
	// SetActivityStreamsOffer methods to access and set this property.
	IsActivityStreamsOffer() bool
	// IsActivityStreamsOrderedCollection returns true if this property has a
	// type of "OrderedCollection". When true, use the
	// GetActivityStreamsOrderedCollection and
	// SetActivityStreamsOrderedCollection methods to access and set this
	// property.
	IsActivityStreamsOrderedCollection() bool
	// IsActivityStreamsOrderedCollectionPage returns true if this property
	// has a type of "OrderedCollectionPage". When true, use the
	// GetActivityStreamsOrderedCollectionPage and
	// SetActivityStreamsOrderedCollectionPage methods to access and set
	// this property.
	IsActivityStreamsOrderedCollectionPage() bool
	// IsActivityStreamsOrganization returns true if this property has a type
	// of "Organization". When true, use the
	// GetActivityStreamsOrganization and SetActivityStreamsOrganization
	// methods to access and set this property.
	IsActivityStreamsOrganization() bool
	// IsActivityStreamsPage returns true if this property has a type of
	// "Page". When true, use the GetActivityStreamsPage and
	// SetActivityStreamsPage methods to access and set this property.
	IsActivityStreamsPage() bool
	// IsActivityStreamsPerson returns true if this property has a type of
	// "Person". When true, use the GetActivityStreamsPerson and
	// SetActivityStreamsPerson methods to access and set this property.
	IsActivityStreamsPerson() bool
	// IsActivityStreamsPlace returns true if this property has a type of
	// "Place". When true, use the GetActivityStreamsPlace and
	// SetActivityStreamsPlace methods to access and set this property.
	IsActivityStreamsPlace() bool
	// IsActivityStreamsProfile returns true if this property has a type of
	// "Profile". When true, use the GetActivityStreamsProfile and
	// SetActivityStreamsProfile methods to access and set this property.
	IsActivityStreamsProfile() bool
	// IsActivityStreamsQuestion returns true if this property has a type of
	// "Question". When true, use the GetActivityStreamsQuestion and
	// SetActivityStreamsQuestion methods to access and set this property.
	IsActivityStreamsQuestion() bool
	// IsActivityStreamsRead returns true if this property has a type of
	// "Read". When true, use the GetActivityStreamsRead and
	// SetActivityStreamsRead methods to access and set this property.
	IsActivityStreamsRead() bool
	// IsActivityStreamsReject returns true if this property has a type of
	// "Reject". When true, use the GetActivityStreamsReject and
	// SetActivityStreamsReject methods to access and set this property.
	IsActivityStreamsReject() bool
	// IsActivityStreamsRelationship returns true if this property has a type
	// of "Relationship". When true, use the
	// GetActivityStreamsRelationship and SetActivityStreamsRelationship
	// methods to access and set this property.
	IsActivityStreamsRelationship() bool
	// IsActivityStreamsRemove returns true if this property has a type of
	// "Remove". When true, use the GetActivityStreamsRemove and
	// SetActivityStreamsRemove methods to access and set this property.
	IsActivityStreamsRemove() bool
	// IsActivityStreamsService returns true if this property has a type of
	// "Service". When true, use the GetActivityStreamsService and
	// SetActivityStreamsService methods to access and set this property.
	IsActivityStreamsService() bool
	// IsActivityStreamsTentativeAccept returns true if this property has a
	// type of "TentativeAccept". When true, use the
	// GetActivityStreamsTentativeAccept and
	// SetActivityStreamsTentativeAccept methods to access and set this
	// property.
	IsActivityStreamsTentativeAccept() bool
	// IsActivityStreamsTentativeReject returns true if this property has a
	// type of "TentativeReject". When true, use the
	// GetActivityStreamsTentativeReject and
	// SetActivityStreamsTentativeReject methods to access and set this
	// property.
	IsActivityStreamsTentativeReject() bool
	// IsActivityStreamsTombstone returns true if this property has a type of
	// "Tombstone". When true, use the GetActivityStreamsTombstone and
	// SetActivityStreamsTombstone methods to access and set this property.
	IsActivityStreamsTombstone() bool
	// IsActivityStreamsTravel returns true if this property has a type of
	// "Travel". When true, use the GetActivityStreamsTravel and
	// SetActivityStreamsTravel methods to access and set this property.
	IsActivityStreamsTravel() bool
	// IsActivityStreamsUndo returns true if this property has a type of
	// "Undo". When true, use the GetActivityStreamsUndo and
	// SetActivityStreamsUndo methods to access and set this property.
	IsActivityStreamsUndo() bool
	// IsActivityStreamsUpdate returns true if this property has a type of
	// "Update". When true, use the GetActivityStreamsUpdate and
	// SetActivityStreamsUpdate methods to access and set this property.
	IsActivityStreamsUpdate() bool
	// IsActivityStreamsVideo returns true if this property has a type of
	// "Video". When true, use the GetActivityStreamsVideo and
	// SetActivityStreamsVideo methods to access and set this property.
	IsActivityStreamsVideo() bool
	// IsActivityStreamsView returns true if this property has a type of
	// "View". When true, use the GetActivityStreamsView and
	// SetActivityStreamsView methods to access and set this property.
	IsActivityStreamsView() bool
	// IsForgeFedBranch returns true if this property has a type of "Branch".
	// When true, use the GetForgeFedBranch and SetForgeFedBranch methods
	// to access and set this property.
	IsForgeFedBranch() bool
	// IsForgeFedCommit returns true if this property has a type of "Commit".
	// When true, use the GetForgeFedCommit and SetForgeFedCommit methods
	// to access and set this property.
	IsForgeFedCommit() bool
	// IsForgeFedPush returns true if this property has a type of "Push". When
	// true, use the GetForgeFedPush and SetForgeFedPush methods to access
	// and set this property.
	IsForgeFedPush() bool
	// IsForgeFedRepository returns true if this property has a type of
	// "Repository". When true, use the GetForgeFedRepository and
	// SetForgeFedRepository methods to access and set this property.
	IsForgeFedRepository() bool
	// IsForgeFedTicket returns true if this property has a type of "Ticket".
	// When true, use the GetForgeFedTicket and SetForgeFedTicket methods
	// to access and set this property.
	IsForgeFedTicket() bool
	// IsForgeFedTicketDependency returns true if this property has a type of
	// "TicketDependency". When true, use the GetForgeFedTicketDependency
	// and SetForgeFedTicketDependency methods to access and set this
	// property.
	IsForgeFedTicketDependency() bool
	// IsIRI returns true if this property is an IRI. When true, use GetIRI
	// and SetIRI to access and set this property
	IsIRI() bool
	// IsTootEmoji returns true if this property has a type of "Emoji". When
	// true, use the GetTootEmoji and SetTootEmoji methods to access and
	// set this property.
	IsTootEmoji() bool
	// IsTootIdentityProof returns true if this property has a type of
	// "IdentityProof". When true, use the GetTootIdentityProof and
	// SetTootIdentityProof methods to access and set this property.
	IsTootIdentityProof() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsBccPropertyIterator) bool
	// Name returns the name of this property: "ActivityStreamsBcc".
	Name() string
	// Next returns the next iterator, or nil if there is no next iterator.
	Next() ActivityStreamsBccPropertyIterator
	// Prev returns the previous iterator, or nil if there is no previous
	// iterator.
	Prev() ActivityStreamsBccPropertyIterator
	// SetActivityStreamsAccept sets the value of this property. Calling
	// IsActivityStreamsAccept afterwards returns true.
	SetActivityStreamsAccept(v ActivityStreamsAccept)
	// SetActivityStreamsActivity sets the value of this property. Calling
	// IsActivityStreamsActivity afterwards returns true.
	SetActivityStreamsActivity(v ActivityStreamsActivity)
	// SetActivityStreamsAdd sets the value of this property. Calling
	// IsActivityStreamsAdd afterwards returns true.
	SetActivityStreamsAdd(v ActivityStreamsAdd)
	// SetActivityStreamsAnnounce sets the value of this property. Calling
	// IsActivityStreamsAnnounce afterwards returns true.
	SetActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// SetActivityStreamsApplication sets the value of this property. Calling
	// IsActivityStreamsApplication afterwards returns true.
	SetActivityStreamsApplication(v ActivityStreamsApplication)
	// SetActivityStreamsArrive sets the value of this property. Calling
	// IsActivityStreamsArrive afterwards returns true.
	SetActivityStreamsArrive(v ActivityStreamsArrive)
	// SetActivityStreamsArticle sets the value of this property. Calling
	// IsActivityStreamsArticle afterwards returns true.
	SetActivityStreamsArticle(v ActivityStreamsArticle)
	// SetActivityStreamsAudio sets the value of this property. Calling
	// IsActivityStreamsAudio afterwards returns true.
	SetActivityStreamsAudio(v ActivityStreamsAudio)
	// SetActivityStreamsBlock sets the value of this property. Calling
	// IsActivityStreamsBlock afterwards returns true.
	SetActivityStreamsBlock(v ActivityStreamsBlock)
	// SetActivityStreamsCollection sets the value of this property. Calling
	// IsActivityStreamsCollection afterwards returns true.
	SetActivityStreamsCollection(v ActivityStreamsCollection)
	// SetActivityStreamsCollectionPage sets the value of this property.
	// Calling IsActivityStreamsCollectionPage afterwards returns true.
	SetActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// SetActivityStreamsCreate sets the value of this property. Calling
	// IsActivityStreamsCreate afterwards returns true.
	SetActivityStreamsCreate(v ActivityStreamsCreate)
	// SetActivityStreamsDelete sets the value of this property. Calling
	// IsActivityStreamsDelete afterwards returns true.
	SetActivityStreamsDelete(v ActivityStreamsDelete)
	// SetActivityStreamsDislike sets the value of this property. Calling
	// IsActivityStreamsDislike afterwards returns true.
	SetActivityStreamsDislike(v ActivityStreamsDislike)
	// SetActivityStreamsDocument sets the value of this property. Calling
	// IsActivityStreamsDocument afterwards returns true.
	SetActivityStreamsDocument(v ActivityStreamsDocument)
	// SetActivityStreamsEvent sets the value of this property. Calling
	// IsActivityStreamsEvent afterwards returns true.
	SetActivityStreamsEvent(v ActivityStreamsEvent)
	// SetActivityStreamsFlag sets the value of this property. Calling
	// IsActivityStreamsFlag afterwards returns true.
	SetActivityStreamsFlag(v ActivityStreamsFlag)
	// SetActivityStreamsFollow sets the value of this property. Calling
	// IsActivityStreamsFollow afterwards returns true.
	SetActivityStreamsFollow(v ActivityStreamsFollow)
	// SetActivityStreamsGroup sets the value of this property. Calling
	// IsActivityStreamsGroup afterwards returns true.
	SetActivityStreamsGroup(v ActivityStreamsGroup)
	// SetActivityStreamsIgnore sets the value of this property. Calling
	// IsActivityStreamsIgnore afterwards returns true.
	SetActivityStreamsIgnore(v ActivityStreamsIgnore)
	// SetActivityStreamsImage sets the value of this property. Calling
	// IsActivityStreamsImage afterwards returns true.
	SetActivityStreamsImage(v ActivityStreamsImage)
	// SetActivityStreamsIntransitiveActivity sets the value of this property.
	// Calling IsActivityStreamsIntransitiveActivity afterwards returns
	// true.
	SetActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// SetActivityStreamsInvite sets the value of this property. Calling
	// IsActivityStreamsInvite afterwards returns true.
	SetActivityStreamsInvite(v ActivityStreamsInvite)
	// SetActivityStreamsJoin sets the value of this property. Calling
	// IsActivityStreamsJoin afterwards returns true.
	SetActivityStreamsJoin(v ActivityStreamsJoin)
	// SetActivityStreamsLeave sets the value of this property. Calling
	// IsActivityStreamsLeave afterwards returns true.
	SetActivityStreamsLeave(v ActivityStreamsLeave)
	// SetActivityStreamsLike sets the value of this property. Calling
	// IsActivityStreamsLike afterwards returns true.
	SetActivityStreamsLike(v ActivityStreamsLike)
	// SetActivityStreamsLink sets the value of this property. Calling
	// IsActivityStreamsLink afterwards returns true.
	SetActivityStreamsLink(v ActivityStreamsLink)
	// SetActivityStreamsListen sets the value of this property. Calling
	// IsActivityStreamsListen afterwards returns true.
	SetActivityStreamsListen(v ActivityStreamsListen)
	// SetActivityStreamsMention sets the value of this property. Calling
	// IsActivityStreamsMention afterwards returns true.
	SetActivityStreamsMention(v ActivityStreamsMention)
	// SetActivityStreamsMove sets the value of this property. Calling
	// IsActivityStreamsMove afterwards returns true.
	SetActivityStreamsMove(v ActivityStreamsMove)
	// SetActivityStreamsNote sets the value of this property. Calling
	// IsActivityStreamsNote afterwards returns true.
	SetActivityStreamsNote(v ActivityStreamsNote)
	// SetActivityStreamsObject sets the value of this property. Calling
	// IsActivityStreamsObject afterwards returns true.
	SetActivityStreamsObject(v ActivityStreamsObject)
	// SetActivityStreamsOffer sets the value of this property. Calling
	// IsActivityStreamsOffer afterwards returns true.
	SetActivityStreamsOffer(v ActivityStreamsOffer)
	// SetActivityStreamsOrderedCollection sets the value of this property.
	// Calling IsActivityStreamsOrderedCollection afterwards returns true.
	SetActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// SetActivityStreamsOrderedCollectionPage sets the value of this
	// property. Calling IsActivityStreamsOrderedCollectionPage afterwards
	// returns true.
	SetActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// SetActivityStreamsOrganization sets the value of this property. Calling
	// IsActivityStreamsOrganization afterwards returns true.
	SetActivityStreamsOrganization(v ActivityStreamsOrganization)
	// SetActivityStreamsPage sets the value of this property. Calling
	// IsActivityStreamsPage afterwards returns true.
	SetActivityStreamsPage(v ActivityStreamsPage)
	// SetActivityStreamsPerson sets the value of this property. Calling
	// IsActivityStreamsPerson afterwards returns true.
	SetActivityStreamsPerson(v ActivityStreamsPerson)
	// SetActivityStreamsPlace sets the value of this property. Calling
	// IsActivityStreamsPlace afterwards returns true.
	SetActivityStreamsPlace(v ActivityStreamsPlace)
	// SetActivityStreamsProfile sets the value of this property. Calling
	// IsActivityStreamsProfile afterwards returns true.
	SetActivityStreamsProfile(v ActivityStreamsProfile)
	// SetActivityStreamsQuestion sets the value of this property. Calling
	// IsActivityStreamsQuestion afterwards returns true.
	SetActivityStreamsQuestion(v ActivityStreamsQuestion)
	// SetActivityStreamsRead sets the value of this property. Calling
	// IsActivityStreamsRead afterwards returns true.
	SetActivityStreamsRead(v ActivityStreamsRead)
	// SetActivityStreamsReject sets the value of this property. Calling
	// IsActivityStreamsReject afterwards returns true.
	SetActivityStreamsReject(v ActivityStreamsReject)
	// SetActivityStreamsRelationship sets the value of this property. Calling
	// IsActivityStreamsRelationship afterwards returns true.
	SetActivityStreamsRelationship(v ActivityStreamsRelationship)
	// SetActivityStreamsRemove sets the value of this property. Calling
	// IsActivityStreamsRemove afterwards returns true.
	SetActivityStreamsRemove(v ActivityStreamsRemove)
	// SetActivityStreamsService sets the value of this property. Calling
	// IsActivityStreamsService afterwards returns true.
	SetActivityStreamsService(v ActivityStreamsService)
	// SetActivityStreamsTentativeAccept sets the value of this property.
	// Calling IsActivityStreamsTentativeAccept afterwards returns true.
	SetActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// SetActivityStreamsTentativeReject sets the value of this property.
	// Calling IsActivityStreamsTentativeReject afterwards returns true.
	SetActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// SetActivityStreamsTombstone sets the value of this property. Calling
	// IsActivityStreamsTombstone afterwards returns true.
	SetActivityStreamsTombstone(v ActivityStreamsTombstone)
	// SetActivityStreamsTravel sets the value of this property. Calling
	// IsActivityStreamsTravel afterwards returns true.
	SetActivityStreamsTravel(v ActivityStreamsTravel)
	// SetActivityStreamsUndo sets the value of this property. Calling
	// IsActivityStreamsUndo afterwards returns true.
	SetActivityStreamsUndo(v ActivityStreamsUndo)
	// SetActivityStreamsUpdate sets the value of this property. Calling
	// IsActivityStreamsUpdate afterwards returns true.
	SetActivityStreamsUpdate(v ActivityStreamsUpdate)
	// SetActivityStreamsVideo sets the value of this property. Calling
	// IsActivityStreamsVideo afterwards returns true.
	SetActivityStreamsVideo(v ActivityStreamsVideo)
	// SetActivityStreamsView sets the value of this property. Calling
	// IsActivityStreamsView afterwards returns true.
	SetActivityStreamsView(v ActivityStreamsView)
	// SetForgeFedBranch sets the value of this property. Calling
	// IsForgeFedBranch afterwards returns true.
	SetForgeFedBranch(v ForgeFedBranch)
	// SetForgeFedCommit sets the value of this property. Calling
	// IsForgeFedCommit afterwards returns true.
	SetForgeFedCommit(v ForgeFedCommit)
	// SetForgeFedPush sets the value of this property. Calling IsForgeFedPush
	// afterwards returns true.
	SetForgeFedPush(v ForgeFedPush)
	// SetForgeFedRepository sets the value of this property. Calling
	// IsForgeFedRepository afterwards returns true.
	SetForgeFedRepository(v ForgeFedRepository)
	// SetForgeFedTicket sets the value of this property. Calling
	// IsForgeFedTicket afterwards returns true.
	SetForgeFedTicket(v ForgeFedTicket)
	// SetForgeFedTicketDependency sets the value of this property. Calling
	// IsForgeFedTicketDependency afterwards returns true.
	SetForgeFedTicketDependency(v ForgeFedTicketDependency)
	// SetIRI sets the value of this property. Calling IsIRI afterwards
	// returns true.
	SetIRI(v *url.URL)
	// SetTootEmoji sets the value of this property. Calling IsTootEmoji
	// afterwards returns true.
	SetTootEmoji(v TootEmoji)
	// SetTootIdentityProof sets the value of this property. Calling
	// IsTootIdentityProof afterwards returns true.
	SetTootIdentityProof(v TootIdentityProof)
	// SetType attempts to set the property for the arbitrary type. Returns an
	// error if it is not a valid type to set on this property.
	SetType(t Type) error
}

ActivityStreamsBccPropertyIterator represents a single value for the "bcc" property.

type ActivityStreamsBlock

type ActivityStreamsBlock interface {
	// GetActivityStreamsActor returns the "actor" property if it exists, and
	// nil otherwise.
	GetActivityStreamsActor() ActivityStreamsActorProperty
	// GetActivityStreamsAltitude returns the "altitude" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAltitude() ActivityStreamsAltitudeProperty
	// GetActivityStreamsAttachment returns the "attachment" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAttachment() ActivityStreamsAttachmentProperty
	// GetActivityStreamsAttributedTo returns the "attributedTo" property if
	// it exists, and nil otherwise.
	GetActivityStreamsAttributedTo() ActivityStreamsAttributedToProperty
	// GetActivityStreamsAudience returns the "audience" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAudience() ActivityStreamsAudienceProperty
	// GetActivityStreamsBcc returns the "bcc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBcc() ActivityStreamsBccProperty
	// GetActivityStreamsBto returns the "bto" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBto() ActivityStreamsBtoProperty
	// GetActivityStreamsCc returns the "cc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsCc() ActivityStreamsCcProperty
	// GetActivityStreamsContent returns the "content" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContent() ActivityStreamsContentProperty
	// GetActivityStreamsContext returns the "context" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContext() ActivityStreamsContextProperty
	// GetActivityStreamsDuration returns the "duration" property if it
	// exists, and nil otherwise.
	GetActivityStreamsDuration() ActivityStreamsDurationProperty
	// GetActivityStreamsEndTime returns the "endTime" property if it exists,
	// and nil otherwise.
	GetActivityStreamsEndTime() ActivityStreamsEndTimeProperty
	// GetActivityStreamsGenerator returns the "generator" property if it
	// exists, and nil otherwise.
	GetActivityStreamsGenerator() ActivityStreamsGeneratorProperty
	// GetActivityStreamsIcon returns the "icon" property if it exists, and
	// nil otherwise.
	GetActivityStreamsIcon() ActivityStreamsIconProperty
	// GetActivityStreamsImage returns the "image" property if it exists, and
	// nil otherwise.
	GetActivityStreamsImage() ActivityStreamsImageProperty
	// GetActivityStreamsInReplyTo returns the "inReplyTo" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInReplyTo() ActivityStreamsInReplyToProperty
	// GetActivityStreamsInstrument returns the "instrument" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInstrument() ActivityStreamsInstrumentProperty
	// GetActivityStreamsLikes returns the "likes" property if it exists, and
	// nil otherwise.
	GetActivityStreamsLikes() ActivityStreamsLikesProperty
	// GetActivityStreamsLocation returns the "location" property if it
	// exists, and nil otherwise.
	GetActivityStreamsLocation() ActivityStreamsLocationProperty
	// GetActivityStreamsMediaType returns the "mediaType" property if it
	// exists, and nil otherwise.
	GetActivityStreamsMediaType() ActivityStreamsMediaTypeProperty
	// GetActivityStreamsName returns the "name" property if it exists, and
	// nil otherwise.
	GetActivityStreamsName() ActivityStreamsNameProperty
	// GetActivityStreamsObject returns the "object" property if it exists,
	// and nil otherwise.
	GetActivityStreamsObject() ActivityStreamsObjectProperty
	// GetActivityStreamsOrigin returns the "origin" property if it exists,
	// and nil otherwise.
	GetActivityStreamsOrigin() ActivityStreamsOriginProperty
	// GetActivityStreamsPreview returns the "preview" property if it exists,
	// and nil otherwise.
	GetActivityStreamsPreview() ActivityStreamsPreviewProperty
	// GetActivityStreamsPublished returns the "published" property if it
	// exists, and nil otherwise.
	GetActivityStreamsPublished() ActivityStreamsPublishedProperty
	// GetActivityStreamsReplies returns the "replies" property if it exists,
	// and nil otherwise.
	GetActivityStreamsReplies() ActivityStreamsRepliesProperty
	// GetActivityStreamsResult returns the "result" property if it exists,
	// and nil otherwise.
	GetActivityStreamsResult() ActivityStreamsResultProperty
	// GetActivityStreamsShares returns the "shares" property if it exists,
	// and nil otherwise.
	GetActivityStreamsShares() ActivityStreamsSharesProperty
	// GetActivityStreamsSource returns the "source" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSource() ActivityStreamsSourceProperty
	// GetActivityStreamsStartTime returns the "startTime" property if it
	// exists, and nil otherwise.
	GetActivityStreamsStartTime() ActivityStreamsStartTimeProperty
	// GetActivityStreamsSummary returns the "summary" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSummary() ActivityStreamsSummaryProperty
	// GetActivityStreamsTag returns the "tag" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTag() ActivityStreamsTagProperty
	// GetActivityStreamsTarget returns the "target" property if it exists,
	// and nil otherwise.
	GetActivityStreamsTarget() ActivityStreamsTargetProperty
	// GetActivityStreamsTo returns the "to" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTo() ActivityStreamsToProperty
	// GetActivityStreamsUpdated returns the "updated" property if it exists,
	// and nil otherwise.
	GetActivityStreamsUpdated() ActivityStreamsUpdatedProperty
	// GetActivityStreamsUrl returns the "url" property if it exists, and nil
	// otherwise.
	GetActivityStreamsUrl() ActivityStreamsUrlProperty
	// GetForgeFedTeam returns the "team" property if it exists, and nil
	// otherwise.
	GetForgeFedTeam() ForgeFedTeamProperty
	// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
	// it exists, and nil otherwise.
	GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
	// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
	// it exists, and nil otherwise.
	GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
	// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
	GetJSONLDId() JSONLDIdProperty
	// GetJSONLDType returns the "type" property if it exists, and nil
	// otherwise.
	GetJSONLDType() JSONLDTypeProperty
	// GetTypeName returns the name of this type.
	GetTypeName() string
	// GetUnknownProperties returns the unknown properties for the Block type.
	// Note that this should not be used by app developers. It is only
	// used to help determine which implementation is LessThan the other.
	// Developers who are creating a different implementation of this
	// type's interface can use this method in their LessThan
	// implementation, but routine ActivityPub applications should not use
	// this to bypass the code generation tool.
	GetUnknownProperties() map[string]interface{}
	// IsExtending returns true if the Block type extends from the other type.
	IsExtending(other Type) bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this type and the specific properties that are set. The value
	// in the map is the alias used to import the type and its properties.
	JSONLDContext() map[string]string
	// LessThan computes if this Block is lesser, with an arbitrary but stable
	// determination.
	LessThan(o ActivityStreamsBlock) bool
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format.
	Serialize() (map[string]interface{}, error)
	// SetActivityStreamsActor sets the "actor" property.
	SetActivityStreamsActor(i ActivityStreamsActorProperty)
	// SetActivityStreamsAltitude sets the "altitude" property.
	SetActivityStreamsAltitude(i ActivityStreamsAltitudeProperty)
	// SetActivityStreamsAttachment sets the "attachment" property.
	SetActivityStreamsAttachment(i ActivityStreamsAttachmentProperty)
	// SetActivityStreamsAttributedTo sets the "attributedTo" property.
	SetActivityStreamsAttributedTo(i ActivityStreamsAttributedToProperty)
	// SetActivityStreamsAudience sets the "audience" property.
	SetActivityStreamsAudience(i ActivityStreamsAudienceProperty)
	// SetActivityStreamsBcc sets the "bcc" property.
	SetActivityStreamsBcc(i ActivityStreamsBccProperty)
	// SetActivityStreamsBto sets the "bto" property.
	SetActivityStreamsBto(i ActivityStreamsBtoProperty)
	// SetActivityStreamsCc sets the "cc" property.
	SetActivityStreamsCc(i ActivityStreamsCcProperty)
	// SetActivityStreamsContent sets the "content" property.
	SetActivityStreamsContent(i ActivityStreamsContentProperty)
	// SetActivityStreamsContext sets the "context" property.
	SetActivityStreamsContext(i ActivityStreamsContextProperty)
	// SetActivityStreamsDuration sets the "duration" property.
	SetActivityStreamsDuration(i ActivityStreamsDurationProperty)
	// SetActivityStreamsEndTime sets the "endTime" property.
	SetActivityStreamsEndTime(i ActivityStreamsEndTimeProperty)
	// SetActivityStreamsGenerator sets the "generator" property.
	SetActivityStreamsGenerator(i ActivityStreamsGeneratorProperty)
	// SetActivityStreamsIcon sets the "icon" property.
	SetActivityStreamsIcon(i ActivityStreamsIconProperty)
	// SetActivityStreamsImage sets the "image" property.
	SetActivityStreamsImage(i ActivityStreamsImageProperty)
	// SetActivityStreamsInReplyTo sets the "inReplyTo" property.
	SetActivityStreamsInReplyTo(i ActivityStreamsInReplyToProperty)
	// SetActivityStreamsInstrument sets the "instrument" property.
	SetActivityStreamsInstrument(i ActivityStreamsInstrumentProperty)
	// SetActivityStreamsLikes sets the "likes" property.
	SetActivityStreamsLikes(i ActivityStreamsLikesProperty)
	// SetActivityStreamsLocation sets the "location" property.
	SetActivityStreamsLocation(i ActivityStreamsLocationProperty)
	// SetActivityStreamsMediaType sets the "mediaType" property.
	SetActivityStreamsMediaType(i ActivityStreamsMediaTypeProperty)
	// SetActivityStreamsName sets the "name" property.
	SetActivityStreamsName(i ActivityStreamsNameProperty)
	// SetActivityStreamsObject sets the "object" property.
	SetActivityStreamsObject(i ActivityStreamsObjectProperty)
	// SetActivityStreamsOrigin sets the "origin" property.
	SetActivityStreamsOrigin(i ActivityStreamsOriginProperty)
	// SetActivityStreamsPreview sets the "preview" property.
	SetActivityStreamsPreview(i ActivityStreamsPreviewProperty)
	// SetActivityStreamsPublished sets the "published" property.
	SetActivityStreamsPublished(i ActivityStreamsPublishedProperty)
	// SetActivityStreamsReplies sets the "replies" property.
	SetActivityStreamsReplies(i ActivityStreamsRepliesProperty)
	// SetActivityStreamsResult sets the "result" property.
	SetActivityStreamsResult(i ActivityStreamsResultProperty)
	// SetActivityStreamsShares sets the "shares" property.
	SetActivityStreamsShares(i ActivityStreamsSharesProperty)
	// SetActivityStreamsSource sets the "source" property.
	SetActivityStreamsSource(i ActivityStreamsSourceProperty)
	// SetActivityStreamsStartTime sets the "startTime" property.
	SetActivityStreamsStartTime(i ActivityStreamsStartTimeProperty)
	// SetActivityStreamsSummary sets the "summary" property.
	SetActivityStreamsSummary(i ActivityStreamsSummaryProperty)
	// SetActivityStreamsTag sets the "tag" property.
	SetActivityStreamsTag(i ActivityStreamsTagProperty)
	// SetActivityStreamsTarget sets the "target" property.
	SetActivityStreamsTarget(i ActivityStreamsTargetProperty)
	// SetActivityStreamsTo sets the "to" property.
	SetActivityStreamsTo(i ActivityStreamsToProperty)
	// SetActivityStreamsUpdated sets the "updated" property.
	SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
	// SetActivityStreamsUrl sets the "url" property.
	SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
	// SetForgeFedTeam sets the "team" property.
	SetForgeFedTeam(i ForgeFedTeamProperty)
	// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
	SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
	// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
	SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
	// SetJSONLDId sets the "id" property.
	SetJSONLDId(i JSONLDIdProperty)
	// SetJSONLDType sets the "type" property.
	SetJSONLDType(i JSONLDTypeProperty)
	// VocabularyURI returns the vocabulary's URI as a string.
	VocabularyURI() string
}

Indicates that the actor is blocking the object. Blocking is a stronger form of Ignore. The typical use is to support social systems that allow one user to block activities or content of other users. The target and origin typically have no defined meaning.

Example 37 (https://www.w3.org/TR/activitystreams-vocabulary/#ex173-jsonld):

{
  "actor": "http://sally.example.org",
  "object": "http://joe.example.org",
  "summary": "Sally blocked Joe",
  "type": "Block"
}

type ActivityStreamsBtoProperty

type ActivityStreamsBtoProperty interface {
	// AppendActivityStreamsAccept appends a Accept value to the back of a
	// list of the property "bto". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsAccept(v ActivityStreamsAccept)
	// AppendActivityStreamsActivity appends a Activity value to the back of a
	// list of the property "bto". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsActivity(v ActivityStreamsActivity)
	// AppendActivityStreamsAdd appends a Add value to the back of a list of
	// the property "bto". Invalidates iterators that are traversing using
	// Prev.
	AppendActivityStreamsAdd(v ActivityStreamsAdd)
	// AppendActivityStreamsAnnounce appends a Announce value to the back of a
	// list of the property "bto". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// AppendActivityStreamsApplication appends a Application value to the
	// back of a list of the property "bto". Invalidates iterators that
	// are traversing using Prev.
	AppendActivityStreamsApplication(v ActivityStreamsApplication)
	// AppendActivityStreamsArrive appends a Arrive value to the back of a
	// list of the property "bto". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsArrive(v ActivityStreamsArrive)
	// AppendActivityStreamsArticle appends a Article value to the back of a
	// list of the property "bto". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsArticle(v ActivityStreamsArticle)
	// AppendActivityStreamsAudio appends a Audio value to the back of a list
	// of the property "bto". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsAudio(v ActivityStreamsAudio)
	// AppendActivityStreamsBlock appends a Block value to the back of a list
	// of the property "bto". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsBlock(v ActivityStreamsBlock)
	// AppendActivityStreamsCollection appends a Collection value to the back
	// of a list of the property "bto". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsCollection(v ActivityStreamsCollection)
	// AppendActivityStreamsCollectionPage appends a CollectionPage value to
	// the back of a list of the property "bto". Invalidates iterators
	// that are traversing using Prev.
	AppendActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// AppendActivityStreamsCreate appends a Create value to the back of a
	// list of the property "bto". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsCreate(v ActivityStreamsCreate)
	// AppendActivityStreamsDelete appends a Delete value to the back of a
	// list of the property "bto". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDelete(v ActivityStreamsDelete)
	// AppendActivityStreamsDislike appends a Dislike value to the back of a
	// list of the property "bto". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDislike(v ActivityStreamsDislike)
	// AppendActivityStreamsDocument appends a Document value to the back of a
	// list of the property "bto". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDocument(v ActivityStreamsDocument)
	// AppendActivityStreamsEvent appends a Event value to the back of a list
	// of the property "bto". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsEvent(v ActivityStreamsEvent)
	// AppendActivityStreamsFlag appends a Flag value to the back of a list of
	// the property "bto". Invalidates iterators that are traversing using
	// Prev.
	AppendActivityStreamsFlag(v ActivityStreamsFlag)
	// AppendActivityStreamsFollow appends a Follow value to the back of a
	// list of the property "bto". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsFollow(v ActivityStreamsFollow)
	// AppendActivityStreamsGroup appends a Group value to the back of a list
	// of the property "bto". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsGroup(v ActivityStreamsGroup)
	// AppendActivityStreamsIgnore appends a Ignore value to the back of a
	// list of the property "bto". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsIgnore(v ActivityStreamsIgnore)
	// AppendActivityStreamsImage appends a Image value to the back of a list
	// of the property "bto". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsImage(v ActivityStreamsImage)
	// AppendActivityStreamsIntransitiveActivity appends a
	// IntransitiveActivity value to the back of a list of the property
	// "bto". Invalidates iterators that are traversing using Prev.
	AppendActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// AppendActivityStreamsInvite appends a Invite value to the back of a
	// list of the property "bto". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsInvite(v ActivityStreamsInvite)
	// AppendActivityStreamsJoin appends a Join value to the back of a list of
	// the property "bto". Invalidates iterators that are traversing using
	// Prev.
	AppendActivityStreamsJoin(v ActivityStreamsJoin)
	// AppendActivityStreamsLeave appends a Leave value to the back of a list
	// of the property "bto". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsLeave(v ActivityStreamsLeave)
	// AppendActivityStreamsLike appends a Like value to the back of a list of
	// the property "bto". Invalidates iterators that are traversing using
	// Prev.
	AppendActivityStreamsLike(v ActivityStreamsLike)
	// AppendActivityStreamsLink appends a Link value to the back of a list of
	// the property "bto". Invalidates iterators that are traversing using
	// Prev.
	AppendActivityStreamsLink(v ActivityStreamsLink)
	// AppendActivityStreamsListen appends a Listen value to the back of a
	// list of the property "bto". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsListen(v ActivityStreamsListen)
	// AppendActivityStreamsMention appends a Mention value to the back of a
	// list of the property "bto". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsMention(v ActivityStreamsMention)
	// AppendActivityStreamsMove appends a Move value to the back of a list of
	// the property "bto". Invalidates iterators that are traversing using
	// Prev.
	AppendActivityStreamsMove(v ActivityStreamsMove)
	// AppendActivityStreamsNote appends a Note value to the back of a list of
	// the property "bto". Invalidates iterators that are traversing using
	// Prev.
	AppendActivityStreamsNote(v ActivityStreamsNote)
	// AppendActivityStreamsObject appends a Object value to the back of a
	// list of the property "bto". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsObject(v ActivityStreamsObject)
	// AppendActivityStreamsOffer appends a Offer value to the back of a list
	// of the property "bto". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsOffer(v ActivityStreamsOffer)
	// AppendActivityStreamsOrderedCollection appends a OrderedCollection
	// value to the back of a list of the property "bto". Invalidates
	// iterators that are traversing using Prev.
	AppendActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// AppendActivityStreamsOrderedCollectionPage appends a
	// OrderedCollectionPage value to the back of a list of the property
	// "bto". Invalidates iterators that are traversing using Prev.
	AppendActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// AppendActivityStreamsOrganization appends a Organization value to the
	// back of a list of the property "bto". Invalidates iterators that
	// are traversing using Prev.
	AppendActivityStreamsOrganization(v ActivityStreamsOrganization)
	// AppendActivityStreamsPage appends a Page value to the back of a list of
	// the property "bto". Invalidates iterators that are traversing using
	// Prev.
	AppendActivityStreamsPage(v ActivityStreamsPage)
	// AppendActivityStreamsPerson appends a Person value to the back of a
	// list of the property "bto". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsPerson(v ActivityStreamsPerson)
	// AppendActivityStreamsPlace appends a Place value to the back of a list
	// of the property "bto". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsPlace(v ActivityStreamsPlace)
	// AppendActivityStreamsProfile appends a Profile value to the back of a
	// list of the property "bto". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsProfile(v ActivityStreamsProfile)
	// AppendActivityStreamsQuestion appends a Question value to the back of a
	// list of the property "bto". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsQuestion(v ActivityStreamsQuestion)
	// AppendActivityStreamsRead appends a Read value to the back of a list of
	// the property "bto". Invalidates iterators that are traversing using
	// Prev.
	AppendActivityStreamsRead(v ActivityStreamsRead)
	// AppendActivityStreamsReject appends a Reject value to the back of a
	// list of the property "bto". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsReject(v ActivityStreamsReject)
	// AppendActivityStreamsRelationship appends a Relationship value to the
	// back of a list of the property "bto". Invalidates iterators that
	// are traversing using Prev.
	AppendActivityStreamsRelationship(v ActivityStreamsRelationship)
	// AppendActivityStreamsRemove appends a Remove value to the back of a
	// list of the property "bto". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsRemove(v ActivityStreamsRemove)
	// AppendActivityStreamsService appends a Service value to the back of a
	// list of the property "bto". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsService(v ActivityStreamsService)
	// AppendActivityStreamsTentativeAccept appends a TentativeAccept value to
	// the back of a list of the property "bto". Invalidates iterators
	// that are traversing using Prev.
	AppendActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// AppendActivityStreamsTentativeReject appends a TentativeReject value to
	// the back of a list of the property "bto". Invalidates iterators
	// that are traversing using Prev.
	AppendActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// AppendActivityStreamsTombstone appends a Tombstone value to the back of
	// a list of the property "bto". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsTombstone(v ActivityStreamsTombstone)
	// AppendActivityStreamsTravel appends a Travel value to the back of a
	// list of the property "bto". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsTravel(v ActivityStreamsTravel)
	// AppendActivityStreamsUndo appends a Undo value to the back of a list of
	// the property "bto". Invalidates iterators that are traversing using
	// Prev.
	AppendActivityStreamsUndo(v ActivityStreamsUndo)
	// AppendActivityStreamsUpdate appends a Update value to the back of a
	// list of the property "bto". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsUpdate(v ActivityStreamsUpdate)
	// AppendActivityStreamsVideo appends a Video value to the back of a list
	// of the property "bto". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsVideo(v ActivityStreamsVideo)
	// AppendActivityStreamsView appends a View value to the back of a list of
	// the property "bto". Invalidates iterators that are traversing using
	// Prev.
	AppendActivityStreamsView(v ActivityStreamsView)
	// AppendForgeFedBranch appends a Branch value to the back of a list of
	// the property "bto". Invalidates iterators that are traversing using
	// Prev.
	AppendForgeFedBranch(v ForgeFedBranch)
	// AppendForgeFedCommit appends a Commit value to the back of a list of
	// the property "bto". Invalidates iterators that are traversing using
	// Prev.
	AppendForgeFedCommit(v ForgeFedCommit)
	// AppendForgeFedPush appends a Push value to the back of a list of the
	// property "bto". Invalidates iterators that are traversing using
	// Prev.
	AppendForgeFedPush(v ForgeFedPush)
	// AppendForgeFedRepository appends a Repository value to the back of a
	// list of the property "bto". Invalidates iterators that are
	// traversing using Prev.
	AppendForgeFedRepository(v ForgeFedRepository)
	// AppendForgeFedTicket appends a Ticket value to the back of a list of
	// the property "bto". Invalidates iterators that are traversing using
	// Prev.
	AppendForgeFedTicket(v ForgeFedTicket)
	// AppendForgeFedTicketDependency appends a TicketDependency value to the
	// back of a list of the property "bto". Invalidates iterators that
	// are traversing using Prev.
	AppendForgeFedTicketDependency(v ForgeFedTicketDependency)
	// AppendIRI appends an IRI value to the back of a list of the property
	// "bto"
	AppendIRI(v *url.URL)
	// AppendTootEmoji appends a Emoji value to the back of a list of the
	// property "bto". Invalidates iterators that are traversing using
	// Prev.
	AppendTootEmoji(v TootEmoji)
	// AppendTootIdentityProof appends a IdentityProof value to the back of a
	// list of the property "bto". Invalidates iterators that are
	// traversing using Prev.
	AppendTootIdentityProof(v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "bto". Invalidates iterators that are traversing using
	// Prev. Returns an error if the type is not a valid one to set for
	// this property.
	AppendType(t Type) error
	// At returns the property value for the specified index. Panics if the
	// index is out of bounds.
	At(index int) ActivityStreamsBtoPropertyIterator
	// Begin returns the first iterator, or nil if empty. Can be used with the
	// iterator's Next method and this property's End method to iterate
	// from front to back through all values.
	Begin() ActivityStreamsBtoPropertyIterator
	// Empty returns returns true if there are no elements.
	Empty() bool
	// End returns beyond-the-last iterator, which is nil. Can be used with
	// the iterator's Next method and this property's Begin method to
	// iterate from front to back through all values.
	End() ActivityStreamsBtoPropertyIterator
	// InsertActivityStreamsAccept inserts a Accept value at the specified
	// index for a property "bto". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAccept(idx int, v ActivityStreamsAccept)
	// InsertActivityStreamsActivity inserts a Activity value at the specified
	// index for a property "bto". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsActivity(idx int, v ActivityStreamsActivity)
	// InsertActivityStreamsAdd inserts a Add value at the specified index for
	// a property "bto". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertActivityStreamsAdd(idx int, v ActivityStreamsAdd)
	// InsertActivityStreamsAnnounce inserts a Announce value at the specified
	// index for a property "bto". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAnnounce(idx int, v ActivityStreamsAnnounce)
	// InsertActivityStreamsApplication inserts a Application value at the
	// specified index for a property "bto". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsApplication(idx int, v ActivityStreamsApplication)
	// InsertActivityStreamsArrive inserts a Arrive value at the specified
	// index for a property "bto". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsArrive(idx int, v ActivityStreamsArrive)
	// InsertActivityStreamsArticle inserts a Article value at the specified
	// index for a property "bto". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsArticle(idx int, v ActivityStreamsArticle)
	// InsertActivityStreamsAudio inserts a Audio value at the specified index
	// for a property "bto". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAudio(idx int, v ActivityStreamsAudio)
	// InsertActivityStreamsBlock inserts a Block value at the specified index
	// for a property "bto". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsBlock(idx int, v ActivityStreamsBlock)
	// InsertActivityStreamsCollection inserts a Collection value at the
	// specified index for a property "bto". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsCollection(idx int, v ActivityStreamsCollection)
	// InsertActivityStreamsCollectionPage inserts a CollectionPage value at
	// the specified index for a property "bto". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsCollectionPage(idx int, v ActivityStreamsCollectionPage)
	// InsertActivityStreamsCreate inserts a Create value at the specified
	// index for a property "bto". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsCreate(idx int, v ActivityStreamsCreate)
	// InsertActivityStreamsDelete inserts a Delete value at the specified
	// index for a property "bto". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDelete(idx int, v ActivityStreamsDelete)
	// InsertActivityStreamsDislike inserts a Dislike value at the specified
	// index for a property "bto". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDislike(idx int, v ActivityStreamsDislike)
	// InsertActivityStreamsDocument inserts a Document value at the specified
	// index for a property "bto". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDocument(idx int, v ActivityStreamsDocument)
	// InsertActivityStreamsEvent inserts a Event value at the specified index
	// for a property "bto". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsEvent(idx int, v ActivityStreamsEvent)
	// InsertActivityStreamsFlag inserts a Flag value at the specified index
	// for a property "bto". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsFlag(idx int, v ActivityStreamsFlag)
	// InsertActivityStreamsFollow inserts a Follow value at the specified
	// index for a property "bto". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsFollow(idx int, v ActivityStreamsFollow)
	// InsertActivityStreamsGroup inserts a Group value at the specified index
	// for a property "bto". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsGroup(idx int, v ActivityStreamsGroup)
	// InsertActivityStreamsIgnore inserts a Ignore value at the specified
	// index for a property "bto". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsIgnore(idx int, v ActivityStreamsIgnore)
	// InsertActivityStreamsImage inserts a Image value at the specified index
	// for a property "bto". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsImage(idx int, v ActivityStreamsImage)
	// InsertActivityStreamsIntransitiveActivity inserts a
	// IntransitiveActivity value at the specified index for a property
	// "bto". Existing elements at that index and higher are shifted back
	// once. Invalidates all iterators.
	InsertActivityStreamsIntransitiveActivity(idx int, v ActivityStreamsIntransitiveActivity)
	// InsertActivityStreamsInvite inserts a Invite value at the specified
	// index for a property "bto". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsInvite(idx int, v ActivityStreamsInvite)
	// InsertActivityStreamsJoin inserts a Join value at the specified index
	// for a property "bto". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsJoin(idx int, v ActivityStreamsJoin)
	// InsertActivityStreamsLeave inserts a Leave value at the specified index
	// for a property "bto". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsLeave(idx int, v ActivityStreamsLeave)
	// InsertActivityStreamsLike inserts a Like value at the specified index
	// for a property "bto". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsLike(idx int, v ActivityStreamsLike)
	// InsertActivityStreamsLink inserts a Link value at the specified index
	// for a property "bto". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsLink(idx int, v ActivityStreamsLink)
	// InsertActivityStreamsListen inserts a Listen value at the specified
	// index for a property "bto". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsListen(idx int, v ActivityStreamsListen)
	// InsertActivityStreamsMention inserts a Mention value at the specified
	// index for a property "bto". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsMention(idx int, v ActivityStreamsMention)
	// InsertActivityStreamsMove inserts a Move value at the specified index
	// for a property "bto". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsMove(idx int, v ActivityStreamsMove)
	// InsertActivityStreamsNote inserts a Note value at the specified index
	// for a property "bto". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsNote(idx int, v ActivityStreamsNote)
	// InsertActivityStreamsObject inserts a Object value at the specified
	// index for a property "bto". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsObject(idx int, v ActivityStreamsObject)
	// InsertActivityStreamsOffer inserts a Offer value at the specified index
	// for a property "bto". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsOffer(idx int, v ActivityStreamsOffer)
	// InsertActivityStreamsOrderedCollection inserts a OrderedCollection
	// value at the specified index for a property "bto". Existing
	// elements at that index and higher are shifted back once.
	// Invalidates all iterators.
	InsertActivityStreamsOrderedCollection(idx int, v ActivityStreamsOrderedCollection)
	// InsertActivityStreamsOrderedCollectionPage inserts a
	// OrderedCollectionPage value at the specified index for a property
	// "bto". Existing elements at that index and higher are shifted back
	// once. Invalidates all iterators.
	InsertActivityStreamsOrderedCollectionPage(idx int, v ActivityStreamsOrderedCollectionPage)
	// InsertActivityStreamsOrganization inserts a Organization value at the
	// specified index for a property "bto". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsOrganization(idx int, v ActivityStreamsOrganization)
	// InsertActivityStreamsPage inserts a Page value at the specified index
	// for a property "bto". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsPage(idx int, v ActivityStreamsPage)
	// InsertActivityStreamsPerson inserts a Person value at the specified
	// index for a property "bto". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsPerson(idx int, v ActivityStreamsPerson)
	// InsertActivityStreamsPlace inserts a Place value at the specified index
	// for a property "bto". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsPlace(idx int, v ActivityStreamsPlace)
	// InsertActivityStreamsProfile inserts a Profile value at the specified
	// index for a property "bto". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsProfile(idx int, v ActivityStreamsProfile)
	// InsertActivityStreamsQuestion inserts a Question value at the specified
	// index for a property "bto". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsQuestion(idx int, v ActivityStreamsQuestion)
	// InsertActivityStreamsRead inserts a Read value at the specified index
	// for a property "bto". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsRead(idx int, v ActivityStreamsRead)
	// InsertActivityStreamsReject inserts a Reject value at the specified
	// index for a property "bto". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsReject(idx int, v ActivityStreamsReject)
	// InsertActivityStreamsRelationship inserts a Relationship value at the
	// specified index for a property "bto". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsRelationship(idx int, v ActivityStreamsRelationship)
	// InsertActivityStreamsRemove inserts a Remove value at the specified
	// index for a property "bto". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsRemove(idx int, v ActivityStreamsRemove)
	// InsertActivityStreamsService inserts a Service value at the specified
	// index for a property "bto". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsService(idx int, v ActivityStreamsService)
	// InsertActivityStreamsTentativeAccept inserts a TentativeAccept value at
	// the specified index for a property "bto". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsTentativeAccept(idx int, v ActivityStreamsTentativeAccept)
	// InsertActivityStreamsTentativeReject inserts a TentativeReject value at
	// the specified index for a property "bto". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsTentativeReject(idx int, v ActivityStreamsTentativeReject)
	// InsertActivityStreamsTombstone inserts a Tombstone value at the
	// specified index for a property "bto". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsTombstone(idx int, v ActivityStreamsTombstone)
	// InsertActivityStreamsTravel inserts a Travel value at the specified
	// index for a property "bto". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsTravel(idx int, v ActivityStreamsTravel)
	// InsertActivityStreamsUndo inserts a Undo value at the specified index
	// for a property "bto". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsUndo(idx int, v ActivityStreamsUndo)
	// InsertActivityStreamsUpdate inserts a Update value at the specified
	// index for a property "bto". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsUpdate(idx int, v ActivityStreamsUpdate)
	// InsertActivityStreamsVideo inserts a Video value at the specified index
	// for a property "bto". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsVideo(idx int, v ActivityStreamsVideo)
	// InsertActivityStreamsView inserts a View value at the specified index
	// for a property "bto". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsView(idx int, v ActivityStreamsView)
	// InsertForgeFedBranch inserts a Branch value at the specified index for
	// a property "bto". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertForgeFedBranch(idx int, v ForgeFedBranch)
	// InsertForgeFedCommit inserts a Commit value at the specified index for
	// a property "bto". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertForgeFedCommit(idx int, v ForgeFedCommit)
	// InsertForgeFedPush inserts a Push value at the specified index for a
	// property "bto". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertForgeFedPush(idx int, v ForgeFedPush)
	// InsertForgeFedRepository inserts a Repository value at the specified
	// index for a property "bto". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertForgeFedRepository(idx int, v ForgeFedRepository)
	// InsertForgeFedTicket inserts a Ticket value at the specified index for
	// a property "bto". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertForgeFedTicket(idx int, v ForgeFedTicket)
	// InsertForgeFedTicketDependency inserts a TicketDependency value at the
	// specified index for a property "bto". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
	// Insert inserts an IRI value at the specified index for a property
	// "bto". Existing elements at that index and higher are shifted back
	// once. Invalidates all iterators.
	InsertIRI(idx int, v *url.URL)
	// InsertTootEmoji inserts a Emoji value at the specified index for a
	// property "bto". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertTootEmoji(idx int, v TootEmoji)
	// InsertTootIdentityProof inserts a IdentityProof value at the specified
	// index for a property "bto". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertTootIdentityProof(idx int, v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "bto". Invalidates all iterators. Returns an error if
	// the type is not a valid one to set for this property.
	InsertType(idx int, t Type) error
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API method specifically needed only for alternate
	// implementations for go-fed. Applications should not use this
	// method. Panics if the index is out of bounds.
	KindIndex(idx int) int
	// Len returns the number of values that exist for the "bto" property.
	Len() (length int)
	// Less computes whether another property is less than this one. Mixing
	// types results in a consistent but arbitrary ordering
	Less(i, j int) bool
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsBtoProperty) bool
	// Name returns the name of this property ("bto") with any alias.
	Name() string
	// PrependActivityStreamsAccept prepends a Accept value to the front of a
	// list of the property "bto". Invalidates all iterators.
	PrependActivityStreamsAccept(v ActivityStreamsAccept)
	// PrependActivityStreamsActivity prepends a Activity value to the front
	// of a list of the property "bto". Invalidates all iterators.
	PrependActivityStreamsActivity(v ActivityStreamsActivity)
	// PrependActivityStreamsAdd prepends a Add value to the front of a list
	// of the property "bto". Invalidates all iterators.
	PrependActivityStreamsAdd(v ActivityStreamsAdd)
	// PrependActivityStreamsAnnounce prepends a Announce value to the front
	// of a list of the property "bto". Invalidates all iterators.
	PrependActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// PrependActivityStreamsApplication prepends a Application value to the
	// front of a list of the property "bto". Invalidates all iterators.
	PrependActivityStreamsApplication(v ActivityStreamsApplication)
	// PrependActivityStreamsArrive prepends a Arrive value to the front of a
	// list of the property "bto". Invalidates all iterators.
	PrependActivityStreamsArrive(v ActivityStreamsArrive)
	// PrependActivityStreamsArticle prepends a Article value to the front of
	// a list of the property "bto". Invalidates all iterators.
	PrependActivityStreamsArticle(v ActivityStreamsArticle)
	// PrependActivityStreamsAudio prepends a Audio value to the front of a
	// list of the property "bto". Invalidates all iterators.
	PrependActivityStreamsAudio(v ActivityStreamsAudio)
	// PrependActivityStreamsBlock prepends a Block value to the front of a
	// list of the property "bto". Invalidates all iterators.
	PrependActivityStreamsBlock(v ActivityStreamsBlock)
	// PrependActivityStreamsCollection prepends a Collection value to the
	// front of a list of the property "bto". Invalidates all iterators.
	PrependActivityStreamsCollection(v ActivityStreamsCollection)
	// PrependActivityStreamsCollectionPage prepends a CollectionPage value to
	// the front of a list of the property "bto". Invalidates all
	// iterators.
	PrependActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// PrependActivityStreamsCreate prepends a Create value to the front of a
	// list of the property "bto". Invalidates all iterators.
	PrependActivityStreamsCreate(v ActivityStreamsCreate)
	// PrependActivityStreamsDelete prepends a Delete value to the front of a
	// list of the property "bto". Invalidates all iterators.
	PrependActivityStreamsDelete(v ActivityStreamsDelete)
	// PrependActivityStreamsDislike prepends a Dislike value to the front of
	// a list of the property "bto". Invalidates all iterators.
	PrependActivityStreamsDislike(v ActivityStreamsDislike)
	// PrependActivityStreamsDocument prepends a Document value to the front
	// of a list of the property "bto". Invalidates all iterators.
	PrependActivityStreamsDocument(v ActivityStreamsDocument)
	// PrependActivityStreamsEvent prepends a Event value to the front of a
	// list of the property "bto". Invalidates all iterators.
	PrependActivityStreamsEvent(v ActivityStreamsEvent)
	// PrependActivityStreamsFlag prepends a Flag value to the front of a list
	// of the property "bto". Invalidates all iterators.
	PrependActivityStreamsFlag(v ActivityStreamsFlag)
	// PrependActivityStreamsFollow prepends a Follow value to the front of a
	// list of the property "bto". Invalidates all iterators.
	PrependActivityStreamsFollow(v ActivityStreamsFollow)
	// PrependActivityStreamsGroup prepends a Group value to the front of a
	// list of the property "bto". Invalidates all iterators.
	PrependActivityStreamsGroup(v ActivityStreamsGroup)
	// PrependActivityStreamsIgnore prepends a Ignore value to the front of a
	// list of the property "bto". Invalidates all iterators.
	PrependActivityStreamsIgnore(v ActivityStreamsIgnore)
	// PrependActivityStreamsImage prepends a Image value to the front of a
	// list of the property "bto". Invalidates all iterators.
	PrependActivityStreamsImage(v ActivityStreamsImage)
	// PrependActivityStreamsIntransitiveActivity prepends a
	// IntransitiveActivity value to the front of a list of the property
	// "bto". Invalidates all iterators.
	PrependActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// PrependActivityStreamsInvite prepends a Invite value to the front of a
	// list of the property "bto". Invalidates all iterators.
	PrependActivityStreamsInvite(v ActivityStreamsInvite)
	// PrependActivityStreamsJoin prepends a Join value to the front of a list
	// of the property "bto". Invalidates all iterators.
	PrependActivityStreamsJoin(v ActivityStreamsJoin)
	// PrependActivityStreamsLeave prepends a Leave value to the front of a
	// list of the property "bto". Invalidates all iterators.
	PrependActivityStreamsLeave(v ActivityStreamsLeave)
	// PrependActivityStreamsLike prepends a Like value to the front of a list
	// of the property "bto". Invalidates all iterators.
	PrependActivityStreamsLike(v ActivityStreamsLike)
	// PrependActivityStreamsLink prepends a Link value to the front of a list
	// of the property "bto". Invalidates all iterators.
	PrependActivityStreamsLink(v ActivityStreamsLink)
	// PrependActivityStreamsListen prepends a Listen value to the front of a
	// list of the property "bto". Invalidates all iterators.
	PrependActivityStreamsListen(v ActivityStreamsListen)
	// PrependActivityStreamsMention prepends a Mention value to the front of
	// a list of the property "bto". Invalidates all iterators.
	PrependActivityStreamsMention(v ActivityStreamsMention)
	// PrependActivityStreamsMove prepends a Move value to the front of a list
	// of the property "bto". Invalidates all iterators.
	PrependActivityStreamsMove(v ActivityStreamsMove)
	// PrependActivityStreamsNote prepends a Note value to the front of a list
	// of the property "bto". Invalidates all iterators.
	PrependActivityStreamsNote(v ActivityStreamsNote)
	// PrependActivityStreamsObject prepends a Object value to the front of a
	// list of the property "bto". Invalidates all iterators.
	PrependActivityStreamsObject(v ActivityStreamsObject)
	// PrependActivityStreamsOffer prepends a Offer value to the front of a
	// list of the property "bto". Invalidates all iterators.
	PrependActivityStreamsOffer(v ActivityStreamsOffer)
	// PrependActivityStreamsOrderedCollection prepends a OrderedCollection
	// value to the front of a list of the property "bto". Invalidates all
	// iterators.
	PrependActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// PrependActivityStreamsOrderedCollectionPage prepends a
	// OrderedCollectionPage value to the front of a list of the property
	// "bto". Invalidates all iterators.
	PrependActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// PrependActivityStreamsOrganization prepends a Organization value to the
	// front of a list of the property "bto". Invalidates all iterators.
	PrependActivityStreamsOrganization(v ActivityStreamsOrganization)
	// PrependActivityStreamsPage prepends a Page value to the front of a list
	// of the property "bto". Invalidates all iterators.
	PrependActivityStreamsPage(v ActivityStreamsPage)
	// PrependActivityStreamsPerson prepends a Person value to the front of a
	// list of the property "bto". Invalidates all iterators.
	PrependActivityStreamsPerson(v ActivityStreamsPerson)
	// PrependActivityStreamsPlace prepends a Place value to the front of a
	// list of the property "bto". Invalidates all iterators.
	PrependActivityStreamsPlace(v ActivityStreamsPlace)
	// PrependActivityStreamsProfile prepends a Profile value to the front of
	// a list of the property "bto". Invalidates all iterators.
	PrependActivityStreamsProfile(v ActivityStreamsProfile)
	// PrependActivityStreamsQuestion prepends a Question value to the front
	// of a list of the property "bto". Invalidates all iterators.
	PrependActivityStreamsQuestion(v ActivityStreamsQuestion)
	// PrependActivityStreamsRead prepends a Read value to the front of a list
	// of the property "bto". Invalidates all iterators.
	PrependActivityStreamsRead(v ActivityStreamsRead)
	// PrependActivityStreamsReject prepends a Reject value to the front of a
	// list of the property "bto". Invalidates all iterators.
	PrependActivityStreamsReject(v ActivityStreamsReject)
	// PrependActivityStreamsRelationship prepends a Relationship value to the
	// front of a list of the property "bto". Invalidates all iterators.
	PrependActivityStreamsRelationship(v ActivityStreamsRelationship)
	// PrependActivityStreamsRemove prepends a Remove value to the front of a
	// list of the property "bto". Invalidates all iterators.
	PrependActivityStreamsRemove(v ActivityStreamsRemove)
	// PrependActivityStreamsService prepends a Service value to the front of
	// a list of the property "bto". Invalidates all iterators.
	PrependActivityStreamsService(v ActivityStreamsService)
	// PrependActivityStreamsTentativeAccept prepends a TentativeAccept value
	// to the front of a list of the property "bto". Invalidates all
	// iterators.
	PrependActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// PrependActivityStreamsTentativeReject prepends a TentativeReject value
	// to the front of a list of the property "bto". Invalidates all
	// iterators.
	PrependActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// PrependActivityStreamsTombstone prepends a Tombstone value to the front
	// of a list of the property "bto". Invalidates all iterators.
	PrependActivityStreamsTombstone(v ActivityStreamsTombstone)
	// PrependActivityStreamsTravel prepends a Travel value to the front of a
	// list of the property "bto". Invalidates all iterators.
	PrependActivityStreamsTravel(v ActivityStreamsTravel)
	// PrependActivityStreamsUndo prepends a Undo value to the front of a list
	// of the property "bto". Invalidates all iterators.
	PrependActivityStreamsUndo(v ActivityStreamsUndo)
	// PrependActivityStreamsUpdate prepends a Update value to the front of a
	// list of the property "bto". Invalidates all iterators.
	PrependActivityStreamsUpdate(v ActivityStreamsUpdate)
	// PrependActivityStreamsVideo prepends a Video value to the front of a
	// list of the property "bto". Invalidates all iterators.
	PrependActivityStreamsVideo(v ActivityStreamsVideo)
	// PrependActivityStreamsView prepends a View value to the front of a list
	// of the property "bto". Invalidates all iterators.
	PrependActivityStreamsView(v ActivityStreamsView)
	// PrependForgeFedBranch prepends a Branch value to the front of a list of
	// the property "bto". Invalidates all iterators.
	PrependForgeFedBranch(v ForgeFedBranch)
	// PrependForgeFedCommit prepends a Commit value to the front of a list of
	// the property "bto". Invalidates all iterators.
	PrependForgeFedCommit(v ForgeFedCommit)
	// PrependForgeFedPush prepends a Push value to the front of a list of the
	// property "bto". Invalidates all iterators.
	PrependForgeFedPush(v ForgeFedPush)
	// PrependForgeFedRepository prepends a Repository value to the front of a
	// list of the property "bto". Invalidates all iterators.
	PrependForgeFedRepository(v ForgeFedRepository)
	// PrependForgeFedTicket prepends a Ticket value to the front of a list of
	// the property "bto". Invalidates all iterators.
	PrependForgeFedTicket(v ForgeFedTicket)
	// PrependForgeFedTicketDependency prepends a TicketDependency value to
	// the front of a list of the property "bto". Invalidates all
	// iterators.
	PrependForgeFedTicketDependency(v ForgeFedTicketDependency)
	// PrependIRI prepends an IRI value to the front of a list of the property
	// "bto".
	PrependIRI(v *url.URL)
	// PrependTootEmoji prepends a Emoji value to the front of a list of the
	// property "bto". Invalidates all iterators.
	PrependTootEmoji(v TootEmoji)
	// PrependTootIdentityProof prepends a IdentityProof value to the front of
	// a list of the property "bto". Invalidates all iterators.
	PrependTootIdentityProof(v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "bto". Invalidates all iterators. Returns an error if
	// the type is not a valid one to set for this property.
	PrependType(t Type) error
	// Remove deletes an element at the specified index from a list of the
	// property "bto", regardless of its type. Panics if the index is out
	// of bounds. Invalidates all iterators.
	Remove(idx int)
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// SetActivityStreamsAccept sets a Accept value to be at the specified
	// index for the property "bto". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsAccept(idx int, v ActivityStreamsAccept)
	// SetActivityStreamsActivity sets a Activity value to be at the specified
	// index for the property "bto". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsActivity(idx int, v ActivityStreamsActivity)
	// SetActivityStreamsAdd sets a Add value to be at the specified index for
	// the property "bto". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsAdd(idx int, v ActivityStreamsAdd)
	// SetActivityStreamsAnnounce sets a Announce value to be at the specified
	// index for the property "bto". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsAnnounce(idx int, v ActivityStreamsAnnounce)
	// SetActivityStreamsApplication sets a Application value to be at the
	// specified index for the property "bto". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsApplication(idx int, v ActivityStreamsApplication)
	// SetActivityStreamsArrive sets a Arrive value to be at the specified
	// index for the property "bto". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsArrive(idx int, v ActivityStreamsArrive)
	// SetActivityStreamsArticle sets a Article value to be at the specified
	// index for the property "bto". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsArticle(idx int, v ActivityStreamsArticle)
	// SetActivityStreamsAudio sets a Audio value to be at the specified index
	// for the property "bto". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsAudio(idx int, v ActivityStreamsAudio)
	// SetActivityStreamsBlock sets a Block value to be at the specified index
	// for the property "bto". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsBlock(idx int, v ActivityStreamsBlock)
	// SetActivityStreamsCollection sets a Collection value to be at the
	// specified index for the property "bto". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsCollection(idx int, v ActivityStreamsCollection)
	// SetActivityStreamsCollectionPage sets a CollectionPage value to be at
	// the specified index for the property "bto". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsCollectionPage(idx int, v ActivityStreamsCollectionPage)
	// SetActivityStreamsCreate sets a Create value to be at the specified
	// index for the property "bto". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsCreate(idx int, v ActivityStreamsCreate)
	// SetActivityStreamsDelete sets a Delete value to be at the specified
	// index for the property "bto". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsDelete(idx int, v ActivityStreamsDelete)
	// SetActivityStreamsDislike sets a Dislike value to be at the specified
	// index for the property "bto". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsDislike(idx int, v ActivityStreamsDislike)
	// SetActivityStreamsDocument sets a Document value to be at the specified
	// index for the property "bto". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsDocument(idx int, v ActivityStreamsDocument)
	// SetActivityStreamsEvent sets a Event value to be at the specified index
	// for the property "bto". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsEvent(idx int, v ActivityStreamsEvent)
	// SetActivityStreamsFlag sets a Flag value to be at the specified index
	// for the property "bto". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsFlag(idx int, v ActivityStreamsFlag)
	// SetActivityStreamsFollow sets a Follow value to be at the specified
	// index for the property "bto". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsFollow(idx int, v ActivityStreamsFollow)
	// SetActivityStreamsGroup sets a Group value to be at the specified index
	// for the property "bto". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsGroup(idx int, v ActivityStreamsGroup)
	// SetActivityStreamsIgnore sets a Ignore value to be at the specified
	// index for the property "bto". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsIgnore(idx int, v ActivityStreamsIgnore)
	// SetActivityStreamsImage sets a Image value to be at the specified index
	// for the property "bto". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsImage(idx int, v ActivityStreamsImage)
	// SetActivityStreamsIntransitiveActivity sets a IntransitiveActivity
	// value to be at the specified index for the property "bto". Panics
	// if the index is out of bounds. Invalidates all iterators.
	SetActivityStreamsIntransitiveActivity(idx int, v ActivityStreamsIntransitiveActivity)
	// SetActivityStreamsInvite sets a Invite value to be at the specified
	// index for the property "bto". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsInvite(idx int, v ActivityStreamsInvite)
	// SetActivityStreamsJoin sets a Join value to be at the specified index
	// for the property "bto". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsJoin(idx int, v ActivityStreamsJoin)
	// SetActivityStreamsLeave sets a Leave value to be at the specified index
	// for the property "bto". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsLeave(idx int, v ActivityStreamsLeave)
	// SetActivityStreamsLike sets a Like value to be at the specified index
	// for the property "bto". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsLike(idx int, v ActivityStreamsLike)
	// SetActivityStreamsLink sets a Link value to be at the specified index
	// for the property "bto". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsLink(idx int, v ActivityStreamsLink)
	// SetActivityStreamsListen sets a Listen value to be at the specified
	// index for the property "bto". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsListen(idx int, v ActivityStreamsListen)
	// SetActivityStreamsMention sets a Mention value to be at the specified
	// index for the property "bto". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsMention(idx int, v ActivityStreamsMention)
	// SetActivityStreamsMove sets a Move value to be at the specified index
	// for the property "bto". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsMove(idx int, v ActivityStreamsMove)
	// SetActivityStreamsNote sets a Note value to be at the specified index
	// for the property "bto". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsNote(idx int, v ActivityStreamsNote)
	// SetActivityStreamsObject sets a Object value to be at the specified
	// index for the property "bto". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsObject(idx int, v ActivityStreamsObject)
	// SetActivityStreamsOffer sets a Offer value to be at the specified index
	// for the property "bto". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsOffer(idx int, v ActivityStreamsOffer)
	// SetActivityStreamsOrderedCollection sets a OrderedCollection value to
	// be at the specified index for the property "bto". Panics if the
	// index is out of bounds. Invalidates all iterators.
	SetActivityStreamsOrderedCollection(idx int, v ActivityStreamsOrderedCollection)
	// SetActivityStreamsOrderedCollectionPage sets a OrderedCollectionPage
	// value to be at the specified index for the property "bto". Panics
	// if the index is out of bounds. Invalidates all iterators.
	SetActivityStreamsOrderedCollectionPage(idx int, v ActivityStreamsOrderedCollectionPage)
	// SetActivityStreamsOrganization sets a Organization value to be at the
	// specified index for the property "bto". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsOrganization(idx int, v ActivityStreamsOrganization)
	// SetActivityStreamsPage sets a Page value to be at the specified index
	// for the property "bto". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsPage(idx int, v ActivityStreamsPage)
	// SetActivityStreamsPerson sets a Person value to be at the specified
	// index for the property "bto". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsPerson(idx int, v ActivityStreamsPerson)
	// SetActivityStreamsPlace sets a Place value to be at the specified index
	// for the property "bto". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsPlace(idx int, v ActivityStreamsPlace)
	// SetActivityStreamsProfile sets a Profile value to be at the specified
	// index for the property "bto". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsProfile(idx int, v ActivityStreamsProfile)
	// SetActivityStreamsQuestion sets a Question value to be at the specified
	// index for the property "bto". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsQuestion(idx int, v ActivityStreamsQuestion)
	// SetActivityStreamsRead sets a Read value to be at the specified index
	// for the property "bto". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsRead(idx int, v ActivityStreamsRead)
	// SetActivityStreamsReject sets a Reject value to be at the specified
	// index for the property "bto". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsReject(idx int, v ActivityStreamsReject)
	// SetActivityStreamsRelationship sets a Relationship value to be at the
	// specified index for the property "bto". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsRelationship(idx int, v ActivityStreamsRelationship)
	// SetActivityStreamsRemove sets a Remove value to be at the specified
	// index for the property "bto". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsRemove(idx int, v ActivityStreamsRemove)
	// SetActivityStreamsService sets a Service value to be at the specified
	// index for the property "bto". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsService(idx int, v ActivityStreamsService)
	// SetActivityStreamsTentativeAccept sets a TentativeAccept value to be at
	// the specified index for the property "bto". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsTentativeAccept(idx int, v ActivityStreamsTentativeAccept)
	// SetActivityStreamsTentativeReject sets a TentativeReject value to be at
	// the specified index for the property "bto". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsTentativeReject(idx int, v ActivityStreamsTentativeReject)
	// SetActivityStreamsTombstone sets a Tombstone value to be at the
	// specified index for the property "bto". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsTombstone(idx int, v ActivityStreamsTombstone)
	// SetActivityStreamsTravel sets a Travel value to be at the specified
	// index for the property "bto". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsTravel(idx int, v ActivityStreamsTravel)
	// SetActivityStreamsUndo sets a Undo value to be at the specified index
	// for the property "bto". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsUndo(idx int, v ActivityStreamsUndo)
	// SetActivityStreamsUpdate sets a Update value to be at the specified
	// index for the property "bto". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsUpdate(idx int, v ActivityStreamsUpdate)
	// SetActivityStreamsVideo sets a Video value to be at the specified index
	// for the property "bto". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsVideo(idx int, v ActivityStreamsVideo)
	// SetActivityStreamsView sets a View value to be at the specified index
	// for the property "bto". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsView(idx int, v ActivityStreamsView)
	// SetForgeFedBranch sets a Branch value to be at the specified index for
	// the property "bto". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedBranch(idx int, v ForgeFedBranch)
	// SetForgeFedCommit sets a Commit value to be at the specified index for
	// the property "bto". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedCommit(idx int, v ForgeFedCommit)
	// SetForgeFedPush sets a Push value to be at the specified index for the
	// property "bto". Panics if the index is out of bounds. Invalidates
	// all iterators.
	SetForgeFedPush(idx int, v ForgeFedPush)
	// SetForgeFedRepository sets a Repository value to be at the specified
	// index for the property "bto". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedRepository(idx int, v ForgeFedRepository)
	// SetForgeFedTicket sets a Ticket value to be at the specified index for
	// the property "bto". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedTicket(idx int, v ForgeFedTicket)
	// SetForgeFedTicketDependency sets a TicketDependency value to be at the
	// specified index for the property "bto". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
	// SetIRI sets an IRI value to be at the specified index for the property
	// "bto". Panics if the index is out of bounds.
	SetIRI(idx int, v *url.URL)
	// SetTootEmoji sets a Emoji value to be at the specified index for the
	// property "bto". Panics if the index is out of bounds. Invalidates
	// all iterators.
	SetTootEmoji(idx int, v TootEmoji)
	// SetTootIdentityProof sets a IdentityProof value to be at the specified
	// index for the property "bto". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetTootIdentityProof(idx int, v TootIdentityProof)
	// SetType sets an arbitrary type value to the specified index of the
	// property "bto". Invalidates all iterators. Returns an error if the
	// type is not a valid one to set for this property. Panics if the
	// index is out of bounds.
	SetType(idx int, t Type) error
	// Swap swaps the location of values at two indices for the "bto" property.
	Swap(i, j int)
}

Identifies an Object that is part of the private primary audience of this Object.

Example 71 (https://www.w3.org/TR/activitystreams-vocabulary/#ex69-jsonld):

{
  "actor": "http://sally.example.org",
  "bto": "http://joe.example.org",
  "object": "http://example.org/posts/1",
  "summary": "Sally offered a post to John",
  "target": "http://john.example.org",
  "type": "Offer"
}

type ActivityStreamsBtoPropertyIterator

type ActivityStreamsBtoPropertyIterator interface {
	// GetActivityStreamsAccept returns the value of this property. When
	// IsActivityStreamsAccept returns false, GetActivityStreamsAccept
	// will return an arbitrary value.
	GetActivityStreamsAccept() ActivityStreamsAccept
	// GetActivityStreamsActivity returns the value of this property. When
	// IsActivityStreamsActivity returns false, GetActivityStreamsActivity
	// will return an arbitrary value.
	GetActivityStreamsActivity() ActivityStreamsActivity
	// GetActivityStreamsAdd returns the value of this property. When
	// IsActivityStreamsAdd returns false, GetActivityStreamsAdd will
	// return an arbitrary value.
	GetActivityStreamsAdd() ActivityStreamsAdd
	// GetActivityStreamsAnnounce returns the value of this property. When
	// IsActivityStreamsAnnounce returns false, GetActivityStreamsAnnounce
	// will return an arbitrary value.
	GetActivityStreamsAnnounce() ActivityStreamsAnnounce
	// GetActivityStreamsApplication returns the value of this property. When
	// IsActivityStreamsApplication returns false,
	// GetActivityStreamsApplication will return an arbitrary value.
	GetActivityStreamsApplication() ActivityStreamsApplication
	// GetActivityStreamsArrive returns the value of this property. When
	// IsActivityStreamsArrive returns false, GetActivityStreamsArrive
	// will return an arbitrary value.
	GetActivityStreamsArrive() ActivityStreamsArrive
	// GetActivityStreamsArticle returns the value of this property. When
	// IsActivityStreamsArticle returns false, GetActivityStreamsArticle
	// will return an arbitrary value.
	GetActivityStreamsArticle() ActivityStreamsArticle
	// GetActivityStreamsAudio returns the value of this property. When
	// IsActivityStreamsAudio returns false, GetActivityStreamsAudio will
	// return an arbitrary value.
	GetActivityStreamsAudio() ActivityStreamsAudio
	// GetActivityStreamsBlock returns the value of this property. When
	// IsActivityStreamsBlock returns false, GetActivityStreamsBlock will
	// return an arbitrary value.
	GetActivityStreamsBlock() ActivityStreamsBlock
	// GetActivityStreamsCollection returns the value of this property. When
	// IsActivityStreamsCollection returns false,
	// GetActivityStreamsCollection will return an arbitrary value.
	GetActivityStreamsCollection() ActivityStreamsCollection
	// GetActivityStreamsCollectionPage returns the value of this property.
	// When IsActivityStreamsCollectionPage returns false,
	// GetActivityStreamsCollectionPage will return an arbitrary value.
	GetActivityStreamsCollectionPage() ActivityStreamsCollectionPage
	// GetActivityStreamsCreate returns the value of this property. When
	// IsActivityStreamsCreate returns false, GetActivityStreamsCreate
	// will return an arbitrary value.
	GetActivityStreamsCreate() ActivityStreamsCreate
	// GetActivityStreamsDelete returns the value of this property. When
	// IsActivityStreamsDelete returns false, GetActivityStreamsDelete
	// will return an arbitrary value.
	GetActivityStreamsDelete() ActivityStreamsDelete
	// GetActivityStreamsDislike returns the value of this property. When
	// IsActivityStreamsDislike returns false, GetActivityStreamsDislike
	// will return an arbitrary value.
	GetActivityStreamsDislike() ActivityStreamsDislike
	// GetActivityStreamsDocument returns the value of this property. When
	// IsActivityStreamsDocument returns false, GetActivityStreamsDocument
	// will return an arbitrary value.
	GetActivityStreamsDocument() ActivityStreamsDocument
	// GetActivityStreamsEvent returns the value of this property. When
	// IsActivityStreamsEvent returns false, GetActivityStreamsEvent will
	// return an arbitrary value.
	GetActivityStreamsEvent() ActivityStreamsEvent
	// GetActivityStreamsFlag returns the value of this property. When
	// IsActivityStreamsFlag returns false, GetActivityStreamsFlag will
	// return an arbitrary value.
	GetActivityStreamsFlag() ActivityStreamsFlag
	// GetActivityStreamsFollow returns the value of this property. When
	// IsActivityStreamsFollow returns false, GetActivityStreamsFollow
	// will return an arbitrary value.
	GetActivityStreamsFollow() ActivityStreamsFollow
	// GetActivityStreamsGroup returns the value of this property. When
	// IsActivityStreamsGroup returns false, GetActivityStreamsGroup will
	// return an arbitrary value.
	GetActivityStreamsGroup() ActivityStreamsGroup
	// GetActivityStreamsIgnore returns the value of this property. When
	// IsActivityStreamsIgnore returns false, GetActivityStreamsIgnore
	// will return an arbitrary value.
	GetActivityStreamsIgnore() ActivityStreamsIgnore
	// GetActivityStreamsImage returns the value of this property. When
	// IsActivityStreamsImage returns false, GetActivityStreamsImage will
	// return an arbitrary value.
	GetActivityStreamsImage() ActivityStreamsImage
	// GetActivityStreamsIntransitiveActivity returns the value of this
	// property. When IsActivityStreamsIntransitiveActivity returns false,
	// GetActivityStreamsIntransitiveActivity will return an arbitrary
	// value.
	GetActivityStreamsIntransitiveActivity() ActivityStreamsIntransitiveActivity
	// GetActivityStreamsInvite returns the value of this property. When
	// IsActivityStreamsInvite returns false, GetActivityStreamsInvite
	// will return an arbitrary value.
	GetActivityStreamsInvite() ActivityStreamsInvite
	// GetActivityStreamsJoin returns the value of this property. When
	// IsActivityStreamsJoin returns false, GetActivityStreamsJoin will
	// return an arbitrary value.
	GetActivityStreamsJoin() ActivityStreamsJoin
	// GetActivityStreamsLeave returns the value of this property. When
	// IsActivityStreamsLeave returns false, GetActivityStreamsLeave will
	// return an arbitrary value.
	GetActivityStreamsLeave() ActivityStreamsLeave
	// GetActivityStreamsLike returns the value of this property. When
	// IsActivityStreamsLike returns false, GetActivityStreamsLike will
	// return an arbitrary value.
	GetActivityStreamsLike() ActivityStreamsLike
	// GetActivityStreamsLink returns the value of this property. When
	// IsActivityStreamsLink returns false, GetActivityStreamsLink will
	// return an arbitrary value.
	GetActivityStreamsLink() ActivityStreamsLink
	// GetActivityStreamsListen returns the value of this property. When
	// IsActivityStreamsListen returns false, GetActivityStreamsListen
	// will return an arbitrary value.
	GetActivityStreamsListen() ActivityStreamsListen
	// GetActivityStreamsMention returns the value of this property. When
	// IsActivityStreamsMention returns false, GetActivityStreamsMention
	// will return an arbitrary value.
	GetActivityStreamsMention() ActivityStreamsMention
	// GetActivityStreamsMove returns the value of this property. When
	// IsActivityStreamsMove returns false, GetActivityStreamsMove will
	// return an arbitrary value.
	GetActivityStreamsMove() ActivityStreamsMove
	// GetActivityStreamsNote returns the value of this property. When
	// IsActivityStreamsNote returns false, GetActivityStreamsNote will
	// return an arbitrary value.
	GetActivityStreamsNote() ActivityStreamsNote
	// GetActivityStreamsObject returns the value of this property. When
	// IsActivityStreamsObject returns false, GetActivityStreamsObject
	// will return an arbitrary value.
	GetActivityStreamsObject() ActivityStreamsObject
	// GetActivityStreamsOffer returns the value of this property. When
	// IsActivityStreamsOffer returns false, GetActivityStreamsOffer will
	// return an arbitrary value.
	GetActivityStreamsOffer() ActivityStreamsOffer
	// GetActivityStreamsOrderedCollection returns the value of this property.
	// When IsActivityStreamsOrderedCollection returns false,
	// GetActivityStreamsOrderedCollection will return an arbitrary value.
	GetActivityStreamsOrderedCollection() ActivityStreamsOrderedCollection
	// GetActivityStreamsOrderedCollectionPage returns the value of this
	// property. When IsActivityStreamsOrderedCollectionPage returns
	// false, GetActivityStreamsOrderedCollectionPage will return an
	// arbitrary value.
	GetActivityStreamsOrderedCollectionPage() ActivityStreamsOrderedCollectionPage
	// GetActivityStreamsOrganization returns the value of this property. When
	// IsActivityStreamsOrganization returns false,
	// GetActivityStreamsOrganization will return an arbitrary value.
	GetActivityStreamsOrganization() ActivityStreamsOrganization
	// GetActivityStreamsPage returns the value of this property. When
	// IsActivityStreamsPage returns false, GetActivityStreamsPage will
	// return an arbitrary value.
	GetActivityStreamsPage() ActivityStreamsPage
	// GetActivityStreamsPerson returns the value of this property. When
	// IsActivityStreamsPerson returns false, GetActivityStreamsPerson
	// will return an arbitrary value.
	GetActivityStreamsPerson() ActivityStreamsPerson
	// GetActivityStreamsPlace returns the value of this property. When
	// IsActivityStreamsPlace returns false, GetActivityStreamsPlace will
	// return an arbitrary value.
	GetActivityStreamsPlace() ActivityStreamsPlace
	// GetActivityStreamsProfile returns the value of this property. When
	// IsActivityStreamsProfile returns false, GetActivityStreamsProfile
	// will return an arbitrary value.
	GetActivityStreamsProfile() ActivityStreamsProfile
	// GetActivityStreamsQuestion returns the value of this property. When
	// IsActivityStreamsQuestion returns false, GetActivityStreamsQuestion
	// will return an arbitrary value.
	GetActivityStreamsQuestion() ActivityStreamsQuestion
	// GetActivityStreamsRead returns the value of this property. When
	// IsActivityStreamsRead returns false, GetActivityStreamsRead will
	// return an arbitrary value.
	GetActivityStreamsRead() ActivityStreamsRead
	// GetActivityStreamsReject returns the value of this property. When
	// IsActivityStreamsReject returns false, GetActivityStreamsReject
	// will return an arbitrary value.
	GetActivityStreamsReject() ActivityStreamsReject
	// GetActivityStreamsRelationship returns the value of this property. When
	// IsActivityStreamsRelationship returns false,
	// GetActivityStreamsRelationship will return an arbitrary value.
	GetActivityStreamsRelationship() ActivityStreamsRelationship
	// GetActivityStreamsRemove returns the value of this property. When
	// IsActivityStreamsRemove returns false, GetActivityStreamsRemove
	// will return an arbitrary value.
	GetActivityStreamsRemove() ActivityStreamsRemove
	// GetActivityStreamsService returns the value of this property. When
	// IsActivityStreamsService returns false, GetActivityStreamsService
	// will return an arbitrary value.
	GetActivityStreamsService() ActivityStreamsService
	// GetActivityStreamsTentativeAccept returns the value of this property.
	// When IsActivityStreamsTentativeAccept returns false,
	// GetActivityStreamsTentativeAccept will return an arbitrary value.
	GetActivityStreamsTentativeAccept() ActivityStreamsTentativeAccept
	// GetActivityStreamsTentativeReject returns the value of this property.
	// When IsActivityStreamsTentativeReject returns false,
	// GetActivityStreamsTentativeReject will return an arbitrary value.
	GetActivityStreamsTentativeReject() ActivityStreamsTentativeReject
	// GetActivityStreamsTombstone returns the value of this property. When
	// IsActivityStreamsTombstone returns false,
	// GetActivityStreamsTombstone will return an arbitrary value.
	GetActivityStreamsTombstone() ActivityStreamsTombstone
	// GetActivityStreamsTravel returns the value of this property. When
	// IsActivityStreamsTravel returns false, GetActivityStreamsTravel
	// will return an arbitrary value.
	GetActivityStreamsTravel() ActivityStreamsTravel
	// GetActivityStreamsUndo returns the value of this property. When
	// IsActivityStreamsUndo returns false, GetActivityStreamsUndo will
	// return an arbitrary value.
	GetActivityStreamsUndo() ActivityStreamsUndo
	// GetActivityStreamsUpdate returns the value of this property. When
	// IsActivityStreamsUpdate returns false, GetActivityStreamsUpdate
	// will return an arbitrary value.
	GetActivityStreamsUpdate() ActivityStreamsUpdate
	// GetActivityStreamsVideo returns the value of this property. When
	// IsActivityStreamsVideo returns false, GetActivityStreamsVideo will
	// return an arbitrary value.
	GetActivityStreamsVideo() ActivityStreamsVideo
	// GetActivityStreamsView returns the value of this property. When
	// IsActivityStreamsView returns false, GetActivityStreamsView will
	// return an arbitrary value.
	GetActivityStreamsView() ActivityStreamsView
	// GetForgeFedBranch returns the value of this property. When
	// IsForgeFedBranch returns false, GetForgeFedBranch will return an
	// arbitrary value.
	GetForgeFedBranch() ForgeFedBranch
	// GetForgeFedCommit returns the value of this property. When
	// IsForgeFedCommit returns false, GetForgeFedCommit will return an
	// arbitrary value.
	GetForgeFedCommit() ForgeFedCommit
	// GetForgeFedPush returns the value of this property. When IsForgeFedPush
	// returns false, GetForgeFedPush will return an arbitrary value.
	GetForgeFedPush() ForgeFedPush
	// GetForgeFedRepository returns the value of this property. When
	// IsForgeFedRepository returns false, GetForgeFedRepository will
	// return an arbitrary value.
	GetForgeFedRepository() ForgeFedRepository
	// GetForgeFedTicket returns the value of this property. When
	// IsForgeFedTicket returns false, GetForgeFedTicket will return an
	// arbitrary value.
	GetForgeFedTicket() ForgeFedTicket
	// GetForgeFedTicketDependency returns the value of this property. When
	// IsForgeFedTicketDependency returns false,
	// GetForgeFedTicketDependency will return an arbitrary value.
	GetForgeFedTicketDependency() ForgeFedTicketDependency
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return an arbitrary value.
	GetIRI() *url.URL
	// GetTootEmoji returns the value of this property. When IsTootEmoji
	// returns false, GetTootEmoji will return an arbitrary value.
	GetTootEmoji() TootEmoji
	// GetTootIdentityProof returns the value of this property. When
	// IsTootIdentityProof returns false, GetTootIdentityProof will return
	// an arbitrary value.
	GetTootIdentityProof() TootIdentityProof
	// GetType returns the value in this property as a Type. Returns nil if
	// the value is not an ActivityStreams type, such as an IRI or another
	// value.
	GetType() Type
	// HasAny returns true if any of the different values is set.
	HasAny() bool
	// IsActivityStreamsAccept returns true if this property has a type of
	// "Accept". When true, use the GetActivityStreamsAccept and
	// SetActivityStreamsAccept methods to access and set this property.
	IsActivityStreamsAccept() bool
	// IsActivityStreamsActivity returns true if this property has a type of
	// "Activity". When true, use the GetActivityStreamsActivity and
	// SetActivityStreamsActivity methods to access and set this property.
	IsActivityStreamsActivity() bool
	// IsActivityStreamsAdd returns true if this property has a type of "Add".
	// When true, use the GetActivityStreamsAdd and SetActivityStreamsAdd
	// methods to access and set this property.
	IsActivityStreamsAdd() bool
	// IsActivityStreamsAnnounce returns true if this property has a type of
	// "Announce". When true, use the GetActivityStreamsAnnounce and
	// SetActivityStreamsAnnounce methods to access and set this property.
	IsActivityStreamsAnnounce() bool
	// IsActivityStreamsApplication returns true if this property has a type
	// of "Application". When true, use the GetActivityStreamsApplication
	// and SetActivityStreamsApplication methods to access and set this
	// property.
	IsActivityStreamsApplication() bool
	// IsActivityStreamsArrive returns true if this property has a type of
	// "Arrive". When true, use the GetActivityStreamsArrive and
	// SetActivityStreamsArrive methods to access and set this property.
	IsActivityStreamsArrive() bool
	// IsActivityStreamsArticle returns true if this property has a type of
	// "Article". When true, use the GetActivityStreamsArticle and
	// SetActivityStreamsArticle methods to access and set this property.
	IsActivityStreamsArticle() bool
	// IsActivityStreamsAudio returns true if this property has a type of
	// "Audio". When true, use the GetActivityStreamsAudio and
	// SetActivityStreamsAudio methods to access and set this property.
	IsActivityStreamsAudio() bool
	// IsActivityStreamsBlock returns true if this property has a type of
	// "Block". When true, use the GetActivityStreamsBlock and
	// SetActivityStreamsBlock methods to access and set this property.
	IsActivityStreamsBlock() bool
	// IsActivityStreamsCollection returns true if this property has a type of
	// "Collection". When true, use the GetActivityStreamsCollection and
	// SetActivityStreamsCollection methods to access and set this
	// property.
	IsActivityStreamsCollection() bool
	// IsActivityStreamsCollectionPage returns true if this property has a
	// type of "CollectionPage". When true, use the
	// GetActivityStreamsCollectionPage and
	// SetActivityStreamsCollectionPage methods to access and set this
	// property.
	IsActivityStreamsCollectionPage() bool
	// IsActivityStreamsCreate returns true if this property has a type of
	// "Create". When true, use the GetActivityStreamsCreate and
	// SetActivityStreamsCreate methods to access and set this property.
	IsActivityStreamsCreate() bool
	// IsActivityStreamsDelete returns true if this property has a type of
	// "Delete". When true, use the GetActivityStreamsDelete and
	// SetActivityStreamsDelete methods to access and set this property.
	IsActivityStreamsDelete() bool
	// IsActivityStreamsDislike returns true if this property has a type of
	// "Dislike". When true, use the GetActivityStreamsDislike and
	// SetActivityStreamsDislike methods to access and set this property.
	IsActivityStreamsDislike() bool
	// IsActivityStreamsDocument returns true if this property has a type of
	// "Document". When true, use the GetActivityStreamsDocument and
	// SetActivityStreamsDocument methods to access and set this property.
	IsActivityStreamsDocument() bool
	// IsActivityStreamsEvent returns true if this property has a type of
	// "Event". When true, use the GetActivityStreamsEvent and
	// SetActivityStreamsEvent methods to access and set this property.
	IsActivityStreamsEvent() bool
	// IsActivityStreamsFlag returns true if this property has a type of
	// "Flag". When true, use the GetActivityStreamsFlag and
	// SetActivityStreamsFlag methods to access and set this property.
	IsActivityStreamsFlag() bool
	// IsActivityStreamsFollow returns true if this property has a type of
	// "Follow". When true, use the GetActivityStreamsFollow and
	// SetActivityStreamsFollow methods to access and set this property.
	IsActivityStreamsFollow() bool
	// IsActivityStreamsGroup returns true if this property has a type of
	// "Group". When true, use the GetActivityStreamsGroup and
	// SetActivityStreamsGroup methods to access and set this property.
	IsActivityStreamsGroup() bool
	// IsActivityStreamsIgnore returns true if this property has a type of
	// "Ignore". When true, use the GetActivityStreamsIgnore and
	// SetActivityStreamsIgnore methods to access and set this property.
	IsActivityStreamsIgnore() bool
	// IsActivityStreamsImage returns true if this property has a type of
	// "Image". When true, use the GetActivityStreamsImage and
	// SetActivityStreamsImage methods to access and set this property.
	IsActivityStreamsImage() bool
	// IsActivityStreamsIntransitiveActivity returns true if this property has
	// a type of "IntransitiveActivity". When true, use the
	// GetActivityStreamsIntransitiveActivity and
	// SetActivityStreamsIntransitiveActivity methods to access and set
	// this property.
	IsActivityStreamsIntransitiveActivity() bool
	// IsActivityStreamsInvite returns true if this property has a type of
	// "Invite". When true, use the GetActivityStreamsInvite and
	// SetActivityStreamsInvite methods to access and set this property.
	IsActivityStreamsInvite() bool
	// IsActivityStreamsJoin returns true if this property has a type of
	// "Join". When true, use the GetActivityStreamsJoin and
	// SetActivityStreamsJoin methods to access and set this property.
	IsActivityStreamsJoin() bool
	// IsActivityStreamsLeave returns true if this property has a type of
	// "Leave". When true, use the GetActivityStreamsLeave and
	// SetActivityStreamsLeave methods to access and set this property.
	IsActivityStreamsLeave() bool
	// IsActivityStreamsLike returns true if this property has a type of
	// "Like". When true, use the GetActivityStreamsLike and
	// SetActivityStreamsLike methods to access and set this property.
	IsActivityStreamsLike() bool
	// IsActivityStreamsLink returns true if this property has a type of
	// "Link". When true, use the GetActivityStreamsLink and
	// SetActivityStreamsLink methods to access and set this property.
	IsActivityStreamsLink() bool
	// IsActivityStreamsListen returns true if this property has a type of
	// "Listen". When true, use the GetActivityStreamsListen and
	// SetActivityStreamsListen methods to access and set this property.
	IsActivityStreamsListen() bool
	// IsActivityStreamsMention returns true if this property has a type of
	// "Mention". When true, use the GetActivityStreamsMention and
	// SetActivityStreamsMention methods to access and set this property.
	IsActivityStreamsMention() bool
	// IsActivityStreamsMove returns true if this property has a type of
	// "Move". When true, use the GetActivityStreamsMove and
	// SetActivityStreamsMove methods to access and set this property.
	IsActivityStreamsMove() bool
	// IsActivityStreamsNote returns true if this property has a type of
	// "Note". When true, use the GetActivityStreamsNote and
	// SetActivityStreamsNote methods to access and set this property.
	IsActivityStreamsNote() bool
	// IsActivityStreamsObject returns true if this property has a type of
	// "Object". When true, use the GetActivityStreamsObject and
	// SetActivityStreamsObject methods to access and set this property.
	IsActivityStreamsObject() bool
	// IsActivityStreamsOffer returns true if this property has a type of
	// "Offer". When true, use the GetActivityStreamsOffer and
	// SetActivityStreamsOffer methods to access and set this property.
	IsActivityStreamsOffer() bool
	// IsActivityStreamsOrderedCollection returns true if this property has a
	// type of "OrderedCollection". When true, use the
	// GetActivityStreamsOrderedCollection and
	// SetActivityStreamsOrderedCollection methods to access and set this
	// property.
	IsActivityStreamsOrderedCollection() bool
	// IsActivityStreamsOrderedCollectionPage returns true if this property
	// has a type of "OrderedCollectionPage". When true, use the
	// GetActivityStreamsOrderedCollectionPage and
	// SetActivityStreamsOrderedCollectionPage methods to access and set
	// this property.
	IsActivityStreamsOrderedCollectionPage() bool
	// IsActivityStreamsOrganization returns true if this property has a type
	// of "Organization". When true, use the
	// GetActivityStreamsOrganization and SetActivityStreamsOrganization
	// methods to access and set this property.
	IsActivityStreamsOrganization() bool
	// IsActivityStreamsPage returns true if this property has a type of
	// "Page". When true, use the GetActivityStreamsPage and
	// SetActivityStreamsPage methods to access and set this property.
	IsActivityStreamsPage() bool
	// IsActivityStreamsPerson returns true if this property has a type of
	// "Person". When true, use the GetActivityStreamsPerson and
	// SetActivityStreamsPerson methods to access and set this property.
	IsActivityStreamsPerson() bool
	// IsActivityStreamsPlace returns true if this property has a type of
	// "Place". When true, use the GetActivityStreamsPlace and
	// SetActivityStreamsPlace methods to access and set this property.
	IsActivityStreamsPlace() bool
	// IsActivityStreamsProfile returns true if this property has a type of
	// "Profile". When true, use the GetActivityStreamsProfile and
	// SetActivityStreamsProfile methods to access and set this property.
	IsActivityStreamsProfile() bool
	// IsActivityStreamsQuestion returns true if this property has a type of
	// "Question". When true, use the GetActivityStreamsQuestion and
	// SetActivityStreamsQuestion methods to access and set this property.
	IsActivityStreamsQuestion() bool
	// IsActivityStreamsRead returns true if this property has a type of
	// "Read". When true, use the GetActivityStreamsRead and
	// SetActivityStreamsRead methods to access and set this property.
	IsActivityStreamsRead() bool
	// IsActivityStreamsReject returns true if this property has a type of
	// "Reject". When true, use the GetActivityStreamsReject and
	// SetActivityStreamsReject methods to access and set this property.
	IsActivityStreamsReject() bool
	// IsActivityStreamsRelationship returns true if this property has a type
	// of "Relationship". When true, use the
	// GetActivityStreamsRelationship and SetActivityStreamsRelationship
	// methods to access and set this property.
	IsActivityStreamsRelationship() bool
	// IsActivityStreamsRemove returns true if this property has a type of
	// "Remove". When true, use the GetActivityStreamsRemove and
	// SetActivityStreamsRemove methods to access and set this property.
	IsActivityStreamsRemove() bool
	// IsActivityStreamsService returns true if this property has a type of
	// "Service". When true, use the GetActivityStreamsService and
	// SetActivityStreamsService methods to access and set this property.
	IsActivityStreamsService() bool
	// IsActivityStreamsTentativeAccept returns true if this property has a
	// type of "TentativeAccept". When true, use the
	// GetActivityStreamsTentativeAccept and
	// SetActivityStreamsTentativeAccept methods to access and set this
	// property.
	IsActivityStreamsTentativeAccept() bool
	// IsActivityStreamsTentativeReject returns true if this property has a
	// type of "TentativeReject". When true, use the
	// GetActivityStreamsTentativeReject and
	// SetActivityStreamsTentativeReject methods to access and set this
	// property.
	IsActivityStreamsTentativeReject() bool
	// IsActivityStreamsTombstone returns true if this property has a type of
	// "Tombstone". When true, use the GetActivityStreamsTombstone and
	// SetActivityStreamsTombstone methods to access and set this property.
	IsActivityStreamsTombstone() bool
	// IsActivityStreamsTravel returns true if this property has a type of
	// "Travel". When true, use the GetActivityStreamsTravel and
	// SetActivityStreamsTravel methods to access and set this property.
	IsActivityStreamsTravel() bool
	// IsActivityStreamsUndo returns true if this property has a type of
	// "Undo". When true, use the GetActivityStreamsUndo and
	// SetActivityStreamsUndo methods to access and set this property.
	IsActivityStreamsUndo() bool
	// IsActivityStreamsUpdate returns true if this property has a type of
	// "Update". When true, use the GetActivityStreamsUpdate and
	// SetActivityStreamsUpdate methods to access and set this property.
	IsActivityStreamsUpdate() bool
	// IsActivityStreamsVideo returns true if this property has a type of
	// "Video". When true, use the GetActivityStreamsVideo and
	// SetActivityStreamsVideo methods to access and set this property.
	IsActivityStreamsVideo() bool
	// IsActivityStreamsView returns true if this property has a type of
	// "View". When true, use the GetActivityStreamsView and
	// SetActivityStreamsView methods to access and set this property.
	IsActivityStreamsView() bool
	// IsForgeFedBranch returns true if this property has a type of "Branch".
	// When true, use the GetForgeFedBranch and SetForgeFedBranch methods
	// to access and set this property.
	IsForgeFedBranch() bool
	// IsForgeFedCommit returns true if this property has a type of "Commit".
	// When true, use the GetForgeFedCommit and SetForgeFedCommit methods
	// to access and set this property.
	IsForgeFedCommit() bool
	// IsForgeFedPush returns true if this property has a type of "Push". When
	// true, use the GetForgeFedPush and SetForgeFedPush methods to access
	// and set this property.
	IsForgeFedPush() bool
	// IsForgeFedRepository returns true if this property has a type of
	// "Repository". When true, use the GetForgeFedRepository and
	// SetForgeFedRepository methods to access and set this property.
	IsForgeFedRepository() bool
	// IsForgeFedTicket returns true if this property has a type of "Ticket".
	// When true, use the GetForgeFedTicket and SetForgeFedTicket methods
	// to access and set this property.
	IsForgeFedTicket() bool
	// IsForgeFedTicketDependency returns true if this property has a type of
	// "TicketDependency". When true, use the GetForgeFedTicketDependency
	// and SetForgeFedTicketDependency methods to access and set this
	// property.
	IsForgeFedTicketDependency() bool
	// IsIRI returns true if this property is an IRI. When true, use GetIRI
	// and SetIRI to access and set this property
	IsIRI() bool
	// IsTootEmoji returns true if this property has a type of "Emoji". When
	// true, use the GetTootEmoji and SetTootEmoji methods to access and
	// set this property.
	IsTootEmoji() bool
	// IsTootIdentityProof returns true if this property has a type of
	// "IdentityProof". When true, use the GetTootIdentityProof and
	// SetTootIdentityProof methods to access and set this property.
	IsTootIdentityProof() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsBtoPropertyIterator) bool
	// Name returns the name of this property: "ActivityStreamsBto".
	Name() string
	// Next returns the next iterator, or nil if there is no next iterator.
	Next() ActivityStreamsBtoPropertyIterator
	// Prev returns the previous iterator, or nil if there is no previous
	// iterator.
	Prev() ActivityStreamsBtoPropertyIterator
	// SetActivityStreamsAccept sets the value of this property. Calling
	// IsActivityStreamsAccept afterwards returns true.
	SetActivityStreamsAccept(v ActivityStreamsAccept)
	// SetActivityStreamsActivity sets the value of this property. Calling
	// IsActivityStreamsActivity afterwards returns true.
	SetActivityStreamsActivity(v ActivityStreamsActivity)
	// SetActivityStreamsAdd sets the value of this property. Calling
	// IsActivityStreamsAdd afterwards returns true.
	SetActivityStreamsAdd(v ActivityStreamsAdd)
	// SetActivityStreamsAnnounce sets the value of this property. Calling
	// IsActivityStreamsAnnounce afterwards returns true.
	SetActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// SetActivityStreamsApplication sets the value of this property. Calling
	// IsActivityStreamsApplication afterwards returns true.
	SetActivityStreamsApplication(v ActivityStreamsApplication)
	// SetActivityStreamsArrive sets the value of this property. Calling
	// IsActivityStreamsArrive afterwards returns true.
	SetActivityStreamsArrive(v ActivityStreamsArrive)
	// SetActivityStreamsArticle sets the value of this property. Calling
	// IsActivityStreamsArticle afterwards returns true.
	SetActivityStreamsArticle(v ActivityStreamsArticle)
	// SetActivityStreamsAudio sets the value of this property. Calling
	// IsActivityStreamsAudio afterwards returns true.
	SetActivityStreamsAudio(v ActivityStreamsAudio)
	// SetActivityStreamsBlock sets the value of this property. Calling
	// IsActivityStreamsBlock afterwards returns true.
	SetActivityStreamsBlock(v ActivityStreamsBlock)
	// SetActivityStreamsCollection sets the value of this property. Calling
	// IsActivityStreamsCollection afterwards returns true.
	SetActivityStreamsCollection(v ActivityStreamsCollection)
	// SetActivityStreamsCollectionPage sets the value of this property.
	// Calling IsActivityStreamsCollectionPage afterwards returns true.
	SetActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// SetActivityStreamsCreate sets the value of this property. Calling
	// IsActivityStreamsCreate afterwards returns true.
	SetActivityStreamsCreate(v ActivityStreamsCreate)
	// SetActivityStreamsDelete sets the value of this property. Calling
	// IsActivityStreamsDelete afterwards returns true.
	SetActivityStreamsDelete(v ActivityStreamsDelete)
	// SetActivityStreamsDislike sets the value of this property. Calling
	// IsActivityStreamsDislike afterwards returns true.
	SetActivityStreamsDislike(v ActivityStreamsDislike)
	// SetActivityStreamsDocument sets the value of this property. Calling
	// IsActivityStreamsDocument afterwards returns true.
	SetActivityStreamsDocument(v ActivityStreamsDocument)
	// SetActivityStreamsEvent sets the value of this property. Calling
	// IsActivityStreamsEvent afterwards returns true.
	SetActivityStreamsEvent(v ActivityStreamsEvent)
	// SetActivityStreamsFlag sets the value of this property. Calling
	// IsActivityStreamsFlag afterwards returns true.
	SetActivityStreamsFlag(v ActivityStreamsFlag)
	// SetActivityStreamsFollow sets the value of this property. Calling
	// IsActivityStreamsFollow afterwards returns true.
	SetActivityStreamsFollow(v ActivityStreamsFollow)
	// SetActivityStreamsGroup sets the value of this property. Calling
	// IsActivityStreamsGroup afterwards returns true.
	SetActivityStreamsGroup(v ActivityStreamsGroup)
	// SetActivityStreamsIgnore sets the value of this property. Calling
	// IsActivityStreamsIgnore afterwards returns true.
	SetActivityStreamsIgnore(v ActivityStreamsIgnore)
	// SetActivityStreamsImage sets the value of this property. Calling
	// IsActivityStreamsImage afterwards returns true.
	SetActivityStreamsImage(v ActivityStreamsImage)
	// SetActivityStreamsIntransitiveActivity sets the value of this property.
	// Calling IsActivityStreamsIntransitiveActivity afterwards returns
	// true.
	SetActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// SetActivityStreamsInvite sets the value of this property. Calling
	// IsActivityStreamsInvite afterwards returns true.
	SetActivityStreamsInvite(v ActivityStreamsInvite)
	// SetActivityStreamsJoin sets the value of this property. Calling
	// IsActivityStreamsJoin afterwards returns true.
	SetActivityStreamsJoin(v ActivityStreamsJoin)
	// SetActivityStreamsLeave sets the value of this property. Calling
	// IsActivityStreamsLeave afterwards returns true.
	SetActivityStreamsLeave(v ActivityStreamsLeave)
	// SetActivityStreamsLike sets the value of this property. Calling
	// IsActivityStreamsLike afterwards returns true.
	SetActivityStreamsLike(v ActivityStreamsLike)
	// SetActivityStreamsLink sets the value of this property. Calling
	// IsActivityStreamsLink afterwards returns true.
	SetActivityStreamsLink(v ActivityStreamsLink)
	// SetActivityStreamsListen sets the value of this property. Calling
	// IsActivityStreamsListen afterwards returns true.
	SetActivityStreamsListen(v ActivityStreamsListen)
	// SetActivityStreamsMention sets the value of this property. Calling
	// IsActivityStreamsMention afterwards returns true.
	SetActivityStreamsMention(v ActivityStreamsMention)
	// SetActivityStreamsMove sets the value of this property. Calling
	// IsActivityStreamsMove afterwards returns true.
	SetActivityStreamsMove(v ActivityStreamsMove)
	// SetActivityStreamsNote sets the value of this property. Calling
	// IsActivityStreamsNote afterwards returns true.
	SetActivityStreamsNote(v ActivityStreamsNote)
	// SetActivityStreamsObject sets the value of this property. Calling
	// IsActivityStreamsObject afterwards returns true.
	SetActivityStreamsObject(v ActivityStreamsObject)
	// SetActivityStreamsOffer sets the value of this property. Calling
	// IsActivityStreamsOffer afterwards returns true.
	SetActivityStreamsOffer(v ActivityStreamsOffer)
	// SetActivityStreamsOrderedCollection sets the value of this property.
	// Calling IsActivityStreamsOrderedCollection afterwards returns true.
	SetActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// SetActivityStreamsOrderedCollectionPage sets the value of this
	// property. Calling IsActivityStreamsOrderedCollectionPage afterwards
	// returns true.
	SetActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// SetActivityStreamsOrganization sets the value of this property. Calling
	// IsActivityStreamsOrganization afterwards returns true.
	SetActivityStreamsOrganization(v ActivityStreamsOrganization)
	// SetActivityStreamsPage sets the value of this property. Calling
	// IsActivityStreamsPage afterwards returns true.
	SetActivityStreamsPage(v ActivityStreamsPage)
	// SetActivityStreamsPerson sets the value of this property. Calling
	// IsActivityStreamsPerson afterwards returns true.
	SetActivityStreamsPerson(v ActivityStreamsPerson)
	// SetActivityStreamsPlace sets the value of this property. Calling
	// IsActivityStreamsPlace afterwards returns true.
	SetActivityStreamsPlace(v ActivityStreamsPlace)
	// SetActivityStreamsProfile sets the value of this property. Calling
	// IsActivityStreamsProfile afterwards returns true.
	SetActivityStreamsProfile(v ActivityStreamsProfile)
	// SetActivityStreamsQuestion sets the value of this property. Calling
	// IsActivityStreamsQuestion afterwards returns true.
	SetActivityStreamsQuestion(v ActivityStreamsQuestion)
	// SetActivityStreamsRead sets the value of this property. Calling
	// IsActivityStreamsRead afterwards returns true.
	SetActivityStreamsRead(v ActivityStreamsRead)
	// SetActivityStreamsReject sets the value of this property. Calling
	// IsActivityStreamsReject afterwards returns true.
	SetActivityStreamsReject(v ActivityStreamsReject)
	// SetActivityStreamsRelationship sets the value of this property. Calling
	// IsActivityStreamsRelationship afterwards returns true.
	SetActivityStreamsRelationship(v ActivityStreamsRelationship)
	// SetActivityStreamsRemove sets the value of this property. Calling
	// IsActivityStreamsRemove afterwards returns true.
	SetActivityStreamsRemove(v ActivityStreamsRemove)
	// SetActivityStreamsService sets the value of this property. Calling
	// IsActivityStreamsService afterwards returns true.
	SetActivityStreamsService(v ActivityStreamsService)
	// SetActivityStreamsTentativeAccept sets the value of this property.
	// Calling IsActivityStreamsTentativeAccept afterwards returns true.
	SetActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// SetActivityStreamsTentativeReject sets the value of this property.
	// Calling IsActivityStreamsTentativeReject afterwards returns true.
	SetActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// SetActivityStreamsTombstone sets the value of this property. Calling
	// IsActivityStreamsTombstone afterwards returns true.
	SetActivityStreamsTombstone(v ActivityStreamsTombstone)
	// SetActivityStreamsTravel sets the value of this property. Calling
	// IsActivityStreamsTravel afterwards returns true.
	SetActivityStreamsTravel(v ActivityStreamsTravel)
	// SetActivityStreamsUndo sets the value of this property. Calling
	// IsActivityStreamsUndo afterwards returns true.
	SetActivityStreamsUndo(v ActivityStreamsUndo)
	// SetActivityStreamsUpdate sets the value of this property. Calling
	// IsActivityStreamsUpdate afterwards returns true.
	SetActivityStreamsUpdate(v ActivityStreamsUpdate)
	// SetActivityStreamsVideo sets the value of this property. Calling
	// IsActivityStreamsVideo afterwards returns true.
	SetActivityStreamsVideo(v ActivityStreamsVideo)
	// SetActivityStreamsView sets the value of this property. Calling
	// IsActivityStreamsView afterwards returns true.
	SetActivityStreamsView(v ActivityStreamsView)
	// SetForgeFedBranch sets the value of this property. Calling
	// IsForgeFedBranch afterwards returns true.
	SetForgeFedBranch(v ForgeFedBranch)
	// SetForgeFedCommit sets the value of this property. Calling
	// IsForgeFedCommit afterwards returns true.
	SetForgeFedCommit(v ForgeFedCommit)
	// SetForgeFedPush sets the value of this property. Calling IsForgeFedPush
	// afterwards returns true.
	SetForgeFedPush(v ForgeFedPush)
	// SetForgeFedRepository sets the value of this property. Calling
	// IsForgeFedRepository afterwards returns true.
	SetForgeFedRepository(v ForgeFedRepository)
	// SetForgeFedTicket sets the value of this property. Calling
	// IsForgeFedTicket afterwards returns true.
	SetForgeFedTicket(v ForgeFedTicket)
	// SetForgeFedTicketDependency sets the value of this property. Calling
	// IsForgeFedTicketDependency afterwards returns true.
	SetForgeFedTicketDependency(v ForgeFedTicketDependency)
	// SetIRI sets the value of this property. Calling IsIRI afterwards
	// returns true.
	SetIRI(v *url.URL)
	// SetTootEmoji sets the value of this property. Calling IsTootEmoji
	// afterwards returns true.
	SetTootEmoji(v TootEmoji)
	// SetTootIdentityProof sets the value of this property. Calling
	// IsTootIdentityProof afterwards returns true.
	SetTootIdentityProof(v TootIdentityProof)
	// SetType attempts to set the property for the arbitrary type. Returns an
	// error if it is not a valid type to set on this property.
	SetType(t Type) error
}

ActivityStreamsBtoPropertyIterator represents a single value for the "bto" property.

type ActivityStreamsCcProperty

type ActivityStreamsCcProperty interface {
	// AppendActivityStreamsAccept appends a Accept value to the back of a
	// list of the property "cc". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsAccept(v ActivityStreamsAccept)
	// AppendActivityStreamsActivity appends a Activity value to the back of a
	// list of the property "cc". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsActivity(v ActivityStreamsActivity)
	// AppendActivityStreamsAdd appends a Add value to the back of a list of
	// the property "cc". Invalidates iterators that are traversing using
	// Prev.
	AppendActivityStreamsAdd(v ActivityStreamsAdd)
	// AppendActivityStreamsAnnounce appends a Announce value to the back of a
	// list of the property "cc". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// AppendActivityStreamsApplication appends a Application value to the
	// back of a list of the property "cc". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsApplication(v ActivityStreamsApplication)
	// AppendActivityStreamsArrive appends a Arrive value to the back of a
	// list of the property "cc". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsArrive(v ActivityStreamsArrive)
	// AppendActivityStreamsArticle appends a Article value to the back of a
	// list of the property "cc". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsArticle(v ActivityStreamsArticle)
	// AppendActivityStreamsAudio appends a Audio value to the back of a list
	// of the property "cc". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsAudio(v ActivityStreamsAudio)
	// AppendActivityStreamsBlock appends a Block value to the back of a list
	// of the property "cc". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsBlock(v ActivityStreamsBlock)
	// AppendActivityStreamsCollection appends a Collection value to the back
	// of a list of the property "cc". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsCollection(v ActivityStreamsCollection)
	// AppendActivityStreamsCollectionPage appends a CollectionPage value to
	// the back of a list of the property "cc". Invalidates iterators that
	// are traversing using Prev.
	AppendActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// AppendActivityStreamsCreate appends a Create value to the back of a
	// list of the property "cc". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsCreate(v ActivityStreamsCreate)
	// AppendActivityStreamsDelete appends a Delete value to the back of a
	// list of the property "cc". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDelete(v ActivityStreamsDelete)
	// AppendActivityStreamsDislike appends a Dislike value to the back of a
	// list of the property "cc". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDislike(v ActivityStreamsDislike)
	// AppendActivityStreamsDocument appends a Document value to the back of a
	// list of the property "cc". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDocument(v ActivityStreamsDocument)
	// AppendActivityStreamsEvent appends a Event value to the back of a list
	// of the property "cc". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsEvent(v ActivityStreamsEvent)
	// AppendActivityStreamsFlag appends a Flag value to the back of a list of
	// the property "cc". Invalidates iterators that are traversing using
	// Prev.
	AppendActivityStreamsFlag(v ActivityStreamsFlag)
	// AppendActivityStreamsFollow appends a Follow value to the back of a
	// list of the property "cc". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsFollow(v ActivityStreamsFollow)
	// AppendActivityStreamsGroup appends a Group value to the back of a list
	// of the property "cc". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsGroup(v ActivityStreamsGroup)
	// AppendActivityStreamsIgnore appends a Ignore value to the back of a
	// list of the property "cc". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsIgnore(v ActivityStreamsIgnore)
	// AppendActivityStreamsImage appends a Image value to the back of a list
	// of the property "cc". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsImage(v ActivityStreamsImage)
	// AppendActivityStreamsIntransitiveActivity appends a
	// IntransitiveActivity value to the back of a list of the property
	// "cc". Invalidates iterators that are traversing using Prev.
	AppendActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// AppendActivityStreamsInvite appends a Invite value to the back of a
	// list of the property "cc". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsInvite(v ActivityStreamsInvite)
	// AppendActivityStreamsJoin appends a Join value to the back of a list of
	// the property "cc". Invalidates iterators that are traversing using
	// Prev.
	AppendActivityStreamsJoin(v ActivityStreamsJoin)
	// AppendActivityStreamsLeave appends a Leave value to the back of a list
	// of the property "cc". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsLeave(v ActivityStreamsLeave)
	// AppendActivityStreamsLike appends a Like value to the back of a list of
	// the property "cc". Invalidates iterators that are traversing using
	// Prev.
	AppendActivityStreamsLike(v ActivityStreamsLike)
	// AppendActivityStreamsLink appends a Link value to the back of a list of
	// the property "cc". Invalidates iterators that are traversing using
	// Prev.
	AppendActivityStreamsLink(v ActivityStreamsLink)
	// AppendActivityStreamsListen appends a Listen value to the back of a
	// list of the property "cc". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsListen(v ActivityStreamsListen)
	// AppendActivityStreamsMention appends a Mention value to the back of a
	// list of the property "cc". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsMention(v ActivityStreamsMention)
	// AppendActivityStreamsMove appends a Move value to the back of a list of
	// the property "cc". Invalidates iterators that are traversing using
	// Prev.
	AppendActivityStreamsMove(v ActivityStreamsMove)
	// AppendActivityStreamsNote appends a Note value to the back of a list of
	// the property "cc". Invalidates iterators that are traversing using
	// Prev.
	AppendActivityStreamsNote(v ActivityStreamsNote)
	// AppendActivityStreamsObject appends a Object value to the back of a
	// list of the property "cc". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsObject(v ActivityStreamsObject)
	// AppendActivityStreamsOffer appends a Offer value to the back of a list
	// of the property "cc". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsOffer(v ActivityStreamsOffer)
	// AppendActivityStreamsOrderedCollection appends a OrderedCollection
	// value to the back of a list of the property "cc". Invalidates
	// iterators that are traversing using Prev.
	AppendActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// AppendActivityStreamsOrderedCollectionPage appends a
	// OrderedCollectionPage value to the back of a list of the property
	// "cc". Invalidates iterators that are traversing using Prev.
	AppendActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// AppendActivityStreamsOrganization appends a Organization value to the
	// back of a list of the property "cc". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsOrganization(v ActivityStreamsOrganization)
	// AppendActivityStreamsPage appends a Page value to the back of a list of
	// the property "cc". Invalidates iterators that are traversing using
	// Prev.
	AppendActivityStreamsPage(v ActivityStreamsPage)
	// AppendActivityStreamsPerson appends a Person value to the back of a
	// list of the property "cc". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsPerson(v ActivityStreamsPerson)
	// AppendActivityStreamsPlace appends a Place value to the back of a list
	// of the property "cc". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsPlace(v ActivityStreamsPlace)
	// AppendActivityStreamsProfile appends a Profile value to the back of a
	// list of the property "cc". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsProfile(v ActivityStreamsProfile)
	// AppendActivityStreamsQuestion appends a Question value to the back of a
	// list of the property "cc". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsQuestion(v ActivityStreamsQuestion)
	// AppendActivityStreamsRead appends a Read value to the back of a list of
	// the property "cc". Invalidates iterators that are traversing using
	// Prev.
	AppendActivityStreamsRead(v ActivityStreamsRead)
	// AppendActivityStreamsReject appends a Reject value to the back of a
	// list of the property "cc". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsReject(v ActivityStreamsReject)
	// AppendActivityStreamsRelationship appends a Relationship value to the
	// back of a list of the property "cc". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsRelationship(v ActivityStreamsRelationship)
	// AppendActivityStreamsRemove appends a Remove value to the back of a
	// list of the property "cc". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsRemove(v ActivityStreamsRemove)
	// AppendActivityStreamsService appends a Service value to the back of a
	// list of the property "cc". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsService(v ActivityStreamsService)
	// AppendActivityStreamsTentativeAccept appends a TentativeAccept value to
	// the back of a list of the property "cc". Invalidates iterators that
	// are traversing using Prev.
	AppendActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// AppendActivityStreamsTentativeReject appends a TentativeReject value to
	// the back of a list of the property "cc". Invalidates iterators that
	// are traversing using Prev.
	AppendActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// AppendActivityStreamsTombstone appends a Tombstone value to the back of
	// a list of the property "cc". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsTombstone(v ActivityStreamsTombstone)
	// AppendActivityStreamsTravel appends a Travel value to the back of a
	// list of the property "cc". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsTravel(v ActivityStreamsTravel)
	// AppendActivityStreamsUndo appends a Undo value to the back of a list of
	// the property "cc". Invalidates iterators that are traversing using
	// Prev.
	AppendActivityStreamsUndo(v ActivityStreamsUndo)
	// AppendActivityStreamsUpdate appends a Update value to the back of a
	// list of the property "cc". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsUpdate(v ActivityStreamsUpdate)
	// AppendActivityStreamsVideo appends a Video value to the back of a list
	// of the property "cc". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsVideo(v ActivityStreamsVideo)
	// AppendActivityStreamsView appends a View value to the back of a list of
	// the property "cc". Invalidates iterators that are traversing using
	// Prev.
	AppendActivityStreamsView(v ActivityStreamsView)
	// AppendForgeFedBranch appends a Branch value to the back of a list of
	// the property "cc". Invalidates iterators that are traversing using
	// Prev.
	AppendForgeFedBranch(v ForgeFedBranch)
	// AppendForgeFedCommit appends a Commit value to the back of a list of
	// the property "cc". Invalidates iterators that are traversing using
	// Prev.
	AppendForgeFedCommit(v ForgeFedCommit)
	// AppendForgeFedPush appends a Push value to the back of a list of the
	// property "cc". Invalidates iterators that are traversing using Prev.
	AppendForgeFedPush(v ForgeFedPush)
	// AppendForgeFedRepository appends a Repository value to the back of a
	// list of the property "cc". Invalidates iterators that are
	// traversing using Prev.
	AppendForgeFedRepository(v ForgeFedRepository)
	// AppendForgeFedTicket appends a Ticket value to the back of a list of
	// the property "cc". Invalidates iterators that are traversing using
	// Prev.
	AppendForgeFedTicket(v ForgeFedTicket)
	// AppendForgeFedTicketDependency appends a TicketDependency value to the
	// back of a list of the property "cc". Invalidates iterators that are
	// traversing using Prev.
	AppendForgeFedTicketDependency(v ForgeFedTicketDependency)
	// AppendIRI appends an IRI value to the back of a list of the property
	// "cc"
	AppendIRI(v *url.URL)
	// AppendTootEmoji appends a Emoji value to the back of a list of the
	// property "cc". Invalidates iterators that are traversing using Prev.
	AppendTootEmoji(v TootEmoji)
	// AppendTootIdentityProof appends a IdentityProof value to the back of a
	// list of the property "cc". Invalidates iterators that are
	// traversing using Prev.
	AppendTootIdentityProof(v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "cc". Invalidates iterators that are traversing using
	// Prev. Returns an error if the type is not a valid one to set for
	// this property.
	AppendType(t Type) error
	// At returns the property value for the specified index. Panics if the
	// index is out of bounds.
	At(index int) ActivityStreamsCcPropertyIterator
	// Begin returns the first iterator, or nil if empty. Can be used with the
	// iterator's Next method and this property's End method to iterate
	// from front to back through all values.
	Begin() ActivityStreamsCcPropertyIterator
	// Empty returns returns true if there are no elements.
	Empty() bool
	// End returns beyond-the-last iterator, which is nil. Can be used with
	// the iterator's Next method and this property's Begin method to
	// iterate from front to back through all values.
	End() ActivityStreamsCcPropertyIterator
	// InsertActivityStreamsAccept inserts a Accept value at the specified
	// index for a property "cc". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAccept(idx int, v ActivityStreamsAccept)
	// InsertActivityStreamsActivity inserts a Activity value at the specified
	// index for a property "cc". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsActivity(idx int, v ActivityStreamsActivity)
	// InsertActivityStreamsAdd inserts a Add value at the specified index for
	// a property "cc". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertActivityStreamsAdd(idx int, v ActivityStreamsAdd)
	// InsertActivityStreamsAnnounce inserts a Announce value at the specified
	// index for a property "cc". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAnnounce(idx int, v ActivityStreamsAnnounce)
	// InsertActivityStreamsApplication inserts a Application value at the
	// specified index for a property "cc". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsApplication(idx int, v ActivityStreamsApplication)
	// InsertActivityStreamsArrive inserts a Arrive value at the specified
	// index for a property "cc". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsArrive(idx int, v ActivityStreamsArrive)
	// InsertActivityStreamsArticle inserts a Article value at the specified
	// index for a property "cc". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsArticle(idx int, v ActivityStreamsArticle)
	// InsertActivityStreamsAudio inserts a Audio value at the specified index
	// for a property "cc". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertActivityStreamsAudio(idx int, v ActivityStreamsAudio)
	// InsertActivityStreamsBlock inserts a Block value at the specified index
	// for a property "cc". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertActivityStreamsBlock(idx int, v ActivityStreamsBlock)
	// InsertActivityStreamsCollection inserts a Collection value at the
	// specified index for a property "cc". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsCollection(idx int, v ActivityStreamsCollection)
	// InsertActivityStreamsCollectionPage inserts a CollectionPage value at
	// the specified index for a property "cc". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsCollectionPage(idx int, v ActivityStreamsCollectionPage)
	// InsertActivityStreamsCreate inserts a Create value at the specified
	// index for a property "cc". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsCreate(idx int, v ActivityStreamsCreate)
	// InsertActivityStreamsDelete inserts a Delete value at the specified
	// index for a property "cc". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDelete(idx int, v ActivityStreamsDelete)
	// InsertActivityStreamsDislike inserts a Dislike value at the specified
	// index for a property "cc". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDislike(idx int, v ActivityStreamsDislike)
	// InsertActivityStreamsDocument inserts a Document value at the specified
	// index for a property "cc". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDocument(idx int, v ActivityStreamsDocument)
	// InsertActivityStreamsEvent inserts a Event value at the specified index
	// for a property "cc". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertActivityStreamsEvent(idx int, v ActivityStreamsEvent)
	// InsertActivityStreamsFlag inserts a Flag value at the specified index
	// for a property "cc". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertActivityStreamsFlag(idx int, v ActivityStreamsFlag)
	// InsertActivityStreamsFollow inserts a Follow value at the specified
	// index for a property "cc". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsFollow(idx int, v ActivityStreamsFollow)
	// InsertActivityStreamsGroup inserts a Group value at the specified index
	// for a property "cc". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertActivityStreamsGroup(idx int, v ActivityStreamsGroup)
	// InsertActivityStreamsIgnore inserts a Ignore value at the specified
	// index for a property "cc". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsIgnore(idx int, v ActivityStreamsIgnore)
	// InsertActivityStreamsImage inserts a Image value at the specified index
	// for a property "cc". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertActivityStreamsImage(idx int, v ActivityStreamsImage)
	// InsertActivityStreamsIntransitiveActivity inserts a
	// IntransitiveActivity value at the specified index for a property
	// "cc". Existing elements at that index and higher are shifted back
	// once. Invalidates all iterators.
	InsertActivityStreamsIntransitiveActivity(idx int, v ActivityStreamsIntransitiveActivity)
	// InsertActivityStreamsInvite inserts a Invite value at the specified
	// index for a property "cc". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsInvite(idx int, v ActivityStreamsInvite)
	// InsertActivityStreamsJoin inserts a Join value at the specified index
	// for a property "cc". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertActivityStreamsJoin(idx int, v ActivityStreamsJoin)
	// InsertActivityStreamsLeave inserts a Leave value at the specified index
	// for a property "cc". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertActivityStreamsLeave(idx int, v ActivityStreamsLeave)
	// InsertActivityStreamsLike inserts a Like value at the specified index
	// for a property "cc". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertActivityStreamsLike(idx int, v ActivityStreamsLike)
	// InsertActivityStreamsLink inserts a Link value at the specified index
	// for a property "cc". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertActivityStreamsLink(idx int, v ActivityStreamsLink)
	// InsertActivityStreamsListen inserts a Listen value at the specified
	// index for a property "cc". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsListen(idx int, v ActivityStreamsListen)
	// InsertActivityStreamsMention inserts a Mention value at the specified
	// index for a property "cc". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsMention(idx int, v ActivityStreamsMention)
	// InsertActivityStreamsMove inserts a Move value at the specified index
	// for a property "cc". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertActivityStreamsMove(idx int, v ActivityStreamsMove)
	// InsertActivityStreamsNote inserts a Note value at the specified index
	// for a property "cc". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertActivityStreamsNote(idx int, v ActivityStreamsNote)
	// InsertActivityStreamsObject inserts a Object value at the specified
	// index for a property "cc". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsObject(idx int, v ActivityStreamsObject)
	// InsertActivityStreamsOffer inserts a Offer value at the specified index
	// for a property "cc". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertActivityStreamsOffer(idx int, v ActivityStreamsOffer)
	// InsertActivityStreamsOrderedCollection inserts a OrderedCollection
	// value at the specified index for a property "cc". Existing elements
	// at that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsOrderedCollection(idx int, v ActivityStreamsOrderedCollection)
	// InsertActivityStreamsOrderedCollectionPage inserts a
	// OrderedCollectionPage value at the specified index for a property
	// "cc". Existing elements at that index and higher are shifted back
	// once. Invalidates all iterators.
	InsertActivityStreamsOrderedCollectionPage(idx int, v ActivityStreamsOrderedCollectionPage)
	// InsertActivityStreamsOrganization inserts a Organization value at the
	// specified index for a property "cc". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsOrganization(idx int, v ActivityStreamsOrganization)
	// InsertActivityStreamsPage inserts a Page value at the specified index
	// for a property "cc". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertActivityStreamsPage(idx int, v ActivityStreamsPage)
	// InsertActivityStreamsPerson inserts a Person value at the specified
	// index for a property "cc". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsPerson(idx int, v ActivityStreamsPerson)
	// InsertActivityStreamsPlace inserts a Place value at the specified index
	// for a property "cc". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertActivityStreamsPlace(idx int, v ActivityStreamsPlace)
	// InsertActivityStreamsProfile inserts a Profile value at the specified
	// index for a property "cc". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsProfile(idx int, v ActivityStreamsProfile)
	// InsertActivityStreamsQuestion inserts a Question value at the specified
	// index for a property "cc". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsQuestion(idx int, v ActivityStreamsQuestion)
	// InsertActivityStreamsRead inserts a Read value at the specified index
	// for a property "cc". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertActivityStreamsRead(idx int, v ActivityStreamsRead)
	// InsertActivityStreamsReject inserts a Reject value at the specified
	// index for a property "cc". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsReject(idx int, v ActivityStreamsReject)
	// InsertActivityStreamsRelationship inserts a Relationship value at the
	// specified index for a property "cc". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsRelationship(idx int, v ActivityStreamsRelationship)
	// InsertActivityStreamsRemove inserts a Remove value at the specified
	// index for a property "cc". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsRemove(idx int, v ActivityStreamsRemove)
	// InsertActivityStreamsService inserts a Service value at the specified
	// index for a property "cc". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsService(idx int, v ActivityStreamsService)
	// InsertActivityStreamsTentativeAccept inserts a TentativeAccept value at
	// the specified index for a property "cc". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsTentativeAccept(idx int, v ActivityStreamsTentativeAccept)
	// InsertActivityStreamsTentativeReject inserts a TentativeReject value at
	// the specified index for a property "cc". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsTentativeReject(idx int, v ActivityStreamsTentativeReject)
	// InsertActivityStreamsTombstone inserts a Tombstone value at the
	// specified index for a property "cc". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsTombstone(idx int, v ActivityStreamsTombstone)
	// InsertActivityStreamsTravel inserts a Travel value at the specified
	// index for a property "cc". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsTravel(idx int, v ActivityStreamsTravel)
	// InsertActivityStreamsUndo inserts a Undo value at the specified index
	// for a property "cc". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertActivityStreamsUndo(idx int, v ActivityStreamsUndo)
	// InsertActivityStreamsUpdate inserts a Update value at the specified
	// index for a property "cc". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsUpdate(idx int, v ActivityStreamsUpdate)
	// InsertActivityStreamsVideo inserts a Video value at the specified index
	// for a property "cc". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertActivityStreamsVideo(idx int, v ActivityStreamsVideo)
	// InsertActivityStreamsView inserts a View value at the specified index
	// for a property "cc". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertActivityStreamsView(idx int, v ActivityStreamsView)
	// InsertForgeFedBranch inserts a Branch value at the specified index for
	// a property "cc". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertForgeFedBranch(idx int, v ForgeFedBranch)
	// InsertForgeFedCommit inserts a Commit value at the specified index for
	// a property "cc". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertForgeFedCommit(idx int, v ForgeFedCommit)
	// InsertForgeFedPush inserts a Push value at the specified index for a
	// property "cc". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertForgeFedPush(idx int, v ForgeFedPush)
	// InsertForgeFedRepository inserts a Repository value at the specified
	// index for a property "cc". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertForgeFedRepository(idx int, v ForgeFedRepository)
	// InsertForgeFedTicket inserts a Ticket value at the specified index for
	// a property "cc". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertForgeFedTicket(idx int, v ForgeFedTicket)
	// InsertForgeFedTicketDependency inserts a TicketDependency value at the
	// specified index for a property "cc". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
	// Insert inserts an IRI value at the specified index for a property "cc".
	// Existing elements at that index and higher are shifted back once.
	// Invalidates all iterators.
	InsertIRI(idx int, v *url.URL)
	// InsertTootEmoji inserts a Emoji value at the specified index for a
	// property "cc". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertTootEmoji(idx int, v TootEmoji)
	// InsertTootIdentityProof inserts a IdentityProof value at the specified
	// index for a property "cc". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertTootIdentityProof(idx int, v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "cc". Invalidates all iterators. Returns an error if
	// the type is not a valid one to set for this property.
	InsertType(idx int, t Type) error
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API method specifically needed only for alternate
	// implementations for go-fed. Applications should not use this
	// method. Panics if the index is out of bounds.
	KindIndex(idx int) int
	// Len returns the number of values that exist for the "cc" property.
	Len() (length int)
	// Less computes whether another property is less than this one. Mixing
	// types results in a consistent but arbitrary ordering
	Less(i, j int) bool
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsCcProperty) bool
	// Name returns the name of this property ("cc") with any alias.
	Name() string
	// PrependActivityStreamsAccept prepends a Accept value to the front of a
	// list of the property "cc". Invalidates all iterators.
	PrependActivityStreamsAccept(v ActivityStreamsAccept)
	// PrependActivityStreamsActivity prepends a Activity value to the front
	// of a list of the property "cc". Invalidates all iterators.
	PrependActivityStreamsActivity(v ActivityStreamsActivity)
	// PrependActivityStreamsAdd prepends a Add value to the front of a list
	// of the property "cc". Invalidates all iterators.
	PrependActivityStreamsAdd(v ActivityStreamsAdd)
	// PrependActivityStreamsAnnounce prepends a Announce value to the front
	// of a list of the property "cc". Invalidates all iterators.
	PrependActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// PrependActivityStreamsApplication prepends a Application value to the
	// front of a list of the property "cc". Invalidates all iterators.
	PrependActivityStreamsApplication(v ActivityStreamsApplication)
	// PrependActivityStreamsArrive prepends a Arrive value to the front of a
	// list of the property "cc". Invalidates all iterators.
	PrependActivityStreamsArrive(v ActivityStreamsArrive)
	// PrependActivityStreamsArticle prepends a Article value to the front of
	// a list of the property "cc". Invalidates all iterators.
	PrependActivityStreamsArticle(v ActivityStreamsArticle)
	// PrependActivityStreamsAudio prepends a Audio value to the front of a
	// list of the property "cc". Invalidates all iterators.
	PrependActivityStreamsAudio(v ActivityStreamsAudio)
	// PrependActivityStreamsBlock prepends a Block value to the front of a
	// list of the property "cc". Invalidates all iterators.
	PrependActivityStreamsBlock(v ActivityStreamsBlock)
	// PrependActivityStreamsCollection prepends a Collection value to the
	// front of a list of the property "cc". Invalidates all iterators.
	PrependActivityStreamsCollection(v ActivityStreamsCollection)
	// PrependActivityStreamsCollectionPage prepends a CollectionPage value to
	// the front of a list of the property "cc". Invalidates all iterators.
	PrependActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// PrependActivityStreamsCreate prepends a Create value to the front of a
	// list of the property "cc". Invalidates all iterators.
	PrependActivityStreamsCreate(v ActivityStreamsCreate)
	// PrependActivityStreamsDelete prepends a Delete value to the front of a
	// list of the property "cc". Invalidates all iterators.
	PrependActivityStreamsDelete(v ActivityStreamsDelete)
	// PrependActivityStreamsDislike prepends a Dislike value to the front of
	// a list of the property "cc". Invalidates all iterators.
	PrependActivityStreamsDislike(v ActivityStreamsDislike)
	// PrependActivityStreamsDocument prepends a Document value to the front
	// of a list of the property "cc". Invalidates all iterators.
	PrependActivityStreamsDocument(v ActivityStreamsDocument)
	// PrependActivityStreamsEvent prepends a Event value to the front of a
	// list of the property "cc". Invalidates all iterators.
	PrependActivityStreamsEvent(v ActivityStreamsEvent)
	// PrependActivityStreamsFlag prepends a Flag value to the front of a list
	// of the property "cc". Invalidates all iterators.
	PrependActivityStreamsFlag(v ActivityStreamsFlag)
	// PrependActivityStreamsFollow prepends a Follow value to the front of a
	// list of the property "cc". Invalidates all iterators.
	PrependActivityStreamsFollow(v ActivityStreamsFollow)
	// PrependActivityStreamsGroup prepends a Group value to the front of a
	// list of the property "cc". Invalidates all iterators.
	PrependActivityStreamsGroup(v ActivityStreamsGroup)
	// PrependActivityStreamsIgnore prepends a Ignore value to the front of a
	// list of the property "cc". Invalidates all iterators.
	PrependActivityStreamsIgnore(v ActivityStreamsIgnore)
	// PrependActivityStreamsImage prepends a Image value to the front of a
	// list of the property "cc". Invalidates all iterators.
	PrependActivityStreamsImage(v ActivityStreamsImage)
	// PrependActivityStreamsIntransitiveActivity prepends a
	// IntransitiveActivity value to the front of a list of the property
	// "cc". Invalidates all iterators.
	PrependActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// PrependActivityStreamsInvite prepends a Invite value to the front of a
	// list of the property "cc". Invalidates all iterators.
	PrependActivityStreamsInvite(v ActivityStreamsInvite)
	// PrependActivityStreamsJoin prepends a Join value to the front of a list
	// of the property "cc". Invalidates all iterators.
	PrependActivityStreamsJoin(v ActivityStreamsJoin)
	// PrependActivityStreamsLeave prepends a Leave value to the front of a
	// list of the property "cc". Invalidates all iterators.
	PrependActivityStreamsLeave(v ActivityStreamsLeave)
	// PrependActivityStreamsLike prepends a Like value to the front of a list
	// of the property "cc". Invalidates all iterators.
	PrependActivityStreamsLike(v ActivityStreamsLike)
	// PrependActivityStreamsLink prepends a Link value to the front of a list
	// of the property "cc". Invalidates all iterators.
	PrependActivityStreamsLink(v ActivityStreamsLink)
	// PrependActivityStreamsListen prepends a Listen value to the front of a
	// list of the property "cc". Invalidates all iterators.
	PrependActivityStreamsListen(v ActivityStreamsListen)
	// PrependActivityStreamsMention prepends a Mention value to the front of
	// a list of the property "cc". Invalidates all iterators.
	PrependActivityStreamsMention(v ActivityStreamsMention)
	// PrependActivityStreamsMove prepends a Move value to the front of a list
	// of the property "cc". Invalidates all iterators.
	PrependActivityStreamsMove(v ActivityStreamsMove)
	// PrependActivityStreamsNote prepends a Note value to the front of a list
	// of the property "cc". Invalidates all iterators.
	PrependActivityStreamsNote(v ActivityStreamsNote)
	// PrependActivityStreamsObject prepends a Object value to the front of a
	// list of the property "cc". Invalidates all iterators.
	PrependActivityStreamsObject(v ActivityStreamsObject)
	// PrependActivityStreamsOffer prepends a Offer value to the front of a
	// list of the property "cc". Invalidates all iterators.
	PrependActivityStreamsOffer(v ActivityStreamsOffer)
	// PrependActivityStreamsOrderedCollection prepends a OrderedCollection
	// value to the front of a list of the property "cc". Invalidates all
	// iterators.
	PrependActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// PrependActivityStreamsOrderedCollectionPage prepends a
	// OrderedCollectionPage value to the front of a list of the property
	// "cc". Invalidates all iterators.
	PrependActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// PrependActivityStreamsOrganization prepends a Organization value to the
	// front of a list of the property "cc". Invalidates all iterators.
	PrependActivityStreamsOrganization(v ActivityStreamsOrganization)
	// PrependActivityStreamsPage prepends a Page value to the front of a list
	// of the property "cc". Invalidates all iterators.
	PrependActivityStreamsPage(v ActivityStreamsPage)
	// PrependActivityStreamsPerson prepends a Person value to the front of a
	// list of the property "cc". Invalidates all iterators.
	PrependActivityStreamsPerson(v ActivityStreamsPerson)
	// PrependActivityStreamsPlace prepends a Place value to the front of a
	// list of the property "cc". Invalidates all iterators.
	PrependActivityStreamsPlace(v ActivityStreamsPlace)
	// PrependActivityStreamsProfile prepends a Profile value to the front of
	// a list of the property "cc". Invalidates all iterators.
	PrependActivityStreamsProfile(v ActivityStreamsProfile)
	// PrependActivityStreamsQuestion prepends a Question value to the front
	// of a list of the property "cc". Invalidates all iterators.
	PrependActivityStreamsQuestion(v ActivityStreamsQuestion)
	// PrependActivityStreamsRead prepends a Read value to the front of a list
	// of the property "cc". Invalidates all iterators.
	PrependActivityStreamsRead(v ActivityStreamsRead)
	// PrependActivityStreamsReject prepends a Reject value to the front of a
	// list of the property "cc". Invalidates all iterators.
	PrependActivityStreamsReject(v ActivityStreamsReject)
	// PrependActivityStreamsRelationship prepends a Relationship value to the
	// front of a list of the property "cc". Invalidates all iterators.
	PrependActivityStreamsRelationship(v ActivityStreamsRelationship)
	// PrependActivityStreamsRemove prepends a Remove value to the front of a
	// list of the property "cc". Invalidates all iterators.
	PrependActivityStreamsRemove(v ActivityStreamsRemove)
	// PrependActivityStreamsService prepends a Service value to the front of
	// a list of the property "cc". Invalidates all iterators.
	PrependActivityStreamsService(v ActivityStreamsService)
	// PrependActivityStreamsTentativeAccept prepends a TentativeAccept value
	// to the front of a list of the property "cc". Invalidates all
	// iterators.
	PrependActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// PrependActivityStreamsTentativeReject prepends a TentativeReject value
	// to the front of a list of the property "cc". Invalidates all
	// iterators.
	PrependActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// PrependActivityStreamsTombstone prepends a Tombstone value to the front
	// of a list of the property "cc". Invalidates all iterators.
	PrependActivityStreamsTombstone(v ActivityStreamsTombstone)
	// PrependActivityStreamsTravel prepends a Travel value to the front of a
	// list of the property "cc". Invalidates all iterators.
	PrependActivityStreamsTravel(v ActivityStreamsTravel)
	// PrependActivityStreamsUndo prepends a Undo value to the front of a list
	// of the property "cc". Invalidates all iterators.
	PrependActivityStreamsUndo(v ActivityStreamsUndo)
	// PrependActivityStreamsUpdate prepends a Update value to the front of a
	// list of the property "cc". Invalidates all iterators.
	PrependActivityStreamsUpdate(v ActivityStreamsUpdate)
	// PrependActivityStreamsVideo prepends a Video value to the front of a
	// list of the property "cc". Invalidates all iterators.
	PrependActivityStreamsVideo(v ActivityStreamsVideo)
	// PrependActivityStreamsView prepends a View value to the front of a list
	// of the property "cc". Invalidates all iterators.
	PrependActivityStreamsView(v ActivityStreamsView)
	// PrependForgeFedBranch prepends a Branch value to the front of a list of
	// the property "cc". Invalidates all iterators.
	PrependForgeFedBranch(v ForgeFedBranch)
	// PrependForgeFedCommit prepends a Commit value to the front of a list of
	// the property "cc". Invalidates all iterators.
	PrependForgeFedCommit(v ForgeFedCommit)
	// PrependForgeFedPush prepends a Push value to the front of a list of the
	// property "cc". Invalidates all iterators.
	PrependForgeFedPush(v ForgeFedPush)
	// PrependForgeFedRepository prepends a Repository value to the front of a
	// list of the property "cc". Invalidates all iterators.
	PrependForgeFedRepository(v ForgeFedRepository)
	// PrependForgeFedTicket prepends a Ticket value to the front of a list of
	// the property "cc". Invalidates all iterators.
	PrependForgeFedTicket(v ForgeFedTicket)
	// PrependForgeFedTicketDependency prepends a TicketDependency value to
	// the front of a list of the property "cc". Invalidates all iterators.
	PrependForgeFedTicketDependency(v ForgeFedTicketDependency)
	// PrependIRI prepends an IRI value to the front of a list of the property
	// "cc".
	PrependIRI(v *url.URL)
	// PrependTootEmoji prepends a Emoji value to the front of a list of the
	// property "cc". Invalidates all iterators.
	PrependTootEmoji(v TootEmoji)
	// PrependTootIdentityProof prepends a IdentityProof value to the front of
	// a list of the property "cc". Invalidates all iterators.
	PrependTootIdentityProof(v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "cc". Invalidates all iterators. Returns an error if
	// the type is not a valid one to set for this property.
	PrependType(t Type) error
	// Remove deletes an element at the specified index from a list of the
	// property "cc", regardless of its type. Panics if the index is out
	// of bounds. Invalidates all iterators.
	Remove(idx int)
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// SetActivityStreamsAccept sets a Accept value to be at the specified
	// index for the property "cc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsAccept(idx int, v ActivityStreamsAccept)
	// SetActivityStreamsActivity sets a Activity value to be at the specified
	// index for the property "cc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsActivity(idx int, v ActivityStreamsActivity)
	// SetActivityStreamsAdd sets a Add value to be at the specified index for
	// the property "cc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsAdd(idx int, v ActivityStreamsAdd)
	// SetActivityStreamsAnnounce sets a Announce value to be at the specified
	// index for the property "cc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsAnnounce(idx int, v ActivityStreamsAnnounce)
	// SetActivityStreamsApplication sets a Application value to be at the
	// specified index for the property "cc". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsApplication(idx int, v ActivityStreamsApplication)
	// SetActivityStreamsArrive sets a Arrive value to be at the specified
	// index for the property "cc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsArrive(idx int, v ActivityStreamsArrive)
	// SetActivityStreamsArticle sets a Article value to be at the specified
	// index for the property "cc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsArticle(idx int, v ActivityStreamsArticle)
	// SetActivityStreamsAudio sets a Audio value to be at the specified index
	// for the property "cc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsAudio(idx int, v ActivityStreamsAudio)
	// SetActivityStreamsBlock sets a Block value to be at the specified index
	// for the property "cc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsBlock(idx int, v ActivityStreamsBlock)
	// SetActivityStreamsCollection sets a Collection value to be at the
	// specified index for the property "cc". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsCollection(idx int, v ActivityStreamsCollection)
	// SetActivityStreamsCollectionPage sets a CollectionPage value to be at
	// the specified index for the property "cc". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsCollectionPage(idx int, v ActivityStreamsCollectionPage)
	// SetActivityStreamsCreate sets a Create value to be at the specified
	// index for the property "cc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsCreate(idx int, v ActivityStreamsCreate)
	// SetActivityStreamsDelete sets a Delete value to be at the specified
	// index for the property "cc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsDelete(idx int, v ActivityStreamsDelete)
	// SetActivityStreamsDislike sets a Dislike value to be at the specified
	// index for the property "cc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsDislike(idx int, v ActivityStreamsDislike)
	// SetActivityStreamsDocument sets a Document value to be at the specified
	// index for the property "cc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsDocument(idx int, v ActivityStreamsDocument)
	// SetActivityStreamsEvent sets a Event value to be at the specified index
	// for the property "cc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsEvent(idx int, v ActivityStreamsEvent)
	// SetActivityStreamsFlag sets a Flag value to be at the specified index
	// for the property "cc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsFlag(idx int, v ActivityStreamsFlag)
	// SetActivityStreamsFollow sets a Follow value to be at the specified
	// index for the property "cc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsFollow(idx int, v ActivityStreamsFollow)
	// SetActivityStreamsGroup sets a Group value to be at the specified index
	// for the property "cc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsGroup(idx int, v ActivityStreamsGroup)
	// SetActivityStreamsIgnore sets a Ignore value to be at the specified
	// index for the property "cc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsIgnore(idx int, v ActivityStreamsIgnore)
	// SetActivityStreamsImage sets a Image value to be at the specified index
	// for the property "cc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsImage(idx int, v ActivityStreamsImage)
	// SetActivityStreamsIntransitiveActivity sets a IntransitiveActivity
	// value to be at the specified index for the property "cc". Panics if
	// the index is out of bounds. Invalidates all iterators.
	SetActivityStreamsIntransitiveActivity(idx int, v ActivityStreamsIntransitiveActivity)
	// SetActivityStreamsInvite sets a Invite value to be at the specified
	// index for the property "cc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsInvite(idx int, v ActivityStreamsInvite)
	// SetActivityStreamsJoin sets a Join value to be at the specified index
	// for the property "cc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsJoin(idx int, v ActivityStreamsJoin)
	// SetActivityStreamsLeave sets a Leave value to be at the specified index
	// for the property "cc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsLeave(idx int, v ActivityStreamsLeave)
	// SetActivityStreamsLike sets a Like value to be at the specified index
	// for the property "cc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsLike(idx int, v ActivityStreamsLike)
	// SetActivityStreamsLink sets a Link value to be at the specified index
	// for the property "cc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsLink(idx int, v ActivityStreamsLink)
	// SetActivityStreamsListen sets a Listen value to be at the specified
	// index for the property "cc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsListen(idx int, v ActivityStreamsListen)
	// SetActivityStreamsMention sets a Mention value to be at the specified
	// index for the property "cc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsMention(idx int, v ActivityStreamsMention)
	// SetActivityStreamsMove sets a Move value to be at the specified index
	// for the property "cc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsMove(idx int, v ActivityStreamsMove)
	// SetActivityStreamsNote sets a Note value to be at the specified index
	// for the property "cc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsNote(idx int, v ActivityStreamsNote)
	// SetActivityStreamsObject sets a Object value to be at the specified
	// index for the property "cc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsObject(idx int, v ActivityStreamsObject)
	// SetActivityStreamsOffer sets a Offer value to be at the specified index
	// for the property "cc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsOffer(idx int, v ActivityStreamsOffer)
	// SetActivityStreamsOrderedCollection sets a OrderedCollection value to
	// be at the specified index for the property "cc". Panics if the
	// index is out of bounds. Invalidates all iterators.
	SetActivityStreamsOrderedCollection(idx int, v ActivityStreamsOrderedCollection)
	// SetActivityStreamsOrderedCollectionPage sets a OrderedCollectionPage
	// value to be at the specified index for the property "cc". Panics if
	// the index is out of bounds. Invalidates all iterators.
	SetActivityStreamsOrderedCollectionPage(idx int, v ActivityStreamsOrderedCollectionPage)
	// SetActivityStreamsOrganization sets a Organization value to be at the
	// specified index for the property "cc". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsOrganization(idx int, v ActivityStreamsOrganization)
	// SetActivityStreamsPage sets a Page value to be at the specified index
	// for the property "cc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsPage(idx int, v ActivityStreamsPage)
	// SetActivityStreamsPerson sets a Person value to be at the specified
	// index for the property "cc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsPerson(idx int, v ActivityStreamsPerson)
	// SetActivityStreamsPlace sets a Place value to be at the specified index
	// for the property "cc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsPlace(idx int, v ActivityStreamsPlace)
	// SetActivityStreamsProfile sets a Profile value to be at the specified
	// index for the property "cc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsProfile(idx int, v ActivityStreamsProfile)
	// SetActivityStreamsQuestion sets a Question value to be at the specified
	// index for the property "cc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsQuestion(idx int, v ActivityStreamsQuestion)
	// SetActivityStreamsRead sets a Read value to be at the specified index
	// for the property "cc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsRead(idx int, v ActivityStreamsRead)
	// SetActivityStreamsReject sets a Reject value to be at the specified
	// index for the property "cc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsReject(idx int, v ActivityStreamsReject)
	// SetActivityStreamsRelationship sets a Relationship value to be at the
	// specified index for the property "cc". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsRelationship(idx int, v ActivityStreamsRelationship)
	// SetActivityStreamsRemove sets a Remove value to be at the specified
	// index for the property "cc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsRemove(idx int, v ActivityStreamsRemove)
	// SetActivityStreamsService sets a Service value to be at the specified
	// index for the property "cc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsService(idx int, v ActivityStreamsService)
	// SetActivityStreamsTentativeAccept sets a TentativeAccept value to be at
	// the specified index for the property "cc". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsTentativeAccept(idx int, v ActivityStreamsTentativeAccept)
	// SetActivityStreamsTentativeReject sets a TentativeReject value to be at
	// the specified index for the property "cc". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsTentativeReject(idx int, v ActivityStreamsTentativeReject)
	// SetActivityStreamsTombstone sets a Tombstone value to be at the
	// specified index for the property "cc". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsTombstone(idx int, v ActivityStreamsTombstone)
	// SetActivityStreamsTravel sets a Travel value to be at the specified
	// index for the property "cc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsTravel(idx int, v ActivityStreamsTravel)
	// SetActivityStreamsUndo sets a Undo value to be at the specified index
	// for the property "cc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsUndo(idx int, v ActivityStreamsUndo)
	// SetActivityStreamsUpdate sets a Update value to be at the specified
	// index for the property "cc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsUpdate(idx int, v ActivityStreamsUpdate)
	// SetActivityStreamsVideo sets a Video value to be at the specified index
	// for the property "cc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsVideo(idx int, v ActivityStreamsVideo)
	// SetActivityStreamsView sets a View value to be at the specified index
	// for the property "cc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsView(idx int, v ActivityStreamsView)
	// SetForgeFedBranch sets a Branch value to be at the specified index for
	// the property "cc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedBranch(idx int, v ForgeFedBranch)
	// SetForgeFedCommit sets a Commit value to be at the specified index for
	// the property "cc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedCommit(idx int, v ForgeFedCommit)
	// SetForgeFedPush sets a Push value to be at the specified index for the
	// property "cc". Panics if the index is out of bounds. Invalidates
	// all iterators.
	SetForgeFedPush(idx int, v ForgeFedPush)
	// SetForgeFedRepository sets a Repository value to be at the specified
	// index for the property "cc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedRepository(idx int, v ForgeFedRepository)
	// SetForgeFedTicket sets a Ticket value to be at the specified index for
	// the property "cc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedTicket(idx int, v ForgeFedTicket)
	// SetForgeFedTicketDependency sets a TicketDependency value to be at the
	// specified index for the property "cc". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
	// SetIRI sets an IRI value to be at the specified index for the property
	// "cc". Panics if the index is out of bounds.
	SetIRI(idx int, v *url.URL)
	// SetTootEmoji sets a Emoji value to be at the specified index for the
	// property "cc". Panics if the index is out of bounds. Invalidates
	// all iterators.
	SetTootEmoji(idx int, v TootEmoji)
	// SetTootIdentityProof sets a IdentityProof value to be at the specified
	// index for the property "cc". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetTootIdentityProof(idx int, v TootIdentityProof)
	// SetType sets an arbitrary type value to the specified index of the
	// property "cc". Invalidates all iterators. Returns an error if the
	// type is not a valid one to set for this property. Panics if the
	// index is out of bounds.
	SetType(idx int, t Type) error
	// Swap swaps the location of values at two indices for the "cc" property.
	Swap(i, j int)
}

Identifies an Object that is part of the public secondary audience of this Object.

Example 72 (https://www.w3.org/TR/activitystreams-vocabulary/#ex70-jsonld):

{
  "actor": "http://sally.example.org",
  "cc": "http://joe.example.org",
  "object": "http://example.org/posts/1",
  "summary": "Sally offered a post to John",
  "target": "http://john.example.org",
  "type": "Offer"
}

type ActivityStreamsCcPropertyIterator

type ActivityStreamsCcPropertyIterator interface {
	// GetActivityStreamsAccept returns the value of this property. When
	// IsActivityStreamsAccept returns false, GetActivityStreamsAccept
	// will return an arbitrary value.
	GetActivityStreamsAccept() ActivityStreamsAccept
	// GetActivityStreamsActivity returns the value of this property. When
	// IsActivityStreamsActivity returns false, GetActivityStreamsActivity
	// will return an arbitrary value.
	GetActivityStreamsActivity() ActivityStreamsActivity
	// GetActivityStreamsAdd returns the value of this property. When
	// IsActivityStreamsAdd returns false, GetActivityStreamsAdd will
	// return an arbitrary value.
	GetActivityStreamsAdd() ActivityStreamsAdd
	// GetActivityStreamsAnnounce returns the value of this property. When
	// IsActivityStreamsAnnounce returns false, GetActivityStreamsAnnounce
	// will return an arbitrary value.
	GetActivityStreamsAnnounce() ActivityStreamsAnnounce
	// GetActivityStreamsApplication returns the value of this property. When
	// IsActivityStreamsApplication returns false,
	// GetActivityStreamsApplication will return an arbitrary value.
	GetActivityStreamsApplication() ActivityStreamsApplication
	// GetActivityStreamsArrive returns the value of this property. When
	// IsActivityStreamsArrive returns false, GetActivityStreamsArrive
	// will return an arbitrary value.
	GetActivityStreamsArrive() ActivityStreamsArrive
	// GetActivityStreamsArticle returns the value of this property. When
	// IsActivityStreamsArticle returns false, GetActivityStreamsArticle
	// will return an arbitrary value.
	GetActivityStreamsArticle() ActivityStreamsArticle
	// GetActivityStreamsAudio returns the value of this property. When
	// IsActivityStreamsAudio returns false, GetActivityStreamsAudio will
	// return an arbitrary value.
	GetActivityStreamsAudio() ActivityStreamsAudio
	// GetActivityStreamsBlock returns the value of this property. When
	// IsActivityStreamsBlock returns false, GetActivityStreamsBlock will
	// return an arbitrary value.
	GetActivityStreamsBlock() ActivityStreamsBlock
	// GetActivityStreamsCollection returns the value of this property. When
	// IsActivityStreamsCollection returns false,
	// GetActivityStreamsCollection will return an arbitrary value.
	GetActivityStreamsCollection() ActivityStreamsCollection
	// GetActivityStreamsCollectionPage returns the value of this property.
	// When IsActivityStreamsCollectionPage returns false,
	// GetActivityStreamsCollectionPage will return an arbitrary value.
	GetActivityStreamsCollectionPage() ActivityStreamsCollectionPage
	// GetActivityStreamsCreate returns the value of this property. When
	// IsActivityStreamsCreate returns false, GetActivityStreamsCreate
	// will return an arbitrary value.
	GetActivityStreamsCreate() ActivityStreamsCreate
	// GetActivityStreamsDelete returns the value of this property. When
	// IsActivityStreamsDelete returns false, GetActivityStreamsDelete
	// will return an arbitrary value.
	GetActivityStreamsDelete() ActivityStreamsDelete
	// GetActivityStreamsDislike returns the value of this property. When
	// IsActivityStreamsDislike returns false, GetActivityStreamsDislike
	// will return an arbitrary value.
	GetActivityStreamsDislike() ActivityStreamsDislike
	// GetActivityStreamsDocument returns the value of this property. When
	// IsActivityStreamsDocument returns false, GetActivityStreamsDocument
	// will return an arbitrary value.
	GetActivityStreamsDocument() ActivityStreamsDocument
	// GetActivityStreamsEvent returns the value of this property. When
	// IsActivityStreamsEvent returns false, GetActivityStreamsEvent will
	// return an arbitrary value.
	GetActivityStreamsEvent() ActivityStreamsEvent
	// GetActivityStreamsFlag returns the value of this property. When
	// IsActivityStreamsFlag returns false, GetActivityStreamsFlag will
	// return an arbitrary value.
	GetActivityStreamsFlag() ActivityStreamsFlag
	// GetActivityStreamsFollow returns the value of this property. When
	// IsActivityStreamsFollow returns false, GetActivityStreamsFollow
	// will return an arbitrary value.
	GetActivityStreamsFollow() ActivityStreamsFollow
	// GetActivityStreamsGroup returns the value of this property. When
	// IsActivityStreamsGroup returns false, GetActivityStreamsGroup will
	// return an arbitrary value.
	GetActivityStreamsGroup() ActivityStreamsGroup
	// GetActivityStreamsIgnore returns the value of this property. When
	// IsActivityStreamsIgnore returns false, GetActivityStreamsIgnore
	// will return an arbitrary value.
	GetActivityStreamsIgnore() ActivityStreamsIgnore
	// GetActivityStreamsImage returns the value of this property. When
	// IsActivityStreamsImage returns false, GetActivityStreamsImage will
	// return an arbitrary value.
	GetActivityStreamsImage() ActivityStreamsImage
	// GetActivityStreamsIntransitiveActivity returns the value of this
	// property. When IsActivityStreamsIntransitiveActivity returns false,
	// GetActivityStreamsIntransitiveActivity will return an arbitrary
	// value.
	GetActivityStreamsIntransitiveActivity() ActivityStreamsIntransitiveActivity
	// GetActivityStreamsInvite returns the value of this property. When
	// IsActivityStreamsInvite returns false, GetActivityStreamsInvite
	// will return an arbitrary value.
	GetActivityStreamsInvite() ActivityStreamsInvite
	// GetActivityStreamsJoin returns the value of this property. When
	// IsActivityStreamsJoin returns false, GetActivityStreamsJoin will
	// return an arbitrary value.
	GetActivityStreamsJoin() ActivityStreamsJoin
	// GetActivityStreamsLeave returns the value of this property. When
	// IsActivityStreamsLeave returns false, GetActivityStreamsLeave will
	// return an arbitrary value.
	GetActivityStreamsLeave() ActivityStreamsLeave
	// GetActivityStreamsLike returns the value of this property. When
	// IsActivityStreamsLike returns false, GetActivityStreamsLike will
	// return an arbitrary value.
	GetActivityStreamsLike() ActivityStreamsLike
	// GetActivityStreamsLink returns the value of this property. When
	// IsActivityStreamsLink returns false, GetActivityStreamsLink will
	// return an arbitrary value.
	GetActivityStreamsLink() ActivityStreamsLink
	// GetActivityStreamsListen returns the value of this property. When
	// IsActivityStreamsListen returns false, GetActivityStreamsListen
	// will return an arbitrary value.
	GetActivityStreamsListen() ActivityStreamsListen
	// GetActivityStreamsMention returns the value of this property. When
	// IsActivityStreamsMention returns false, GetActivityStreamsMention
	// will return an arbitrary value.
	GetActivityStreamsMention() ActivityStreamsMention
	// GetActivityStreamsMove returns the value of this property. When
	// IsActivityStreamsMove returns false, GetActivityStreamsMove will
	// return an arbitrary value.
	GetActivityStreamsMove() ActivityStreamsMove
	// GetActivityStreamsNote returns the value of this property. When
	// IsActivityStreamsNote returns false, GetActivityStreamsNote will
	// return an arbitrary value.
	GetActivityStreamsNote() ActivityStreamsNote
	// GetActivityStreamsObject returns the value of this property. When
	// IsActivityStreamsObject returns false, GetActivityStreamsObject
	// will return an arbitrary value.
	GetActivityStreamsObject() ActivityStreamsObject
	// GetActivityStreamsOffer returns the value of this property. When
	// IsActivityStreamsOffer returns false, GetActivityStreamsOffer will
	// return an arbitrary value.
	GetActivityStreamsOffer() ActivityStreamsOffer
	// GetActivityStreamsOrderedCollection returns the value of this property.
	// When IsActivityStreamsOrderedCollection returns false,
	// GetActivityStreamsOrderedCollection will return an arbitrary value.
	GetActivityStreamsOrderedCollection() ActivityStreamsOrderedCollection
	// GetActivityStreamsOrderedCollectionPage returns the value of this
	// property. When IsActivityStreamsOrderedCollectionPage returns
	// false, GetActivityStreamsOrderedCollectionPage will return an
	// arbitrary value.
	GetActivityStreamsOrderedCollectionPage() ActivityStreamsOrderedCollectionPage
	// GetActivityStreamsOrganization returns the value of this property. When
	// IsActivityStreamsOrganization returns false,
	// GetActivityStreamsOrganization will return an arbitrary value.
	GetActivityStreamsOrganization() ActivityStreamsOrganization
	// GetActivityStreamsPage returns the value of this property. When
	// IsActivityStreamsPage returns false, GetActivityStreamsPage will
	// return an arbitrary value.
	GetActivityStreamsPage() ActivityStreamsPage
	// GetActivityStreamsPerson returns the value of this property. When
	// IsActivityStreamsPerson returns false, GetActivityStreamsPerson
	// will return an arbitrary value.
	GetActivityStreamsPerson() ActivityStreamsPerson
	// GetActivityStreamsPlace returns the value of this property. When
	// IsActivityStreamsPlace returns false, GetActivityStreamsPlace will
	// return an arbitrary value.
	GetActivityStreamsPlace() ActivityStreamsPlace
	// GetActivityStreamsProfile returns the value of this property. When
	// IsActivityStreamsProfile returns false, GetActivityStreamsProfile
	// will return an arbitrary value.
	GetActivityStreamsProfile() ActivityStreamsProfile
	// GetActivityStreamsQuestion returns the value of this property. When
	// IsActivityStreamsQuestion returns false, GetActivityStreamsQuestion
	// will return an arbitrary value.
	GetActivityStreamsQuestion() ActivityStreamsQuestion
	// GetActivityStreamsRead returns the value of this property. When
	// IsActivityStreamsRead returns false, GetActivityStreamsRead will
	// return an arbitrary value.
	GetActivityStreamsRead() ActivityStreamsRead
	// GetActivityStreamsReject returns the value of this property. When
	// IsActivityStreamsReject returns false, GetActivityStreamsReject
	// will return an arbitrary value.
	GetActivityStreamsReject() ActivityStreamsReject
	// GetActivityStreamsRelationship returns the value of this property. When
	// IsActivityStreamsRelationship returns false,
	// GetActivityStreamsRelationship will return an arbitrary value.
	GetActivityStreamsRelationship() ActivityStreamsRelationship
	// GetActivityStreamsRemove returns the value of this property. When
	// IsActivityStreamsRemove returns false, GetActivityStreamsRemove
	// will return an arbitrary value.
	GetActivityStreamsRemove() ActivityStreamsRemove
	// GetActivityStreamsService returns the value of this property. When
	// IsActivityStreamsService returns false, GetActivityStreamsService
	// will return an arbitrary value.
	GetActivityStreamsService() ActivityStreamsService
	// GetActivityStreamsTentativeAccept returns the value of this property.
	// When IsActivityStreamsTentativeAccept returns false,
	// GetActivityStreamsTentativeAccept will return an arbitrary value.
	GetActivityStreamsTentativeAccept() ActivityStreamsTentativeAccept
	// GetActivityStreamsTentativeReject returns the value of this property.
	// When IsActivityStreamsTentativeReject returns false,
	// GetActivityStreamsTentativeReject will return an arbitrary value.
	GetActivityStreamsTentativeReject() ActivityStreamsTentativeReject
	// GetActivityStreamsTombstone returns the value of this property. When
	// IsActivityStreamsTombstone returns false,
	// GetActivityStreamsTombstone will return an arbitrary value.
	GetActivityStreamsTombstone() ActivityStreamsTombstone
	// GetActivityStreamsTravel returns the value of this property. When
	// IsActivityStreamsTravel returns false, GetActivityStreamsTravel
	// will return an arbitrary value.
	GetActivityStreamsTravel() ActivityStreamsTravel
	// GetActivityStreamsUndo returns the value of this property. When
	// IsActivityStreamsUndo returns false, GetActivityStreamsUndo will
	// return an arbitrary value.
	GetActivityStreamsUndo() ActivityStreamsUndo
	// GetActivityStreamsUpdate returns the value of this property. When
	// IsActivityStreamsUpdate returns false, GetActivityStreamsUpdate
	// will return an arbitrary value.
	GetActivityStreamsUpdate() ActivityStreamsUpdate
	// GetActivityStreamsVideo returns the value of this property. When
	// IsActivityStreamsVideo returns false, GetActivityStreamsVideo will
	// return an arbitrary value.
	GetActivityStreamsVideo() ActivityStreamsVideo
	// GetActivityStreamsView returns the value of this property. When
	// IsActivityStreamsView returns false, GetActivityStreamsView will
	// return an arbitrary value.
	GetActivityStreamsView() ActivityStreamsView
	// GetForgeFedBranch returns the value of this property. When
	// IsForgeFedBranch returns false, GetForgeFedBranch will return an
	// arbitrary value.
	GetForgeFedBranch() ForgeFedBranch
	// GetForgeFedCommit returns the value of this property. When
	// IsForgeFedCommit returns false, GetForgeFedCommit will return an
	// arbitrary value.
	GetForgeFedCommit() ForgeFedCommit
	// GetForgeFedPush returns the value of this property. When IsForgeFedPush
	// returns false, GetForgeFedPush will return an arbitrary value.
	GetForgeFedPush() ForgeFedPush
	// GetForgeFedRepository returns the value of this property. When
	// IsForgeFedRepository returns false, GetForgeFedRepository will
	// return an arbitrary value.
	GetForgeFedRepository() ForgeFedRepository
	// GetForgeFedTicket returns the value of this property. When
	// IsForgeFedTicket returns false, GetForgeFedTicket will return an
	// arbitrary value.
	GetForgeFedTicket() ForgeFedTicket
	// GetForgeFedTicketDependency returns the value of this property. When
	// IsForgeFedTicketDependency returns false,
	// GetForgeFedTicketDependency will return an arbitrary value.
	GetForgeFedTicketDependency() ForgeFedTicketDependency
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return an arbitrary value.
	GetIRI() *url.URL
	// GetTootEmoji returns the value of this property. When IsTootEmoji
	// returns false, GetTootEmoji will return an arbitrary value.
	GetTootEmoji() TootEmoji
	// GetTootIdentityProof returns the value of this property. When
	// IsTootIdentityProof returns false, GetTootIdentityProof will return
	// an arbitrary value.
	GetTootIdentityProof() TootIdentityProof
	// GetType returns the value in this property as a Type. Returns nil if
	// the value is not an ActivityStreams type, such as an IRI or another
	// value.
	GetType() Type
	// HasAny returns true if any of the different values is set.
	HasAny() bool
	// IsActivityStreamsAccept returns true if this property has a type of
	// "Accept". When true, use the GetActivityStreamsAccept and
	// SetActivityStreamsAccept methods to access and set this property.
	IsActivityStreamsAccept() bool
	// IsActivityStreamsActivity returns true if this property has a type of
	// "Activity". When true, use the GetActivityStreamsActivity and
	// SetActivityStreamsActivity methods to access and set this property.
	IsActivityStreamsActivity() bool
	// IsActivityStreamsAdd returns true if this property has a type of "Add".
	// When true, use the GetActivityStreamsAdd and SetActivityStreamsAdd
	// methods to access and set this property.
	IsActivityStreamsAdd() bool
	// IsActivityStreamsAnnounce returns true if this property has a type of
	// "Announce". When true, use the GetActivityStreamsAnnounce and
	// SetActivityStreamsAnnounce methods to access and set this property.
	IsActivityStreamsAnnounce() bool
	// IsActivityStreamsApplication returns true if this property has a type
	// of "Application". When true, use the GetActivityStreamsApplication
	// and SetActivityStreamsApplication methods to access and set this
	// property.
	IsActivityStreamsApplication() bool
	// IsActivityStreamsArrive returns true if this property has a type of
	// "Arrive". When true, use the GetActivityStreamsArrive and
	// SetActivityStreamsArrive methods to access and set this property.
	IsActivityStreamsArrive() bool
	// IsActivityStreamsArticle returns true if this property has a type of
	// "Article". When true, use the GetActivityStreamsArticle and
	// SetActivityStreamsArticle methods to access and set this property.
	IsActivityStreamsArticle() bool
	// IsActivityStreamsAudio returns true if this property has a type of
	// "Audio". When true, use the GetActivityStreamsAudio and
	// SetActivityStreamsAudio methods to access and set this property.
	IsActivityStreamsAudio() bool
	// IsActivityStreamsBlock returns true if this property has a type of
	// "Block". When true, use the GetActivityStreamsBlock and
	// SetActivityStreamsBlock methods to access and set this property.
	IsActivityStreamsBlock() bool
	// IsActivityStreamsCollection returns true if this property has a type of
	// "Collection". When true, use the GetActivityStreamsCollection and
	// SetActivityStreamsCollection methods to access and set this
	// property.
	IsActivityStreamsCollection() bool
	// IsActivityStreamsCollectionPage returns true if this property has a
	// type of "CollectionPage". When true, use the
	// GetActivityStreamsCollectionPage and
	// SetActivityStreamsCollectionPage methods to access and set this
	// property.
	IsActivityStreamsCollectionPage() bool
	// IsActivityStreamsCreate returns true if this property has a type of
	// "Create". When true, use the GetActivityStreamsCreate and
	// SetActivityStreamsCreate methods to access and set this property.
	IsActivityStreamsCreate() bool
	// IsActivityStreamsDelete returns true if this property has a type of
	// "Delete". When true, use the GetActivityStreamsDelete and
	// SetActivityStreamsDelete methods to access and set this property.
	IsActivityStreamsDelete() bool
	// IsActivityStreamsDislike returns true if this property has a type of
	// "Dislike". When true, use the GetActivityStreamsDislike and
	// SetActivityStreamsDislike methods to access and set this property.
	IsActivityStreamsDislike() bool
	// IsActivityStreamsDocument returns true if this property has a type of
	// "Document". When true, use the GetActivityStreamsDocument and
	// SetActivityStreamsDocument methods to access and set this property.
	IsActivityStreamsDocument() bool
	// IsActivityStreamsEvent returns true if this property has a type of
	// "Event". When true, use the GetActivityStreamsEvent and
	// SetActivityStreamsEvent methods to access and set this property.
	IsActivityStreamsEvent() bool
	// IsActivityStreamsFlag returns true if this property has a type of
	// "Flag". When true, use the GetActivityStreamsFlag and
	// SetActivityStreamsFlag methods to access and set this property.
	IsActivityStreamsFlag() bool
	// IsActivityStreamsFollow returns true if this property has a type of
	// "Follow". When true, use the GetActivityStreamsFollow and
	// SetActivityStreamsFollow methods to access and set this property.
	IsActivityStreamsFollow() bool
	// IsActivityStreamsGroup returns true if this property has a type of
	// "Group". When true, use the GetActivityStreamsGroup and
	// SetActivityStreamsGroup methods to access and set this property.
	IsActivityStreamsGroup() bool
	// IsActivityStreamsIgnore returns true if this property has a type of
	// "Ignore". When true, use the GetActivityStreamsIgnore and
	// SetActivityStreamsIgnore methods to access and set this property.
	IsActivityStreamsIgnore() bool
	// IsActivityStreamsImage returns true if this property has a type of
	// "Image". When true, use the GetActivityStreamsImage and
	// SetActivityStreamsImage methods to access and set this property.
	IsActivityStreamsImage() bool
	// IsActivityStreamsIntransitiveActivity returns true if this property has
	// a type of "IntransitiveActivity". When true, use the
	// GetActivityStreamsIntransitiveActivity and
	// SetActivityStreamsIntransitiveActivity methods to access and set
	// this property.
	IsActivityStreamsIntransitiveActivity() bool
	// IsActivityStreamsInvite returns true if this property has a type of
	// "Invite". When true, use the GetActivityStreamsInvite and
	// SetActivityStreamsInvite methods to access and set this property.
	IsActivityStreamsInvite() bool
	// IsActivityStreamsJoin returns true if this property has a type of
	// "Join". When true, use the GetActivityStreamsJoin and
	// SetActivityStreamsJoin methods to access and set this property.
	IsActivityStreamsJoin() bool
	// IsActivityStreamsLeave returns true if this property has a type of
	// "Leave". When true, use the GetActivityStreamsLeave and
	// SetActivityStreamsLeave methods to access and set this property.
	IsActivityStreamsLeave() bool
	// IsActivityStreamsLike returns true if this property has a type of
	// "Like". When true, use the GetActivityStreamsLike and
	// SetActivityStreamsLike methods to access and set this property.
	IsActivityStreamsLike() bool
	// IsActivityStreamsLink returns true if this property has a type of
	// "Link". When true, use the GetActivityStreamsLink and
	// SetActivityStreamsLink methods to access and set this property.
	IsActivityStreamsLink() bool
	// IsActivityStreamsListen returns true if this property has a type of
	// "Listen". When true, use the GetActivityStreamsListen and
	// SetActivityStreamsListen methods to access and set this property.
	IsActivityStreamsListen() bool
	// IsActivityStreamsMention returns true if this property has a type of
	// "Mention". When true, use the GetActivityStreamsMention and
	// SetActivityStreamsMention methods to access and set this property.
	IsActivityStreamsMention() bool
	// IsActivityStreamsMove returns true if this property has a type of
	// "Move". When true, use the GetActivityStreamsMove and
	// SetActivityStreamsMove methods to access and set this property.
	IsActivityStreamsMove() bool
	// IsActivityStreamsNote returns true if this property has a type of
	// "Note". When true, use the GetActivityStreamsNote and
	// SetActivityStreamsNote methods to access and set this property.
	IsActivityStreamsNote() bool
	// IsActivityStreamsObject returns true if this property has a type of
	// "Object". When true, use the GetActivityStreamsObject and
	// SetActivityStreamsObject methods to access and set this property.
	IsActivityStreamsObject() bool
	// IsActivityStreamsOffer returns true if this property has a type of
	// "Offer". When true, use the GetActivityStreamsOffer and
	// SetActivityStreamsOffer methods to access and set this property.
	IsActivityStreamsOffer() bool
	// IsActivityStreamsOrderedCollection returns true if this property has a
	// type of "OrderedCollection". When true, use the
	// GetActivityStreamsOrderedCollection and
	// SetActivityStreamsOrderedCollection methods to access and set this
	// property.
	IsActivityStreamsOrderedCollection() bool
	// IsActivityStreamsOrderedCollectionPage returns true if this property
	// has a type of "OrderedCollectionPage". When true, use the
	// GetActivityStreamsOrderedCollectionPage and
	// SetActivityStreamsOrderedCollectionPage methods to access and set
	// this property.
	IsActivityStreamsOrderedCollectionPage() bool
	// IsActivityStreamsOrganization returns true if this property has a type
	// of "Organization". When true, use the
	// GetActivityStreamsOrganization and SetActivityStreamsOrganization
	// methods to access and set this property.
	IsActivityStreamsOrganization() bool
	// IsActivityStreamsPage returns true if this property has a type of
	// "Page". When true, use the GetActivityStreamsPage and
	// SetActivityStreamsPage methods to access and set this property.
	IsActivityStreamsPage() bool
	// IsActivityStreamsPerson returns true if this property has a type of
	// "Person". When true, use the GetActivityStreamsPerson and
	// SetActivityStreamsPerson methods to access and set this property.
	IsActivityStreamsPerson() bool
	// IsActivityStreamsPlace returns true if this property has a type of
	// "Place". When true, use the GetActivityStreamsPlace and
	// SetActivityStreamsPlace methods to access and set this property.
	IsActivityStreamsPlace() bool
	// IsActivityStreamsProfile returns true if this property has a type of
	// "Profile". When true, use the GetActivityStreamsProfile and
	// SetActivityStreamsProfile methods to access and set this property.
	IsActivityStreamsProfile() bool
	// IsActivityStreamsQuestion returns true if this property has a type of
	// "Question". When true, use the GetActivityStreamsQuestion and
	// SetActivityStreamsQuestion methods to access and set this property.
	IsActivityStreamsQuestion() bool
	// IsActivityStreamsRead returns true if this property has a type of
	// "Read". When true, use the GetActivityStreamsRead and
	// SetActivityStreamsRead methods to access and set this property.
	IsActivityStreamsRead() bool
	// IsActivityStreamsReject returns true if this property has a type of
	// "Reject". When true, use the GetActivityStreamsReject and
	// SetActivityStreamsReject methods to access and set this property.
	IsActivityStreamsReject() bool
	// IsActivityStreamsRelationship returns true if this property has a type
	// of "Relationship". When true, use the
	// GetActivityStreamsRelationship and SetActivityStreamsRelationship
	// methods to access and set this property.
	IsActivityStreamsRelationship() bool
	// IsActivityStreamsRemove returns true if this property has a type of
	// "Remove". When true, use the GetActivityStreamsRemove and
	// SetActivityStreamsRemove methods to access and set this property.
	IsActivityStreamsRemove() bool
	// IsActivityStreamsService returns true if this property has a type of
	// "Service". When true, use the GetActivityStreamsService and
	// SetActivityStreamsService methods to access and set this property.
	IsActivityStreamsService() bool
	// IsActivityStreamsTentativeAccept returns true if this property has a
	// type of "TentativeAccept". When true, use the
	// GetActivityStreamsTentativeAccept and
	// SetActivityStreamsTentativeAccept methods to access and set this
	// property.
	IsActivityStreamsTentativeAccept() bool
	// IsActivityStreamsTentativeReject returns true if this property has a
	// type of "TentativeReject". When true, use the
	// GetActivityStreamsTentativeReject and
	// SetActivityStreamsTentativeReject methods to access and set this
	// property.
	IsActivityStreamsTentativeReject() bool
	// IsActivityStreamsTombstone returns true if this property has a type of
	// "Tombstone". When true, use the GetActivityStreamsTombstone and
	// SetActivityStreamsTombstone methods to access and set this property.
	IsActivityStreamsTombstone() bool
	// IsActivityStreamsTravel returns true if this property has a type of
	// "Travel". When true, use the GetActivityStreamsTravel and
	// SetActivityStreamsTravel methods to access and set this property.
	IsActivityStreamsTravel() bool
	// IsActivityStreamsUndo returns true if this property has a type of
	// "Undo". When true, use the GetActivityStreamsUndo and
	// SetActivityStreamsUndo methods to access and set this property.
	IsActivityStreamsUndo() bool
	// IsActivityStreamsUpdate returns true if this property has a type of
	// "Update". When true, use the GetActivityStreamsUpdate and
	// SetActivityStreamsUpdate methods to access and set this property.
	IsActivityStreamsUpdate() bool
	// IsActivityStreamsVideo returns true if this property has a type of
	// "Video". When true, use the GetActivityStreamsVideo and
	// SetActivityStreamsVideo methods to access and set this property.
	IsActivityStreamsVideo() bool
	// IsActivityStreamsView returns true if this property has a type of
	// "View". When true, use the GetActivityStreamsView and
	// SetActivityStreamsView methods to access and set this property.
	IsActivityStreamsView() bool
	// IsForgeFedBranch returns true if this property has a type of "Branch".
	// When true, use the GetForgeFedBranch and SetForgeFedBranch methods
	// to access and set this property.
	IsForgeFedBranch() bool
	// IsForgeFedCommit returns true if this property has a type of "Commit".
	// When true, use the GetForgeFedCommit and SetForgeFedCommit methods
	// to access and set this property.
	IsForgeFedCommit() bool
	// IsForgeFedPush returns true if this property has a type of "Push". When
	// true, use the GetForgeFedPush and SetForgeFedPush methods to access
	// and set this property.
	IsForgeFedPush() bool
	// IsForgeFedRepository returns true if this property has a type of
	// "Repository". When true, use the GetForgeFedRepository and
	// SetForgeFedRepository methods to access and set this property.
	IsForgeFedRepository() bool
	// IsForgeFedTicket returns true if this property has a type of "Ticket".
	// When true, use the GetForgeFedTicket and SetForgeFedTicket methods
	// to access and set this property.
	IsForgeFedTicket() bool
	// IsForgeFedTicketDependency returns true if this property has a type of
	// "TicketDependency". When true, use the GetForgeFedTicketDependency
	// and SetForgeFedTicketDependency methods to access and set this
	// property.
	IsForgeFedTicketDependency() bool
	// IsIRI returns true if this property is an IRI. When true, use GetIRI
	// and SetIRI to access and set this property
	IsIRI() bool
	// IsTootEmoji returns true if this property has a type of "Emoji". When
	// true, use the GetTootEmoji and SetTootEmoji methods to access and
	// set this property.
	IsTootEmoji() bool
	// IsTootIdentityProof returns true if this property has a type of
	// "IdentityProof". When true, use the GetTootIdentityProof and
	// SetTootIdentityProof methods to access and set this property.
	IsTootIdentityProof() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsCcPropertyIterator) bool
	// Name returns the name of this property: "ActivityStreamsCc".
	Name() string
	// Next returns the next iterator, or nil if there is no next iterator.
	Next() ActivityStreamsCcPropertyIterator
	// Prev returns the previous iterator, or nil if there is no previous
	// iterator.
	Prev() ActivityStreamsCcPropertyIterator
	// SetActivityStreamsAccept sets the value of this property. Calling
	// IsActivityStreamsAccept afterwards returns true.
	SetActivityStreamsAccept(v ActivityStreamsAccept)
	// SetActivityStreamsActivity sets the value of this property. Calling
	// IsActivityStreamsActivity afterwards returns true.
	SetActivityStreamsActivity(v ActivityStreamsActivity)
	// SetActivityStreamsAdd sets the value of this property. Calling
	// IsActivityStreamsAdd afterwards returns true.
	SetActivityStreamsAdd(v ActivityStreamsAdd)
	// SetActivityStreamsAnnounce sets the value of this property. Calling
	// IsActivityStreamsAnnounce afterwards returns true.
	SetActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// SetActivityStreamsApplication sets the value of this property. Calling
	// IsActivityStreamsApplication afterwards returns true.
	SetActivityStreamsApplication(v ActivityStreamsApplication)
	// SetActivityStreamsArrive sets the value of this property. Calling
	// IsActivityStreamsArrive afterwards returns true.
	SetActivityStreamsArrive(v ActivityStreamsArrive)
	// SetActivityStreamsArticle sets the value of this property. Calling
	// IsActivityStreamsArticle afterwards returns true.
	SetActivityStreamsArticle(v ActivityStreamsArticle)
	// SetActivityStreamsAudio sets the value of this property. Calling
	// IsActivityStreamsAudio afterwards returns true.
	SetActivityStreamsAudio(v ActivityStreamsAudio)
	// SetActivityStreamsBlock sets the value of this property. Calling
	// IsActivityStreamsBlock afterwards returns true.
	SetActivityStreamsBlock(v ActivityStreamsBlock)
	// SetActivityStreamsCollection sets the value of this property. Calling
	// IsActivityStreamsCollection afterwards returns true.
	SetActivityStreamsCollection(v ActivityStreamsCollection)
	// SetActivityStreamsCollectionPage sets the value of this property.
	// Calling IsActivityStreamsCollectionPage afterwards returns true.
	SetActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// SetActivityStreamsCreate sets the value of this property. Calling
	// IsActivityStreamsCreate afterwards returns true.
	SetActivityStreamsCreate(v ActivityStreamsCreate)
	// SetActivityStreamsDelete sets the value of this property. Calling
	// IsActivityStreamsDelete afterwards returns true.
	SetActivityStreamsDelete(v ActivityStreamsDelete)
	// SetActivityStreamsDislike sets the value of this property. Calling
	// IsActivityStreamsDislike afterwards returns true.
	SetActivityStreamsDislike(v ActivityStreamsDislike)
	// SetActivityStreamsDocument sets the value of this property. Calling
	// IsActivityStreamsDocument afterwards returns true.
	SetActivityStreamsDocument(v ActivityStreamsDocument)
	// SetActivityStreamsEvent sets the value of this property. Calling
	// IsActivityStreamsEvent afterwards returns true.
	SetActivityStreamsEvent(v ActivityStreamsEvent)
	// SetActivityStreamsFlag sets the value of this property. Calling
	// IsActivityStreamsFlag afterwards returns true.
	SetActivityStreamsFlag(v ActivityStreamsFlag)
	// SetActivityStreamsFollow sets the value of this property. Calling
	// IsActivityStreamsFollow afterwards returns true.
	SetActivityStreamsFollow(v ActivityStreamsFollow)
	// SetActivityStreamsGroup sets the value of this property. Calling
	// IsActivityStreamsGroup afterwards returns true.
	SetActivityStreamsGroup(v ActivityStreamsGroup)
	// SetActivityStreamsIgnore sets the value of this property. Calling
	// IsActivityStreamsIgnore afterwards returns true.
	SetActivityStreamsIgnore(v ActivityStreamsIgnore)
	// SetActivityStreamsImage sets the value of this property. Calling
	// IsActivityStreamsImage afterwards returns true.
	SetActivityStreamsImage(v ActivityStreamsImage)
	// SetActivityStreamsIntransitiveActivity sets the value of this property.
	// Calling IsActivityStreamsIntransitiveActivity afterwards returns
	// true.
	SetActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// SetActivityStreamsInvite sets the value of this property. Calling
	// IsActivityStreamsInvite afterwards returns true.
	SetActivityStreamsInvite(v ActivityStreamsInvite)
	// SetActivityStreamsJoin sets the value of this property. Calling
	// IsActivityStreamsJoin afterwards returns true.
	SetActivityStreamsJoin(v ActivityStreamsJoin)
	// SetActivityStreamsLeave sets the value of this property. Calling
	// IsActivityStreamsLeave afterwards returns true.
	SetActivityStreamsLeave(v ActivityStreamsLeave)
	// SetActivityStreamsLike sets the value of this property. Calling
	// IsActivityStreamsLike afterwards returns true.
	SetActivityStreamsLike(v ActivityStreamsLike)
	// SetActivityStreamsLink sets the value of this property. Calling
	// IsActivityStreamsLink afterwards returns true.
	SetActivityStreamsLink(v ActivityStreamsLink)
	// SetActivityStreamsListen sets the value of this property. Calling
	// IsActivityStreamsListen afterwards returns true.
	SetActivityStreamsListen(v ActivityStreamsListen)
	// SetActivityStreamsMention sets the value of this property. Calling
	// IsActivityStreamsMention afterwards returns true.
	SetActivityStreamsMention(v ActivityStreamsMention)
	// SetActivityStreamsMove sets the value of this property. Calling
	// IsActivityStreamsMove afterwards returns true.
	SetActivityStreamsMove(v ActivityStreamsMove)
	// SetActivityStreamsNote sets the value of this property. Calling
	// IsActivityStreamsNote afterwards returns true.
	SetActivityStreamsNote(v ActivityStreamsNote)
	// SetActivityStreamsObject sets the value of this property. Calling
	// IsActivityStreamsObject afterwards returns true.
	SetActivityStreamsObject(v ActivityStreamsObject)
	// SetActivityStreamsOffer sets the value of this property. Calling
	// IsActivityStreamsOffer afterwards returns true.
	SetActivityStreamsOffer(v ActivityStreamsOffer)
	// SetActivityStreamsOrderedCollection sets the value of this property.
	// Calling IsActivityStreamsOrderedCollection afterwards returns true.
	SetActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// SetActivityStreamsOrderedCollectionPage sets the value of this
	// property. Calling IsActivityStreamsOrderedCollectionPage afterwards
	// returns true.
	SetActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// SetActivityStreamsOrganization sets the value of this property. Calling
	// IsActivityStreamsOrganization afterwards returns true.
	SetActivityStreamsOrganization(v ActivityStreamsOrganization)
	// SetActivityStreamsPage sets the value of this property. Calling
	// IsActivityStreamsPage afterwards returns true.
	SetActivityStreamsPage(v ActivityStreamsPage)
	// SetActivityStreamsPerson sets the value of this property. Calling
	// IsActivityStreamsPerson afterwards returns true.
	SetActivityStreamsPerson(v ActivityStreamsPerson)
	// SetActivityStreamsPlace sets the value of this property. Calling
	// IsActivityStreamsPlace afterwards returns true.
	SetActivityStreamsPlace(v ActivityStreamsPlace)
	// SetActivityStreamsProfile sets the value of this property. Calling
	// IsActivityStreamsProfile afterwards returns true.
	SetActivityStreamsProfile(v ActivityStreamsProfile)
	// SetActivityStreamsQuestion sets the value of this property. Calling
	// IsActivityStreamsQuestion afterwards returns true.
	SetActivityStreamsQuestion(v ActivityStreamsQuestion)
	// SetActivityStreamsRead sets the value of this property. Calling
	// IsActivityStreamsRead afterwards returns true.
	SetActivityStreamsRead(v ActivityStreamsRead)
	// SetActivityStreamsReject sets the value of this property. Calling
	// IsActivityStreamsReject afterwards returns true.
	SetActivityStreamsReject(v ActivityStreamsReject)
	// SetActivityStreamsRelationship sets the value of this property. Calling
	// IsActivityStreamsRelationship afterwards returns true.
	SetActivityStreamsRelationship(v ActivityStreamsRelationship)
	// SetActivityStreamsRemove sets the value of this property. Calling
	// IsActivityStreamsRemove afterwards returns true.
	SetActivityStreamsRemove(v ActivityStreamsRemove)
	// SetActivityStreamsService sets the value of this property. Calling
	// IsActivityStreamsService afterwards returns true.
	SetActivityStreamsService(v ActivityStreamsService)
	// SetActivityStreamsTentativeAccept sets the value of this property.
	// Calling IsActivityStreamsTentativeAccept afterwards returns true.
	SetActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// SetActivityStreamsTentativeReject sets the value of this property.
	// Calling IsActivityStreamsTentativeReject afterwards returns true.
	SetActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// SetActivityStreamsTombstone sets the value of this property. Calling
	// IsActivityStreamsTombstone afterwards returns true.
	SetActivityStreamsTombstone(v ActivityStreamsTombstone)
	// SetActivityStreamsTravel sets the value of this property. Calling
	// IsActivityStreamsTravel afterwards returns true.
	SetActivityStreamsTravel(v ActivityStreamsTravel)
	// SetActivityStreamsUndo sets the value of this property. Calling
	// IsActivityStreamsUndo afterwards returns true.
	SetActivityStreamsUndo(v ActivityStreamsUndo)
	// SetActivityStreamsUpdate sets the value of this property. Calling
	// IsActivityStreamsUpdate afterwards returns true.
	SetActivityStreamsUpdate(v ActivityStreamsUpdate)
	// SetActivityStreamsVideo sets the value of this property. Calling
	// IsActivityStreamsVideo afterwards returns true.
	SetActivityStreamsVideo(v ActivityStreamsVideo)
	// SetActivityStreamsView sets the value of this property. Calling
	// IsActivityStreamsView afterwards returns true.
	SetActivityStreamsView(v ActivityStreamsView)
	// SetForgeFedBranch sets the value of this property. Calling
	// IsForgeFedBranch afterwards returns true.
	SetForgeFedBranch(v ForgeFedBranch)
	// SetForgeFedCommit sets the value of this property. Calling
	// IsForgeFedCommit afterwards returns true.
	SetForgeFedCommit(v ForgeFedCommit)
	// SetForgeFedPush sets the value of this property. Calling IsForgeFedPush
	// afterwards returns true.
	SetForgeFedPush(v ForgeFedPush)
	// SetForgeFedRepository sets the value of this property. Calling
	// IsForgeFedRepository afterwards returns true.
	SetForgeFedRepository(v ForgeFedRepository)
	// SetForgeFedTicket sets the value of this property. Calling
	// IsForgeFedTicket afterwards returns true.
	SetForgeFedTicket(v ForgeFedTicket)
	// SetForgeFedTicketDependency sets the value of this property. Calling
	// IsForgeFedTicketDependency afterwards returns true.
	SetForgeFedTicketDependency(v ForgeFedTicketDependency)
	// SetIRI sets the value of this property. Calling IsIRI afterwards
	// returns true.
	SetIRI(v *url.URL)
	// SetTootEmoji sets the value of this property. Calling IsTootEmoji
	// afterwards returns true.
	SetTootEmoji(v TootEmoji)
	// SetTootIdentityProof sets the value of this property. Calling
	// IsTootIdentityProof afterwards returns true.
	SetTootIdentityProof(v TootIdentityProof)
	// SetType attempts to set the property for the arbitrary type. Returns an
	// error if it is not a valid type to set on this property.
	SetType(t Type) error
}

ActivityStreamsCcPropertyIterator represents a single value for the "cc" property.

type ActivityStreamsClosedProperty

type ActivityStreamsClosedProperty interface {
	// AppendActivityStreamsAccept appends a Accept value to the back of a
	// list of the property "closed". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsAccept(v ActivityStreamsAccept)
	// AppendActivityStreamsActivity appends a Activity value to the back of a
	// list of the property "closed". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsActivity(v ActivityStreamsActivity)
	// AppendActivityStreamsAdd appends a Add value to the back of a list of
	// the property "closed". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsAdd(v ActivityStreamsAdd)
	// AppendActivityStreamsAnnounce appends a Announce value to the back of a
	// list of the property "closed". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// AppendActivityStreamsApplication appends a Application value to the
	// back of a list of the property "closed". Invalidates iterators that
	// are traversing using Prev.
	AppendActivityStreamsApplication(v ActivityStreamsApplication)
	// AppendActivityStreamsArrive appends a Arrive value to the back of a
	// list of the property "closed". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsArrive(v ActivityStreamsArrive)
	// AppendActivityStreamsArticle appends a Article value to the back of a
	// list of the property "closed". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsArticle(v ActivityStreamsArticle)
	// AppendActivityStreamsAudio appends a Audio value to the back of a list
	// of the property "closed". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsAudio(v ActivityStreamsAudio)
	// AppendActivityStreamsBlock appends a Block value to the back of a list
	// of the property "closed". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsBlock(v ActivityStreamsBlock)
	// AppendActivityStreamsCollection appends a Collection value to the back
	// of a list of the property "closed". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsCollection(v ActivityStreamsCollection)
	// AppendActivityStreamsCollectionPage appends a CollectionPage value to
	// the back of a list of the property "closed". Invalidates iterators
	// that are traversing using Prev.
	AppendActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// AppendActivityStreamsCreate appends a Create value to the back of a
	// list of the property "closed". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsCreate(v ActivityStreamsCreate)
	// AppendActivityStreamsDelete appends a Delete value to the back of a
	// list of the property "closed". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDelete(v ActivityStreamsDelete)
	// AppendActivityStreamsDislike appends a Dislike value to the back of a
	// list of the property "closed". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDislike(v ActivityStreamsDislike)
	// AppendActivityStreamsDocument appends a Document value to the back of a
	// list of the property "closed". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDocument(v ActivityStreamsDocument)
	// AppendActivityStreamsEvent appends a Event value to the back of a list
	// of the property "closed". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsEvent(v ActivityStreamsEvent)
	// AppendActivityStreamsFlag appends a Flag value to the back of a list of
	// the property "closed". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsFlag(v ActivityStreamsFlag)
	// AppendActivityStreamsFollow appends a Follow value to the back of a
	// list of the property "closed". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsFollow(v ActivityStreamsFollow)
	// AppendActivityStreamsGroup appends a Group value to the back of a list
	// of the property "closed". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsGroup(v ActivityStreamsGroup)
	// AppendActivityStreamsIgnore appends a Ignore value to the back of a
	// list of the property "closed". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsIgnore(v ActivityStreamsIgnore)
	// AppendActivityStreamsImage appends a Image value to the back of a list
	// of the property "closed". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsImage(v ActivityStreamsImage)
	// AppendActivityStreamsIntransitiveActivity appends a
	// IntransitiveActivity value to the back of a list of the property
	// "closed". Invalidates iterators that are traversing using Prev.
	AppendActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// AppendActivityStreamsInvite appends a Invite value to the back of a
	// list of the property "closed". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsInvite(v ActivityStreamsInvite)
	// AppendActivityStreamsJoin appends a Join value to the back of a list of
	// the property "closed". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsJoin(v ActivityStreamsJoin)
	// AppendActivityStreamsLeave appends a Leave value to the back of a list
	// of the property "closed". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsLeave(v ActivityStreamsLeave)
	// AppendActivityStreamsLike appends a Like value to the back of a list of
	// the property "closed". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsLike(v ActivityStreamsLike)
	// AppendActivityStreamsLink appends a Link value to the back of a list of
	// the property "closed". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsLink(v ActivityStreamsLink)
	// AppendActivityStreamsListen appends a Listen value to the back of a
	// list of the property "closed". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsListen(v ActivityStreamsListen)
	// AppendActivityStreamsMention appends a Mention value to the back of a
	// list of the property "closed". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsMention(v ActivityStreamsMention)
	// AppendActivityStreamsMove appends a Move value to the back of a list of
	// the property "closed". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsMove(v ActivityStreamsMove)
	// AppendActivityStreamsNote appends a Note value to the back of a list of
	// the property "closed". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsNote(v ActivityStreamsNote)
	// AppendActivityStreamsObject appends a Object value to the back of a
	// list of the property "closed". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsObject(v ActivityStreamsObject)
	// AppendActivityStreamsOffer appends a Offer value to the back of a list
	// of the property "closed". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsOffer(v ActivityStreamsOffer)
	// AppendActivityStreamsOrderedCollection appends a OrderedCollection
	// value to the back of a list of the property "closed". Invalidates
	// iterators that are traversing using Prev.
	AppendActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// AppendActivityStreamsOrderedCollectionPage appends a
	// OrderedCollectionPage value to the back of a list of the property
	// "closed". Invalidates iterators that are traversing using Prev.
	AppendActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// AppendActivityStreamsOrganization appends a Organization value to the
	// back of a list of the property "closed". Invalidates iterators that
	// are traversing using Prev.
	AppendActivityStreamsOrganization(v ActivityStreamsOrganization)
	// AppendActivityStreamsPage appends a Page value to the back of a list of
	// the property "closed". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsPage(v ActivityStreamsPage)
	// AppendActivityStreamsPerson appends a Person value to the back of a
	// list of the property "closed". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsPerson(v ActivityStreamsPerson)
	// AppendActivityStreamsPlace appends a Place value to the back of a list
	// of the property "closed". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsPlace(v ActivityStreamsPlace)
	// AppendActivityStreamsProfile appends a Profile value to the back of a
	// list of the property "closed". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsProfile(v ActivityStreamsProfile)
	// AppendActivityStreamsQuestion appends a Question value to the back of a
	// list of the property "closed". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsQuestion(v ActivityStreamsQuestion)
	// AppendActivityStreamsRead appends a Read value to the back of a list of
	// the property "closed". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsRead(v ActivityStreamsRead)
	// AppendActivityStreamsReject appends a Reject value to the back of a
	// list of the property "closed". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsReject(v ActivityStreamsReject)
	// AppendActivityStreamsRelationship appends a Relationship value to the
	// back of a list of the property "closed". Invalidates iterators that
	// are traversing using Prev.
	AppendActivityStreamsRelationship(v ActivityStreamsRelationship)
	// AppendActivityStreamsRemove appends a Remove value to the back of a
	// list of the property "closed". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsRemove(v ActivityStreamsRemove)
	// AppendActivityStreamsService appends a Service value to the back of a
	// list of the property "closed". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsService(v ActivityStreamsService)
	// AppendActivityStreamsTentativeAccept appends a TentativeAccept value to
	// the back of a list of the property "closed". Invalidates iterators
	// that are traversing using Prev.
	AppendActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// AppendActivityStreamsTentativeReject appends a TentativeReject value to
	// the back of a list of the property "closed". Invalidates iterators
	// that are traversing using Prev.
	AppendActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// AppendActivityStreamsTombstone appends a Tombstone value to the back of
	// a list of the property "closed". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsTombstone(v ActivityStreamsTombstone)
	// AppendActivityStreamsTravel appends a Travel value to the back of a
	// list of the property "closed". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsTravel(v ActivityStreamsTravel)
	// AppendActivityStreamsUndo appends a Undo value to the back of a list of
	// the property "closed". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsUndo(v ActivityStreamsUndo)
	// AppendActivityStreamsUpdate appends a Update value to the back of a
	// list of the property "closed". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsUpdate(v ActivityStreamsUpdate)
	// AppendActivityStreamsVideo appends a Video value to the back of a list
	// of the property "closed". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsVideo(v ActivityStreamsVideo)
	// AppendActivityStreamsView appends a View value to the back of a list of
	// the property "closed". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsView(v ActivityStreamsView)
	// AppendForgeFedBranch appends a Branch value to the back of a list of
	// the property "closed". Invalidates iterators that are traversing
	// using Prev.
	AppendForgeFedBranch(v ForgeFedBranch)
	// AppendForgeFedCommit appends a Commit value to the back of a list of
	// the property "closed". Invalidates iterators that are traversing
	// using Prev.
	AppendForgeFedCommit(v ForgeFedCommit)
	// AppendForgeFedPush appends a Push value to the back of a list of the
	// property "closed". Invalidates iterators that are traversing using
	// Prev.
	AppendForgeFedPush(v ForgeFedPush)
	// AppendForgeFedRepository appends a Repository value to the back of a
	// list of the property "closed". Invalidates iterators that are
	// traversing using Prev.
	AppendForgeFedRepository(v ForgeFedRepository)
	// AppendForgeFedTicket appends a Ticket value to the back of a list of
	// the property "closed". Invalidates iterators that are traversing
	// using Prev.
	AppendForgeFedTicket(v ForgeFedTicket)
	// AppendForgeFedTicketDependency appends a TicketDependency value to the
	// back of a list of the property "closed". Invalidates iterators that
	// are traversing using Prev.
	AppendForgeFedTicketDependency(v ForgeFedTicketDependency)
	// AppendIRI appends an IRI value to the back of a list of the property
	// "closed"
	AppendIRI(v *url.URL)
	// AppendTootEmoji appends a Emoji value to the back of a list of the
	// property "closed". Invalidates iterators that are traversing using
	// Prev.
	AppendTootEmoji(v TootEmoji)
	// AppendTootIdentityProof appends a IdentityProof value to the back of a
	// list of the property "closed". Invalidates iterators that are
	// traversing using Prev.
	AppendTootIdentityProof(v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "closed". Invalidates iterators that are traversing
	// using Prev. Returns an error if the type is not a valid one to set
	// for this property.
	AppendType(t Type) error
	// AppendXMLSchemaBoolean appends a boolean value to the back of a list of
	// the property "closed". Invalidates iterators that are traversing
	// using Prev.
	AppendXMLSchemaBoolean(v bool)
	// AppendXMLSchemaDateTime appends a dateTime value to the back of a list
	// of the property "closed". Invalidates iterators that are traversing
	// using Prev.
	AppendXMLSchemaDateTime(v time.Time)
	// At returns the property value for the specified index. Panics if the
	// index is out of bounds.
	At(index int) ActivityStreamsClosedPropertyIterator
	// Begin returns the first iterator, or nil if empty. Can be used with the
	// iterator's Next method and this property's End method to iterate
	// from front to back through all values.
	Begin() ActivityStreamsClosedPropertyIterator
	// Empty returns returns true if there are no elements.
	Empty() bool
	// End returns beyond-the-last iterator, which is nil. Can be used with
	// the iterator's Next method and this property's Begin method to
	// iterate from front to back through all values.
	End() ActivityStreamsClosedPropertyIterator
	// InsertActivityStreamsAccept inserts a Accept value at the specified
	// index for a property "closed". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAccept(idx int, v ActivityStreamsAccept)
	// InsertActivityStreamsActivity inserts a Activity value at the specified
	// index for a property "closed". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsActivity(idx int, v ActivityStreamsActivity)
	// InsertActivityStreamsAdd inserts a Add value at the specified index for
	// a property "closed". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertActivityStreamsAdd(idx int, v ActivityStreamsAdd)
	// InsertActivityStreamsAnnounce inserts a Announce value at the specified
	// index for a property "closed". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAnnounce(idx int, v ActivityStreamsAnnounce)
	// InsertActivityStreamsApplication inserts a Application value at the
	// specified index for a property "closed". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsApplication(idx int, v ActivityStreamsApplication)
	// InsertActivityStreamsArrive inserts a Arrive value at the specified
	// index for a property "closed". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsArrive(idx int, v ActivityStreamsArrive)
	// InsertActivityStreamsArticle inserts a Article value at the specified
	// index for a property "closed". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsArticle(idx int, v ActivityStreamsArticle)
	// InsertActivityStreamsAudio inserts a Audio value at the specified index
	// for a property "closed". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAudio(idx int, v ActivityStreamsAudio)
	// InsertActivityStreamsBlock inserts a Block value at the specified index
	// for a property "closed". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsBlock(idx int, v ActivityStreamsBlock)
	// InsertActivityStreamsCollection inserts a Collection value at the
	// specified index for a property "closed". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsCollection(idx int, v ActivityStreamsCollection)
	// InsertActivityStreamsCollectionPage inserts a CollectionPage value at
	// the specified index for a property "closed". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsCollectionPage(idx int, v ActivityStreamsCollectionPage)
	// InsertActivityStreamsCreate inserts a Create value at the specified
	// index for a property "closed". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsCreate(idx int, v ActivityStreamsCreate)
	// InsertActivityStreamsDelete inserts a Delete value at the specified
	// index for a property "closed". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDelete(idx int, v ActivityStreamsDelete)
	// InsertActivityStreamsDislike inserts a Dislike value at the specified
	// index for a property "closed". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDislike(idx int, v ActivityStreamsDislike)
	// InsertActivityStreamsDocument inserts a Document value at the specified
	// index for a property "closed". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDocument(idx int, v ActivityStreamsDocument)
	// InsertActivityStreamsEvent inserts a Event value at the specified index
	// for a property "closed". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsEvent(idx int, v ActivityStreamsEvent)
	// InsertActivityStreamsFlag inserts a Flag value at the specified index
	// for a property "closed". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsFlag(idx int, v ActivityStreamsFlag)
	// InsertActivityStreamsFollow inserts a Follow value at the specified
	// index for a property "closed". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsFollow(idx int, v ActivityStreamsFollow)
	// InsertActivityStreamsGroup inserts a Group value at the specified index
	// for a property "closed". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsGroup(idx int, v ActivityStreamsGroup)
	// InsertActivityStreamsIgnore inserts a Ignore value at the specified
	// index for a property "closed". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsIgnore(idx int, v ActivityStreamsIgnore)
	// InsertActivityStreamsImage inserts a Image value at the specified index
	// for a property "closed". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsImage(idx int, v ActivityStreamsImage)
	// InsertActivityStreamsIntransitiveActivity inserts a
	// IntransitiveActivity value at the specified index for a property
	// "closed". Existing elements at that index and higher are shifted
	// back once. Invalidates all iterators.
	InsertActivityStreamsIntransitiveActivity(idx int, v ActivityStreamsIntransitiveActivity)
	// InsertActivityStreamsInvite inserts a Invite value at the specified
	// index for a property "closed". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsInvite(idx int, v ActivityStreamsInvite)
	// InsertActivityStreamsJoin inserts a Join value at the specified index
	// for a property "closed". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsJoin(idx int, v ActivityStreamsJoin)
	// InsertActivityStreamsLeave inserts a Leave value at the specified index
	// for a property "closed". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsLeave(idx int, v ActivityStreamsLeave)
	// InsertActivityStreamsLike inserts a Like value at the specified index
	// for a property "closed". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsLike(idx int, v ActivityStreamsLike)
	// InsertActivityStreamsLink inserts a Link value at the specified index
	// for a property "closed". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsLink(idx int, v ActivityStreamsLink)
	// InsertActivityStreamsListen inserts a Listen value at the specified
	// index for a property "closed". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsListen(idx int, v ActivityStreamsListen)
	// InsertActivityStreamsMention inserts a Mention value at the specified
	// index for a property "closed". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsMention(idx int, v ActivityStreamsMention)
	// InsertActivityStreamsMove inserts a Move value at the specified index
	// for a property "closed". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsMove(idx int, v ActivityStreamsMove)
	// InsertActivityStreamsNote inserts a Note value at the specified index
	// for a property "closed". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsNote(idx int, v ActivityStreamsNote)
	// InsertActivityStreamsObject inserts a Object value at the specified
	// index for a property "closed". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsObject(idx int, v ActivityStreamsObject)
	// InsertActivityStreamsOffer inserts a Offer value at the specified index
	// for a property "closed". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsOffer(idx int, v ActivityStreamsOffer)
	// InsertActivityStreamsOrderedCollection inserts a OrderedCollection
	// value at the specified index for a property "closed". Existing
	// elements at that index and higher are shifted back once.
	// Invalidates all iterators.
	InsertActivityStreamsOrderedCollection(idx int, v ActivityStreamsOrderedCollection)
	// InsertActivityStreamsOrderedCollectionPage inserts a
	// OrderedCollectionPage value at the specified index for a property
	// "closed". Existing elements at that index and higher are shifted
	// back once. Invalidates all iterators.
	InsertActivityStreamsOrderedCollectionPage(idx int, v ActivityStreamsOrderedCollectionPage)
	// InsertActivityStreamsOrganization inserts a Organization value at the
	// specified index for a property "closed". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsOrganization(idx int, v ActivityStreamsOrganization)
	// InsertActivityStreamsPage inserts a Page value at the specified index
	// for a property "closed". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsPage(idx int, v ActivityStreamsPage)
	// InsertActivityStreamsPerson inserts a Person value at the specified
	// index for a property "closed". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsPerson(idx int, v ActivityStreamsPerson)
	// InsertActivityStreamsPlace inserts a Place value at the specified index
	// for a property "closed". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsPlace(idx int, v ActivityStreamsPlace)
	// InsertActivityStreamsProfile inserts a Profile value at the specified
	// index for a property "closed". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsProfile(idx int, v ActivityStreamsProfile)
	// InsertActivityStreamsQuestion inserts a Question value at the specified
	// index for a property "closed". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsQuestion(idx int, v ActivityStreamsQuestion)
	// InsertActivityStreamsRead inserts a Read value at the specified index
	// for a property "closed". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsRead(idx int, v ActivityStreamsRead)
	// InsertActivityStreamsReject inserts a Reject value at the specified
	// index for a property "closed". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsReject(idx int, v ActivityStreamsReject)
	// InsertActivityStreamsRelationship inserts a Relationship value at the
	// specified index for a property "closed". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsRelationship(idx int, v ActivityStreamsRelationship)
	// InsertActivityStreamsRemove inserts a Remove value at the specified
	// index for a property "closed". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsRemove(idx int, v ActivityStreamsRemove)
	// InsertActivityStreamsService inserts a Service value at the specified
	// index for a property "closed". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsService(idx int, v ActivityStreamsService)
	// InsertActivityStreamsTentativeAccept inserts a TentativeAccept value at
	// the specified index for a property "closed". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsTentativeAccept(idx int, v ActivityStreamsTentativeAccept)
	// InsertActivityStreamsTentativeReject inserts a TentativeReject value at
	// the specified index for a property "closed". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsTentativeReject(idx int, v ActivityStreamsTentativeReject)
	// InsertActivityStreamsTombstone inserts a Tombstone value at the
	// specified index for a property "closed". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsTombstone(idx int, v ActivityStreamsTombstone)
	// InsertActivityStreamsTravel inserts a Travel value at the specified
	// index for a property "closed". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsTravel(idx int, v ActivityStreamsTravel)
	// InsertActivityStreamsUndo inserts a Undo value at the specified index
	// for a property "closed". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsUndo(idx int, v ActivityStreamsUndo)
	// InsertActivityStreamsUpdate inserts a Update value at the specified
	// index for a property "closed". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsUpdate(idx int, v ActivityStreamsUpdate)
	// InsertActivityStreamsVideo inserts a Video value at the specified index
	// for a property "closed". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsVideo(idx int, v ActivityStreamsVideo)
	// InsertActivityStreamsView inserts a View value at the specified index
	// for a property "closed". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsView(idx int, v ActivityStreamsView)
	// InsertForgeFedBranch inserts a Branch value at the specified index for
	// a property "closed". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertForgeFedBranch(idx int, v ForgeFedBranch)
	// InsertForgeFedCommit inserts a Commit value at the specified index for
	// a property "closed". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertForgeFedCommit(idx int, v ForgeFedCommit)
	// InsertForgeFedPush inserts a Push value at the specified index for a
	// property "closed". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertForgeFedPush(idx int, v ForgeFedPush)
	// InsertForgeFedRepository inserts a Repository value at the specified
	// index for a property "closed". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertForgeFedRepository(idx int, v ForgeFedRepository)
	// InsertForgeFedTicket inserts a Ticket value at the specified index for
	// a property "closed". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertForgeFedTicket(idx int, v ForgeFedTicket)
	// InsertForgeFedTicketDependency inserts a TicketDependency value at the
	// specified index for a property "closed". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
	// Insert inserts an IRI value at the specified index for a property
	// "closed". Existing elements at that index and higher are shifted
	// back once. Invalidates all iterators.
	InsertIRI(idx int, v *url.URL)
	// InsertTootEmoji inserts a Emoji value at the specified index for a
	// property "closed". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertTootEmoji(idx int, v TootEmoji)
	// InsertTootIdentityProof inserts a IdentityProof value at the specified
	// index for a property "closed". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertTootIdentityProof(idx int, v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "closed". Invalidates all iterators. Returns an error
	// if the type is not a valid one to set for this property.
	InsertType(idx int, t Type) error
	// InsertXMLSchemaBoolean inserts a boolean value at the specified index
	// for a property "closed". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertXMLSchemaBoolean(idx int, v bool)
	// InsertXMLSchemaDateTime inserts a dateTime value at the specified index
	// for a property "closed". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertXMLSchemaDateTime(idx int, v time.Time)
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API method specifically needed only for alternate
	// implementations for go-fed. Applications should not use this
	// method. Panics if the index is out of bounds.
	KindIndex(idx int) int
	// Len returns the number of values that exist for the "closed" property.
	Len() (length int)
	// Less computes whether another property is less than this one. Mixing
	// types results in a consistent but arbitrary ordering
	Less(i, j int) bool
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsClosedProperty) bool
	// Name returns the name of this property ("closed") with any alias.
	Name() string
	// PrependActivityStreamsAccept prepends a Accept value to the front of a
	// list of the property "closed". Invalidates all iterators.
	PrependActivityStreamsAccept(v ActivityStreamsAccept)
	// PrependActivityStreamsActivity prepends a Activity value to the front
	// of a list of the property "closed". Invalidates all iterators.
	PrependActivityStreamsActivity(v ActivityStreamsActivity)
	// PrependActivityStreamsAdd prepends a Add value to the front of a list
	// of the property "closed". Invalidates all iterators.
	PrependActivityStreamsAdd(v ActivityStreamsAdd)
	// PrependActivityStreamsAnnounce prepends a Announce value to the front
	// of a list of the property "closed". Invalidates all iterators.
	PrependActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// PrependActivityStreamsApplication prepends a Application value to the
	// front of a list of the property "closed". Invalidates all iterators.
	PrependActivityStreamsApplication(v ActivityStreamsApplication)
	// PrependActivityStreamsArrive prepends a Arrive value to the front of a
	// list of the property "closed". Invalidates all iterators.
	PrependActivityStreamsArrive(v ActivityStreamsArrive)
	// PrependActivityStreamsArticle prepends a Article value to the front of
	// a list of the property "closed". Invalidates all iterators.
	PrependActivityStreamsArticle(v ActivityStreamsArticle)
	// PrependActivityStreamsAudio prepends a Audio value to the front of a
	// list of the property "closed". Invalidates all iterators.
	PrependActivityStreamsAudio(v ActivityStreamsAudio)
	// PrependActivityStreamsBlock prepends a Block value to the front of a
	// list of the property "closed". Invalidates all iterators.
	PrependActivityStreamsBlock(v ActivityStreamsBlock)
	// PrependActivityStreamsCollection prepends a Collection value to the
	// front of a list of the property "closed". Invalidates all iterators.
	PrependActivityStreamsCollection(v ActivityStreamsCollection)
	// PrependActivityStreamsCollectionPage prepends a CollectionPage value to
	// the front of a list of the property "closed". Invalidates all
	// iterators.
	PrependActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// PrependActivityStreamsCreate prepends a Create value to the front of a
	// list of the property "closed". Invalidates all iterators.
	PrependActivityStreamsCreate(v ActivityStreamsCreate)
	// PrependActivityStreamsDelete prepends a Delete value to the front of a
	// list of the property "closed". Invalidates all iterators.
	PrependActivityStreamsDelete(v ActivityStreamsDelete)
	// PrependActivityStreamsDislike prepends a Dislike value to the front of
	// a list of the property "closed". Invalidates all iterators.
	PrependActivityStreamsDislike(v ActivityStreamsDislike)
	// PrependActivityStreamsDocument prepends a Document value to the front
	// of a list of the property "closed". Invalidates all iterators.
	PrependActivityStreamsDocument(v ActivityStreamsDocument)
	// PrependActivityStreamsEvent prepends a Event value to the front of a
	// list of the property "closed". Invalidates all iterators.
	PrependActivityStreamsEvent(v ActivityStreamsEvent)
	// PrependActivityStreamsFlag prepends a Flag value to the front of a list
	// of the property "closed". Invalidates all iterators.
	PrependActivityStreamsFlag(v ActivityStreamsFlag)
	// PrependActivityStreamsFollow prepends a Follow value to the front of a
	// list of the property "closed". Invalidates all iterators.
	PrependActivityStreamsFollow(v ActivityStreamsFollow)
	// PrependActivityStreamsGroup prepends a Group value to the front of a
	// list of the property "closed". Invalidates all iterators.
	PrependActivityStreamsGroup(v ActivityStreamsGroup)
	// PrependActivityStreamsIgnore prepends a Ignore value to the front of a
	// list of the property "closed". Invalidates all iterators.
	PrependActivityStreamsIgnore(v ActivityStreamsIgnore)
	// PrependActivityStreamsImage prepends a Image value to the front of a
	// list of the property "closed". Invalidates all iterators.
	PrependActivityStreamsImage(v ActivityStreamsImage)
	// PrependActivityStreamsIntransitiveActivity prepends a
	// IntransitiveActivity value to the front of a list of the property
	// "closed". Invalidates all iterators.
	PrependActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// PrependActivityStreamsInvite prepends a Invite value to the front of a
	// list of the property "closed". Invalidates all iterators.
	PrependActivityStreamsInvite(v ActivityStreamsInvite)
	// PrependActivityStreamsJoin prepends a Join value to the front of a list
	// of the property "closed". Invalidates all iterators.
	PrependActivityStreamsJoin(v ActivityStreamsJoin)
	// PrependActivityStreamsLeave prepends a Leave value to the front of a
	// list of the property "closed". Invalidates all iterators.
	PrependActivityStreamsLeave(v ActivityStreamsLeave)
	// PrependActivityStreamsLike prepends a Like value to the front of a list
	// of the property "closed". Invalidates all iterators.
	PrependActivityStreamsLike(v ActivityStreamsLike)
	// PrependActivityStreamsLink prepends a Link value to the front of a list
	// of the property "closed". Invalidates all iterators.
	PrependActivityStreamsLink(v ActivityStreamsLink)
	// PrependActivityStreamsListen prepends a Listen value to the front of a
	// list of the property "closed". Invalidates all iterators.
	PrependActivityStreamsListen(v ActivityStreamsListen)
	// PrependActivityStreamsMention prepends a Mention value to the front of
	// a list of the property "closed". Invalidates all iterators.
	PrependActivityStreamsMention(v ActivityStreamsMention)
	// PrependActivityStreamsMove prepends a Move value to the front of a list
	// of the property "closed". Invalidates all iterators.
	PrependActivityStreamsMove(v ActivityStreamsMove)
	// PrependActivityStreamsNote prepends a Note value to the front of a list
	// of the property "closed". Invalidates all iterators.
	PrependActivityStreamsNote(v ActivityStreamsNote)
	// PrependActivityStreamsObject prepends a Object value to the front of a
	// list of the property "closed". Invalidates all iterators.
	PrependActivityStreamsObject(v ActivityStreamsObject)
	// PrependActivityStreamsOffer prepends a Offer value to the front of a
	// list of the property "closed". Invalidates all iterators.
	PrependActivityStreamsOffer(v ActivityStreamsOffer)
	// PrependActivityStreamsOrderedCollection prepends a OrderedCollection
	// value to the front of a list of the property "closed". Invalidates
	// all iterators.
	PrependActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// PrependActivityStreamsOrderedCollectionPage prepends a
	// OrderedCollectionPage value to the front of a list of the property
	// "closed". Invalidates all iterators.
	PrependActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// PrependActivityStreamsOrganization prepends a Organization value to the
	// front of a list of the property "closed". Invalidates all iterators.
	PrependActivityStreamsOrganization(v ActivityStreamsOrganization)
	// PrependActivityStreamsPage prepends a Page value to the front of a list
	// of the property "closed". Invalidates all iterators.
	PrependActivityStreamsPage(v ActivityStreamsPage)
	// PrependActivityStreamsPerson prepends a Person value to the front of a
	// list of the property "closed". Invalidates all iterators.
	PrependActivityStreamsPerson(v ActivityStreamsPerson)
	// PrependActivityStreamsPlace prepends a Place value to the front of a
	// list of the property "closed". Invalidates all iterators.
	PrependActivityStreamsPlace(v ActivityStreamsPlace)
	// PrependActivityStreamsProfile prepends a Profile value to the front of
	// a list of the property "closed". Invalidates all iterators.
	PrependActivityStreamsProfile(v ActivityStreamsProfile)
	// PrependActivityStreamsQuestion prepends a Question value to the front
	// of a list of the property "closed". Invalidates all iterators.
	PrependActivityStreamsQuestion(v ActivityStreamsQuestion)
	// PrependActivityStreamsRead prepends a Read value to the front of a list
	// of the property "closed". Invalidates all iterators.
	PrependActivityStreamsRead(v ActivityStreamsRead)
	// PrependActivityStreamsReject prepends a Reject value to the front of a
	// list of the property "closed". Invalidates all iterators.
	PrependActivityStreamsReject(v ActivityStreamsReject)
	// PrependActivityStreamsRelationship prepends a Relationship value to the
	// front of a list of the property "closed". Invalidates all iterators.
	PrependActivityStreamsRelationship(v ActivityStreamsRelationship)
	// PrependActivityStreamsRemove prepends a Remove value to the front of a
	// list of the property "closed". Invalidates all iterators.
	PrependActivityStreamsRemove(v ActivityStreamsRemove)
	// PrependActivityStreamsService prepends a Service value to the front of
	// a list of the property "closed". Invalidates all iterators.
	PrependActivityStreamsService(v ActivityStreamsService)
	// PrependActivityStreamsTentativeAccept prepends a TentativeAccept value
	// to the front of a list of the property "closed". Invalidates all
	// iterators.
	PrependActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// PrependActivityStreamsTentativeReject prepends a TentativeReject value
	// to the front of a list of the property "closed". Invalidates all
	// iterators.
	PrependActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// PrependActivityStreamsTombstone prepends a Tombstone value to the front
	// of a list of the property "closed". Invalidates all iterators.
	PrependActivityStreamsTombstone(v ActivityStreamsTombstone)
	// PrependActivityStreamsTravel prepends a Travel value to the front of a
	// list of the property "closed". Invalidates all iterators.
	PrependActivityStreamsTravel(v ActivityStreamsTravel)
	// PrependActivityStreamsUndo prepends a Undo value to the front of a list
	// of the property "closed". Invalidates all iterators.
	PrependActivityStreamsUndo(v ActivityStreamsUndo)
	// PrependActivityStreamsUpdate prepends a Update value to the front of a
	// list of the property "closed". Invalidates all iterators.
	PrependActivityStreamsUpdate(v ActivityStreamsUpdate)
	// PrependActivityStreamsVideo prepends a Video value to the front of a
	// list of the property "closed". Invalidates all iterators.
	PrependActivityStreamsVideo(v ActivityStreamsVideo)
	// PrependActivityStreamsView prepends a View value to the front of a list
	// of the property "closed". Invalidates all iterators.
	PrependActivityStreamsView(v ActivityStreamsView)
	// PrependForgeFedBranch prepends a Branch value to the front of a list of
	// the property "closed". Invalidates all iterators.
	PrependForgeFedBranch(v ForgeFedBranch)
	// PrependForgeFedCommit prepends a Commit value to the front of a list of
	// the property "closed". Invalidates all iterators.
	PrependForgeFedCommit(v ForgeFedCommit)
	// PrependForgeFedPush prepends a Push value to the front of a list of the
	// property "closed". Invalidates all iterators.
	PrependForgeFedPush(v ForgeFedPush)
	// PrependForgeFedRepository prepends a Repository value to the front of a
	// list of the property "closed". Invalidates all iterators.
	PrependForgeFedRepository(v ForgeFedRepository)
	// PrependForgeFedTicket prepends a Ticket value to the front of a list of
	// the property "closed". Invalidates all iterators.
	PrependForgeFedTicket(v ForgeFedTicket)
	// PrependForgeFedTicketDependency prepends a TicketDependency value to
	// the front of a list of the property "closed". Invalidates all
	// iterators.
	PrependForgeFedTicketDependency(v ForgeFedTicketDependency)
	// PrependIRI prepends an IRI value to the front of a list of the property
	// "closed".
	PrependIRI(v *url.URL)
	// PrependTootEmoji prepends a Emoji value to the front of a list of the
	// property "closed". Invalidates all iterators.
	PrependTootEmoji(v TootEmoji)
	// PrependTootIdentityProof prepends a IdentityProof value to the front of
	// a list of the property "closed". Invalidates all iterators.
	PrependTootIdentityProof(v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "closed". Invalidates all iterators. Returns an error
	// if the type is not a valid one to set for this property.
	PrependType(t Type) error
	// PrependXMLSchemaBoolean prepends a boolean value to the front of a list
	// of the property "closed". Invalidates all iterators.
	PrependXMLSchemaBoolean(v bool)
	// PrependXMLSchemaDateTime prepends a dateTime value to the front of a
	// list of the property "closed". Invalidates all iterators.
	PrependXMLSchemaDateTime(v time.Time)
	// Remove deletes an element at the specified index from a list of the
	// property "closed", regardless of its type. Panics if the index is
	// out of bounds. Invalidates all iterators.
	Remove(idx int)
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// SetActivityStreamsAccept sets a Accept value to be at the specified
	// index for the property "closed". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsAccept(idx int, v ActivityStreamsAccept)
	// SetActivityStreamsActivity sets a Activity value to be at the specified
	// index for the property "closed". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsActivity(idx int, v ActivityStreamsActivity)
	// SetActivityStreamsAdd sets a Add value to be at the specified index for
	// the property "closed". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsAdd(idx int, v ActivityStreamsAdd)
	// SetActivityStreamsAnnounce sets a Announce value to be at the specified
	// index for the property "closed". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsAnnounce(idx int, v ActivityStreamsAnnounce)
	// SetActivityStreamsApplication sets a Application value to be at the
	// specified index for the property "closed". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsApplication(idx int, v ActivityStreamsApplication)
	// SetActivityStreamsArrive sets a Arrive value to be at the specified
	// index for the property "closed". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsArrive(idx int, v ActivityStreamsArrive)
	// SetActivityStreamsArticle sets a Article value to be at the specified
	// index for the property "closed". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsArticle(idx int, v ActivityStreamsArticle)
	// SetActivityStreamsAudio sets a Audio value to be at the specified index
	// for the property "closed". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsAudio(idx int, v ActivityStreamsAudio)
	// SetActivityStreamsBlock sets a Block value to be at the specified index
	// for the property "closed". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsBlock(idx int, v ActivityStreamsBlock)
	// SetActivityStreamsCollection sets a Collection value to be at the
	// specified index for the property "closed". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsCollection(idx int, v ActivityStreamsCollection)
	// SetActivityStreamsCollectionPage sets a CollectionPage value to be at
	// the specified index for the property "closed". Panics if the index
	// is out of bounds. Invalidates all iterators.
	SetActivityStreamsCollectionPage(idx int, v ActivityStreamsCollectionPage)
	// SetActivityStreamsCreate sets a Create value to be at the specified
	// index for the property "closed". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsCreate(idx int, v ActivityStreamsCreate)
	// SetActivityStreamsDelete sets a Delete value to be at the specified
	// index for the property "closed". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsDelete(idx int, v ActivityStreamsDelete)
	// SetActivityStreamsDislike sets a Dislike value to be at the specified
	// index for the property "closed". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsDislike(idx int, v ActivityStreamsDislike)
	// SetActivityStreamsDocument sets a Document value to be at the specified
	// index for the property "closed". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsDocument(idx int, v ActivityStreamsDocument)
	// SetActivityStreamsEvent sets a Event value to be at the specified index
	// for the property "closed". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsEvent(idx int, v ActivityStreamsEvent)
	// SetActivityStreamsFlag sets a Flag value to be at the specified index
	// for the property "closed". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsFlag(idx int, v ActivityStreamsFlag)
	// SetActivityStreamsFollow sets a Follow value to be at the specified
	// index for the property "closed". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsFollow(idx int, v ActivityStreamsFollow)
	// SetActivityStreamsGroup sets a Group value to be at the specified index
	// for the property "closed". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsGroup(idx int, v ActivityStreamsGroup)
	// SetActivityStreamsIgnore sets a Ignore value to be at the specified
	// index for the property "closed". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsIgnore(idx int, v ActivityStreamsIgnore)
	// SetActivityStreamsImage sets a Image value to be at the specified index
	// for the property "closed". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsImage(idx int, v ActivityStreamsImage)
	// SetActivityStreamsIntransitiveActivity sets a IntransitiveActivity
	// value to be at the specified index for the property "closed".
	// Panics if the index is out of bounds. Invalidates all iterators.
	SetActivityStreamsIntransitiveActivity(idx int, v ActivityStreamsIntransitiveActivity)
	// SetActivityStreamsInvite sets a Invite value to be at the specified
	// index for the property "closed". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsInvite(idx int, v ActivityStreamsInvite)
	// SetActivityStreamsJoin sets a Join value to be at the specified index
	// for the property "closed". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsJoin(idx int, v ActivityStreamsJoin)
	// SetActivityStreamsLeave sets a Leave value to be at the specified index
	// for the property "closed". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsLeave(idx int, v ActivityStreamsLeave)
	// SetActivityStreamsLike sets a Like value to be at the specified index
	// for the property "closed". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsLike(idx int, v ActivityStreamsLike)
	// SetActivityStreamsLink sets a Link value to be at the specified index
	// for the property "closed". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsLink(idx int, v ActivityStreamsLink)
	// SetActivityStreamsListen sets a Listen value to be at the specified
	// index for the property "closed". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsListen(idx int, v ActivityStreamsListen)
	// SetActivityStreamsMention sets a Mention value to be at the specified
	// index for the property "closed". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsMention(idx int, v ActivityStreamsMention)
	// SetActivityStreamsMove sets a Move value to be at the specified index
	// for the property "closed". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsMove(idx int, v ActivityStreamsMove)
	// SetActivityStreamsNote sets a Note value to be at the specified index
	// for the property "closed". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsNote(idx int, v ActivityStreamsNote)
	// SetActivityStreamsObject sets a Object value to be at the specified
	// index for the property "closed". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsObject(idx int, v ActivityStreamsObject)
	// SetActivityStreamsOffer sets a Offer value to be at the specified index
	// for the property "closed". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsOffer(idx int, v ActivityStreamsOffer)
	// SetActivityStreamsOrderedCollection sets a OrderedCollection value to
	// be at the specified index for the property "closed". Panics if the
	// index is out of bounds. Invalidates all iterators.
	SetActivityStreamsOrderedCollection(idx int, v ActivityStreamsOrderedCollection)
	// SetActivityStreamsOrderedCollectionPage sets a OrderedCollectionPage
	// value to be at the specified index for the property "closed".
	// Panics if the index is out of bounds. Invalidates all iterators.
	SetActivityStreamsOrderedCollectionPage(idx int, v ActivityStreamsOrderedCollectionPage)
	// SetActivityStreamsOrganization sets a Organization value to be at the
	// specified index for the property "closed". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsOrganization(idx int, v ActivityStreamsOrganization)
	// SetActivityStreamsPage sets a Page value to be at the specified index
	// for the property "closed". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsPage(idx int, v ActivityStreamsPage)
	// SetActivityStreamsPerson sets a Person value to be at the specified
	// index for the property "closed". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsPerson(idx int, v ActivityStreamsPerson)
	// SetActivityStreamsPlace sets a Place value to be at the specified index
	// for the property "closed". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsPlace(idx int, v ActivityStreamsPlace)
	// SetActivityStreamsProfile sets a Profile value to be at the specified
	// index for the property "closed". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsProfile(idx int, v ActivityStreamsProfile)
	// SetActivityStreamsQuestion sets a Question value to be at the specified
	// index for the property "closed". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsQuestion(idx int, v ActivityStreamsQuestion)
	// SetActivityStreamsRead sets a Read value to be at the specified index
	// for the property "closed". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsRead(idx int, v ActivityStreamsRead)
	// SetActivityStreamsReject sets a Reject value to be at the specified
	// index for the property "closed". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsReject(idx int, v ActivityStreamsReject)
	// SetActivityStreamsRelationship sets a Relationship value to be at the
	// specified index for the property "closed". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsRelationship(idx int, v ActivityStreamsRelationship)
	// SetActivityStreamsRemove sets a Remove value to be at the specified
	// index for the property "closed". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsRemove(idx int, v ActivityStreamsRemove)
	// SetActivityStreamsService sets a Service value to be at the specified
	// index for the property "closed". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsService(idx int, v ActivityStreamsService)
	// SetActivityStreamsTentativeAccept sets a TentativeAccept value to be at
	// the specified index for the property "closed". Panics if the index
	// is out of bounds. Invalidates all iterators.
	SetActivityStreamsTentativeAccept(idx int, v ActivityStreamsTentativeAccept)
	// SetActivityStreamsTentativeReject sets a TentativeReject value to be at
	// the specified index for the property "closed". Panics if the index
	// is out of bounds. Invalidates all iterators.
	SetActivityStreamsTentativeReject(idx int, v ActivityStreamsTentativeReject)
	// SetActivityStreamsTombstone sets a Tombstone value to be at the
	// specified index for the property "closed". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsTombstone(idx int, v ActivityStreamsTombstone)
	// SetActivityStreamsTravel sets a Travel value to be at the specified
	// index for the property "closed". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsTravel(idx int, v ActivityStreamsTravel)
	// SetActivityStreamsUndo sets a Undo value to be at the specified index
	// for the property "closed". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsUndo(idx int, v ActivityStreamsUndo)
	// SetActivityStreamsUpdate sets a Update value to be at the specified
	// index for the property "closed". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsUpdate(idx int, v ActivityStreamsUpdate)
	// SetActivityStreamsVideo sets a Video value to be at the specified index
	// for the property "closed". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsVideo(idx int, v ActivityStreamsVideo)
	// SetActivityStreamsView sets a View value to be at the specified index
	// for the property "closed". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsView(idx int, v ActivityStreamsView)
	// SetForgeFedBranch sets a Branch value to be at the specified index for
	// the property "closed". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedBranch(idx int, v ForgeFedBranch)
	// SetForgeFedCommit sets a Commit value to be at the specified index for
	// the property "closed". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedCommit(idx int, v ForgeFedCommit)
	// SetForgeFedPush sets a Push value to be at the specified index for the
	// property "closed". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedPush(idx int, v ForgeFedPush)
	// SetForgeFedRepository sets a Repository value to be at the specified
	// index for the property "closed". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetForgeFedRepository(idx int, v ForgeFedRepository)
	// SetForgeFedTicket sets a Ticket value to be at the specified index for
	// the property "closed". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedTicket(idx int, v ForgeFedTicket)
	// SetForgeFedTicketDependency sets a TicketDependency value to be at the
	// specified index for the property "closed". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
	// SetIRI sets an IRI value to be at the specified index for the property
	// "closed". Panics if the index is out of bounds.
	SetIRI(idx int, v *url.URL)
	// SetTootEmoji sets a Emoji value to be at the specified index for the
	// property "closed". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetTootEmoji(idx int, v TootEmoji)
	// SetTootIdentityProof sets a IdentityProof value to be at the specified
	// index for the property "closed". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetTootIdentityProof(idx int, v TootIdentityProof)
	// SetType sets an arbitrary type value to the specified index of the
	// property "closed". Invalidates all iterators. Returns an error if
	// the type is not a valid one to set for this property. Panics if the
	// index is out of bounds.
	SetType(idx int, t Type) error
	// SetXMLSchemaBoolean sets a boolean value to be at the specified index
	// for the property "closed". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetXMLSchemaBoolean(idx int, v bool)
	// SetXMLSchemaDateTime sets a dateTime value to be at the specified index
	// for the property "closed". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetXMLSchemaDateTime(idx int, v time.Time)
	// Swap swaps the location of values at two indices for the "closed"
	// property.
	Swap(i, j int)
}

Indicates that a question has been closed, and answers are no longer accepted.

Example 93 (https://www.w3.org/TR/activitystreams-vocabulary/#ex94b-jsonld):

{
  "closed": "2016-05-10T00:00:00Z",
  "name": "What is the answer?",
  "type": "Question"
}

type ActivityStreamsClosedPropertyIterator

type ActivityStreamsClosedPropertyIterator interface {
	// GetActivityStreamsAccept returns the value of this property. When
	// IsActivityStreamsAccept returns false, GetActivityStreamsAccept
	// will return an arbitrary value.
	GetActivityStreamsAccept() ActivityStreamsAccept
	// GetActivityStreamsActivity returns the value of this property. When
	// IsActivityStreamsActivity returns false, GetActivityStreamsActivity
	// will return an arbitrary value.
	GetActivityStreamsActivity() ActivityStreamsActivity
	// GetActivityStreamsAdd returns the value of this property. When
	// IsActivityStreamsAdd returns false, GetActivityStreamsAdd will
	// return an arbitrary value.
	GetActivityStreamsAdd() ActivityStreamsAdd
	// GetActivityStreamsAnnounce returns the value of this property. When
	// IsActivityStreamsAnnounce returns false, GetActivityStreamsAnnounce
	// will return an arbitrary value.
	GetActivityStreamsAnnounce() ActivityStreamsAnnounce
	// GetActivityStreamsApplication returns the value of this property. When
	// IsActivityStreamsApplication returns false,
	// GetActivityStreamsApplication will return an arbitrary value.
	GetActivityStreamsApplication() ActivityStreamsApplication
	// GetActivityStreamsArrive returns the value of this property. When
	// IsActivityStreamsArrive returns false, GetActivityStreamsArrive
	// will return an arbitrary value.
	GetActivityStreamsArrive() ActivityStreamsArrive
	// GetActivityStreamsArticle returns the value of this property. When
	// IsActivityStreamsArticle returns false, GetActivityStreamsArticle
	// will return an arbitrary value.
	GetActivityStreamsArticle() ActivityStreamsArticle
	// GetActivityStreamsAudio returns the value of this property. When
	// IsActivityStreamsAudio returns false, GetActivityStreamsAudio will
	// return an arbitrary value.
	GetActivityStreamsAudio() ActivityStreamsAudio
	// GetActivityStreamsBlock returns the value of this property. When
	// IsActivityStreamsBlock returns false, GetActivityStreamsBlock will
	// return an arbitrary value.
	GetActivityStreamsBlock() ActivityStreamsBlock
	// GetActivityStreamsCollection returns the value of this property. When
	// IsActivityStreamsCollection returns false,
	// GetActivityStreamsCollection will return an arbitrary value.
	GetActivityStreamsCollection() ActivityStreamsCollection
	// GetActivityStreamsCollectionPage returns the value of this property.
	// When IsActivityStreamsCollectionPage returns false,
	// GetActivityStreamsCollectionPage will return an arbitrary value.
	GetActivityStreamsCollectionPage() ActivityStreamsCollectionPage
	// GetActivityStreamsCreate returns the value of this property. When
	// IsActivityStreamsCreate returns false, GetActivityStreamsCreate
	// will return an arbitrary value.
	GetActivityStreamsCreate() ActivityStreamsCreate
	// GetActivityStreamsDelete returns the value of this property. When
	// IsActivityStreamsDelete returns false, GetActivityStreamsDelete
	// will return an arbitrary value.
	GetActivityStreamsDelete() ActivityStreamsDelete
	// GetActivityStreamsDislike returns the value of this property. When
	// IsActivityStreamsDislike returns false, GetActivityStreamsDislike
	// will return an arbitrary value.
	GetActivityStreamsDislike() ActivityStreamsDislike
	// GetActivityStreamsDocument returns the value of this property. When
	// IsActivityStreamsDocument returns false, GetActivityStreamsDocument
	// will return an arbitrary value.
	GetActivityStreamsDocument() ActivityStreamsDocument
	// GetActivityStreamsEvent returns the value of this property. When
	// IsActivityStreamsEvent returns false, GetActivityStreamsEvent will
	// return an arbitrary value.
	GetActivityStreamsEvent() ActivityStreamsEvent
	// GetActivityStreamsFlag returns the value of this property. When
	// IsActivityStreamsFlag returns false, GetActivityStreamsFlag will
	// return an arbitrary value.
	GetActivityStreamsFlag() ActivityStreamsFlag
	// GetActivityStreamsFollow returns the value of this property. When
	// IsActivityStreamsFollow returns false, GetActivityStreamsFollow
	// will return an arbitrary value.
	GetActivityStreamsFollow() ActivityStreamsFollow
	// GetActivityStreamsGroup returns the value of this property. When
	// IsActivityStreamsGroup returns false, GetActivityStreamsGroup will
	// return an arbitrary value.
	GetActivityStreamsGroup() ActivityStreamsGroup
	// GetActivityStreamsIgnore returns the value of this property. When
	// IsActivityStreamsIgnore returns false, GetActivityStreamsIgnore
	// will return an arbitrary value.
	GetActivityStreamsIgnore() ActivityStreamsIgnore
	// GetActivityStreamsImage returns the value of this property. When
	// IsActivityStreamsImage returns false, GetActivityStreamsImage will
	// return an arbitrary value.
	GetActivityStreamsImage() ActivityStreamsImage
	// GetActivityStreamsIntransitiveActivity returns the value of this
	// property. When IsActivityStreamsIntransitiveActivity returns false,
	// GetActivityStreamsIntransitiveActivity will return an arbitrary
	// value.
	GetActivityStreamsIntransitiveActivity() ActivityStreamsIntransitiveActivity
	// GetActivityStreamsInvite returns the value of this property. When
	// IsActivityStreamsInvite returns false, GetActivityStreamsInvite
	// will return an arbitrary value.
	GetActivityStreamsInvite() ActivityStreamsInvite
	// GetActivityStreamsJoin returns the value of this property. When
	// IsActivityStreamsJoin returns false, GetActivityStreamsJoin will
	// return an arbitrary value.
	GetActivityStreamsJoin() ActivityStreamsJoin
	// GetActivityStreamsLeave returns the value of this property. When
	// IsActivityStreamsLeave returns false, GetActivityStreamsLeave will
	// return an arbitrary value.
	GetActivityStreamsLeave() ActivityStreamsLeave
	// GetActivityStreamsLike returns the value of this property. When
	// IsActivityStreamsLike returns false, GetActivityStreamsLike will
	// return an arbitrary value.
	GetActivityStreamsLike() ActivityStreamsLike
	// GetActivityStreamsLink returns the value of this property. When
	// IsActivityStreamsLink returns false, GetActivityStreamsLink will
	// return an arbitrary value.
	GetActivityStreamsLink() ActivityStreamsLink
	// GetActivityStreamsListen returns the value of this property. When
	// IsActivityStreamsListen returns false, GetActivityStreamsListen
	// will return an arbitrary value.
	GetActivityStreamsListen() ActivityStreamsListen
	// GetActivityStreamsMention returns the value of this property. When
	// IsActivityStreamsMention returns false, GetActivityStreamsMention
	// will return an arbitrary value.
	GetActivityStreamsMention() ActivityStreamsMention
	// GetActivityStreamsMove returns the value of this property. When
	// IsActivityStreamsMove returns false, GetActivityStreamsMove will
	// return an arbitrary value.
	GetActivityStreamsMove() ActivityStreamsMove
	// GetActivityStreamsNote returns the value of this property. When
	// IsActivityStreamsNote returns false, GetActivityStreamsNote will
	// return an arbitrary value.
	GetActivityStreamsNote() ActivityStreamsNote
	// GetActivityStreamsObject returns the value of this property. When
	// IsActivityStreamsObject returns false, GetActivityStreamsObject
	// will return an arbitrary value.
	GetActivityStreamsObject() ActivityStreamsObject
	// GetActivityStreamsOffer returns the value of this property. When
	// IsActivityStreamsOffer returns false, GetActivityStreamsOffer will
	// return an arbitrary value.
	GetActivityStreamsOffer() ActivityStreamsOffer
	// GetActivityStreamsOrderedCollection returns the value of this property.
	// When IsActivityStreamsOrderedCollection returns false,
	// GetActivityStreamsOrderedCollection will return an arbitrary value.
	GetActivityStreamsOrderedCollection() ActivityStreamsOrderedCollection
	// GetActivityStreamsOrderedCollectionPage returns the value of this
	// property. When IsActivityStreamsOrderedCollectionPage returns
	// false, GetActivityStreamsOrderedCollectionPage will return an
	// arbitrary value.
	GetActivityStreamsOrderedCollectionPage() ActivityStreamsOrderedCollectionPage
	// GetActivityStreamsOrganization returns the value of this property. When
	// IsActivityStreamsOrganization returns false,
	// GetActivityStreamsOrganization will return an arbitrary value.
	GetActivityStreamsOrganization() ActivityStreamsOrganization
	// GetActivityStreamsPage returns the value of this property. When
	// IsActivityStreamsPage returns false, GetActivityStreamsPage will
	// return an arbitrary value.
	GetActivityStreamsPage() ActivityStreamsPage
	// GetActivityStreamsPerson returns the value of this property. When
	// IsActivityStreamsPerson returns false, GetActivityStreamsPerson
	// will return an arbitrary value.
	GetActivityStreamsPerson() ActivityStreamsPerson
	// GetActivityStreamsPlace returns the value of this property. When
	// IsActivityStreamsPlace returns false, GetActivityStreamsPlace will
	// return an arbitrary value.
	GetActivityStreamsPlace() ActivityStreamsPlace
	// GetActivityStreamsProfile returns the value of this property. When
	// IsActivityStreamsProfile returns false, GetActivityStreamsProfile
	// will return an arbitrary value.
	GetActivityStreamsProfile() ActivityStreamsProfile
	// GetActivityStreamsQuestion returns the value of this property. When
	// IsActivityStreamsQuestion returns false, GetActivityStreamsQuestion
	// will return an arbitrary value.
	GetActivityStreamsQuestion() ActivityStreamsQuestion
	// GetActivityStreamsRead returns the value of this property. When
	// IsActivityStreamsRead returns false, GetActivityStreamsRead will
	// return an arbitrary value.
	GetActivityStreamsRead() ActivityStreamsRead
	// GetActivityStreamsReject returns the value of this property. When
	// IsActivityStreamsReject returns false, GetActivityStreamsReject
	// will return an arbitrary value.
	GetActivityStreamsReject() ActivityStreamsReject
	// GetActivityStreamsRelationship returns the value of this property. When
	// IsActivityStreamsRelationship returns false,
	// GetActivityStreamsRelationship will return an arbitrary value.
	GetActivityStreamsRelationship() ActivityStreamsRelationship
	// GetActivityStreamsRemove returns the value of this property. When
	// IsActivityStreamsRemove returns false, GetActivityStreamsRemove
	// will return an arbitrary value.
	GetActivityStreamsRemove() ActivityStreamsRemove
	// GetActivityStreamsService returns the value of this property. When
	// IsActivityStreamsService returns false, GetActivityStreamsService
	// will return an arbitrary value.
	GetActivityStreamsService() ActivityStreamsService
	// GetActivityStreamsTentativeAccept returns the value of this property.
	// When IsActivityStreamsTentativeAccept returns false,
	// GetActivityStreamsTentativeAccept will return an arbitrary value.
	GetActivityStreamsTentativeAccept() ActivityStreamsTentativeAccept
	// GetActivityStreamsTentativeReject returns the value of this property.
	// When IsActivityStreamsTentativeReject returns false,
	// GetActivityStreamsTentativeReject will return an arbitrary value.
	GetActivityStreamsTentativeReject() ActivityStreamsTentativeReject
	// GetActivityStreamsTombstone returns the value of this property. When
	// IsActivityStreamsTombstone returns false,
	// GetActivityStreamsTombstone will return an arbitrary value.
	GetActivityStreamsTombstone() ActivityStreamsTombstone
	// GetActivityStreamsTravel returns the value of this property. When
	// IsActivityStreamsTravel returns false, GetActivityStreamsTravel
	// will return an arbitrary value.
	GetActivityStreamsTravel() ActivityStreamsTravel
	// GetActivityStreamsUndo returns the value of this property. When
	// IsActivityStreamsUndo returns false, GetActivityStreamsUndo will
	// return an arbitrary value.
	GetActivityStreamsUndo() ActivityStreamsUndo
	// GetActivityStreamsUpdate returns the value of this property. When
	// IsActivityStreamsUpdate returns false, GetActivityStreamsUpdate
	// will return an arbitrary value.
	GetActivityStreamsUpdate() ActivityStreamsUpdate
	// GetActivityStreamsVideo returns the value of this property. When
	// IsActivityStreamsVideo returns false, GetActivityStreamsVideo will
	// return an arbitrary value.
	GetActivityStreamsVideo() ActivityStreamsVideo
	// GetActivityStreamsView returns the value of this property. When
	// IsActivityStreamsView returns false, GetActivityStreamsView will
	// return an arbitrary value.
	GetActivityStreamsView() ActivityStreamsView
	// GetForgeFedBranch returns the value of this property. When
	// IsForgeFedBranch returns false, GetForgeFedBranch will return an
	// arbitrary value.
	GetForgeFedBranch() ForgeFedBranch
	// GetForgeFedCommit returns the value of this property. When
	// IsForgeFedCommit returns false, GetForgeFedCommit will return an
	// arbitrary value.
	GetForgeFedCommit() ForgeFedCommit
	// GetForgeFedPush returns the value of this property. When IsForgeFedPush
	// returns false, GetForgeFedPush will return an arbitrary value.
	GetForgeFedPush() ForgeFedPush
	// GetForgeFedRepository returns the value of this property. When
	// IsForgeFedRepository returns false, GetForgeFedRepository will
	// return an arbitrary value.
	GetForgeFedRepository() ForgeFedRepository
	// GetForgeFedTicket returns the value of this property. When
	// IsForgeFedTicket returns false, GetForgeFedTicket will return an
	// arbitrary value.
	GetForgeFedTicket() ForgeFedTicket
	// GetForgeFedTicketDependency returns the value of this property. When
	// IsForgeFedTicketDependency returns false,
	// GetForgeFedTicketDependency will return an arbitrary value.
	GetForgeFedTicketDependency() ForgeFedTicketDependency
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return an arbitrary value.
	GetIRI() *url.URL
	// GetTootEmoji returns the value of this property. When IsTootEmoji
	// returns false, GetTootEmoji will return an arbitrary value.
	GetTootEmoji() TootEmoji
	// GetTootIdentityProof returns the value of this property. When
	// IsTootIdentityProof returns false, GetTootIdentityProof will return
	// an arbitrary value.
	GetTootIdentityProof() TootIdentityProof
	// GetType returns the value in this property as a Type. Returns nil if
	// the value is not an ActivityStreams type, such as an IRI or another
	// value.
	GetType() Type
	// GetXMLSchemaBoolean returns the value of this property. When
	// IsXMLSchemaBoolean returns false, GetXMLSchemaBoolean will return
	// an arbitrary value.
	GetXMLSchemaBoolean() bool
	// GetXMLSchemaDateTime returns the value of this property. When
	// IsXMLSchemaDateTime returns false, GetXMLSchemaDateTime will return
	// an arbitrary value.
	GetXMLSchemaDateTime() time.Time
	// HasAny returns true if any of the different values is set.
	HasAny() bool
	// IsActivityStreamsAccept returns true if this property has a type of
	// "Accept". When true, use the GetActivityStreamsAccept and
	// SetActivityStreamsAccept methods to access and set this property.
	IsActivityStreamsAccept() bool
	// IsActivityStreamsActivity returns true if this property has a type of
	// "Activity". When true, use the GetActivityStreamsActivity and
	// SetActivityStreamsActivity methods to access and set this property.
	IsActivityStreamsActivity() bool
	// IsActivityStreamsAdd returns true if this property has a type of "Add".
	// When true, use the GetActivityStreamsAdd and SetActivityStreamsAdd
	// methods to access and set this property.
	IsActivityStreamsAdd() bool
	// IsActivityStreamsAnnounce returns true if this property has a type of
	// "Announce". When true, use the GetActivityStreamsAnnounce and
	// SetActivityStreamsAnnounce methods to access and set this property.
	IsActivityStreamsAnnounce() bool
	// IsActivityStreamsApplication returns true if this property has a type
	// of "Application". When true, use the GetActivityStreamsApplication
	// and SetActivityStreamsApplication methods to access and set this
	// property.
	IsActivityStreamsApplication() bool
	// IsActivityStreamsArrive returns true if this property has a type of
	// "Arrive". When true, use the GetActivityStreamsArrive and
	// SetActivityStreamsArrive methods to access and set this property.
	IsActivityStreamsArrive() bool
	// IsActivityStreamsArticle returns true if this property has a type of
	// "Article". When true, use the GetActivityStreamsArticle and
	// SetActivityStreamsArticle methods to access and set this property.
	IsActivityStreamsArticle() bool
	// IsActivityStreamsAudio returns true if this property has a type of
	// "Audio". When true, use the GetActivityStreamsAudio and
	// SetActivityStreamsAudio methods to access and set this property.
	IsActivityStreamsAudio() bool
	// IsActivityStreamsBlock returns true if this property has a type of
	// "Block". When true, use the GetActivityStreamsBlock and
	// SetActivityStreamsBlock methods to access and set this property.
	IsActivityStreamsBlock() bool
	// IsActivityStreamsCollection returns true if this property has a type of
	// "Collection". When true, use the GetActivityStreamsCollection and
	// SetActivityStreamsCollection methods to access and set this
	// property.
	IsActivityStreamsCollection() bool
	// IsActivityStreamsCollectionPage returns true if this property has a
	// type of "CollectionPage". When true, use the
	// GetActivityStreamsCollectionPage and
	// SetActivityStreamsCollectionPage methods to access and set this
	// property.
	IsActivityStreamsCollectionPage() bool
	// IsActivityStreamsCreate returns true if this property has a type of
	// "Create". When true, use the GetActivityStreamsCreate and
	// SetActivityStreamsCreate methods to access and set this property.
	IsActivityStreamsCreate() bool
	// IsActivityStreamsDelete returns true if this property has a type of
	// "Delete". When true, use the GetActivityStreamsDelete and
	// SetActivityStreamsDelete methods to access and set this property.
	IsActivityStreamsDelete() bool
	// IsActivityStreamsDislike returns true if this property has a type of
	// "Dislike". When true, use the GetActivityStreamsDislike and
	// SetActivityStreamsDislike methods to access and set this property.
	IsActivityStreamsDislike() bool
	// IsActivityStreamsDocument returns true if this property has a type of
	// "Document". When true, use the GetActivityStreamsDocument and
	// SetActivityStreamsDocument methods to access and set this property.
	IsActivityStreamsDocument() bool
	// IsActivityStreamsEvent returns true if this property has a type of
	// "Event". When true, use the GetActivityStreamsEvent and
	// SetActivityStreamsEvent methods to access and set this property.
	IsActivityStreamsEvent() bool
	// IsActivityStreamsFlag returns true if this property has a type of
	// "Flag". When true, use the GetActivityStreamsFlag and
	// SetActivityStreamsFlag methods to access and set this property.
	IsActivityStreamsFlag() bool
	// IsActivityStreamsFollow returns true if this property has a type of
	// "Follow". When true, use the GetActivityStreamsFollow and
	// SetActivityStreamsFollow methods to access and set this property.
	IsActivityStreamsFollow() bool
	// IsActivityStreamsGroup returns true if this property has a type of
	// "Group". When true, use the GetActivityStreamsGroup and
	// SetActivityStreamsGroup methods to access and set this property.
	IsActivityStreamsGroup() bool
	// IsActivityStreamsIgnore returns true if this property has a type of
	// "Ignore". When true, use the GetActivityStreamsIgnore and
	// SetActivityStreamsIgnore methods to access and set this property.
	IsActivityStreamsIgnore() bool
	// IsActivityStreamsImage returns true if this property has a type of
	// "Image". When true, use the GetActivityStreamsImage and
	// SetActivityStreamsImage methods to access and set this property.
	IsActivityStreamsImage() bool
	// IsActivityStreamsIntransitiveActivity returns true if this property has
	// a type of "IntransitiveActivity". When true, use the
	// GetActivityStreamsIntransitiveActivity and
	// SetActivityStreamsIntransitiveActivity methods to access and set
	// this property.
	IsActivityStreamsIntransitiveActivity() bool
	// IsActivityStreamsInvite returns true if this property has a type of
	// "Invite". When true, use the GetActivityStreamsInvite and
	// SetActivityStreamsInvite methods to access and set this property.
	IsActivityStreamsInvite() bool
	// IsActivityStreamsJoin returns true if this property has a type of
	// "Join". When true, use the GetActivityStreamsJoin and
	// SetActivityStreamsJoin methods to access and set this property.
	IsActivityStreamsJoin() bool
	// IsActivityStreamsLeave returns true if this property has a type of
	// "Leave". When true, use the GetActivityStreamsLeave and
	// SetActivityStreamsLeave methods to access and set this property.
	IsActivityStreamsLeave() bool
	// IsActivityStreamsLike returns true if this property has a type of
	// "Like". When true, use the GetActivityStreamsLike and
	// SetActivityStreamsLike methods to access and set this property.
	IsActivityStreamsLike() bool
	// IsActivityStreamsLink returns true if this property has a type of
	// "Link". When true, use the GetActivityStreamsLink and
	// SetActivityStreamsLink methods to access and set this property.
	IsActivityStreamsLink() bool
	// IsActivityStreamsListen returns true if this property has a type of
	// "Listen". When true, use the GetActivityStreamsListen and
	// SetActivityStreamsListen methods to access and set this property.
	IsActivityStreamsListen() bool
	// IsActivityStreamsMention returns true if this property has a type of
	// "Mention". When true, use the GetActivityStreamsMention and
	// SetActivityStreamsMention methods to access and set this property.
	IsActivityStreamsMention() bool
	// IsActivityStreamsMove returns true if this property has a type of
	// "Move". When true, use the GetActivityStreamsMove and
	// SetActivityStreamsMove methods to access and set this property.
	IsActivityStreamsMove() bool
	// IsActivityStreamsNote returns true if this property has a type of
	// "Note". When true, use the GetActivityStreamsNote and
	// SetActivityStreamsNote methods to access and set this property.
	IsActivityStreamsNote() bool
	// IsActivityStreamsObject returns true if this property has a type of
	// "Object". When true, use the GetActivityStreamsObject and
	// SetActivityStreamsObject methods to access and set this property.
	IsActivityStreamsObject() bool
	// IsActivityStreamsOffer returns true if this property has a type of
	// "Offer". When true, use the GetActivityStreamsOffer and
	// SetActivityStreamsOffer methods to access and set this property.
	IsActivityStreamsOffer() bool
	// IsActivityStreamsOrderedCollection returns true if this property has a
	// type of "OrderedCollection". When true, use the
	// GetActivityStreamsOrderedCollection and
	// SetActivityStreamsOrderedCollection methods to access and set this
	// property.
	IsActivityStreamsOrderedCollection() bool
	// IsActivityStreamsOrderedCollectionPage returns true if this property
	// has a type of "OrderedCollectionPage". When true, use the
	// GetActivityStreamsOrderedCollectionPage and
	// SetActivityStreamsOrderedCollectionPage methods to access and set
	// this property.
	IsActivityStreamsOrderedCollectionPage() bool
	// IsActivityStreamsOrganization returns true if this property has a type
	// of "Organization". When true, use the
	// GetActivityStreamsOrganization and SetActivityStreamsOrganization
	// methods to access and set this property.
	IsActivityStreamsOrganization() bool
	// IsActivityStreamsPage returns true if this property has a type of
	// "Page". When true, use the GetActivityStreamsPage and
	// SetActivityStreamsPage methods to access and set this property.
	IsActivityStreamsPage() bool
	// IsActivityStreamsPerson returns true if this property has a type of
	// "Person". When true, use the GetActivityStreamsPerson and
	// SetActivityStreamsPerson methods to access and set this property.
	IsActivityStreamsPerson() bool
	// IsActivityStreamsPlace returns true if this property has a type of
	// "Place". When true, use the GetActivityStreamsPlace and
	// SetActivityStreamsPlace methods to access and set this property.
	IsActivityStreamsPlace() bool
	// IsActivityStreamsProfile returns true if this property has a type of
	// "Profile". When true, use the GetActivityStreamsProfile and
	// SetActivityStreamsProfile methods to access and set this property.
	IsActivityStreamsProfile() bool
	// IsActivityStreamsQuestion returns true if this property has a type of
	// "Question". When true, use the GetActivityStreamsQuestion and
	// SetActivityStreamsQuestion methods to access and set this property.
	IsActivityStreamsQuestion() bool
	// IsActivityStreamsRead returns true if this property has a type of
	// "Read". When true, use the GetActivityStreamsRead and
	// SetActivityStreamsRead methods to access and set this property.
	IsActivityStreamsRead() bool
	// IsActivityStreamsReject returns true if this property has a type of
	// "Reject". When true, use the GetActivityStreamsReject and
	// SetActivityStreamsReject methods to access and set this property.
	IsActivityStreamsReject() bool
	// IsActivityStreamsRelationship returns true if this property has a type
	// of "Relationship". When true, use the
	// GetActivityStreamsRelationship and SetActivityStreamsRelationship
	// methods to access and set this property.
	IsActivityStreamsRelationship() bool
	// IsActivityStreamsRemove returns true if this property has a type of
	// "Remove". When true, use the GetActivityStreamsRemove and
	// SetActivityStreamsRemove methods to access and set this property.
	IsActivityStreamsRemove() bool
	// IsActivityStreamsService returns true if this property has a type of
	// "Service". When true, use the GetActivityStreamsService and
	// SetActivityStreamsService methods to access and set this property.
	IsActivityStreamsService() bool
	// IsActivityStreamsTentativeAccept returns true if this property has a
	// type of "TentativeAccept". When true, use the
	// GetActivityStreamsTentativeAccept and
	// SetActivityStreamsTentativeAccept methods to access and set this
	// property.
	IsActivityStreamsTentativeAccept() bool
	// IsActivityStreamsTentativeReject returns true if this property has a
	// type of "TentativeReject". When true, use the
	// GetActivityStreamsTentativeReject and
	// SetActivityStreamsTentativeReject methods to access and set this
	// property.
	IsActivityStreamsTentativeReject() bool
	// IsActivityStreamsTombstone returns true if this property has a type of
	// "Tombstone". When true, use the GetActivityStreamsTombstone and
	// SetActivityStreamsTombstone methods to access and set this property.
	IsActivityStreamsTombstone() bool
	// IsActivityStreamsTravel returns true if this property has a type of
	// "Travel". When true, use the GetActivityStreamsTravel and
	// SetActivityStreamsTravel methods to access and set this property.
	IsActivityStreamsTravel() bool
	// IsActivityStreamsUndo returns true if this property has a type of
	// "Undo". When true, use the GetActivityStreamsUndo and
	// SetActivityStreamsUndo methods to access and set this property.
	IsActivityStreamsUndo() bool
	// IsActivityStreamsUpdate returns true if this property has a type of
	// "Update". When true, use the GetActivityStreamsUpdate and
	// SetActivityStreamsUpdate methods to access and set this property.
	IsActivityStreamsUpdate() bool
	// IsActivityStreamsVideo returns true if this property has a type of
	// "Video". When true, use the GetActivityStreamsVideo and
	// SetActivityStreamsVideo methods to access and set this property.
	IsActivityStreamsVideo() bool
	// IsActivityStreamsView returns true if this property has a type of
	// "View". When true, use the GetActivityStreamsView and
	// SetActivityStreamsView methods to access and set this property.
	IsActivityStreamsView() bool
	// IsForgeFedBranch returns true if this property has a type of "Branch".
	// When true, use the GetForgeFedBranch and SetForgeFedBranch methods
	// to access and set this property.
	IsForgeFedBranch() bool
	// IsForgeFedCommit returns true if this property has a type of "Commit".
	// When true, use the GetForgeFedCommit and SetForgeFedCommit methods
	// to access and set this property.
	IsForgeFedCommit() bool
	// IsForgeFedPush returns true if this property has a type of "Push". When
	// true, use the GetForgeFedPush and SetForgeFedPush methods to access
	// and set this property.
	IsForgeFedPush() bool
	// IsForgeFedRepository returns true if this property has a type of
	// "Repository". When true, use the GetForgeFedRepository and
	// SetForgeFedRepository methods to access and set this property.
	IsForgeFedRepository() bool
	// IsForgeFedTicket returns true if this property has a type of "Ticket".
	// When true, use the GetForgeFedTicket and SetForgeFedTicket methods
	// to access and set this property.
	IsForgeFedTicket() bool
	// IsForgeFedTicketDependency returns true if this property has a type of
	// "TicketDependency". When true, use the GetForgeFedTicketDependency
	// and SetForgeFedTicketDependency methods to access and set this
	// property.
	IsForgeFedTicketDependency() bool
	// IsIRI returns true if this property is an IRI. When true, use GetIRI
	// and SetIRI to access and set this property
	IsIRI() bool
	// IsTootEmoji returns true if this property has a type of "Emoji". When
	// true, use the GetTootEmoji and SetTootEmoji methods to access and
	// set this property.
	IsTootEmoji() bool
	// IsTootIdentityProof returns true if this property has a type of
	// "IdentityProof". When true, use the GetTootIdentityProof and
	// SetTootIdentityProof methods to access and set this property.
	IsTootIdentityProof() bool
	// IsXMLSchemaBoolean returns true if this property has a type of
	// "boolean". When true, use the GetXMLSchemaBoolean and
	// SetXMLSchemaBoolean methods to access and set this property.
	IsXMLSchemaBoolean() bool
	// IsXMLSchemaDateTime returns true if this property has a type of
	// "dateTime". When true, use the GetXMLSchemaDateTime and
	// SetXMLSchemaDateTime methods to access and set this property.
	IsXMLSchemaDateTime() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsClosedPropertyIterator) bool
	// Name returns the name of this property: "ActivityStreamsClosed".
	Name() string
	// Next returns the next iterator, or nil if there is no next iterator.
	Next() ActivityStreamsClosedPropertyIterator
	// Prev returns the previous iterator, or nil if there is no previous
	// iterator.
	Prev() ActivityStreamsClosedPropertyIterator
	// SetActivityStreamsAccept sets the value of this property. Calling
	// IsActivityStreamsAccept afterwards returns true.
	SetActivityStreamsAccept(v ActivityStreamsAccept)
	// SetActivityStreamsActivity sets the value of this property. Calling
	// IsActivityStreamsActivity afterwards returns true.
	SetActivityStreamsActivity(v ActivityStreamsActivity)
	// SetActivityStreamsAdd sets the value of this property. Calling
	// IsActivityStreamsAdd afterwards returns true.
	SetActivityStreamsAdd(v ActivityStreamsAdd)
	// SetActivityStreamsAnnounce sets the value of this property. Calling
	// IsActivityStreamsAnnounce afterwards returns true.
	SetActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// SetActivityStreamsApplication sets the value of this property. Calling
	// IsActivityStreamsApplication afterwards returns true.
	SetActivityStreamsApplication(v ActivityStreamsApplication)
	// SetActivityStreamsArrive sets the value of this property. Calling
	// IsActivityStreamsArrive afterwards returns true.
	SetActivityStreamsArrive(v ActivityStreamsArrive)
	// SetActivityStreamsArticle sets the value of this property. Calling
	// IsActivityStreamsArticle afterwards returns true.
	SetActivityStreamsArticle(v ActivityStreamsArticle)
	// SetActivityStreamsAudio sets the value of this property. Calling
	// IsActivityStreamsAudio afterwards returns true.
	SetActivityStreamsAudio(v ActivityStreamsAudio)
	// SetActivityStreamsBlock sets the value of this property. Calling
	// IsActivityStreamsBlock afterwards returns true.
	SetActivityStreamsBlock(v ActivityStreamsBlock)
	// SetActivityStreamsCollection sets the value of this property. Calling
	// IsActivityStreamsCollection afterwards returns true.
	SetActivityStreamsCollection(v ActivityStreamsCollection)
	// SetActivityStreamsCollectionPage sets the value of this property.
	// Calling IsActivityStreamsCollectionPage afterwards returns true.
	SetActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// SetActivityStreamsCreate sets the value of this property. Calling
	// IsActivityStreamsCreate afterwards returns true.
	SetActivityStreamsCreate(v ActivityStreamsCreate)
	// SetActivityStreamsDelete sets the value of this property. Calling
	// IsActivityStreamsDelete afterwards returns true.
	SetActivityStreamsDelete(v ActivityStreamsDelete)
	// SetActivityStreamsDislike sets the value of this property. Calling
	// IsActivityStreamsDislike afterwards returns true.
	SetActivityStreamsDislike(v ActivityStreamsDislike)
	// SetActivityStreamsDocument sets the value of this property. Calling
	// IsActivityStreamsDocument afterwards returns true.
	SetActivityStreamsDocument(v ActivityStreamsDocument)
	// SetActivityStreamsEvent sets the value of this property. Calling
	// IsActivityStreamsEvent afterwards returns true.
	SetActivityStreamsEvent(v ActivityStreamsEvent)
	// SetActivityStreamsFlag sets the value of this property. Calling
	// IsActivityStreamsFlag afterwards returns true.
	SetActivityStreamsFlag(v ActivityStreamsFlag)
	// SetActivityStreamsFollow sets the value of this property. Calling
	// IsActivityStreamsFollow afterwards returns true.
	SetActivityStreamsFollow(v ActivityStreamsFollow)
	// SetActivityStreamsGroup sets the value of this property. Calling
	// IsActivityStreamsGroup afterwards returns true.
	SetActivityStreamsGroup(v ActivityStreamsGroup)
	// SetActivityStreamsIgnore sets the value of this property. Calling
	// IsActivityStreamsIgnore afterwards returns true.
	SetActivityStreamsIgnore(v ActivityStreamsIgnore)
	// SetActivityStreamsImage sets the value of this property. Calling
	// IsActivityStreamsImage afterwards returns true.
	SetActivityStreamsImage(v ActivityStreamsImage)
	// SetActivityStreamsIntransitiveActivity sets the value of this property.
	// Calling IsActivityStreamsIntransitiveActivity afterwards returns
	// true.
	SetActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// SetActivityStreamsInvite sets the value of this property. Calling
	// IsActivityStreamsInvite afterwards returns true.
	SetActivityStreamsInvite(v ActivityStreamsInvite)
	// SetActivityStreamsJoin sets the value of this property. Calling
	// IsActivityStreamsJoin afterwards returns true.
	SetActivityStreamsJoin(v ActivityStreamsJoin)
	// SetActivityStreamsLeave sets the value of this property. Calling
	// IsActivityStreamsLeave afterwards returns true.
	SetActivityStreamsLeave(v ActivityStreamsLeave)
	// SetActivityStreamsLike sets the value of this property. Calling
	// IsActivityStreamsLike afterwards returns true.
	SetActivityStreamsLike(v ActivityStreamsLike)
	// SetActivityStreamsLink sets the value of this property. Calling
	// IsActivityStreamsLink afterwards returns true.
	SetActivityStreamsLink(v ActivityStreamsLink)
	// SetActivityStreamsListen sets the value of this property. Calling
	// IsActivityStreamsListen afterwards returns true.
	SetActivityStreamsListen(v ActivityStreamsListen)
	// SetActivityStreamsMention sets the value of this property. Calling
	// IsActivityStreamsMention afterwards returns true.
	SetActivityStreamsMention(v ActivityStreamsMention)
	// SetActivityStreamsMove sets the value of this property. Calling
	// IsActivityStreamsMove afterwards returns true.
	SetActivityStreamsMove(v ActivityStreamsMove)
	// SetActivityStreamsNote sets the value of this property. Calling
	// IsActivityStreamsNote afterwards returns true.
	SetActivityStreamsNote(v ActivityStreamsNote)
	// SetActivityStreamsObject sets the value of this property. Calling
	// IsActivityStreamsObject afterwards returns true.
	SetActivityStreamsObject(v ActivityStreamsObject)
	// SetActivityStreamsOffer sets the value of this property. Calling
	// IsActivityStreamsOffer afterwards returns true.
	SetActivityStreamsOffer(v ActivityStreamsOffer)
	// SetActivityStreamsOrderedCollection sets the value of this property.
	// Calling IsActivityStreamsOrderedCollection afterwards returns true.
	SetActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// SetActivityStreamsOrderedCollectionPage sets the value of this
	// property. Calling IsActivityStreamsOrderedCollectionPage afterwards
	// returns true.
	SetActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// SetActivityStreamsOrganization sets the value of this property. Calling
	// IsActivityStreamsOrganization afterwards returns true.
	SetActivityStreamsOrganization(v ActivityStreamsOrganization)
	// SetActivityStreamsPage sets the value of this property. Calling
	// IsActivityStreamsPage afterwards returns true.
	SetActivityStreamsPage(v ActivityStreamsPage)
	// SetActivityStreamsPerson sets the value of this property. Calling
	// IsActivityStreamsPerson afterwards returns true.
	SetActivityStreamsPerson(v ActivityStreamsPerson)
	// SetActivityStreamsPlace sets the value of this property. Calling
	// IsActivityStreamsPlace afterwards returns true.
	SetActivityStreamsPlace(v ActivityStreamsPlace)
	// SetActivityStreamsProfile sets the value of this property. Calling
	// IsActivityStreamsProfile afterwards returns true.
	SetActivityStreamsProfile(v ActivityStreamsProfile)
	// SetActivityStreamsQuestion sets the value of this property. Calling
	// IsActivityStreamsQuestion afterwards returns true.
	SetActivityStreamsQuestion(v ActivityStreamsQuestion)
	// SetActivityStreamsRead sets the value of this property. Calling
	// IsActivityStreamsRead afterwards returns true.
	SetActivityStreamsRead(v ActivityStreamsRead)
	// SetActivityStreamsReject sets the value of this property. Calling
	// IsActivityStreamsReject afterwards returns true.
	SetActivityStreamsReject(v ActivityStreamsReject)
	// SetActivityStreamsRelationship sets the value of this property. Calling
	// IsActivityStreamsRelationship afterwards returns true.
	SetActivityStreamsRelationship(v ActivityStreamsRelationship)
	// SetActivityStreamsRemove sets the value of this property. Calling
	// IsActivityStreamsRemove afterwards returns true.
	SetActivityStreamsRemove(v ActivityStreamsRemove)
	// SetActivityStreamsService sets the value of this property. Calling
	// IsActivityStreamsService afterwards returns true.
	SetActivityStreamsService(v ActivityStreamsService)
	// SetActivityStreamsTentativeAccept sets the value of this property.
	// Calling IsActivityStreamsTentativeAccept afterwards returns true.
	SetActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// SetActivityStreamsTentativeReject sets the value of this property.
	// Calling IsActivityStreamsTentativeReject afterwards returns true.
	SetActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// SetActivityStreamsTombstone sets the value of this property. Calling
	// IsActivityStreamsTombstone afterwards returns true.
	SetActivityStreamsTombstone(v ActivityStreamsTombstone)
	// SetActivityStreamsTravel sets the value of this property. Calling
	// IsActivityStreamsTravel afterwards returns true.
	SetActivityStreamsTravel(v ActivityStreamsTravel)
	// SetActivityStreamsUndo sets the value of this property. Calling
	// IsActivityStreamsUndo afterwards returns true.
	SetActivityStreamsUndo(v ActivityStreamsUndo)
	// SetActivityStreamsUpdate sets the value of this property. Calling
	// IsActivityStreamsUpdate afterwards returns true.
	SetActivityStreamsUpdate(v ActivityStreamsUpdate)
	// SetActivityStreamsVideo sets the value of this property. Calling
	// IsActivityStreamsVideo afterwards returns true.
	SetActivityStreamsVideo(v ActivityStreamsVideo)
	// SetActivityStreamsView sets the value of this property. Calling
	// IsActivityStreamsView afterwards returns true.
	SetActivityStreamsView(v ActivityStreamsView)
	// SetForgeFedBranch sets the value of this property. Calling
	// IsForgeFedBranch afterwards returns true.
	SetForgeFedBranch(v ForgeFedBranch)
	// SetForgeFedCommit sets the value of this property. Calling
	// IsForgeFedCommit afterwards returns true.
	SetForgeFedCommit(v ForgeFedCommit)
	// SetForgeFedPush sets the value of this property. Calling IsForgeFedPush
	// afterwards returns true.
	SetForgeFedPush(v ForgeFedPush)
	// SetForgeFedRepository sets the value of this property. Calling
	// IsForgeFedRepository afterwards returns true.
	SetForgeFedRepository(v ForgeFedRepository)
	// SetForgeFedTicket sets the value of this property. Calling
	// IsForgeFedTicket afterwards returns true.
	SetForgeFedTicket(v ForgeFedTicket)
	// SetForgeFedTicketDependency sets the value of this property. Calling
	// IsForgeFedTicketDependency afterwards returns true.
	SetForgeFedTicketDependency(v ForgeFedTicketDependency)
	// SetIRI sets the value of this property. Calling IsIRI afterwards
	// returns true.
	SetIRI(v *url.URL)
	// SetTootEmoji sets the value of this property. Calling IsTootEmoji
	// afterwards returns true.
	SetTootEmoji(v TootEmoji)
	// SetTootIdentityProof sets the value of this property. Calling
	// IsTootIdentityProof afterwards returns true.
	SetTootIdentityProof(v TootIdentityProof)
	// SetType attempts to set the property for the arbitrary type. Returns an
	// error if it is not a valid type to set on this property.
	SetType(t Type) error
	// SetXMLSchemaBoolean sets the value of this property. Calling
	// IsXMLSchemaBoolean afterwards returns true.
	SetXMLSchemaBoolean(v bool)
	// SetXMLSchemaDateTime sets the value of this property. Calling
	// IsXMLSchemaDateTime afterwards returns true.
	SetXMLSchemaDateTime(v time.Time)
}

ActivityStreamsClosedPropertyIterator represents a single value for the "closed" property.

type ActivityStreamsCollection

type ActivityStreamsCollection interface {
	// GetActivityStreamsAltitude returns the "altitude" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAltitude() ActivityStreamsAltitudeProperty
	// GetActivityStreamsAttachment returns the "attachment" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAttachment() ActivityStreamsAttachmentProperty
	// GetActivityStreamsAttributedTo returns the "attributedTo" property if
	// it exists, and nil otherwise.
	GetActivityStreamsAttributedTo() ActivityStreamsAttributedToProperty
	// GetActivityStreamsAudience returns the "audience" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAudience() ActivityStreamsAudienceProperty
	// GetActivityStreamsBcc returns the "bcc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBcc() ActivityStreamsBccProperty
	// GetActivityStreamsBto returns the "bto" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBto() ActivityStreamsBtoProperty
	// GetActivityStreamsCc returns the "cc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsCc() ActivityStreamsCcProperty
	// GetActivityStreamsContent returns the "content" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContent() ActivityStreamsContentProperty
	// GetActivityStreamsContext returns the "context" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContext() ActivityStreamsContextProperty
	// GetActivityStreamsCurrent returns the "current" property if it exists,
	// and nil otherwise.
	GetActivityStreamsCurrent() ActivityStreamsCurrentProperty
	// GetActivityStreamsDuration returns the "duration" property if it
	// exists, and nil otherwise.
	GetActivityStreamsDuration() ActivityStreamsDurationProperty
	// GetActivityStreamsEndTime returns the "endTime" property if it exists,
	// and nil otherwise.
	GetActivityStreamsEndTime() ActivityStreamsEndTimeProperty
	// GetActivityStreamsFirst returns the "first" property if it exists, and
	// nil otherwise.
	GetActivityStreamsFirst() ActivityStreamsFirstProperty
	// GetActivityStreamsGenerator returns the "generator" property if it
	// exists, and nil otherwise.
	GetActivityStreamsGenerator() ActivityStreamsGeneratorProperty
	// GetActivityStreamsIcon returns the "icon" property if it exists, and
	// nil otherwise.
	GetActivityStreamsIcon() ActivityStreamsIconProperty
	// GetActivityStreamsImage returns the "image" property if it exists, and
	// nil otherwise.
	GetActivityStreamsImage() ActivityStreamsImageProperty
	// GetActivityStreamsInReplyTo returns the "inReplyTo" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInReplyTo() ActivityStreamsInReplyToProperty
	// GetActivityStreamsItems returns the "items" property if it exists, and
	// nil otherwise.
	GetActivityStreamsItems() ActivityStreamsItemsProperty
	// GetActivityStreamsLast returns the "last" property if it exists, and
	// nil otherwise.
	GetActivityStreamsLast() ActivityStreamsLastProperty
	// GetActivityStreamsLikes returns the "likes" property if it exists, and
	// nil otherwise.
	GetActivityStreamsLikes() ActivityStreamsLikesProperty
	// GetActivityStreamsLocation returns the "location" property if it
	// exists, and nil otherwise.
	GetActivityStreamsLocation() ActivityStreamsLocationProperty
	// GetActivityStreamsMediaType returns the "mediaType" property if it
	// exists, and nil otherwise.
	GetActivityStreamsMediaType() ActivityStreamsMediaTypeProperty
	// GetActivityStreamsName returns the "name" property if it exists, and
	// nil otherwise.
	GetActivityStreamsName() ActivityStreamsNameProperty
	// GetActivityStreamsObject returns the "object" property if it exists,
	// and nil otherwise.
	GetActivityStreamsObject() ActivityStreamsObjectProperty
	// GetActivityStreamsPreview returns the "preview" property if it exists,
	// and nil otherwise.
	GetActivityStreamsPreview() ActivityStreamsPreviewProperty
	// GetActivityStreamsPublished returns the "published" property if it
	// exists, and nil otherwise.
	GetActivityStreamsPublished() ActivityStreamsPublishedProperty
	// GetActivityStreamsReplies returns the "replies" property if it exists,
	// and nil otherwise.
	GetActivityStreamsReplies() ActivityStreamsRepliesProperty
	// GetActivityStreamsShares returns the "shares" property if it exists,
	// and nil otherwise.
	GetActivityStreamsShares() ActivityStreamsSharesProperty
	// GetActivityStreamsSource returns the "source" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSource() ActivityStreamsSourceProperty
	// GetActivityStreamsStartTime returns the "startTime" property if it
	// exists, and nil otherwise.
	GetActivityStreamsStartTime() ActivityStreamsStartTimeProperty
	// GetActivityStreamsSummary returns the "summary" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSummary() ActivityStreamsSummaryProperty
	// GetActivityStreamsTag returns the "tag" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTag() ActivityStreamsTagProperty
	// GetActivityStreamsTo returns the "to" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTo() ActivityStreamsToProperty
	// GetActivityStreamsTotalItems returns the "totalItems" property if it
	// exists, and nil otherwise.
	GetActivityStreamsTotalItems() ActivityStreamsTotalItemsProperty
	// GetActivityStreamsUpdated returns the "updated" property if it exists,
	// and nil otherwise.
	GetActivityStreamsUpdated() ActivityStreamsUpdatedProperty
	// GetActivityStreamsUrl returns the "url" property if it exists, and nil
	// otherwise.
	GetActivityStreamsUrl() ActivityStreamsUrlProperty
	// GetForgeFedTeam returns the "team" property if it exists, and nil
	// otherwise.
	GetForgeFedTeam() ForgeFedTeamProperty
	// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
	// it exists, and nil otherwise.
	GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
	// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
	// it exists, and nil otherwise.
	GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
	// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
	GetJSONLDId() JSONLDIdProperty
	// GetJSONLDType returns the "type" property if it exists, and nil
	// otherwise.
	GetJSONLDType() JSONLDTypeProperty
	// GetTypeName returns the name of this type.
	GetTypeName() string
	// GetUnknownProperties returns the unknown properties for the Collection
	// type. Note that this should not be used by app developers. It is
	// only used to help determine which implementation is LessThan the
	// other. Developers who are creating a different implementation of
	// this type's interface can use this method in their LessThan
	// implementation, but routine ActivityPub applications should not use
	// this to bypass the code generation tool.
	GetUnknownProperties() map[string]interface{}
	// IsExtending returns true if the Collection type extends from the other
	// type.
	IsExtending(other Type) bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this type and the specific properties that are set. The value
	// in the map is the alias used to import the type and its properties.
	JSONLDContext() map[string]string
	// LessThan computes if this Collection is lesser, with an arbitrary but
	// stable determination.
	LessThan(o ActivityStreamsCollection) bool
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format.
	Serialize() (map[string]interface{}, error)
	// SetActivityStreamsAltitude sets the "altitude" property.
	SetActivityStreamsAltitude(i ActivityStreamsAltitudeProperty)
	// SetActivityStreamsAttachment sets the "attachment" property.
	SetActivityStreamsAttachment(i ActivityStreamsAttachmentProperty)
	// SetActivityStreamsAttributedTo sets the "attributedTo" property.
	SetActivityStreamsAttributedTo(i ActivityStreamsAttributedToProperty)
	// SetActivityStreamsAudience sets the "audience" property.
	SetActivityStreamsAudience(i ActivityStreamsAudienceProperty)
	// SetActivityStreamsBcc sets the "bcc" property.
	SetActivityStreamsBcc(i ActivityStreamsBccProperty)
	// SetActivityStreamsBto sets the "bto" property.
	SetActivityStreamsBto(i ActivityStreamsBtoProperty)
	// SetActivityStreamsCc sets the "cc" property.
	SetActivityStreamsCc(i ActivityStreamsCcProperty)
	// SetActivityStreamsContent sets the "content" property.
	SetActivityStreamsContent(i ActivityStreamsContentProperty)
	// SetActivityStreamsContext sets the "context" property.
	SetActivityStreamsContext(i ActivityStreamsContextProperty)
	// SetActivityStreamsCurrent sets the "current" property.
	SetActivityStreamsCurrent(i ActivityStreamsCurrentProperty)
	// SetActivityStreamsDuration sets the "duration" property.
	SetActivityStreamsDuration(i ActivityStreamsDurationProperty)
	// SetActivityStreamsEndTime sets the "endTime" property.
	SetActivityStreamsEndTime(i ActivityStreamsEndTimeProperty)
	// SetActivityStreamsFirst sets the "first" property.
	SetActivityStreamsFirst(i ActivityStreamsFirstProperty)
	// SetActivityStreamsGenerator sets the "generator" property.
	SetActivityStreamsGenerator(i ActivityStreamsGeneratorProperty)
	// SetActivityStreamsIcon sets the "icon" property.
	SetActivityStreamsIcon(i ActivityStreamsIconProperty)
	// SetActivityStreamsImage sets the "image" property.
	SetActivityStreamsImage(i ActivityStreamsImageProperty)
	// SetActivityStreamsInReplyTo sets the "inReplyTo" property.
	SetActivityStreamsInReplyTo(i ActivityStreamsInReplyToProperty)
	// SetActivityStreamsItems sets the "items" property.
	SetActivityStreamsItems(i ActivityStreamsItemsProperty)
	// SetActivityStreamsLast sets the "last" property.
	SetActivityStreamsLast(i ActivityStreamsLastProperty)
	// SetActivityStreamsLikes sets the "likes" property.
	SetActivityStreamsLikes(i ActivityStreamsLikesProperty)
	// SetActivityStreamsLocation sets the "location" property.
	SetActivityStreamsLocation(i ActivityStreamsLocationProperty)
	// SetActivityStreamsMediaType sets the "mediaType" property.
	SetActivityStreamsMediaType(i ActivityStreamsMediaTypeProperty)
	// SetActivityStreamsName sets the "name" property.
	SetActivityStreamsName(i ActivityStreamsNameProperty)
	// SetActivityStreamsObject sets the "object" property.
	SetActivityStreamsObject(i ActivityStreamsObjectProperty)
	// SetActivityStreamsPreview sets the "preview" property.
	SetActivityStreamsPreview(i ActivityStreamsPreviewProperty)
	// SetActivityStreamsPublished sets the "published" property.
	SetActivityStreamsPublished(i ActivityStreamsPublishedProperty)
	// SetActivityStreamsReplies sets the "replies" property.
	SetActivityStreamsReplies(i ActivityStreamsRepliesProperty)
	// SetActivityStreamsShares sets the "shares" property.
	SetActivityStreamsShares(i ActivityStreamsSharesProperty)
	// SetActivityStreamsSource sets the "source" property.
	SetActivityStreamsSource(i ActivityStreamsSourceProperty)
	// SetActivityStreamsStartTime sets the "startTime" property.
	SetActivityStreamsStartTime(i ActivityStreamsStartTimeProperty)
	// SetActivityStreamsSummary sets the "summary" property.
	SetActivityStreamsSummary(i ActivityStreamsSummaryProperty)
	// SetActivityStreamsTag sets the "tag" property.
	SetActivityStreamsTag(i ActivityStreamsTagProperty)
	// SetActivityStreamsTo sets the "to" property.
	SetActivityStreamsTo(i ActivityStreamsToProperty)
	// SetActivityStreamsTotalItems sets the "totalItems" property.
	SetActivityStreamsTotalItems(i ActivityStreamsTotalItemsProperty)
	// SetActivityStreamsUpdated sets the "updated" property.
	SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
	// SetActivityStreamsUrl sets the "url" property.
	SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
	// SetForgeFedTeam sets the "team" property.
	SetForgeFedTeam(i ForgeFedTeamProperty)
	// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
	SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
	// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
	SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
	// SetJSONLDId sets the "id" property.
	SetJSONLDId(i JSONLDIdProperty)
	// SetJSONLDType sets the "type" property.
	SetJSONLDType(i JSONLDTypeProperty)
	// VocabularyURI returns the vocabulary's URI as a string.
	VocabularyURI() string
}

A Collection is a subtype of Object that represents ordered or unordered sets of Object or Link instances. Refer to the Activity Streams 2.0 Core specification for a complete description of the Collection type.

Example 5 (https://www.w3.org/TR/activitystreams-vocabulary/#ex5-jsonld):

{
  "items": [
    {
      "name": "A Simple Note",
      "type": "Note"
    },
    {
      "name": "Another Simple Note",
      "type": "Note"
    }
  ],
  "summary": "Sally's notes",
  "totalItems": 2,
  "type": "Collection"
}

type ActivityStreamsCollectionPage

type ActivityStreamsCollectionPage interface {
	// GetActivityStreamsAltitude returns the "altitude" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAltitude() ActivityStreamsAltitudeProperty
	// GetActivityStreamsAttachment returns the "attachment" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAttachment() ActivityStreamsAttachmentProperty
	// GetActivityStreamsAttributedTo returns the "attributedTo" property if
	// it exists, and nil otherwise.
	GetActivityStreamsAttributedTo() ActivityStreamsAttributedToProperty
	// GetActivityStreamsAudience returns the "audience" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAudience() ActivityStreamsAudienceProperty
	// GetActivityStreamsBcc returns the "bcc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBcc() ActivityStreamsBccProperty
	// GetActivityStreamsBto returns the "bto" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBto() ActivityStreamsBtoProperty
	// GetActivityStreamsCc returns the "cc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsCc() ActivityStreamsCcProperty
	// GetActivityStreamsContent returns the "content" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContent() ActivityStreamsContentProperty
	// GetActivityStreamsContext returns the "context" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContext() ActivityStreamsContextProperty
	// GetActivityStreamsCurrent returns the "current" property if it exists,
	// and nil otherwise.
	GetActivityStreamsCurrent() ActivityStreamsCurrentProperty
	// GetActivityStreamsDuration returns the "duration" property if it
	// exists, and nil otherwise.
	GetActivityStreamsDuration() ActivityStreamsDurationProperty
	// GetActivityStreamsEndTime returns the "endTime" property if it exists,
	// and nil otherwise.
	GetActivityStreamsEndTime() ActivityStreamsEndTimeProperty
	// GetActivityStreamsFirst returns the "first" property if it exists, and
	// nil otherwise.
	GetActivityStreamsFirst() ActivityStreamsFirstProperty
	// GetActivityStreamsGenerator returns the "generator" property if it
	// exists, and nil otherwise.
	GetActivityStreamsGenerator() ActivityStreamsGeneratorProperty
	// GetActivityStreamsIcon returns the "icon" property if it exists, and
	// nil otherwise.
	GetActivityStreamsIcon() ActivityStreamsIconProperty
	// GetActivityStreamsImage returns the "image" property if it exists, and
	// nil otherwise.
	GetActivityStreamsImage() ActivityStreamsImageProperty
	// GetActivityStreamsInReplyTo returns the "inReplyTo" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInReplyTo() ActivityStreamsInReplyToProperty
	// GetActivityStreamsItems returns the "items" property if it exists, and
	// nil otherwise.
	GetActivityStreamsItems() ActivityStreamsItemsProperty
	// GetActivityStreamsLast returns the "last" property if it exists, and
	// nil otherwise.
	GetActivityStreamsLast() ActivityStreamsLastProperty
	// GetActivityStreamsLikes returns the "likes" property if it exists, and
	// nil otherwise.
	GetActivityStreamsLikes() ActivityStreamsLikesProperty
	// GetActivityStreamsLocation returns the "location" property if it
	// exists, and nil otherwise.
	GetActivityStreamsLocation() ActivityStreamsLocationProperty
	// GetActivityStreamsMediaType returns the "mediaType" property if it
	// exists, and nil otherwise.
	GetActivityStreamsMediaType() ActivityStreamsMediaTypeProperty
	// GetActivityStreamsName returns the "name" property if it exists, and
	// nil otherwise.
	GetActivityStreamsName() ActivityStreamsNameProperty
	// GetActivityStreamsNext returns the "next" property if it exists, and
	// nil otherwise.
	GetActivityStreamsNext() ActivityStreamsNextProperty
	// GetActivityStreamsObject returns the "object" property if it exists,
	// and nil otherwise.
	GetActivityStreamsObject() ActivityStreamsObjectProperty
	// GetActivityStreamsPartOf returns the "partOf" property if it exists,
	// and nil otherwise.
	GetActivityStreamsPartOf() ActivityStreamsPartOfProperty
	// GetActivityStreamsPrev returns the "prev" property if it exists, and
	// nil otherwise.
	GetActivityStreamsPrev() ActivityStreamsPrevProperty
	// GetActivityStreamsPreview returns the "preview" property if it exists,
	// and nil otherwise.
	GetActivityStreamsPreview() ActivityStreamsPreviewProperty
	// GetActivityStreamsPublished returns the "published" property if it
	// exists, and nil otherwise.
	GetActivityStreamsPublished() ActivityStreamsPublishedProperty
	// GetActivityStreamsReplies returns the "replies" property if it exists,
	// and nil otherwise.
	GetActivityStreamsReplies() ActivityStreamsRepliesProperty
	// GetActivityStreamsShares returns the "shares" property if it exists,
	// and nil otherwise.
	GetActivityStreamsShares() ActivityStreamsSharesProperty
	// GetActivityStreamsSource returns the "source" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSource() ActivityStreamsSourceProperty
	// GetActivityStreamsStartTime returns the "startTime" property if it
	// exists, and nil otherwise.
	GetActivityStreamsStartTime() ActivityStreamsStartTimeProperty
	// GetActivityStreamsSummary returns the "summary" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSummary() ActivityStreamsSummaryProperty
	// GetActivityStreamsTag returns the "tag" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTag() ActivityStreamsTagProperty
	// GetActivityStreamsTo returns the "to" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTo() ActivityStreamsToProperty
	// GetActivityStreamsTotalItems returns the "totalItems" property if it
	// exists, and nil otherwise.
	GetActivityStreamsTotalItems() ActivityStreamsTotalItemsProperty
	// GetActivityStreamsUpdated returns the "updated" property if it exists,
	// and nil otherwise.
	GetActivityStreamsUpdated() ActivityStreamsUpdatedProperty
	// GetActivityStreamsUrl returns the "url" property if it exists, and nil
	// otherwise.
	GetActivityStreamsUrl() ActivityStreamsUrlProperty
	// GetForgeFedTeam returns the "team" property if it exists, and nil
	// otherwise.
	GetForgeFedTeam() ForgeFedTeamProperty
	// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
	// it exists, and nil otherwise.
	GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
	// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
	// it exists, and nil otherwise.
	GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
	// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
	GetJSONLDId() JSONLDIdProperty
	// GetJSONLDType returns the "type" property if it exists, and nil
	// otherwise.
	GetJSONLDType() JSONLDTypeProperty
	// GetTypeName returns the name of this type.
	GetTypeName() string
	// GetUnknownProperties returns the unknown properties for the
	// CollectionPage type. Note that this should not be used by app
	// developers. It is only used to help determine which implementation
	// is LessThan the other. Developers who are creating a different
	// implementation of this type's interface can use this method in
	// their LessThan implementation, but routine ActivityPub applications
	// should not use this to bypass the code generation tool.
	GetUnknownProperties() map[string]interface{}
	// IsExtending returns true if the CollectionPage type extends from the
	// other type.
	IsExtending(other Type) bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this type and the specific properties that are set. The value
	// in the map is the alias used to import the type and its properties.
	JSONLDContext() map[string]string
	// LessThan computes if this CollectionPage is lesser, with an arbitrary
	// but stable determination.
	LessThan(o ActivityStreamsCollectionPage) bool
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format.
	Serialize() (map[string]interface{}, error)
	// SetActivityStreamsAltitude sets the "altitude" property.
	SetActivityStreamsAltitude(i ActivityStreamsAltitudeProperty)
	// SetActivityStreamsAttachment sets the "attachment" property.
	SetActivityStreamsAttachment(i ActivityStreamsAttachmentProperty)
	// SetActivityStreamsAttributedTo sets the "attributedTo" property.
	SetActivityStreamsAttributedTo(i ActivityStreamsAttributedToProperty)
	// SetActivityStreamsAudience sets the "audience" property.
	SetActivityStreamsAudience(i ActivityStreamsAudienceProperty)
	// SetActivityStreamsBcc sets the "bcc" property.
	SetActivityStreamsBcc(i ActivityStreamsBccProperty)
	// SetActivityStreamsBto sets the "bto" property.
	SetActivityStreamsBto(i ActivityStreamsBtoProperty)
	// SetActivityStreamsCc sets the "cc" property.
	SetActivityStreamsCc(i ActivityStreamsCcProperty)
	// SetActivityStreamsContent sets the "content" property.
	SetActivityStreamsContent(i ActivityStreamsContentProperty)
	// SetActivityStreamsContext sets the "context" property.
	SetActivityStreamsContext(i ActivityStreamsContextProperty)
	// SetActivityStreamsCurrent sets the "current" property.
	SetActivityStreamsCurrent(i ActivityStreamsCurrentProperty)
	// SetActivityStreamsDuration sets the "duration" property.
	SetActivityStreamsDuration(i ActivityStreamsDurationProperty)
	// SetActivityStreamsEndTime sets the "endTime" property.
	SetActivityStreamsEndTime(i ActivityStreamsEndTimeProperty)
	// SetActivityStreamsFirst sets the "first" property.
	SetActivityStreamsFirst(i ActivityStreamsFirstProperty)
	// SetActivityStreamsGenerator sets the "generator" property.
	SetActivityStreamsGenerator(i ActivityStreamsGeneratorProperty)
	// SetActivityStreamsIcon sets the "icon" property.
	SetActivityStreamsIcon(i ActivityStreamsIconProperty)
	// SetActivityStreamsImage sets the "image" property.
	SetActivityStreamsImage(i ActivityStreamsImageProperty)
	// SetActivityStreamsInReplyTo sets the "inReplyTo" property.
	SetActivityStreamsInReplyTo(i ActivityStreamsInReplyToProperty)
	// SetActivityStreamsItems sets the "items" property.
	SetActivityStreamsItems(i ActivityStreamsItemsProperty)
	// SetActivityStreamsLast sets the "last" property.
	SetActivityStreamsLast(i ActivityStreamsLastProperty)
	// SetActivityStreamsLikes sets the "likes" property.
	SetActivityStreamsLikes(i ActivityStreamsLikesProperty)
	// SetActivityStreamsLocation sets the "location" property.
	SetActivityStreamsLocation(i ActivityStreamsLocationProperty)
	// SetActivityStreamsMediaType sets the "mediaType" property.
	SetActivityStreamsMediaType(i ActivityStreamsMediaTypeProperty)
	// SetActivityStreamsName sets the "name" property.
	SetActivityStreamsName(i ActivityStreamsNameProperty)
	// SetActivityStreamsNext sets the "next" property.
	SetActivityStreamsNext(i ActivityStreamsNextProperty)
	// SetActivityStreamsObject sets the "object" property.
	SetActivityStreamsObject(i ActivityStreamsObjectProperty)
	// SetActivityStreamsPartOf sets the "partOf" property.
	SetActivityStreamsPartOf(i ActivityStreamsPartOfProperty)
	// SetActivityStreamsPrev sets the "prev" property.
	SetActivityStreamsPrev(i ActivityStreamsPrevProperty)
	// SetActivityStreamsPreview sets the "preview" property.
	SetActivityStreamsPreview(i ActivityStreamsPreviewProperty)
	// SetActivityStreamsPublished sets the "published" property.
	SetActivityStreamsPublished(i ActivityStreamsPublishedProperty)
	// SetActivityStreamsReplies sets the "replies" property.
	SetActivityStreamsReplies(i ActivityStreamsRepliesProperty)
	// SetActivityStreamsShares sets the "shares" property.
	SetActivityStreamsShares(i ActivityStreamsSharesProperty)
	// SetActivityStreamsSource sets the "source" property.
	SetActivityStreamsSource(i ActivityStreamsSourceProperty)
	// SetActivityStreamsStartTime sets the "startTime" property.
	SetActivityStreamsStartTime(i ActivityStreamsStartTimeProperty)
	// SetActivityStreamsSummary sets the "summary" property.
	SetActivityStreamsSummary(i ActivityStreamsSummaryProperty)
	// SetActivityStreamsTag sets the "tag" property.
	SetActivityStreamsTag(i ActivityStreamsTagProperty)
	// SetActivityStreamsTo sets the "to" property.
	SetActivityStreamsTo(i ActivityStreamsToProperty)
	// SetActivityStreamsTotalItems sets the "totalItems" property.
	SetActivityStreamsTotalItems(i ActivityStreamsTotalItemsProperty)
	// SetActivityStreamsUpdated sets the "updated" property.
	SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
	// SetActivityStreamsUrl sets the "url" property.
	SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
	// SetForgeFedTeam sets the "team" property.
	SetForgeFedTeam(i ForgeFedTeamProperty)
	// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
	SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
	// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
	SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
	// SetJSONLDId sets the "id" property.
	SetJSONLDId(i JSONLDIdProperty)
	// SetJSONLDType sets the "type" property.
	SetJSONLDType(i JSONLDTypeProperty)
	// VocabularyURI returns the vocabulary's URI as a string.
	VocabularyURI() string
}

Used to represent distinct subsets of items from a Collection. Refer to the Activity Streams 2.0 Core for a complete description of the CollectionPage object.

Example 7 (https://www.w3.org/TR/activitystreams-vocabulary/#ex6b-jsonld):

{
  "id": "http://example.org/foo?page=1",
  "items": [
    {
      "name": "A Simple Note",
      "type": "Note"
    },
    {
      "name": "Another Simple Note",
      "type": "Note"
    }
  ],
  "partOf": "http://example.org/foo",
  "summary": "Page 1 of Sally's notes",
  "type": "CollectionPage"
}

type ActivityStreamsContentProperty

type ActivityStreamsContentProperty interface {
	// AppendIRI appends an IRI value to the back of a list of the property
	// "content"
	AppendIRI(v *url.URL)
	// AppendRDFLangString appends a langString value to the back of a list of
	// the property "content". Invalidates iterators that are traversing
	// using Prev.
	AppendRDFLangString(v map[string]string)
	// AppendXMLSchemaString appends a string value to the back of a list of
	// the property "content". Invalidates iterators that are traversing
	// using Prev.
	AppendXMLSchemaString(v string)
	// At returns the property value for the specified index. Panics if the
	// index is out of bounds.
	At(index int) ActivityStreamsContentPropertyIterator
	// Begin returns the first iterator, or nil if empty. Can be used with the
	// iterator's Next method and this property's End method to iterate
	// from front to back through all values.
	Begin() ActivityStreamsContentPropertyIterator
	// Empty returns returns true if there are no elements.
	Empty() bool
	// End returns beyond-the-last iterator, which is nil. Can be used with
	// the iterator's Next method and this property's Begin method to
	// iterate from front to back through all values.
	End() ActivityStreamsContentPropertyIterator
	// Insert inserts an IRI value at the specified index for a property
	// "content". Existing elements at that index and higher are shifted
	// back once. Invalidates all iterators.
	InsertIRI(idx int, v *url.URL)
	// InsertRDFLangString inserts a langString value at the specified index
	// for a property "content". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertRDFLangString(idx int, v map[string]string)
	// InsertXMLSchemaString inserts a string value at the specified index for
	// a property "content". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertXMLSchemaString(idx int, v string)
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API method specifically needed only for alternate
	// implementations for go-fed. Applications should not use this
	// method. Panics if the index is out of bounds.
	KindIndex(idx int) int
	// Len returns the number of values that exist for the "content" property.
	Len() (length int)
	// Less computes whether another property is less than this one. Mixing
	// types results in a consistent but arbitrary ordering
	Less(i, j int) bool
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsContentProperty) bool
	// Name returns the name of this property ("content") with any alias.
	Name() string
	// PrependIRI prepends an IRI value to the front of a list of the property
	// "content".
	PrependIRI(v *url.URL)
	// PrependRDFLangString prepends a langString value to the front of a list
	// of the property "content". Invalidates all iterators.
	PrependRDFLangString(v map[string]string)
	// PrependXMLSchemaString prepends a string value to the front of a list
	// of the property "content". Invalidates all iterators.
	PrependXMLSchemaString(v string)
	// Remove deletes an element at the specified index from a list of the
	// property "content", regardless of its type. Panics if the index is
	// out of bounds. Invalidates all iterators.
	Remove(idx int)
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// SetIRI sets an IRI value to be at the specified index for the property
	// "content". Panics if the index is out of bounds.
	SetIRI(idx int, v *url.URL)
	// SetRDFLangString sets a langString value to be at the specified index
	// for the property "content". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetRDFLangString(idx int, v map[string]string)
	// SetXMLSchemaString sets a string value to be at the specified index for
	// the property "content". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetXMLSchemaString(idx int, v string)
	// Swap swaps the location of values at two indices for the "content"
	// property.
	Swap(i, j int)
}

The content or textual representation of the Object encoded as a JSON string. By default, the value of content is HTML. The mediaType property can be used in the object to indicate a different content type. The content MAY be expressed using multiple language-tagged values.

Example 114 (https://www.w3.org/TR/activitystreams-vocabulary/#ex130-jsonld):

{
  "content": "A \u003cem\u003esimple\u003c/em\u003e note",
  "summary": "A simple note",
  "type": "Note"
}

Example 115 (https://www.w3.org/TR/activitystreams-vocabulary/#ex131-jsonld):

{
  "contentMap": {
    "en": "A \u003cem\u003esimple\u003c/em\u003e note",
    "es": "Una nota \u003cem\u003esencilla\u003c/em\u003e",
    "zh-hans": "一段\u003cem\u003e简单的\u003c/em\u003e笔记"
  },
  "summary": "A simple note",
  "type": "Note"
}

Example 116 (https://www.w3.org/TR/activitystreams-vocabulary/#ex130b-jsonld):

{
  "content": "## A simple note\nA simple markdown `note`",
  "mediaType": "text/markdown",
  "summary": "A simple note",
  "type": "Note"
}

type ActivityStreamsContentPropertyIterator

type ActivityStreamsContentPropertyIterator interface {
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return an arbitrary value.
	GetIRI() *url.URL
	// GetLanguage returns the value for the specified BCP47 language code, or
	// an empty string if it is either not a language map or no value is
	// present.
	GetLanguage(bcp47 string) string
	// GetRDFLangString returns the value of this property. When
	// IsRDFLangString returns false, GetRDFLangString will return an
	// arbitrary value.
	GetRDFLangString() map[string]string
	// GetXMLSchemaString returns the value of this property. When
	// IsXMLSchemaString returns false, GetXMLSchemaString will return an
	// arbitrary value.
	GetXMLSchemaString() string
	// HasAny returns true if any of the values are set, except for the
	// natural language map. When true, the specific has, getter, and
	// setter methods may be used to determine what kind of value there is
	// to access and set this property. To determine if the property was
	// set as a natural language map, use the IsRDFLangString method
	// instead.
	HasAny() bool
	// HasLanguage returns true if the natural language map has an entry for
	// the specified BCP47 language code.
	HasLanguage(bcp47 string) bool
	// IsIRI returns true if this property is an IRI. When true, use GetIRI
	// and SetIRI to access and set this property
	IsIRI() bool
	// IsRDFLangString returns true if this property has a type of
	// "langString". When true, use the GetRDFLangString and
	// SetRDFLangString methods to access and set this property.. To
	// determine if the property was set as a natural language map, use
	// the IsRDFLangString method instead.
	IsRDFLangString() bool
	// IsXMLSchemaString returns true if this property has a type of "string".
	// When true, use the GetXMLSchemaString and SetXMLSchemaString
	// methods to access and set this property.. To determine if the
	// property was set as a natural language map, use the IsRDFLangString
	// method instead.
	IsXMLSchemaString() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsContentPropertyIterator) bool
	// Name returns the name of this property: "ActivityStreamsContent".
	Name() string
	// Next returns the next iterator, or nil if there is no next iterator.
	Next() ActivityStreamsContentPropertyIterator
	// Prev returns the previous iterator, or nil if there is no previous
	// iterator.
	Prev() ActivityStreamsContentPropertyIterator
	// SetIRI sets the value of this property. Calling IsIRI afterwards
	// returns true.
	SetIRI(v *url.URL)
	// SetLanguage sets the value for the specified BCP47 language code.
	SetLanguage(bcp47, value string)
	// SetRDFLangString sets the value of this property and clears the natural
	// language map. Calling IsRDFLangString afterwards will return true.
	// Calling IsRDFLangString afterwards returns false.
	SetRDFLangString(v map[string]string)
	// SetXMLSchemaString sets the value of this property and clears the
	// natural language map. Calling IsXMLSchemaString afterwards will
	// return true. Calling IsRDFLangString afterwards returns false.
	SetXMLSchemaString(v string)
}

ActivityStreamsContentPropertyIterator represents a single value for the "content" property.

type ActivityStreamsContextProperty

type ActivityStreamsContextProperty interface {
	// AppendActivityStreamsAccept appends a Accept value to the back of a
	// list of the property "context". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsAccept(v ActivityStreamsAccept)
	// AppendActivityStreamsActivity appends a Activity value to the back of a
	// list of the property "context". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsActivity(v ActivityStreamsActivity)
	// AppendActivityStreamsAdd appends a Add value to the back of a list of
	// the property "context". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsAdd(v ActivityStreamsAdd)
	// AppendActivityStreamsAnnounce appends a Announce value to the back of a
	// list of the property "context". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// AppendActivityStreamsApplication appends a Application value to the
	// back of a list of the property "context". Invalidates iterators
	// that are traversing using Prev.
	AppendActivityStreamsApplication(v ActivityStreamsApplication)
	// AppendActivityStreamsArrive appends a Arrive value to the back of a
	// list of the property "context". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsArrive(v ActivityStreamsArrive)
	// AppendActivityStreamsArticle appends a Article value to the back of a
	// list of the property "context". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsArticle(v ActivityStreamsArticle)
	// AppendActivityStreamsAudio appends a Audio value to the back of a list
	// of the property "context". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsAudio(v ActivityStreamsAudio)
	// AppendActivityStreamsBlock appends a Block value to the back of a list
	// of the property "context". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsBlock(v ActivityStreamsBlock)
	// AppendActivityStreamsCollection appends a Collection value to the back
	// of a list of the property "context". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsCollection(v ActivityStreamsCollection)
	// AppendActivityStreamsCollectionPage appends a CollectionPage value to
	// the back of a list of the property "context". Invalidates iterators
	// that are traversing using Prev.
	AppendActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// AppendActivityStreamsCreate appends a Create value to the back of a
	// list of the property "context". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsCreate(v ActivityStreamsCreate)
	// AppendActivityStreamsDelete appends a Delete value to the back of a
	// list of the property "context". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDelete(v ActivityStreamsDelete)
	// AppendActivityStreamsDislike appends a Dislike value to the back of a
	// list of the property "context". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDislike(v ActivityStreamsDislike)
	// AppendActivityStreamsDocument appends a Document value to the back of a
	// list of the property "context". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDocument(v ActivityStreamsDocument)
	// AppendActivityStreamsEvent appends a Event value to the back of a list
	// of the property "context". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsEvent(v ActivityStreamsEvent)
	// AppendActivityStreamsFlag appends a Flag value to the back of a list of
	// the property "context". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsFlag(v ActivityStreamsFlag)
	// AppendActivityStreamsFollow appends a Follow value to the back of a
	// list of the property "context". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsFollow(v ActivityStreamsFollow)
	// AppendActivityStreamsGroup appends a Group value to the back of a list
	// of the property "context". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsGroup(v ActivityStreamsGroup)
	// AppendActivityStreamsIgnore appends a Ignore value to the back of a
	// list of the property "context". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsIgnore(v ActivityStreamsIgnore)
	// AppendActivityStreamsImage appends a Image value to the back of a list
	// of the property "context". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsImage(v ActivityStreamsImage)
	// AppendActivityStreamsIntransitiveActivity appends a
	// IntransitiveActivity value to the back of a list of the property
	// "context". Invalidates iterators that are traversing using Prev.
	AppendActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// AppendActivityStreamsInvite appends a Invite value to the back of a
	// list of the property "context". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsInvite(v ActivityStreamsInvite)
	// AppendActivityStreamsJoin appends a Join value to the back of a list of
	// the property "context". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsJoin(v ActivityStreamsJoin)
	// AppendActivityStreamsLeave appends a Leave value to the back of a list
	// of the property "context". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsLeave(v ActivityStreamsLeave)
	// AppendActivityStreamsLike appends a Like value to the back of a list of
	// the property "context". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsLike(v ActivityStreamsLike)
	// AppendActivityStreamsLink appends a Link value to the back of a list of
	// the property "context". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsLink(v ActivityStreamsLink)
	// AppendActivityStreamsListen appends a Listen value to the back of a
	// list of the property "context". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsListen(v ActivityStreamsListen)
	// AppendActivityStreamsMention appends a Mention value to the back of a
	// list of the property "context". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsMention(v ActivityStreamsMention)
	// AppendActivityStreamsMove appends a Move value to the back of a list of
	// the property "context". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsMove(v ActivityStreamsMove)
	// AppendActivityStreamsNote appends a Note value to the back of a list of
	// the property "context". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsNote(v ActivityStreamsNote)
	// AppendActivityStreamsObject appends a Object value to the back of a
	// list of the property "context". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsObject(v ActivityStreamsObject)
	// AppendActivityStreamsOffer appends a Offer value to the back of a list
	// of the property "context". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsOffer(v ActivityStreamsOffer)
	// AppendActivityStreamsOrderedCollection appends a OrderedCollection
	// value to the back of a list of the property "context". Invalidates
	// iterators that are traversing using Prev.
	AppendActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// AppendActivityStreamsOrderedCollectionPage appends a
	// OrderedCollectionPage value to the back of a list of the property
	// "context". Invalidates iterators that are traversing using Prev.
	AppendActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// AppendActivityStreamsOrganization appends a Organization value to the
	// back of a list of the property "context". Invalidates iterators
	// that are traversing using Prev.
	AppendActivityStreamsOrganization(v ActivityStreamsOrganization)
	// AppendActivityStreamsPage appends a Page value to the back of a list of
	// the property "context". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsPage(v ActivityStreamsPage)
	// AppendActivityStreamsPerson appends a Person value to the back of a
	// list of the property "context". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsPerson(v ActivityStreamsPerson)
	// AppendActivityStreamsPlace appends a Place value to the back of a list
	// of the property "context". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsPlace(v ActivityStreamsPlace)
	// AppendActivityStreamsProfile appends a Profile value to the back of a
	// list of the property "context". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsProfile(v ActivityStreamsProfile)
	// AppendActivityStreamsQuestion appends a Question value to the back of a
	// list of the property "context". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsQuestion(v ActivityStreamsQuestion)
	// AppendActivityStreamsRead appends a Read value to the back of a list of
	// the property "context". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsRead(v ActivityStreamsRead)
	// AppendActivityStreamsReject appends a Reject value to the back of a
	// list of the property "context". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsReject(v ActivityStreamsReject)
	// AppendActivityStreamsRelationship appends a Relationship value to the
	// back of a list of the property "context". Invalidates iterators
	// that are traversing using Prev.
	AppendActivityStreamsRelationship(v ActivityStreamsRelationship)
	// AppendActivityStreamsRemove appends a Remove value to the back of a
	// list of the property "context". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsRemove(v ActivityStreamsRemove)
	// AppendActivityStreamsService appends a Service value to the back of a
	// list of the property "context". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsService(v ActivityStreamsService)
	// AppendActivityStreamsTentativeAccept appends a TentativeAccept value to
	// the back of a list of the property "context". Invalidates iterators
	// that are traversing using Prev.
	AppendActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// AppendActivityStreamsTentativeReject appends a TentativeReject value to
	// the back of a list of the property "context". Invalidates iterators
	// that are traversing using Prev.
	AppendActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// AppendActivityStreamsTombstone appends a Tombstone value to the back of
	// a list of the property "context". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsTombstone(v ActivityStreamsTombstone)
	// AppendActivityStreamsTravel appends a Travel value to the back of a
	// list of the property "context". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsTravel(v ActivityStreamsTravel)
	// AppendActivityStreamsUndo appends a Undo value to the back of a list of
	// the property "context". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsUndo(v ActivityStreamsUndo)
	// AppendActivityStreamsUpdate appends a Update value to the back of a
	// list of the property "context". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsUpdate(v ActivityStreamsUpdate)
	// AppendActivityStreamsVideo appends a Video value to the back of a list
	// of the property "context". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsVideo(v ActivityStreamsVideo)
	// AppendActivityStreamsView appends a View value to the back of a list of
	// the property "context". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsView(v ActivityStreamsView)
	// AppendForgeFedBranch appends a Branch value to the back of a list of
	// the property "context". Invalidates iterators that are traversing
	// using Prev.
	AppendForgeFedBranch(v ForgeFedBranch)
	// AppendForgeFedCommit appends a Commit value to the back of a list of
	// the property "context". Invalidates iterators that are traversing
	// using Prev.
	AppendForgeFedCommit(v ForgeFedCommit)
	// AppendForgeFedPush appends a Push value to the back of a list of the
	// property "context". Invalidates iterators that are traversing using
	// Prev.
	AppendForgeFedPush(v ForgeFedPush)
	// AppendForgeFedRepository appends a Repository value to the back of a
	// list of the property "context". Invalidates iterators that are
	// traversing using Prev.
	AppendForgeFedRepository(v ForgeFedRepository)
	// AppendForgeFedTicket appends a Ticket value to the back of a list of
	// the property "context". Invalidates iterators that are traversing
	// using Prev.
	AppendForgeFedTicket(v ForgeFedTicket)
	// AppendForgeFedTicketDependency appends a TicketDependency value to the
	// back of a list of the property "context". Invalidates iterators
	// that are traversing using Prev.
	AppendForgeFedTicketDependency(v ForgeFedTicketDependency)
	// AppendIRI appends an IRI value to the back of a list of the property
	// "context"
	AppendIRI(v *url.URL)
	// AppendTootEmoji appends a Emoji value to the back of a list of the
	// property "context". Invalidates iterators that are traversing using
	// Prev.
	AppendTootEmoji(v TootEmoji)
	// AppendTootIdentityProof appends a IdentityProof value to the back of a
	// list of the property "context". Invalidates iterators that are
	// traversing using Prev.
	AppendTootIdentityProof(v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "context". Invalidates iterators that are traversing
	// using Prev. Returns an error if the type is not a valid one to set
	// for this property.
	AppendType(t Type) error
	// At returns the property value for the specified index. Panics if the
	// index is out of bounds.
	At(index int) ActivityStreamsContextPropertyIterator
	// Begin returns the first iterator, or nil if empty. Can be used with the
	// iterator's Next method and this property's End method to iterate
	// from front to back through all values.
	Begin() ActivityStreamsContextPropertyIterator
	// Empty returns returns true if there are no elements.
	Empty() bool
	// End returns beyond-the-last iterator, which is nil. Can be used with
	// the iterator's Next method and this property's Begin method to
	// iterate from front to back through all values.
	End() ActivityStreamsContextPropertyIterator
	// InsertActivityStreamsAccept inserts a Accept value at the specified
	// index for a property "context". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAccept(idx int, v ActivityStreamsAccept)
	// InsertActivityStreamsActivity inserts a Activity value at the specified
	// index for a property "context". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsActivity(idx int, v ActivityStreamsActivity)
	// InsertActivityStreamsAdd inserts a Add value at the specified index for
	// a property "context". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAdd(idx int, v ActivityStreamsAdd)
	// InsertActivityStreamsAnnounce inserts a Announce value at the specified
	// index for a property "context". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAnnounce(idx int, v ActivityStreamsAnnounce)
	// InsertActivityStreamsApplication inserts a Application value at the
	// specified index for a property "context". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsApplication(idx int, v ActivityStreamsApplication)
	// InsertActivityStreamsArrive inserts a Arrive value at the specified
	// index for a property "context". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsArrive(idx int, v ActivityStreamsArrive)
	// InsertActivityStreamsArticle inserts a Article value at the specified
	// index for a property "context". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsArticle(idx int, v ActivityStreamsArticle)
	// InsertActivityStreamsAudio inserts a Audio value at the specified index
	// for a property "context". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAudio(idx int, v ActivityStreamsAudio)
	// InsertActivityStreamsBlock inserts a Block value at the specified index
	// for a property "context". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsBlock(idx int, v ActivityStreamsBlock)
	// InsertActivityStreamsCollection inserts a Collection value at the
	// specified index for a property "context". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsCollection(idx int, v ActivityStreamsCollection)
	// InsertActivityStreamsCollectionPage inserts a CollectionPage value at
	// the specified index for a property "context". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsCollectionPage(idx int, v ActivityStreamsCollectionPage)
	// InsertActivityStreamsCreate inserts a Create value at the specified
	// index for a property "context". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsCreate(idx int, v ActivityStreamsCreate)
	// InsertActivityStreamsDelete inserts a Delete value at the specified
	// index for a property "context". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDelete(idx int, v ActivityStreamsDelete)
	// InsertActivityStreamsDislike inserts a Dislike value at the specified
	// index for a property "context". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDislike(idx int, v ActivityStreamsDislike)
	// InsertActivityStreamsDocument inserts a Document value at the specified
	// index for a property "context". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDocument(idx int, v ActivityStreamsDocument)
	// InsertActivityStreamsEvent inserts a Event value at the specified index
	// for a property "context". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsEvent(idx int, v ActivityStreamsEvent)
	// InsertActivityStreamsFlag inserts a Flag value at the specified index
	// for a property "context". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsFlag(idx int, v ActivityStreamsFlag)
	// InsertActivityStreamsFollow inserts a Follow value at the specified
	// index for a property "context". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsFollow(idx int, v ActivityStreamsFollow)
	// InsertActivityStreamsGroup inserts a Group value at the specified index
	// for a property "context". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsGroup(idx int, v ActivityStreamsGroup)
	// InsertActivityStreamsIgnore inserts a Ignore value at the specified
	// index for a property "context". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsIgnore(idx int, v ActivityStreamsIgnore)
	// InsertActivityStreamsImage inserts a Image value at the specified index
	// for a property "context". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsImage(idx int, v ActivityStreamsImage)
	// InsertActivityStreamsIntransitiveActivity inserts a
	// IntransitiveActivity value at the specified index for a property
	// "context". Existing elements at that index and higher are shifted
	// back once. Invalidates all iterators.
	InsertActivityStreamsIntransitiveActivity(idx int, v ActivityStreamsIntransitiveActivity)
	// InsertActivityStreamsInvite inserts a Invite value at the specified
	// index for a property "context". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsInvite(idx int, v ActivityStreamsInvite)
	// InsertActivityStreamsJoin inserts a Join value at the specified index
	// for a property "context". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsJoin(idx int, v ActivityStreamsJoin)
	// InsertActivityStreamsLeave inserts a Leave value at the specified index
	// for a property "context". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsLeave(idx int, v ActivityStreamsLeave)
	// InsertActivityStreamsLike inserts a Like value at the specified index
	// for a property "context". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsLike(idx int, v ActivityStreamsLike)
	// InsertActivityStreamsLink inserts a Link value at the specified index
	// for a property "context". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsLink(idx int, v ActivityStreamsLink)
	// InsertActivityStreamsListen inserts a Listen value at the specified
	// index for a property "context". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsListen(idx int, v ActivityStreamsListen)
	// InsertActivityStreamsMention inserts a Mention value at the specified
	// index for a property "context". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsMention(idx int, v ActivityStreamsMention)
	// InsertActivityStreamsMove inserts a Move value at the specified index
	// for a property "context". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsMove(idx int, v ActivityStreamsMove)
	// InsertActivityStreamsNote inserts a Note value at the specified index
	// for a property "context". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsNote(idx int, v ActivityStreamsNote)
	// InsertActivityStreamsObject inserts a Object value at the specified
	// index for a property "context". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsObject(idx int, v ActivityStreamsObject)
	// InsertActivityStreamsOffer inserts a Offer value at the specified index
	// for a property "context". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsOffer(idx int, v ActivityStreamsOffer)
	// InsertActivityStreamsOrderedCollection inserts a OrderedCollection
	// value at the specified index for a property "context". Existing
	// elements at that index and higher are shifted back once.
	// Invalidates all iterators.
	InsertActivityStreamsOrderedCollection(idx int, v ActivityStreamsOrderedCollection)
	// InsertActivityStreamsOrderedCollectionPage inserts a
	// OrderedCollectionPage value at the specified index for a property
	// "context". Existing elements at that index and higher are shifted
	// back once. Invalidates all iterators.
	InsertActivityStreamsOrderedCollectionPage(idx int, v ActivityStreamsOrderedCollectionPage)
	// InsertActivityStreamsOrganization inserts a Organization value at the
	// specified index for a property "context". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsOrganization(idx int, v ActivityStreamsOrganization)
	// InsertActivityStreamsPage inserts a Page value at the specified index
	// for a property "context". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsPage(idx int, v ActivityStreamsPage)
	// InsertActivityStreamsPerson inserts a Person value at the specified
	// index for a property "context". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsPerson(idx int, v ActivityStreamsPerson)
	// InsertActivityStreamsPlace inserts a Place value at the specified index
	// for a property "context". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsPlace(idx int, v ActivityStreamsPlace)
	// InsertActivityStreamsProfile inserts a Profile value at the specified
	// index for a property "context". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsProfile(idx int, v ActivityStreamsProfile)
	// InsertActivityStreamsQuestion inserts a Question value at the specified
	// index for a property "context". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsQuestion(idx int, v ActivityStreamsQuestion)
	// InsertActivityStreamsRead inserts a Read value at the specified index
	// for a property "context". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsRead(idx int, v ActivityStreamsRead)
	// InsertActivityStreamsReject inserts a Reject value at the specified
	// index for a property "context". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsReject(idx int, v ActivityStreamsReject)
	// InsertActivityStreamsRelationship inserts a Relationship value at the
	// specified index for a property "context". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsRelationship(idx int, v ActivityStreamsRelationship)
	// InsertActivityStreamsRemove inserts a Remove value at the specified
	// index for a property "context". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsRemove(idx int, v ActivityStreamsRemove)
	// InsertActivityStreamsService inserts a Service value at the specified
	// index for a property "context". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsService(idx int, v ActivityStreamsService)
	// InsertActivityStreamsTentativeAccept inserts a TentativeAccept value at
	// the specified index for a property "context". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsTentativeAccept(idx int, v ActivityStreamsTentativeAccept)
	// InsertActivityStreamsTentativeReject inserts a TentativeReject value at
	// the specified index for a property "context". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsTentativeReject(idx int, v ActivityStreamsTentativeReject)
	// InsertActivityStreamsTombstone inserts a Tombstone value at the
	// specified index for a property "context". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsTombstone(idx int, v ActivityStreamsTombstone)
	// InsertActivityStreamsTravel inserts a Travel value at the specified
	// index for a property "context". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsTravel(idx int, v ActivityStreamsTravel)
	// InsertActivityStreamsUndo inserts a Undo value at the specified index
	// for a property "context". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsUndo(idx int, v ActivityStreamsUndo)
	// InsertActivityStreamsUpdate inserts a Update value at the specified
	// index for a property "context". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsUpdate(idx int, v ActivityStreamsUpdate)
	// InsertActivityStreamsVideo inserts a Video value at the specified index
	// for a property "context". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsVideo(idx int, v ActivityStreamsVideo)
	// InsertActivityStreamsView inserts a View value at the specified index
	// for a property "context". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsView(idx int, v ActivityStreamsView)
	// InsertForgeFedBranch inserts a Branch value at the specified index for
	// a property "context". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertForgeFedBranch(idx int, v ForgeFedBranch)
	// InsertForgeFedCommit inserts a Commit value at the specified index for
	// a property "context". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertForgeFedCommit(idx int, v ForgeFedCommit)
	// InsertForgeFedPush inserts a Push value at the specified index for a
	// property "context". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertForgeFedPush(idx int, v ForgeFedPush)
	// InsertForgeFedRepository inserts a Repository value at the specified
	// index for a property "context". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertForgeFedRepository(idx int, v ForgeFedRepository)
	// InsertForgeFedTicket inserts a Ticket value at the specified index for
	// a property "context". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertForgeFedTicket(idx int, v ForgeFedTicket)
	// InsertForgeFedTicketDependency inserts a TicketDependency value at the
	// specified index for a property "context". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
	// Insert inserts an IRI value at the specified index for a property
	// "context". Existing elements at that index and higher are shifted
	// back once. Invalidates all iterators.
	InsertIRI(idx int, v *url.URL)
	// InsertTootEmoji inserts a Emoji value at the specified index for a
	// property "context". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertTootEmoji(idx int, v TootEmoji)
	// InsertTootIdentityProof inserts a IdentityProof value at the specified
	// index for a property "context". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertTootIdentityProof(idx int, v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "context". Invalidates all iterators. Returns an error
	// if the type is not a valid one to set for this property.
	InsertType(idx int, t Type) error
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API method specifically needed only for alternate
	// implementations for go-fed. Applications should not use this
	// method. Panics if the index is out of bounds.
	KindIndex(idx int) int
	// Len returns the number of values that exist for the "context" property.
	Len() (length int)
	// Less computes whether another property is less than this one. Mixing
	// types results in a consistent but arbitrary ordering
	Less(i, j int) bool
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsContextProperty) bool
	// Name returns the name of this property ("context") with any alias.
	Name() string
	// PrependActivityStreamsAccept prepends a Accept value to the front of a
	// list of the property "context". Invalidates all iterators.
	PrependActivityStreamsAccept(v ActivityStreamsAccept)
	// PrependActivityStreamsActivity prepends a Activity value to the front
	// of a list of the property "context". Invalidates all iterators.
	PrependActivityStreamsActivity(v ActivityStreamsActivity)
	// PrependActivityStreamsAdd prepends a Add value to the front of a list
	// of the property "context". Invalidates all iterators.
	PrependActivityStreamsAdd(v ActivityStreamsAdd)
	// PrependActivityStreamsAnnounce prepends a Announce value to the front
	// of a list of the property "context". Invalidates all iterators.
	PrependActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// PrependActivityStreamsApplication prepends a Application value to the
	// front of a list of the property "context". Invalidates all
	// iterators.
	PrependActivityStreamsApplication(v ActivityStreamsApplication)
	// PrependActivityStreamsArrive prepends a Arrive value to the front of a
	// list of the property "context". Invalidates all iterators.
	PrependActivityStreamsArrive(v ActivityStreamsArrive)
	// PrependActivityStreamsArticle prepends a Article value to the front of
	// a list of the property "context". Invalidates all iterators.
	PrependActivityStreamsArticle(v ActivityStreamsArticle)
	// PrependActivityStreamsAudio prepends a Audio value to the front of a
	// list of the property "context". Invalidates all iterators.
	PrependActivityStreamsAudio(v ActivityStreamsAudio)
	// PrependActivityStreamsBlock prepends a Block value to the front of a
	// list of the property "context". Invalidates all iterators.
	PrependActivityStreamsBlock(v ActivityStreamsBlock)
	// PrependActivityStreamsCollection prepends a Collection value to the
	// front of a list of the property "context". Invalidates all
	// iterators.
	PrependActivityStreamsCollection(v ActivityStreamsCollection)
	// PrependActivityStreamsCollectionPage prepends a CollectionPage value to
	// the front of a list of the property "context". Invalidates all
	// iterators.
	PrependActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// PrependActivityStreamsCreate prepends a Create value to the front of a
	// list of the property "context". Invalidates all iterators.
	PrependActivityStreamsCreate(v ActivityStreamsCreate)
	// PrependActivityStreamsDelete prepends a Delete value to the front of a
	// list of the property "context". Invalidates all iterators.
	PrependActivityStreamsDelete(v ActivityStreamsDelete)
	// PrependActivityStreamsDislike prepends a Dislike value to the front of
	// a list of the property "context". Invalidates all iterators.
	PrependActivityStreamsDislike(v ActivityStreamsDislike)
	// PrependActivityStreamsDocument prepends a Document value to the front
	// of a list of the property "context". Invalidates all iterators.
	PrependActivityStreamsDocument(v ActivityStreamsDocument)
	// PrependActivityStreamsEvent prepends a Event value to the front of a
	// list of the property "context". Invalidates all iterators.
	PrependActivityStreamsEvent(v ActivityStreamsEvent)
	// PrependActivityStreamsFlag prepends a Flag value to the front of a list
	// of the property "context". Invalidates all iterators.
	PrependActivityStreamsFlag(v ActivityStreamsFlag)
	// PrependActivityStreamsFollow prepends a Follow value to the front of a
	// list of the property "context". Invalidates all iterators.
	PrependActivityStreamsFollow(v ActivityStreamsFollow)
	// PrependActivityStreamsGroup prepends a Group value to the front of a
	// list of the property "context". Invalidates all iterators.
	PrependActivityStreamsGroup(v ActivityStreamsGroup)
	// PrependActivityStreamsIgnore prepends a Ignore value to the front of a
	// list of the property "context". Invalidates all iterators.
	PrependActivityStreamsIgnore(v ActivityStreamsIgnore)
	// PrependActivityStreamsImage prepends a Image value to the front of a
	// list of the property "context". Invalidates all iterators.
	PrependActivityStreamsImage(v ActivityStreamsImage)
	// PrependActivityStreamsIntransitiveActivity prepends a
	// IntransitiveActivity value to the front of a list of the property
	// "context". Invalidates all iterators.
	PrependActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// PrependActivityStreamsInvite prepends a Invite value to the front of a
	// list of the property "context". Invalidates all iterators.
	PrependActivityStreamsInvite(v ActivityStreamsInvite)
	// PrependActivityStreamsJoin prepends a Join value to the front of a list
	// of the property "context". Invalidates all iterators.
	PrependActivityStreamsJoin(v ActivityStreamsJoin)
	// PrependActivityStreamsLeave prepends a Leave value to the front of a
	// list of the property "context". Invalidates all iterators.
	PrependActivityStreamsLeave(v ActivityStreamsLeave)
	// PrependActivityStreamsLike prepends a Like value to the front of a list
	// of the property "context". Invalidates all iterators.
	PrependActivityStreamsLike(v ActivityStreamsLike)
	// PrependActivityStreamsLink prepends a Link value to the front of a list
	// of the property "context". Invalidates all iterators.
	PrependActivityStreamsLink(v ActivityStreamsLink)
	// PrependActivityStreamsListen prepends a Listen value to the front of a
	// list of the property "context". Invalidates all iterators.
	PrependActivityStreamsListen(v ActivityStreamsListen)
	// PrependActivityStreamsMention prepends a Mention value to the front of
	// a list of the property "context". Invalidates all iterators.
	PrependActivityStreamsMention(v ActivityStreamsMention)
	// PrependActivityStreamsMove prepends a Move value to the front of a list
	// of the property "context". Invalidates all iterators.
	PrependActivityStreamsMove(v ActivityStreamsMove)
	// PrependActivityStreamsNote prepends a Note value to the front of a list
	// of the property "context". Invalidates all iterators.
	PrependActivityStreamsNote(v ActivityStreamsNote)
	// PrependActivityStreamsObject prepends a Object value to the front of a
	// list of the property "context". Invalidates all iterators.
	PrependActivityStreamsObject(v ActivityStreamsObject)
	// PrependActivityStreamsOffer prepends a Offer value to the front of a
	// list of the property "context". Invalidates all iterators.
	PrependActivityStreamsOffer(v ActivityStreamsOffer)
	// PrependActivityStreamsOrderedCollection prepends a OrderedCollection
	// value to the front of a list of the property "context". Invalidates
	// all iterators.
	PrependActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// PrependActivityStreamsOrderedCollectionPage prepends a
	// OrderedCollectionPage value to the front of a list of the property
	// "context". Invalidates all iterators.
	PrependActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// PrependActivityStreamsOrganization prepends a Organization value to the
	// front of a list of the property "context". Invalidates all
	// iterators.
	PrependActivityStreamsOrganization(v ActivityStreamsOrganization)
	// PrependActivityStreamsPage prepends a Page value to the front of a list
	// of the property "context". Invalidates all iterators.
	PrependActivityStreamsPage(v ActivityStreamsPage)
	// PrependActivityStreamsPerson prepends a Person value to the front of a
	// list of the property "context". Invalidates all iterators.
	PrependActivityStreamsPerson(v ActivityStreamsPerson)
	// PrependActivityStreamsPlace prepends a Place value to the front of a
	// list of the property "context". Invalidates all iterators.
	PrependActivityStreamsPlace(v ActivityStreamsPlace)
	// PrependActivityStreamsProfile prepends a Profile value to the front of
	// a list of the property "context". Invalidates all iterators.
	PrependActivityStreamsProfile(v ActivityStreamsProfile)
	// PrependActivityStreamsQuestion prepends a Question value to the front
	// of a list of the property "context". Invalidates all iterators.
	PrependActivityStreamsQuestion(v ActivityStreamsQuestion)
	// PrependActivityStreamsRead prepends a Read value to the front of a list
	// of the property "context". Invalidates all iterators.
	PrependActivityStreamsRead(v ActivityStreamsRead)
	// PrependActivityStreamsReject prepends a Reject value to the front of a
	// list of the property "context". Invalidates all iterators.
	PrependActivityStreamsReject(v ActivityStreamsReject)
	// PrependActivityStreamsRelationship prepends a Relationship value to the
	// front of a list of the property "context". Invalidates all
	// iterators.
	PrependActivityStreamsRelationship(v ActivityStreamsRelationship)
	// PrependActivityStreamsRemove prepends a Remove value to the front of a
	// list of the property "context". Invalidates all iterators.
	PrependActivityStreamsRemove(v ActivityStreamsRemove)
	// PrependActivityStreamsService prepends a Service value to the front of
	// a list of the property "context". Invalidates all iterators.
	PrependActivityStreamsService(v ActivityStreamsService)
	// PrependActivityStreamsTentativeAccept prepends a TentativeAccept value
	// to the front of a list of the property "context". Invalidates all
	// iterators.
	PrependActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// PrependActivityStreamsTentativeReject prepends a TentativeReject value
	// to the front of a list of the property "context". Invalidates all
	// iterators.
	PrependActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// PrependActivityStreamsTombstone prepends a Tombstone value to the front
	// of a list of the property "context". Invalidates all iterators.
	PrependActivityStreamsTombstone(v ActivityStreamsTombstone)
	// PrependActivityStreamsTravel prepends a Travel value to the front of a
	// list of the property "context". Invalidates all iterators.
	PrependActivityStreamsTravel(v ActivityStreamsTravel)
	// PrependActivityStreamsUndo prepends a Undo value to the front of a list
	// of the property "context". Invalidates all iterators.
	PrependActivityStreamsUndo(v ActivityStreamsUndo)
	// PrependActivityStreamsUpdate prepends a Update value to the front of a
	// list of the property "context". Invalidates all iterators.
	PrependActivityStreamsUpdate(v ActivityStreamsUpdate)
	// PrependActivityStreamsVideo prepends a Video value to the front of a
	// list of the property "context". Invalidates all iterators.
	PrependActivityStreamsVideo(v ActivityStreamsVideo)
	// PrependActivityStreamsView prepends a View value to the front of a list
	// of the property "context". Invalidates all iterators.
	PrependActivityStreamsView(v ActivityStreamsView)
	// PrependForgeFedBranch prepends a Branch value to the front of a list of
	// the property "context". Invalidates all iterators.
	PrependForgeFedBranch(v ForgeFedBranch)
	// PrependForgeFedCommit prepends a Commit value to the front of a list of
	// the property "context". Invalidates all iterators.
	PrependForgeFedCommit(v ForgeFedCommit)
	// PrependForgeFedPush prepends a Push value to the front of a list of the
	// property "context". Invalidates all iterators.
	PrependForgeFedPush(v ForgeFedPush)
	// PrependForgeFedRepository prepends a Repository value to the front of a
	// list of the property "context". Invalidates all iterators.
	PrependForgeFedRepository(v ForgeFedRepository)
	// PrependForgeFedTicket prepends a Ticket value to the front of a list of
	// the property "context". Invalidates all iterators.
	PrependForgeFedTicket(v ForgeFedTicket)
	// PrependForgeFedTicketDependency prepends a TicketDependency value to
	// the front of a list of the property "context". Invalidates all
	// iterators.
	PrependForgeFedTicketDependency(v ForgeFedTicketDependency)
	// PrependIRI prepends an IRI value to the front of a list of the property
	// "context".
	PrependIRI(v *url.URL)
	// PrependTootEmoji prepends a Emoji value to the front of a list of the
	// property "context". Invalidates all iterators.
	PrependTootEmoji(v TootEmoji)
	// PrependTootIdentityProof prepends a IdentityProof value to the front of
	// a list of the property "context". Invalidates all iterators.
	PrependTootIdentityProof(v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "context". Invalidates all iterators. Returns an error
	// if the type is not a valid one to set for this property.
	PrependType(t Type) error
	// Remove deletes an element at the specified index from a list of the
	// property "context", regardless of its type. Panics if the index is
	// out of bounds. Invalidates all iterators.
	Remove(idx int)
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// SetActivityStreamsAccept sets a Accept value to be at the specified
	// index for the property "context". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsAccept(idx int, v ActivityStreamsAccept)
	// SetActivityStreamsActivity sets a Activity value to be at the specified
	// index for the property "context". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsActivity(idx int, v ActivityStreamsActivity)
	// SetActivityStreamsAdd sets a Add value to be at the specified index for
	// the property "context". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsAdd(idx int, v ActivityStreamsAdd)
	// SetActivityStreamsAnnounce sets a Announce value to be at the specified
	// index for the property "context". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsAnnounce(idx int, v ActivityStreamsAnnounce)
	// SetActivityStreamsApplication sets a Application value to be at the
	// specified index for the property "context". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsApplication(idx int, v ActivityStreamsApplication)
	// SetActivityStreamsArrive sets a Arrive value to be at the specified
	// index for the property "context". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsArrive(idx int, v ActivityStreamsArrive)
	// SetActivityStreamsArticle sets a Article value to be at the specified
	// index for the property "context". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsArticle(idx int, v ActivityStreamsArticle)
	// SetActivityStreamsAudio sets a Audio value to be at the specified index
	// for the property "context". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsAudio(idx int, v ActivityStreamsAudio)
	// SetActivityStreamsBlock sets a Block value to be at the specified index
	// for the property "context". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsBlock(idx int, v ActivityStreamsBlock)
	// SetActivityStreamsCollection sets a Collection value to be at the
	// specified index for the property "context". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsCollection(idx int, v ActivityStreamsCollection)
	// SetActivityStreamsCollectionPage sets a CollectionPage value to be at
	// the specified index for the property "context". Panics if the index
	// is out of bounds. Invalidates all iterators.
	SetActivityStreamsCollectionPage(idx int, v ActivityStreamsCollectionPage)
	// SetActivityStreamsCreate sets a Create value to be at the specified
	// index for the property "context". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsCreate(idx int, v ActivityStreamsCreate)
	// SetActivityStreamsDelete sets a Delete value to be at the specified
	// index for the property "context". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsDelete(idx int, v ActivityStreamsDelete)
	// SetActivityStreamsDislike sets a Dislike value to be at the specified
	// index for the property "context". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsDislike(idx int, v ActivityStreamsDislike)
	// SetActivityStreamsDocument sets a Document value to be at the specified
	// index for the property "context". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsDocument(idx int, v ActivityStreamsDocument)
	// SetActivityStreamsEvent sets a Event value to be at the specified index
	// for the property "context". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsEvent(idx int, v ActivityStreamsEvent)
	// SetActivityStreamsFlag sets a Flag value to be at the specified index
	// for the property "context". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsFlag(idx int, v ActivityStreamsFlag)
	// SetActivityStreamsFollow sets a Follow value to be at the specified
	// index for the property "context". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsFollow(idx int, v ActivityStreamsFollow)
	// SetActivityStreamsGroup sets a Group value to be at the specified index
	// for the property "context". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsGroup(idx int, v ActivityStreamsGroup)
	// SetActivityStreamsIgnore sets a Ignore value to be at the specified
	// index for the property "context". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsIgnore(idx int, v ActivityStreamsIgnore)
	// SetActivityStreamsImage sets a Image value to be at the specified index
	// for the property "context". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsImage(idx int, v ActivityStreamsImage)
	// SetActivityStreamsIntransitiveActivity sets a IntransitiveActivity
	// value to be at the specified index for the property "context".
	// Panics if the index is out of bounds. Invalidates all iterators.
	SetActivityStreamsIntransitiveActivity(idx int, v ActivityStreamsIntransitiveActivity)
	// SetActivityStreamsInvite sets a Invite value to be at the specified
	// index for the property "context". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsInvite(idx int, v ActivityStreamsInvite)
	// SetActivityStreamsJoin sets a Join value to be at the specified index
	// for the property "context". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsJoin(idx int, v ActivityStreamsJoin)
	// SetActivityStreamsLeave sets a Leave value to be at the specified index
	// for the property "context". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsLeave(idx int, v ActivityStreamsLeave)
	// SetActivityStreamsLike sets a Like value to be at the specified index
	// for the property "context". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsLike(idx int, v ActivityStreamsLike)
	// SetActivityStreamsLink sets a Link value to be at the specified index
	// for the property "context". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsLink(idx int, v ActivityStreamsLink)
	// SetActivityStreamsListen sets a Listen value to be at the specified
	// index for the property "context". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsListen(idx int, v ActivityStreamsListen)
	// SetActivityStreamsMention sets a Mention value to be at the specified
	// index for the property "context". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsMention(idx int, v ActivityStreamsMention)
	// SetActivityStreamsMove sets a Move value to be at the specified index
	// for the property "context". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsMove(idx int, v ActivityStreamsMove)
	// SetActivityStreamsNote sets a Note value to be at the specified index
	// for the property "context". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsNote(idx int, v ActivityStreamsNote)
	// SetActivityStreamsObject sets a Object value to be at the specified
	// index for the property "context". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsObject(idx int, v ActivityStreamsObject)
	// SetActivityStreamsOffer sets a Offer value to be at the specified index
	// for the property "context". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsOffer(idx int, v ActivityStreamsOffer)
	// SetActivityStreamsOrderedCollection sets a OrderedCollection value to
	// be at the specified index for the property "context". Panics if the
	// index is out of bounds. Invalidates all iterators.
	SetActivityStreamsOrderedCollection(idx int, v ActivityStreamsOrderedCollection)
	// SetActivityStreamsOrderedCollectionPage sets a OrderedCollectionPage
	// value to be at the specified index for the property "context".
	// Panics if the index is out of bounds. Invalidates all iterators.
	SetActivityStreamsOrderedCollectionPage(idx int, v ActivityStreamsOrderedCollectionPage)
	// SetActivityStreamsOrganization sets a Organization value to be at the
	// specified index for the property "context". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsOrganization(idx int, v ActivityStreamsOrganization)
	// SetActivityStreamsPage sets a Page value to be at the specified index
	// for the property "context". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsPage(idx int, v ActivityStreamsPage)
	// SetActivityStreamsPerson sets a Person value to be at the specified
	// index for the property "context". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsPerson(idx int, v ActivityStreamsPerson)
	// SetActivityStreamsPlace sets a Place value to be at the specified index
	// for the property "context". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsPlace(idx int, v ActivityStreamsPlace)
	// SetActivityStreamsProfile sets a Profile value to be at the specified
	// index for the property "context". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsProfile(idx int, v ActivityStreamsProfile)
	// SetActivityStreamsQuestion sets a Question value to be at the specified
	// index for the property "context". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsQuestion(idx int, v ActivityStreamsQuestion)
	// SetActivityStreamsRead sets a Read value to be at the specified index
	// for the property "context". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsRead(idx int, v ActivityStreamsRead)
	// SetActivityStreamsReject sets a Reject value to be at the specified
	// index for the property "context". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsReject(idx int, v ActivityStreamsReject)
	// SetActivityStreamsRelationship sets a Relationship value to be at the
	// specified index for the property "context". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsRelationship(idx int, v ActivityStreamsRelationship)
	// SetActivityStreamsRemove sets a Remove value to be at the specified
	// index for the property "context". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsRemove(idx int, v ActivityStreamsRemove)
	// SetActivityStreamsService sets a Service value to be at the specified
	// index for the property "context". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsService(idx int, v ActivityStreamsService)
	// SetActivityStreamsTentativeAccept sets a TentativeAccept value to be at
	// the specified index for the property "context". Panics if the index
	// is out of bounds. Invalidates all iterators.
	SetActivityStreamsTentativeAccept(idx int, v ActivityStreamsTentativeAccept)
	// SetActivityStreamsTentativeReject sets a TentativeReject value to be at
	// the specified index for the property "context". Panics if the index
	// is out of bounds. Invalidates all iterators.
	SetActivityStreamsTentativeReject(idx int, v ActivityStreamsTentativeReject)
	// SetActivityStreamsTombstone sets a Tombstone value to be at the
	// specified index for the property "context". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsTombstone(idx int, v ActivityStreamsTombstone)
	// SetActivityStreamsTravel sets a Travel value to be at the specified
	// index for the property "context". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsTravel(idx int, v ActivityStreamsTravel)
	// SetActivityStreamsUndo sets a Undo value to be at the specified index
	// for the property "context". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsUndo(idx int, v ActivityStreamsUndo)
	// SetActivityStreamsUpdate sets a Update value to be at the specified
	// index for the property "context". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsUpdate(idx int, v ActivityStreamsUpdate)
	// SetActivityStreamsVideo sets a Video value to be at the specified index
	// for the property "context". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsVideo(idx int, v ActivityStreamsVideo)
	// SetActivityStreamsView sets a View value to be at the specified index
	// for the property "context". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsView(idx int, v ActivityStreamsView)
	// SetForgeFedBranch sets a Branch value to be at the specified index for
	// the property "context". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedBranch(idx int, v ForgeFedBranch)
	// SetForgeFedCommit sets a Commit value to be at the specified index for
	// the property "context". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedCommit(idx int, v ForgeFedCommit)
	// SetForgeFedPush sets a Push value to be at the specified index for the
	// property "context". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedPush(idx int, v ForgeFedPush)
	// SetForgeFedRepository sets a Repository value to be at the specified
	// index for the property "context". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetForgeFedRepository(idx int, v ForgeFedRepository)
	// SetForgeFedTicket sets a Ticket value to be at the specified index for
	// the property "context". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedTicket(idx int, v ForgeFedTicket)
	// SetForgeFedTicketDependency sets a TicketDependency value to be at the
	// specified index for the property "context". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
	// SetIRI sets an IRI value to be at the specified index for the property
	// "context". Panics if the index is out of bounds.
	SetIRI(idx int, v *url.URL)
	// SetTootEmoji sets a Emoji value to be at the specified index for the
	// property "context". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetTootEmoji(idx int, v TootEmoji)
	// SetTootIdentityProof sets a IdentityProof value to be at the specified
	// index for the property "context". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetTootIdentityProof(idx int, v TootIdentityProof)
	// SetType sets an arbitrary type value to the specified index of the
	// property "context". Invalidates all iterators. Returns an error if
	// the type is not a valid one to set for this property. Panics if the
	// index is out of bounds.
	SetType(idx int, t Type) error
	// Swap swaps the location of values at two indices for the "context"
	// property.
	Swap(i, j int)
}

Identifies the context within which the object exists or an activity was performed. The notion of "context" used is intentionally vague. The intended function is to serve as a means of grouping objects and activities that share a common originating context or purpose. An example could be all activities relating to a common project or event.

Example 73 (https://www.w3.org/TR/activitystreams-vocabulary/#ex171-jsonld):

{
  "items": [
    {
      "actor": "http://sally.example.org",
      "context": "http://example.org/contexts/1",
      "object": "http://example.org/posts/1",
      "target": "http://john.example.org",
      "type": "Offer"
    },
    {
      "actor": "http://joe.example.org",
      "context": "http://example.org/contexts/1",
      "object": "http://example.org/posts/2",
      "type": "Like"
    }
  ],
  "summary": "Activities in context 1",
  "type": "Collection"
}

type ActivityStreamsContextPropertyIterator

type ActivityStreamsContextPropertyIterator interface {
	// GetActivityStreamsAccept returns the value of this property. When
	// IsActivityStreamsAccept returns false, GetActivityStreamsAccept
	// will return an arbitrary value.
	GetActivityStreamsAccept() ActivityStreamsAccept
	// GetActivityStreamsActivity returns the value of this property. When
	// IsActivityStreamsActivity returns false, GetActivityStreamsActivity
	// will return an arbitrary value.
	GetActivityStreamsActivity() ActivityStreamsActivity
	// GetActivityStreamsAdd returns the value of this property. When
	// IsActivityStreamsAdd returns false, GetActivityStreamsAdd will
	// return an arbitrary value.
	GetActivityStreamsAdd() ActivityStreamsAdd
	// GetActivityStreamsAnnounce returns the value of this property. When
	// IsActivityStreamsAnnounce returns false, GetActivityStreamsAnnounce
	// will return an arbitrary value.
	GetActivityStreamsAnnounce() ActivityStreamsAnnounce
	// GetActivityStreamsApplication returns the value of this property. When
	// IsActivityStreamsApplication returns false,
	// GetActivityStreamsApplication will return an arbitrary value.
	GetActivityStreamsApplication() ActivityStreamsApplication
	// GetActivityStreamsArrive returns the value of this property. When
	// IsActivityStreamsArrive returns false, GetActivityStreamsArrive
	// will return an arbitrary value.
	GetActivityStreamsArrive() ActivityStreamsArrive
	// GetActivityStreamsArticle returns the value of this property. When
	// IsActivityStreamsArticle returns false, GetActivityStreamsArticle
	// will return an arbitrary value.
	GetActivityStreamsArticle() ActivityStreamsArticle
	// GetActivityStreamsAudio returns the value of this property. When
	// IsActivityStreamsAudio returns false, GetActivityStreamsAudio will
	// return an arbitrary value.
	GetActivityStreamsAudio() ActivityStreamsAudio
	// GetActivityStreamsBlock returns the value of this property. When
	// IsActivityStreamsBlock returns false, GetActivityStreamsBlock will
	// return an arbitrary value.
	GetActivityStreamsBlock() ActivityStreamsBlock
	// GetActivityStreamsCollection returns the value of this property. When
	// IsActivityStreamsCollection returns false,
	// GetActivityStreamsCollection will return an arbitrary value.
	GetActivityStreamsCollection() ActivityStreamsCollection
	// GetActivityStreamsCollectionPage returns the value of this property.
	// When IsActivityStreamsCollectionPage returns false,
	// GetActivityStreamsCollectionPage will return an arbitrary value.
	GetActivityStreamsCollectionPage() ActivityStreamsCollectionPage
	// GetActivityStreamsCreate returns the value of this property. When
	// IsActivityStreamsCreate returns false, GetActivityStreamsCreate
	// will return an arbitrary value.
	GetActivityStreamsCreate() ActivityStreamsCreate
	// GetActivityStreamsDelete returns the value of this property. When
	// IsActivityStreamsDelete returns false, GetActivityStreamsDelete
	// will return an arbitrary value.
	GetActivityStreamsDelete() ActivityStreamsDelete
	// GetActivityStreamsDislike returns the value of this property. When
	// IsActivityStreamsDislike returns false, GetActivityStreamsDislike
	// will return an arbitrary value.
	GetActivityStreamsDislike() ActivityStreamsDislike
	// GetActivityStreamsDocument returns the value of this property. When
	// IsActivityStreamsDocument returns false, GetActivityStreamsDocument
	// will return an arbitrary value.
	GetActivityStreamsDocument() ActivityStreamsDocument
	// GetActivityStreamsEvent returns the value of this property. When
	// IsActivityStreamsEvent returns false, GetActivityStreamsEvent will
	// return an arbitrary value.
	GetActivityStreamsEvent() ActivityStreamsEvent
	// GetActivityStreamsFlag returns the value of this property. When
	// IsActivityStreamsFlag returns false, GetActivityStreamsFlag will
	// return an arbitrary value.
	GetActivityStreamsFlag() ActivityStreamsFlag
	// GetActivityStreamsFollow returns the value of this property. When
	// IsActivityStreamsFollow returns false, GetActivityStreamsFollow
	// will return an arbitrary value.
	GetActivityStreamsFollow() ActivityStreamsFollow
	// GetActivityStreamsGroup returns the value of this property. When
	// IsActivityStreamsGroup returns false, GetActivityStreamsGroup will
	// return an arbitrary value.
	GetActivityStreamsGroup() ActivityStreamsGroup
	// GetActivityStreamsIgnore returns the value of this property. When
	// IsActivityStreamsIgnore returns false, GetActivityStreamsIgnore
	// will return an arbitrary value.
	GetActivityStreamsIgnore() ActivityStreamsIgnore
	// GetActivityStreamsImage returns the value of this property. When
	// IsActivityStreamsImage returns false, GetActivityStreamsImage will
	// return an arbitrary value.
	GetActivityStreamsImage() ActivityStreamsImage
	// GetActivityStreamsIntransitiveActivity returns the value of this
	// property. When IsActivityStreamsIntransitiveActivity returns false,
	// GetActivityStreamsIntransitiveActivity will return an arbitrary
	// value.
	GetActivityStreamsIntransitiveActivity() ActivityStreamsIntransitiveActivity
	// GetActivityStreamsInvite returns the value of this property. When
	// IsActivityStreamsInvite returns false, GetActivityStreamsInvite
	// will return an arbitrary value.
	GetActivityStreamsInvite() ActivityStreamsInvite
	// GetActivityStreamsJoin returns the value of this property. When
	// IsActivityStreamsJoin returns false, GetActivityStreamsJoin will
	// return an arbitrary value.
	GetActivityStreamsJoin() ActivityStreamsJoin
	// GetActivityStreamsLeave returns the value of this property. When
	// IsActivityStreamsLeave returns false, GetActivityStreamsLeave will
	// return an arbitrary value.
	GetActivityStreamsLeave() ActivityStreamsLeave
	// GetActivityStreamsLike returns the value of this property. When
	// IsActivityStreamsLike returns false, GetActivityStreamsLike will
	// return an arbitrary value.
	GetActivityStreamsLike() ActivityStreamsLike
	// GetActivityStreamsLink returns the value of this property. When
	// IsActivityStreamsLink returns false, GetActivityStreamsLink will
	// return an arbitrary value.
	GetActivityStreamsLink() ActivityStreamsLink
	// GetActivityStreamsListen returns the value of this property. When
	// IsActivityStreamsListen returns false, GetActivityStreamsListen
	// will return an arbitrary value.
	GetActivityStreamsListen() ActivityStreamsListen
	// GetActivityStreamsMention returns the value of this property. When
	// IsActivityStreamsMention returns false, GetActivityStreamsMention
	// will return an arbitrary value.
	GetActivityStreamsMention() ActivityStreamsMention
	// GetActivityStreamsMove returns the value of this property. When
	// IsActivityStreamsMove returns false, GetActivityStreamsMove will
	// return an arbitrary value.
	GetActivityStreamsMove() ActivityStreamsMove
	// GetActivityStreamsNote returns the value of this property. When
	// IsActivityStreamsNote returns false, GetActivityStreamsNote will
	// return an arbitrary value.
	GetActivityStreamsNote() ActivityStreamsNote
	// GetActivityStreamsObject returns the value of this property. When
	// IsActivityStreamsObject returns false, GetActivityStreamsObject
	// will return an arbitrary value.
	GetActivityStreamsObject() ActivityStreamsObject
	// GetActivityStreamsOffer returns the value of this property. When
	// IsActivityStreamsOffer returns false, GetActivityStreamsOffer will
	// return an arbitrary value.
	GetActivityStreamsOffer() ActivityStreamsOffer
	// GetActivityStreamsOrderedCollection returns the value of this property.
	// When IsActivityStreamsOrderedCollection returns false,
	// GetActivityStreamsOrderedCollection will return an arbitrary value.
	GetActivityStreamsOrderedCollection() ActivityStreamsOrderedCollection
	// GetActivityStreamsOrderedCollectionPage returns the value of this
	// property. When IsActivityStreamsOrderedCollectionPage returns
	// false, GetActivityStreamsOrderedCollectionPage will return an
	// arbitrary value.
	GetActivityStreamsOrderedCollectionPage() ActivityStreamsOrderedCollectionPage
	// GetActivityStreamsOrganization returns the value of this property. When
	// IsActivityStreamsOrganization returns false,
	// GetActivityStreamsOrganization will return an arbitrary value.
	GetActivityStreamsOrganization() ActivityStreamsOrganization
	// GetActivityStreamsPage returns the value of this property. When
	// IsActivityStreamsPage returns false, GetActivityStreamsPage will
	// return an arbitrary value.
	GetActivityStreamsPage() ActivityStreamsPage
	// GetActivityStreamsPerson returns the value of this property. When
	// IsActivityStreamsPerson returns false, GetActivityStreamsPerson
	// will return an arbitrary value.
	GetActivityStreamsPerson() ActivityStreamsPerson
	// GetActivityStreamsPlace returns the value of this property. When
	// IsActivityStreamsPlace returns false, GetActivityStreamsPlace will
	// return an arbitrary value.
	GetActivityStreamsPlace() ActivityStreamsPlace
	// GetActivityStreamsProfile returns the value of this property. When
	// IsActivityStreamsProfile returns false, GetActivityStreamsProfile
	// will return an arbitrary value.
	GetActivityStreamsProfile() ActivityStreamsProfile
	// GetActivityStreamsQuestion returns the value of this property. When
	// IsActivityStreamsQuestion returns false, GetActivityStreamsQuestion
	// will return an arbitrary value.
	GetActivityStreamsQuestion() ActivityStreamsQuestion
	// GetActivityStreamsRead returns the value of this property. When
	// IsActivityStreamsRead returns false, GetActivityStreamsRead will
	// return an arbitrary value.
	GetActivityStreamsRead() ActivityStreamsRead
	// GetActivityStreamsReject returns the value of this property. When
	// IsActivityStreamsReject returns false, GetActivityStreamsReject
	// will return an arbitrary value.
	GetActivityStreamsReject() ActivityStreamsReject
	// GetActivityStreamsRelationship returns the value of this property. When
	// IsActivityStreamsRelationship returns false,
	// GetActivityStreamsRelationship will return an arbitrary value.
	GetActivityStreamsRelationship() ActivityStreamsRelationship
	// GetActivityStreamsRemove returns the value of this property. When
	// IsActivityStreamsRemove returns false, GetActivityStreamsRemove
	// will return an arbitrary value.
	GetActivityStreamsRemove() ActivityStreamsRemove
	// GetActivityStreamsService returns the value of this property. When
	// IsActivityStreamsService returns false, GetActivityStreamsService
	// will return an arbitrary value.
	GetActivityStreamsService() ActivityStreamsService
	// GetActivityStreamsTentativeAccept returns the value of this property.
	// When IsActivityStreamsTentativeAccept returns false,
	// GetActivityStreamsTentativeAccept will return an arbitrary value.
	GetActivityStreamsTentativeAccept() ActivityStreamsTentativeAccept
	// GetActivityStreamsTentativeReject returns the value of this property.
	// When IsActivityStreamsTentativeReject returns false,
	// GetActivityStreamsTentativeReject will return an arbitrary value.
	GetActivityStreamsTentativeReject() ActivityStreamsTentativeReject
	// GetActivityStreamsTombstone returns the value of this property. When
	// IsActivityStreamsTombstone returns false,
	// GetActivityStreamsTombstone will return an arbitrary value.
	GetActivityStreamsTombstone() ActivityStreamsTombstone
	// GetActivityStreamsTravel returns the value of this property. When
	// IsActivityStreamsTravel returns false, GetActivityStreamsTravel
	// will return an arbitrary value.
	GetActivityStreamsTravel() ActivityStreamsTravel
	// GetActivityStreamsUndo returns the value of this property. When
	// IsActivityStreamsUndo returns false, GetActivityStreamsUndo will
	// return an arbitrary value.
	GetActivityStreamsUndo() ActivityStreamsUndo
	// GetActivityStreamsUpdate returns the value of this property. When
	// IsActivityStreamsUpdate returns false, GetActivityStreamsUpdate
	// will return an arbitrary value.
	GetActivityStreamsUpdate() ActivityStreamsUpdate
	// GetActivityStreamsVideo returns the value of this property. When
	// IsActivityStreamsVideo returns false, GetActivityStreamsVideo will
	// return an arbitrary value.
	GetActivityStreamsVideo() ActivityStreamsVideo
	// GetActivityStreamsView returns the value of this property. When
	// IsActivityStreamsView returns false, GetActivityStreamsView will
	// return an arbitrary value.
	GetActivityStreamsView() ActivityStreamsView
	// GetForgeFedBranch returns the value of this property. When
	// IsForgeFedBranch returns false, GetForgeFedBranch will return an
	// arbitrary value.
	GetForgeFedBranch() ForgeFedBranch
	// GetForgeFedCommit returns the value of this property. When
	// IsForgeFedCommit returns false, GetForgeFedCommit will return an
	// arbitrary value.
	GetForgeFedCommit() ForgeFedCommit
	// GetForgeFedPush returns the value of this property. When IsForgeFedPush
	// returns false, GetForgeFedPush will return an arbitrary value.
	GetForgeFedPush() ForgeFedPush
	// GetForgeFedRepository returns the value of this property. When
	// IsForgeFedRepository returns false, GetForgeFedRepository will
	// return an arbitrary value.
	GetForgeFedRepository() ForgeFedRepository
	// GetForgeFedTicket returns the value of this property. When
	// IsForgeFedTicket returns false, GetForgeFedTicket will return an
	// arbitrary value.
	GetForgeFedTicket() ForgeFedTicket
	// GetForgeFedTicketDependency returns the value of this property. When
	// IsForgeFedTicketDependency returns false,
	// GetForgeFedTicketDependency will return an arbitrary value.
	GetForgeFedTicketDependency() ForgeFedTicketDependency
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return an arbitrary value.
	GetIRI() *url.URL
	// GetTootEmoji returns the value of this property. When IsTootEmoji
	// returns false, GetTootEmoji will return an arbitrary value.
	GetTootEmoji() TootEmoji
	// GetTootIdentityProof returns the value of this property. When
	// IsTootIdentityProof returns false, GetTootIdentityProof will return
	// an arbitrary value.
	GetTootIdentityProof() TootIdentityProof
	// GetType returns the value in this property as a Type. Returns nil if
	// the value is not an ActivityStreams type, such as an IRI or another
	// value.
	GetType() Type
	// HasAny returns true if any of the different values is set.
	HasAny() bool
	// IsActivityStreamsAccept returns true if this property has a type of
	// "Accept". When true, use the GetActivityStreamsAccept and
	// SetActivityStreamsAccept methods to access and set this property.
	IsActivityStreamsAccept() bool
	// IsActivityStreamsActivity returns true if this property has a type of
	// "Activity". When true, use the GetActivityStreamsActivity and
	// SetActivityStreamsActivity methods to access and set this property.
	IsActivityStreamsActivity() bool
	// IsActivityStreamsAdd returns true if this property has a type of "Add".
	// When true, use the GetActivityStreamsAdd and SetActivityStreamsAdd
	// methods to access and set this property.
	IsActivityStreamsAdd() bool
	// IsActivityStreamsAnnounce returns true if this property has a type of
	// "Announce". When true, use the GetActivityStreamsAnnounce and
	// SetActivityStreamsAnnounce methods to access and set this property.
	IsActivityStreamsAnnounce() bool
	// IsActivityStreamsApplication returns true if this property has a type
	// of "Application". When true, use the GetActivityStreamsApplication
	// and SetActivityStreamsApplication methods to access and set this
	// property.
	IsActivityStreamsApplication() bool
	// IsActivityStreamsArrive returns true if this property has a type of
	// "Arrive". When true, use the GetActivityStreamsArrive and
	// SetActivityStreamsArrive methods to access and set this property.
	IsActivityStreamsArrive() bool
	// IsActivityStreamsArticle returns true if this property has a type of
	// "Article". When true, use the GetActivityStreamsArticle and
	// SetActivityStreamsArticle methods to access and set this property.
	IsActivityStreamsArticle() bool
	// IsActivityStreamsAudio returns true if this property has a type of
	// "Audio". When true, use the GetActivityStreamsAudio and
	// SetActivityStreamsAudio methods to access and set this property.
	IsActivityStreamsAudio() bool
	// IsActivityStreamsBlock returns true if this property has a type of
	// "Block". When true, use the GetActivityStreamsBlock and
	// SetActivityStreamsBlock methods to access and set this property.
	IsActivityStreamsBlock() bool
	// IsActivityStreamsCollection returns true if this property has a type of
	// "Collection". When true, use the GetActivityStreamsCollection and
	// SetActivityStreamsCollection methods to access and set this
	// property.
	IsActivityStreamsCollection() bool
	// IsActivityStreamsCollectionPage returns true if this property has a
	// type of "CollectionPage". When true, use the
	// GetActivityStreamsCollectionPage and
	// SetActivityStreamsCollectionPage methods to access and set this
	// property.
	IsActivityStreamsCollectionPage() bool
	// IsActivityStreamsCreate returns true if this property has a type of
	// "Create". When true, use the GetActivityStreamsCreate and
	// SetActivityStreamsCreate methods to access and set this property.
	IsActivityStreamsCreate() bool
	// IsActivityStreamsDelete returns true if this property has a type of
	// "Delete". When true, use the GetActivityStreamsDelete and
	// SetActivityStreamsDelete methods to access and set this property.
	IsActivityStreamsDelete() bool
	// IsActivityStreamsDislike returns true if this property has a type of
	// "Dislike". When true, use the GetActivityStreamsDislike and
	// SetActivityStreamsDislike methods to access and set this property.
	IsActivityStreamsDislike() bool
	// IsActivityStreamsDocument returns true if this property has a type of
	// "Document". When true, use the GetActivityStreamsDocument and
	// SetActivityStreamsDocument methods to access and set this property.
	IsActivityStreamsDocument() bool
	// IsActivityStreamsEvent returns true if this property has a type of
	// "Event". When true, use the GetActivityStreamsEvent and
	// SetActivityStreamsEvent methods to access and set this property.
	IsActivityStreamsEvent() bool
	// IsActivityStreamsFlag returns true if this property has a type of
	// "Flag". When true, use the GetActivityStreamsFlag and
	// SetActivityStreamsFlag methods to access and set this property.
	IsActivityStreamsFlag() bool
	// IsActivityStreamsFollow returns true if this property has a type of
	// "Follow". When true, use the GetActivityStreamsFollow and
	// SetActivityStreamsFollow methods to access and set this property.
	IsActivityStreamsFollow() bool
	// IsActivityStreamsGroup returns true if this property has a type of
	// "Group". When true, use the GetActivityStreamsGroup and
	// SetActivityStreamsGroup methods to access and set this property.
	IsActivityStreamsGroup() bool
	// IsActivityStreamsIgnore returns true if this property has a type of
	// "Ignore". When true, use the GetActivityStreamsIgnore and
	// SetActivityStreamsIgnore methods to access and set this property.
	IsActivityStreamsIgnore() bool
	// IsActivityStreamsImage returns true if this property has a type of
	// "Image". When true, use the GetActivityStreamsImage and
	// SetActivityStreamsImage methods to access and set this property.
	IsActivityStreamsImage() bool
	// IsActivityStreamsIntransitiveActivity returns true if this property has
	// a type of "IntransitiveActivity". When true, use the
	// GetActivityStreamsIntransitiveActivity and
	// SetActivityStreamsIntransitiveActivity methods to access and set
	// this property.
	IsActivityStreamsIntransitiveActivity() bool
	// IsActivityStreamsInvite returns true if this property has a type of
	// "Invite". When true, use the GetActivityStreamsInvite and
	// SetActivityStreamsInvite methods to access and set this property.
	IsActivityStreamsInvite() bool
	// IsActivityStreamsJoin returns true if this property has a type of
	// "Join". When true, use the GetActivityStreamsJoin and
	// SetActivityStreamsJoin methods to access and set this property.
	IsActivityStreamsJoin() bool
	// IsActivityStreamsLeave returns true if this property has a type of
	// "Leave". When true, use the GetActivityStreamsLeave and
	// SetActivityStreamsLeave methods to access and set this property.
	IsActivityStreamsLeave() bool
	// IsActivityStreamsLike returns true if this property has a type of
	// "Like". When true, use the GetActivityStreamsLike and
	// SetActivityStreamsLike methods to access and set this property.
	IsActivityStreamsLike() bool
	// IsActivityStreamsLink returns true if this property has a type of
	// "Link". When true, use the GetActivityStreamsLink and
	// SetActivityStreamsLink methods to access and set this property.
	IsActivityStreamsLink() bool
	// IsActivityStreamsListen returns true if this property has a type of
	// "Listen". When true, use the GetActivityStreamsListen and
	// SetActivityStreamsListen methods to access and set this property.
	IsActivityStreamsListen() bool
	// IsActivityStreamsMention returns true if this property has a type of
	// "Mention". When true, use the GetActivityStreamsMention and
	// SetActivityStreamsMention methods to access and set this property.
	IsActivityStreamsMention() bool
	// IsActivityStreamsMove returns true if this property has a type of
	// "Move". When true, use the GetActivityStreamsMove and
	// SetActivityStreamsMove methods to access and set this property.
	IsActivityStreamsMove() bool
	// IsActivityStreamsNote returns true if this property has a type of
	// "Note". When true, use the GetActivityStreamsNote and
	// SetActivityStreamsNote methods to access and set this property.
	IsActivityStreamsNote() bool
	// IsActivityStreamsObject returns true if this property has a type of
	// "Object". When true, use the GetActivityStreamsObject and
	// SetActivityStreamsObject methods to access and set this property.
	IsActivityStreamsObject() bool
	// IsActivityStreamsOffer returns true if this property has a type of
	// "Offer". When true, use the GetActivityStreamsOffer and
	// SetActivityStreamsOffer methods to access and set this property.
	IsActivityStreamsOffer() bool
	// IsActivityStreamsOrderedCollection returns true if this property has a
	// type of "OrderedCollection". When true, use the
	// GetActivityStreamsOrderedCollection and
	// SetActivityStreamsOrderedCollection methods to access and set this
	// property.
	IsActivityStreamsOrderedCollection() bool
	// IsActivityStreamsOrderedCollectionPage returns true if this property
	// has a type of "OrderedCollectionPage". When true, use the
	// GetActivityStreamsOrderedCollectionPage and
	// SetActivityStreamsOrderedCollectionPage methods to access and set
	// this property.
	IsActivityStreamsOrderedCollectionPage() bool
	// IsActivityStreamsOrganization returns true if this property has a type
	// of "Organization". When true, use the
	// GetActivityStreamsOrganization and SetActivityStreamsOrganization
	// methods to access and set this property.
	IsActivityStreamsOrganization() bool
	// IsActivityStreamsPage returns true if this property has a type of
	// "Page". When true, use the GetActivityStreamsPage and
	// SetActivityStreamsPage methods to access and set this property.
	IsActivityStreamsPage() bool
	// IsActivityStreamsPerson returns true if this property has a type of
	// "Person". When true, use the GetActivityStreamsPerson and
	// SetActivityStreamsPerson methods to access and set this property.
	IsActivityStreamsPerson() bool
	// IsActivityStreamsPlace returns true if this property has a type of
	// "Place". When true, use the GetActivityStreamsPlace and
	// SetActivityStreamsPlace methods to access and set this property.
	IsActivityStreamsPlace() bool
	// IsActivityStreamsProfile returns true if this property has a type of
	// "Profile". When true, use the GetActivityStreamsProfile and
	// SetActivityStreamsProfile methods to access and set this property.
	IsActivityStreamsProfile() bool
	// IsActivityStreamsQuestion returns true if this property has a type of
	// "Question". When true, use the GetActivityStreamsQuestion and
	// SetActivityStreamsQuestion methods to access and set this property.
	IsActivityStreamsQuestion() bool
	// IsActivityStreamsRead returns true if this property has a type of
	// "Read". When true, use the GetActivityStreamsRead and
	// SetActivityStreamsRead methods to access and set this property.
	IsActivityStreamsRead() bool
	// IsActivityStreamsReject returns true if this property has a type of
	// "Reject". When true, use the GetActivityStreamsReject and
	// SetActivityStreamsReject methods to access and set this property.
	IsActivityStreamsReject() bool
	// IsActivityStreamsRelationship returns true if this property has a type
	// of "Relationship". When true, use the
	// GetActivityStreamsRelationship and SetActivityStreamsRelationship
	// methods to access and set this property.
	IsActivityStreamsRelationship() bool
	// IsActivityStreamsRemove returns true if this property has a type of
	// "Remove". When true, use the GetActivityStreamsRemove and
	// SetActivityStreamsRemove methods to access and set this property.
	IsActivityStreamsRemove() bool
	// IsActivityStreamsService returns true if this property has a type of
	// "Service". When true, use the GetActivityStreamsService and
	// SetActivityStreamsService methods to access and set this property.
	IsActivityStreamsService() bool
	// IsActivityStreamsTentativeAccept returns true if this property has a
	// type of "TentativeAccept". When true, use the
	// GetActivityStreamsTentativeAccept and
	// SetActivityStreamsTentativeAccept methods to access and set this
	// property.
	IsActivityStreamsTentativeAccept() bool
	// IsActivityStreamsTentativeReject returns true if this property has a
	// type of "TentativeReject". When true, use the
	// GetActivityStreamsTentativeReject and
	// SetActivityStreamsTentativeReject methods to access and set this
	// property.
	IsActivityStreamsTentativeReject() bool
	// IsActivityStreamsTombstone returns true if this property has a type of
	// "Tombstone". When true, use the GetActivityStreamsTombstone and
	// SetActivityStreamsTombstone methods to access and set this property.
	IsActivityStreamsTombstone() bool
	// IsActivityStreamsTravel returns true if this property has a type of
	// "Travel". When true, use the GetActivityStreamsTravel and
	// SetActivityStreamsTravel methods to access and set this property.
	IsActivityStreamsTravel() bool
	// IsActivityStreamsUndo returns true if this property has a type of
	// "Undo". When true, use the GetActivityStreamsUndo and
	// SetActivityStreamsUndo methods to access and set this property.
	IsActivityStreamsUndo() bool
	// IsActivityStreamsUpdate returns true if this property has a type of
	// "Update". When true, use the GetActivityStreamsUpdate and
	// SetActivityStreamsUpdate methods to access and set this property.
	IsActivityStreamsUpdate() bool
	// IsActivityStreamsVideo returns true if this property has a type of
	// "Video". When true, use the GetActivityStreamsVideo and
	// SetActivityStreamsVideo methods to access and set this property.
	IsActivityStreamsVideo() bool
	// IsActivityStreamsView returns true if this property has a type of
	// "View". When true, use the GetActivityStreamsView and
	// SetActivityStreamsView methods to access and set this property.
	IsActivityStreamsView() bool
	// IsForgeFedBranch returns true if this property has a type of "Branch".
	// When true, use the GetForgeFedBranch and SetForgeFedBranch methods
	// to access and set this property.
	IsForgeFedBranch() bool
	// IsForgeFedCommit returns true if this property has a type of "Commit".
	// When true, use the GetForgeFedCommit and SetForgeFedCommit methods
	// to access and set this property.
	IsForgeFedCommit() bool
	// IsForgeFedPush returns true if this property has a type of "Push". When
	// true, use the GetForgeFedPush and SetForgeFedPush methods to access
	// and set this property.
	IsForgeFedPush() bool
	// IsForgeFedRepository returns true if this property has a type of
	// "Repository". When true, use the GetForgeFedRepository and
	// SetForgeFedRepository methods to access and set this property.
	IsForgeFedRepository() bool
	// IsForgeFedTicket returns true if this property has a type of "Ticket".
	// When true, use the GetForgeFedTicket and SetForgeFedTicket methods
	// to access and set this property.
	IsForgeFedTicket() bool
	// IsForgeFedTicketDependency returns true if this property has a type of
	// "TicketDependency". When true, use the GetForgeFedTicketDependency
	// and SetForgeFedTicketDependency methods to access and set this
	// property.
	IsForgeFedTicketDependency() bool
	// IsIRI returns true if this property is an IRI. When true, use GetIRI
	// and SetIRI to access and set this property
	IsIRI() bool
	// IsTootEmoji returns true if this property has a type of "Emoji". When
	// true, use the GetTootEmoji and SetTootEmoji methods to access and
	// set this property.
	IsTootEmoji() bool
	// IsTootIdentityProof returns true if this property has a type of
	// "IdentityProof". When true, use the GetTootIdentityProof and
	// SetTootIdentityProof methods to access and set this property.
	IsTootIdentityProof() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsContextPropertyIterator) bool
	// Name returns the name of this property: "ActivityStreamsContext".
	Name() string
	// Next returns the next iterator, or nil if there is no next iterator.
	Next() ActivityStreamsContextPropertyIterator
	// Prev returns the previous iterator, or nil if there is no previous
	// iterator.
	Prev() ActivityStreamsContextPropertyIterator
	// SetActivityStreamsAccept sets the value of this property. Calling
	// IsActivityStreamsAccept afterwards returns true.
	SetActivityStreamsAccept(v ActivityStreamsAccept)
	// SetActivityStreamsActivity sets the value of this property. Calling
	// IsActivityStreamsActivity afterwards returns true.
	SetActivityStreamsActivity(v ActivityStreamsActivity)
	// SetActivityStreamsAdd sets the value of this property. Calling
	// IsActivityStreamsAdd afterwards returns true.
	SetActivityStreamsAdd(v ActivityStreamsAdd)
	// SetActivityStreamsAnnounce sets the value of this property. Calling
	// IsActivityStreamsAnnounce afterwards returns true.
	SetActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// SetActivityStreamsApplication sets the value of this property. Calling
	// IsActivityStreamsApplication afterwards returns true.
	SetActivityStreamsApplication(v ActivityStreamsApplication)
	// SetActivityStreamsArrive sets the value of this property. Calling
	// IsActivityStreamsArrive afterwards returns true.
	SetActivityStreamsArrive(v ActivityStreamsArrive)
	// SetActivityStreamsArticle sets the value of this property. Calling
	// IsActivityStreamsArticle afterwards returns true.
	SetActivityStreamsArticle(v ActivityStreamsArticle)
	// SetActivityStreamsAudio sets the value of this property. Calling
	// IsActivityStreamsAudio afterwards returns true.
	SetActivityStreamsAudio(v ActivityStreamsAudio)
	// SetActivityStreamsBlock sets the value of this property. Calling
	// IsActivityStreamsBlock afterwards returns true.
	SetActivityStreamsBlock(v ActivityStreamsBlock)
	// SetActivityStreamsCollection sets the value of this property. Calling
	// IsActivityStreamsCollection afterwards returns true.
	SetActivityStreamsCollection(v ActivityStreamsCollection)
	// SetActivityStreamsCollectionPage sets the value of this property.
	// Calling IsActivityStreamsCollectionPage afterwards returns true.
	SetActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// SetActivityStreamsCreate sets the value of this property. Calling
	// IsActivityStreamsCreate afterwards returns true.
	SetActivityStreamsCreate(v ActivityStreamsCreate)
	// SetActivityStreamsDelete sets the value of this property. Calling
	// IsActivityStreamsDelete afterwards returns true.
	SetActivityStreamsDelete(v ActivityStreamsDelete)
	// SetActivityStreamsDislike sets the value of this property. Calling
	// IsActivityStreamsDislike afterwards returns true.
	SetActivityStreamsDislike(v ActivityStreamsDislike)
	// SetActivityStreamsDocument sets the value of this property. Calling
	// IsActivityStreamsDocument afterwards returns true.
	SetActivityStreamsDocument(v ActivityStreamsDocument)
	// SetActivityStreamsEvent sets the value of this property. Calling
	// IsActivityStreamsEvent afterwards returns true.
	SetActivityStreamsEvent(v ActivityStreamsEvent)
	// SetActivityStreamsFlag sets the value of this property. Calling
	// IsActivityStreamsFlag afterwards returns true.
	SetActivityStreamsFlag(v ActivityStreamsFlag)
	// SetActivityStreamsFollow sets the value of this property. Calling
	// IsActivityStreamsFollow afterwards returns true.
	SetActivityStreamsFollow(v ActivityStreamsFollow)
	// SetActivityStreamsGroup sets the value of this property. Calling
	// IsActivityStreamsGroup afterwards returns true.
	SetActivityStreamsGroup(v ActivityStreamsGroup)
	// SetActivityStreamsIgnore sets the value of this property. Calling
	// IsActivityStreamsIgnore afterwards returns true.
	SetActivityStreamsIgnore(v ActivityStreamsIgnore)
	// SetActivityStreamsImage sets the value of this property. Calling
	// IsActivityStreamsImage afterwards returns true.
	SetActivityStreamsImage(v ActivityStreamsImage)
	// SetActivityStreamsIntransitiveActivity sets the value of this property.
	// Calling IsActivityStreamsIntransitiveActivity afterwards returns
	// true.
	SetActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// SetActivityStreamsInvite sets the value of this property. Calling
	// IsActivityStreamsInvite afterwards returns true.
	SetActivityStreamsInvite(v ActivityStreamsInvite)
	// SetActivityStreamsJoin sets the value of this property. Calling
	// IsActivityStreamsJoin afterwards returns true.
	SetActivityStreamsJoin(v ActivityStreamsJoin)
	// SetActivityStreamsLeave sets the value of this property. Calling
	// IsActivityStreamsLeave afterwards returns true.
	SetActivityStreamsLeave(v ActivityStreamsLeave)
	// SetActivityStreamsLike sets the value of this property. Calling
	// IsActivityStreamsLike afterwards returns true.
	SetActivityStreamsLike(v ActivityStreamsLike)
	// SetActivityStreamsLink sets the value of this property. Calling
	// IsActivityStreamsLink afterwards returns true.
	SetActivityStreamsLink(v ActivityStreamsLink)
	// SetActivityStreamsListen sets the value of this property. Calling
	// IsActivityStreamsListen afterwards returns true.
	SetActivityStreamsListen(v ActivityStreamsListen)
	// SetActivityStreamsMention sets the value of this property. Calling
	// IsActivityStreamsMention afterwards returns true.
	SetActivityStreamsMention(v ActivityStreamsMention)
	// SetActivityStreamsMove sets the value of this property. Calling
	// IsActivityStreamsMove afterwards returns true.
	SetActivityStreamsMove(v ActivityStreamsMove)
	// SetActivityStreamsNote sets the value of this property. Calling
	// IsActivityStreamsNote afterwards returns true.
	SetActivityStreamsNote(v ActivityStreamsNote)
	// SetActivityStreamsObject sets the value of this property. Calling
	// IsActivityStreamsObject afterwards returns true.
	SetActivityStreamsObject(v ActivityStreamsObject)
	// SetActivityStreamsOffer sets the value of this property. Calling
	// IsActivityStreamsOffer afterwards returns true.
	SetActivityStreamsOffer(v ActivityStreamsOffer)
	// SetActivityStreamsOrderedCollection sets the value of this property.
	// Calling IsActivityStreamsOrderedCollection afterwards returns true.
	SetActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// SetActivityStreamsOrderedCollectionPage sets the value of this
	// property. Calling IsActivityStreamsOrderedCollectionPage afterwards
	// returns true.
	SetActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// SetActivityStreamsOrganization sets the value of this property. Calling
	// IsActivityStreamsOrganization afterwards returns true.
	SetActivityStreamsOrganization(v ActivityStreamsOrganization)
	// SetActivityStreamsPage sets the value of this property. Calling
	// IsActivityStreamsPage afterwards returns true.
	SetActivityStreamsPage(v ActivityStreamsPage)
	// SetActivityStreamsPerson sets the value of this property. Calling
	// IsActivityStreamsPerson afterwards returns true.
	SetActivityStreamsPerson(v ActivityStreamsPerson)
	// SetActivityStreamsPlace sets the value of this property. Calling
	// IsActivityStreamsPlace afterwards returns true.
	SetActivityStreamsPlace(v ActivityStreamsPlace)
	// SetActivityStreamsProfile sets the value of this property. Calling
	// IsActivityStreamsProfile afterwards returns true.
	SetActivityStreamsProfile(v ActivityStreamsProfile)
	// SetActivityStreamsQuestion sets the value of this property. Calling
	// IsActivityStreamsQuestion afterwards returns true.
	SetActivityStreamsQuestion(v ActivityStreamsQuestion)
	// SetActivityStreamsRead sets the value of this property. Calling
	// IsActivityStreamsRead afterwards returns true.
	SetActivityStreamsRead(v ActivityStreamsRead)
	// SetActivityStreamsReject sets the value of this property. Calling
	// IsActivityStreamsReject afterwards returns true.
	SetActivityStreamsReject(v ActivityStreamsReject)
	// SetActivityStreamsRelationship sets the value of this property. Calling
	// IsActivityStreamsRelationship afterwards returns true.
	SetActivityStreamsRelationship(v ActivityStreamsRelationship)
	// SetActivityStreamsRemove sets the value of this property. Calling
	// IsActivityStreamsRemove afterwards returns true.
	SetActivityStreamsRemove(v ActivityStreamsRemove)
	// SetActivityStreamsService sets the value of this property. Calling
	// IsActivityStreamsService afterwards returns true.
	SetActivityStreamsService(v ActivityStreamsService)
	// SetActivityStreamsTentativeAccept sets the value of this property.
	// Calling IsActivityStreamsTentativeAccept afterwards returns true.
	SetActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// SetActivityStreamsTentativeReject sets the value of this property.
	// Calling IsActivityStreamsTentativeReject afterwards returns true.
	SetActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// SetActivityStreamsTombstone sets the value of this property. Calling
	// IsActivityStreamsTombstone afterwards returns true.
	SetActivityStreamsTombstone(v ActivityStreamsTombstone)
	// SetActivityStreamsTravel sets the value of this property. Calling
	// IsActivityStreamsTravel afterwards returns true.
	SetActivityStreamsTravel(v ActivityStreamsTravel)
	// SetActivityStreamsUndo sets the value of this property. Calling
	// IsActivityStreamsUndo afterwards returns true.
	SetActivityStreamsUndo(v ActivityStreamsUndo)
	// SetActivityStreamsUpdate sets the value of this property. Calling
	// IsActivityStreamsUpdate afterwards returns true.
	SetActivityStreamsUpdate(v ActivityStreamsUpdate)
	// SetActivityStreamsVideo sets the value of this property. Calling
	// IsActivityStreamsVideo afterwards returns true.
	SetActivityStreamsVideo(v ActivityStreamsVideo)
	// SetActivityStreamsView sets the value of this property. Calling
	// IsActivityStreamsView afterwards returns true.
	SetActivityStreamsView(v ActivityStreamsView)
	// SetForgeFedBranch sets the value of this property. Calling
	// IsForgeFedBranch afterwards returns true.
	SetForgeFedBranch(v ForgeFedBranch)
	// SetForgeFedCommit sets the value of this property. Calling
	// IsForgeFedCommit afterwards returns true.
	SetForgeFedCommit(v ForgeFedCommit)
	// SetForgeFedPush sets the value of this property. Calling IsForgeFedPush
	// afterwards returns true.
	SetForgeFedPush(v ForgeFedPush)
	// SetForgeFedRepository sets the value of this property. Calling
	// IsForgeFedRepository afterwards returns true.
	SetForgeFedRepository(v ForgeFedRepository)
	// SetForgeFedTicket sets the value of this property. Calling
	// IsForgeFedTicket afterwards returns true.
	SetForgeFedTicket(v ForgeFedTicket)
	// SetForgeFedTicketDependency sets the value of this property. Calling
	// IsForgeFedTicketDependency afterwards returns true.
	SetForgeFedTicketDependency(v ForgeFedTicketDependency)
	// SetIRI sets the value of this property. Calling IsIRI afterwards
	// returns true.
	SetIRI(v *url.URL)
	// SetTootEmoji sets the value of this property. Calling IsTootEmoji
	// afterwards returns true.
	SetTootEmoji(v TootEmoji)
	// SetTootIdentityProof sets the value of this property. Calling
	// IsTootIdentityProof afterwards returns true.
	SetTootIdentityProof(v TootIdentityProof)
	// SetType attempts to set the property for the arbitrary type. Returns an
	// error if it is not a valid type to set on this property.
	SetType(t Type) error
}

ActivityStreamsContextPropertyIterator represents a single value for the "context" property.

type ActivityStreamsCreate

type ActivityStreamsCreate interface {
	// GetActivityStreamsActor returns the "actor" property if it exists, and
	// nil otherwise.
	GetActivityStreamsActor() ActivityStreamsActorProperty
	// GetActivityStreamsAltitude returns the "altitude" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAltitude() ActivityStreamsAltitudeProperty
	// GetActivityStreamsAttachment returns the "attachment" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAttachment() ActivityStreamsAttachmentProperty
	// GetActivityStreamsAttributedTo returns the "attributedTo" property if
	// it exists, and nil otherwise.
	GetActivityStreamsAttributedTo() ActivityStreamsAttributedToProperty
	// GetActivityStreamsAudience returns the "audience" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAudience() ActivityStreamsAudienceProperty
	// GetActivityStreamsBcc returns the "bcc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBcc() ActivityStreamsBccProperty
	// GetActivityStreamsBto returns the "bto" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBto() ActivityStreamsBtoProperty
	// GetActivityStreamsCc returns the "cc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsCc() ActivityStreamsCcProperty
	// GetActivityStreamsContent returns the "content" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContent() ActivityStreamsContentProperty
	// GetActivityStreamsContext returns the "context" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContext() ActivityStreamsContextProperty
	// GetActivityStreamsDuration returns the "duration" property if it
	// exists, and nil otherwise.
	GetActivityStreamsDuration() ActivityStreamsDurationProperty
	// GetActivityStreamsEndTime returns the "endTime" property if it exists,
	// and nil otherwise.
	GetActivityStreamsEndTime() ActivityStreamsEndTimeProperty
	// GetActivityStreamsGenerator returns the "generator" property if it
	// exists, and nil otherwise.
	GetActivityStreamsGenerator() ActivityStreamsGeneratorProperty
	// GetActivityStreamsIcon returns the "icon" property if it exists, and
	// nil otherwise.
	GetActivityStreamsIcon() ActivityStreamsIconProperty
	// GetActivityStreamsImage returns the "image" property if it exists, and
	// nil otherwise.
	GetActivityStreamsImage() ActivityStreamsImageProperty
	// GetActivityStreamsInReplyTo returns the "inReplyTo" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInReplyTo() ActivityStreamsInReplyToProperty
	// GetActivityStreamsInstrument returns the "instrument" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInstrument() ActivityStreamsInstrumentProperty
	// GetActivityStreamsLikes returns the "likes" property if it exists, and
	// nil otherwise.
	GetActivityStreamsLikes() ActivityStreamsLikesProperty
	// GetActivityStreamsLocation returns the "location" property if it
	// exists, and nil otherwise.
	GetActivityStreamsLocation() ActivityStreamsLocationProperty
	// GetActivityStreamsMediaType returns the "mediaType" property if it
	// exists, and nil otherwise.
	GetActivityStreamsMediaType() ActivityStreamsMediaTypeProperty
	// GetActivityStreamsName returns the "name" property if it exists, and
	// nil otherwise.
	GetActivityStreamsName() ActivityStreamsNameProperty
	// GetActivityStreamsObject returns the "object" property if it exists,
	// and nil otherwise.
	GetActivityStreamsObject() ActivityStreamsObjectProperty
	// GetActivityStreamsOrigin returns the "origin" property if it exists,
	// and nil otherwise.
	GetActivityStreamsOrigin() ActivityStreamsOriginProperty
	// GetActivityStreamsPreview returns the "preview" property if it exists,
	// and nil otherwise.
	GetActivityStreamsPreview() ActivityStreamsPreviewProperty
	// GetActivityStreamsPublished returns the "published" property if it
	// exists, and nil otherwise.
	GetActivityStreamsPublished() ActivityStreamsPublishedProperty
	// GetActivityStreamsReplies returns the "replies" property if it exists,
	// and nil otherwise.
	GetActivityStreamsReplies() ActivityStreamsRepliesProperty
	// GetActivityStreamsResult returns the "result" property if it exists,
	// and nil otherwise.
	GetActivityStreamsResult() ActivityStreamsResultProperty
	// GetActivityStreamsShares returns the "shares" property if it exists,
	// and nil otherwise.
	GetActivityStreamsShares() ActivityStreamsSharesProperty
	// GetActivityStreamsSource returns the "source" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSource() ActivityStreamsSourceProperty
	// GetActivityStreamsStartTime returns the "startTime" property if it
	// exists, and nil otherwise.
	GetActivityStreamsStartTime() ActivityStreamsStartTimeProperty
	// GetActivityStreamsSummary returns the "summary" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSummary() ActivityStreamsSummaryProperty
	// GetActivityStreamsTag returns the "tag" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTag() ActivityStreamsTagProperty
	// GetActivityStreamsTarget returns the "target" property if it exists,
	// and nil otherwise.
	GetActivityStreamsTarget() ActivityStreamsTargetProperty
	// GetActivityStreamsTo returns the "to" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTo() ActivityStreamsToProperty
	// GetActivityStreamsUpdated returns the "updated" property if it exists,
	// and nil otherwise.
	GetActivityStreamsUpdated() ActivityStreamsUpdatedProperty
	// GetActivityStreamsUrl returns the "url" property if it exists, and nil
	// otherwise.
	GetActivityStreamsUrl() ActivityStreamsUrlProperty
	// GetForgeFedTeam returns the "team" property if it exists, and nil
	// otherwise.
	GetForgeFedTeam() ForgeFedTeamProperty
	// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
	// it exists, and nil otherwise.
	GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
	// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
	// it exists, and nil otherwise.
	GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
	// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
	GetJSONLDId() JSONLDIdProperty
	// GetJSONLDType returns the "type" property if it exists, and nil
	// otherwise.
	GetJSONLDType() JSONLDTypeProperty
	// GetTypeName returns the name of this type.
	GetTypeName() string
	// GetUnknownProperties returns the unknown properties for the Create
	// type. Note that this should not be used by app developers. It is
	// only used to help determine which implementation is LessThan the
	// other. Developers who are creating a different implementation of
	// this type's interface can use this method in their LessThan
	// implementation, but routine ActivityPub applications should not use
	// this to bypass the code generation tool.
	GetUnknownProperties() map[string]interface{}
	// IsExtending returns true if the Create type extends from the other type.
	IsExtending(other Type) bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this type and the specific properties that are set. The value
	// in the map is the alias used to import the type and its properties.
	JSONLDContext() map[string]string
	// LessThan computes if this Create is lesser, with an arbitrary but
	// stable determination.
	LessThan(o ActivityStreamsCreate) bool
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format.
	Serialize() (map[string]interface{}, error)
	// SetActivityStreamsActor sets the "actor" property.
	SetActivityStreamsActor(i ActivityStreamsActorProperty)
	// SetActivityStreamsAltitude sets the "altitude" property.
	SetActivityStreamsAltitude(i ActivityStreamsAltitudeProperty)
	// SetActivityStreamsAttachment sets the "attachment" property.
	SetActivityStreamsAttachment(i ActivityStreamsAttachmentProperty)
	// SetActivityStreamsAttributedTo sets the "attributedTo" property.
	SetActivityStreamsAttributedTo(i ActivityStreamsAttributedToProperty)
	// SetActivityStreamsAudience sets the "audience" property.
	SetActivityStreamsAudience(i ActivityStreamsAudienceProperty)
	// SetActivityStreamsBcc sets the "bcc" property.
	SetActivityStreamsBcc(i ActivityStreamsBccProperty)
	// SetActivityStreamsBto sets the "bto" property.
	SetActivityStreamsBto(i ActivityStreamsBtoProperty)
	// SetActivityStreamsCc sets the "cc" property.
	SetActivityStreamsCc(i ActivityStreamsCcProperty)
	// SetActivityStreamsContent sets the "content" property.
	SetActivityStreamsContent(i ActivityStreamsContentProperty)
	// SetActivityStreamsContext sets the "context" property.
	SetActivityStreamsContext(i ActivityStreamsContextProperty)
	// SetActivityStreamsDuration sets the "duration" property.
	SetActivityStreamsDuration(i ActivityStreamsDurationProperty)
	// SetActivityStreamsEndTime sets the "endTime" property.
	SetActivityStreamsEndTime(i ActivityStreamsEndTimeProperty)
	// SetActivityStreamsGenerator sets the "generator" property.
	SetActivityStreamsGenerator(i ActivityStreamsGeneratorProperty)
	// SetActivityStreamsIcon sets the "icon" property.
	SetActivityStreamsIcon(i ActivityStreamsIconProperty)
	// SetActivityStreamsImage sets the "image" property.
	SetActivityStreamsImage(i ActivityStreamsImageProperty)
	// SetActivityStreamsInReplyTo sets the "inReplyTo" property.
	SetActivityStreamsInReplyTo(i ActivityStreamsInReplyToProperty)
	// SetActivityStreamsInstrument sets the "instrument" property.
	SetActivityStreamsInstrument(i ActivityStreamsInstrumentProperty)
	// SetActivityStreamsLikes sets the "likes" property.
	SetActivityStreamsLikes(i ActivityStreamsLikesProperty)
	// SetActivityStreamsLocation sets the "location" property.
	SetActivityStreamsLocation(i ActivityStreamsLocationProperty)
	// SetActivityStreamsMediaType sets the "mediaType" property.
	SetActivityStreamsMediaType(i ActivityStreamsMediaTypeProperty)
	// SetActivityStreamsName sets the "name" property.
	SetActivityStreamsName(i ActivityStreamsNameProperty)
	// SetActivityStreamsObject sets the "object" property.
	SetActivityStreamsObject(i ActivityStreamsObjectProperty)
	// SetActivityStreamsOrigin sets the "origin" property.
	SetActivityStreamsOrigin(i ActivityStreamsOriginProperty)
	// SetActivityStreamsPreview sets the "preview" property.
	SetActivityStreamsPreview(i ActivityStreamsPreviewProperty)
	// SetActivityStreamsPublished sets the "published" property.
	SetActivityStreamsPublished(i ActivityStreamsPublishedProperty)
	// SetActivityStreamsReplies sets the "replies" property.
	SetActivityStreamsReplies(i ActivityStreamsRepliesProperty)
	// SetActivityStreamsResult sets the "result" property.
	SetActivityStreamsResult(i ActivityStreamsResultProperty)
	// SetActivityStreamsShares sets the "shares" property.
	SetActivityStreamsShares(i ActivityStreamsSharesProperty)
	// SetActivityStreamsSource sets the "source" property.
	SetActivityStreamsSource(i ActivityStreamsSourceProperty)
	// SetActivityStreamsStartTime sets the "startTime" property.
	SetActivityStreamsStartTime(i ActivityStreamsStartTimeProperty)
	// SetActivityStreamsSummary sets the "summary" property.
	SetActivityStreamsSummary(i ActivityStreamsSummaryProperty)
	// SetActivityStreamsTag sets the "tag" property.
	SetActivityStreamsTag(i ActivityStreamsTagProperty)
	// SetActivityStreamsTarget sets the "target" property.
	SetActivityStreamsTarget(i ActivityStreamsTargetProperty)
	// SetActivityStreamsTo sets the "to" property.
	SetActivityStreamsTo(i ActivityStreamsToProperty)
	// SetActivityStreamsUpdated sets the "updated" property.
	SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
	// SetActivityStreamsUrl sets the "url" property.
	SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
	// SetForgeFedTeam sets the "team" property.
	SetForgeFedTeam(i ForgeFedTeamProperty)
	// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
	SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
	// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
	SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
	// SetJSONLDId sets the "id" property.
	SetJSONLDId(i JSONLDIdProperty)
	// SetJSONLDType sets the "type" property.
	SetJSONLDType(i JSONLDTypeProperty)
	// VocabularyURI returns the vocabulary's URI as a string.
	VocabularyURI() string
}

Indicates that the actor has created the object.

Example 15 (https://www.w3.org/TR/activitystreams-vocabulary/#ex12-jsonld):

{
  "actor": {
    "name": "Sally",
    "type": "Person"
  },
  "object": {
    "content": "This is a simple note",
    "name": "A Simple Note",
    "type": "Note"
  },
  "summary": "Sally created a note",
  "type": "Create"
}

type ActivityStreamsCurrentProperty

type ActivityStreamsCurrentProperty interface {
	// Clear ensures no value of this property is set. Calling HasAny or any
	// of the 'Is' methods afterwards will return false.
	Clear()
	// GetActivityStreamsCollectionPage returns the value of this property.
	// When IsActivityStreamsCollectionPage returns false,
	// GetActivityStreamsCollectionPage will return an arbitrary value.
	GetActivityStreamsCollectionPage() ActivityStreamsCollectionPage
	// GetActivityStreamsLink returns the value of this property. When
	// IsActivityStreamsLink returns false, GetActivityStreamsLink will
	// return an arbitrary value.
	GetActivityStreamsLink() ActivityStreamsLink
	// GetActivityStreamsMention returns the value of this property. When
	// IsActivityStreamsMention returns false, GetActivityStreamsMention
	// will return an arbitrary value.
	GetActivityStreamsMention() ActivityStreamsMention
	// GetActivityStreamsOrderedCollectionPage returns the value of this
	// property. When IsActivityStreamsOrderedCollectionPage returns
	// false, GetActivityStreamsOrderedCollectionPage will return an
	// arbitrary value.
	GetActivityStreamsOrderedCollectionPage() ActivityStreamsOrderedCollectionPage
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return an arbitrary value.
	GetIRI() *url.URL
	// GetType returns the value in this property as a Type. Returns nil if
	// the value is not an ActivityStreams type, such as an IRI or another
	// value.
	GetType() Type
	// HasAny returns true if any of the different values is set.
	HasAny() bool
	// IsActivityStreamsCollectionPage returns true if this property has a
	// type of "CollectionPage". When true, use the
	// GetActivityStreamsCollectionPage and
	// SetActivityStreamsCollectionPage methods to access and set this
	// property.
	IsActivityStreamsCollectionPage() bool
	// IsActivityStreamsLink returns true if this property has a type of
	// "Link". When true, use the GetActivityStreamsLink and
	// SetActivityStreamsLink methods to access and set this property.
	IsActivityStreamsLink() bool
	// IsActivityStreamsMention returns true if this property has a type of
	// "Mention". When true, use the GetActivityStreamsMention and
	// SetActivityStreamsMention methods to access and set this property.
	IsActivityStreamsMention() bool
	// IsActivityStreamsOrderedCollectionPage returns true if this property
	// has a type of "OrderedCollectionPage". When true, use the
	// GetActivityStreamsOrderedCollectionPage and
	// SetActivityStreamsOrderedCollectionPage methods to access and set
	// this property.
	IsActivityStreamsOrderedCollectionPage() bool
	// IsIRI returns true if this property is an IRI. When true, use GetIRI
	// and SetIRI to access and set this property
	IsIRI() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsCurrentProperty) bool
	// Name returns the name of this property: "current".
	Name() string
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// SetActivityStreamsCollectionPage sets the value of this property.
	// Calling IsActivityStreamsCollectionPage afterwards returns true.
	SetActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// SetActivityStreamsLink sets the value of this property. Calling
	// IsActivityStreamsLink afterwards returns true.
	SetActivityStreamsLink(v ActivityStreamsLink)
	// SetActivityStreamsMention sets the value of this property. Calling
	// IsActivityStreamsMention afterwards returns true.
	SetActivityStreamsMention(v ActivityStreamsMention)
	// SetActivityStreamsOrderedCollectionPage sets the value of this
	// property. Calling IsActivityStreamsOrderedCollectionPage afterwards
	// returns true.
	SetActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// SetIRI sets the value of this property. Calling IsIRI afterwards
	// returns true.
	SetIRI(v *url.URL)
	// SetType attempts to set the property for the arbitrary type. Returns an
	// error if it is not a valid type to set on this property.
	SetType(t Type) error
}

In a paged Collection, indicates the page that contains the most recently updated member items.

Example 74 (https://www.w3.org/TR/activitystreams-vocabulary/#ex71-jsonld):

{
  "current": "http://example.org/collection",
  "items": [
    "http://example.org/posts/1",
    "http://example.org/posts/2",
    "http://example.org/posts/3"
  ],
  "summary": "Sally's blog posts",
  "totalItems": 3,
  "type": "Collection"
}

Example 75 (https://www.w3.org/TR/activitystreams-vocabulary/#ex72-jsonld):

{
  "current": {
    "summary": "Most Recent Items",
    "type": "owl:Class",
    "url": "http://example.org/collection"
  },
  "items": [
    "http://example.org/posts/1",
    "http://example.org/posts/2",
    "http://example.org/posts/3"
  ],
  "summary": "Sally's blog posts",
  "totalItems": 3,
  "type": "Collection"
}

type ActivityStreamsDelete

type ActivityStreamsDelete interface {
	// GetActivityStreamsActor returns the "actor" property if it exists, and
	// nil otherwise.
	GetActivityStreamsActor() ActivityStreamsActorProperty
	// GetActivityStreamsAltitude returns the "altitude" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAltitude() ActivityStreamsAltitudeProperty
	// GetActivityStreamsAttachment returns the "attachment" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAttachment() ActivityStreamsAttachmentProperty
	// GetActivityStreamsAttributedTo returns the "attributedTo" property if
	// it exists, and nil otherwise.
	GetActivityStreamsAttributedTo() ActivityStreamsAttributedToProperty
	// GetActivityStreamsAudience returns the "audience" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAudience() ActivityStreamsAudienceProperty
	// GetActivityStreamsBcc returns the "bcc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBcc() ActivityStreamsBccProperty
	// GetActivityStreamsBto returns the "bto" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBto() ActivityStreamsBtoProperty
	// GetActivityStreamsCc returns the "cc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsCc() ActivityStreamsCcProperty
	// GetActivityStreamsContent returns the "content" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContent() ActivityStreamsContentProperty
	// GetActivityStreamsContext returns the "context" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContext() ActivityStreamsContextProperty
	// GetActivityStreamsDuration returns the "duration" property if it
	// exists, and nil otherwise.
	GetActivityStreamsDuration() ActivityStreamsDurationProperty
	// GetActivityStreamsEndTime returns the "endTime" property if it exists,
	// and nil otherwise.
	GetActivityStreamsEndTime() ActivityStreamsEndTimeProperty
	// GetActivityStreamsGenerator returns the "generator" property if it
	// exists, and nil otherwise.
	GetActivityStreamsGenerator() ActivityStreamsGeneratorProperty
	// GetActivityStreamsIcon returns the "icon" property if it exists, and
	// nil otherwise.
	GetActivityStreamsIcon() ActivityStreamsIconProperty
	// GetActivityStreamsImage returns the "image" property if it exists, and
	// nil otherwise.
	GetActivityStreamsImage() ActivityStreamsImageProperty
	// GetActivityStreamsInReplyTo returns the "inReplyTo" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInReplyTo() ActivityStreamsInReplyToProperty
	// GetActivityStreamsInstrument returns the "instrument" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInstrument() ActivityStreamsInstrumentProperty
	// GetActivityStreamsLikes returns the "likes" property if it exists, and
	// nil otherwise.
	GetActivityStreamsLikes() ActivityStreamsLikesProperty
	// GetActivityStreamsLocation returns the "location" property if it
	// exists, and nil otherwise.
	GetActivityStreamsLocation() ActivityStreamsLocationProperty
	// GetActivityStreamsMediaType returns the "mediaType" property if it
	// exists, and nil otherwise.
	GetActivityStreamsMediaType() ActivityStreamsMediaTypeProperty
	// GetActivityStreamsName returns the "name" property if it exists, and
	// nil otherwise.
	GetActivityStreamsName() ActivityStreamsNameProperty
	// GetActivityStreamsObject returns the "object" property if it exists,
	// and nil otherwise.
	GetActivityStreamsObject() ActivityStreamsObjectProperty
	// GetActivityStreamsOrigin returns the "origin" property if it exists,
	// and nil otherwise.
	GetActivityStreamsOrigin() ActivityStreamsOriginProperty
	// GetActivityStreamsPreview returns the "preview" property if it exists,
	// and nil otherwise.
	GetActivityStreamsPreview() ActivityStreamsPreviewProperty
	// GetActivityStreamsPublished returns the "published" property if it
	// exists, and nil otherwise.
	GetActivityStreamsPublished() ActivityStreamsPublishedProperty
	// GetActivityStreamsReplies returns the "replies" property if it exists,
	// and nil otherwise.
	GetActivityStreamsReplies() ActivityStreamsRepliesProperty
	// GetActivityStreamsResult returns the "result" property if it exists,
	// and nil otherwise.
	GetActivityStreamsResult() ActivityStreamsResultProperty
	// GetActivityStreamsShares returns the "shares" property if it exists,
	// and nil otherwise.
	GetActivityStreamsShares() ActivityStreamsSharesProperty
	// GetActivityStreamsSource returns the "source" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSource() ActivityStreamsSourceProperty
	// GetActivityStreamsStartTime returns the "startTime" property if it
	// exists, and nil otherwise.
	GetActivityStreamsStartTime() ActivityStreamsStartTimeProperty
	// GetActivityStreamsSummary returns the "summary" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSummary() ActivityStreamsSummaryProperty
	// GetActivityStreamsTag returns the "tag" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTag() ActivityStreamsTagProperty
	// GetActivityStreamsTarget returns the "target" property if it exists,
	// and nil otherwise.
	GetActivityStreamsTarget() ActivityStreamsTargetProperty
	// GetActivityStreamsTo returns the "to" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTo() ActivityStreamsToProperty
	// GetActivityStreamsUpdated returns the "updated" property if it exists,
	// and nil otherwise.
	GetActivityStreamsUpdated() ActivityStreamsUpdatedProperty
	// GetActivityStreamsUrl returns the "url" property if it exists, and nil
	// otherwise.
	GetActivityStreamsUrl() ActivityStreamsUrlProperty
	// GetForgeFedTeam returns the "team" property if it exists, and nil
	// otherwise.
	GetForgeFedTeam() ForgeFedTeamProperty
	// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
	// it exists, and nil otherwise.
	GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
	// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
	// it exists, and nil otherwise.
	GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
	// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
	GetJSONLDId() JSONLDIdProperty
	// GetJSONLDType returns the "type" property if it exists, and nil
	// otherwise.
	GetJSONLDType() JSONLDTypeProperty
	// GetTypeName returns the name of this type.
	GetTypeName() string
	// GetUnknownProperties returns the unknown properties for the Delete
	// type. Note that this should not be used by app developers. It is
	// only used to help determine which implementation is LessThan the
	// other. Developers who are creating a different implementation of
	// this type's interface can use this method in their LessThan
	// implementation, but routine ActivityPub applications should not use
	// this to bypass the code generation tool.
	GetUnknownProperties() map[string]interface{}
	// IsExtending returns true if the Delete type extends from the other type.
	IsExtending(other Type) bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this type and the specific properties that are set. The value
	// in the map is the alias used to import the type and its properties.
	JSONLDContext() map[string]string
	// LessThan computes if this Delete is lesser, with an arbitrary but
	// stable determination.
	LessThan(o ActivityStreamsDelete) bool
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format.
	Serialize() (map[string]interface{}, error)
	// SetActivityStreamsActor sets the "actor" property.
	SetActivityStreamsActor(i ActivityStreamsActorProperty)
	// SetActivityStreamsAltitude sets the "altitude" property.
	SetActivityStreamsAltitude(i ActivityStreamsAltitudeProperty)
	// SetActivityStreamsAttachment sets the "attachment" property.
	SetActivityStreamsAttachment(i ActivityStreamsAttachmentProperty)
	// SetActivityStreamsAttributedTo sets the "attributedTo" property.
	SetActivityStreamsAttributedTo(i ActivityStreamsAttributedToProperty)
	// SetActivityStreamsAudience sets the "audience" property.
	SetActivityStreamsAudience(i ActivityStreamsAudienceProperty)
	// SetActivityStreamsBcc sets the "bcc" property.
	SetActivityStreamsBcc(i ActivityStreamsBccProperty)
	// SetActivityStreamsBto sets the "bto" property.
	SetActivityStreamsBto(i ActivityStreamsBtoProperty)
	// SetActivityStreamsCc sets the "cc" property.
	SetActivityStreamsCc(i ActivityStreamsCcProperty)
	// SetActivityStreamsContent sets the "content" property.
	SetActivityStreamsContent(i ActivityStreamsContentProperty)
	// SetActivityStreamsContext sets the "context" property.
	SetActivityStreamsContext(i ActivityStreamsContextProperty)
	// SetActivityStreamsDuration sets the "duration" property.
	SetActivityStreamsDuration(i ActivityStreamsDurationProperty)
	// SetActivityStreamsEndTime sets the "endTime" property.
	SetActivityStreamsEndTime(i ActivityStreamsEndTimeProperty)
	// SetActivityStreamsGenerator sets the "generator" property.
	SetActivityStreamsGenerator(i ActivityStreamsGeneratorProperty)
	// SetActivityStreamsIcon sets the "icon" property.
	SetActivityStreamsIcon(i ActivityStreamsIconProperty)
	// SetActivityStreamsImage sets the "image" property.
	SetActivityStreamsImage(i ActivityStreamsImageProperty)
	// SetActivityStreamsInReplyTo sets the "inReplyTo" property.
	SetActivityStreamsInReplyTo(i ActivityStreamsInReplyToProperty)
	// SetActivityStreamsInstrument sets the "instrument" property.
	SetActivityStreamsInstrument(i ActivityStreamsInstrumentProperty)
	// SetActivityStreamsLikes sets the "likes" property.
	SetActivityStreamsLikes(i ActivityStreamsLikesProperty)
	// SetActivityStreamsLocation sets the "location" property.
	SetActivityStreamsLocation(i ActivityStreamsLocationProperty)
	// SetActivityStreamsMediaType sets the "mediaType" property.
	SetActivityStreamsMediaType(i ActivityStreamsMediaTypeProperty)
	// SetActivityStreamsName sets the "name" property.
	SetActivityStreamsName(i ActivityStreamsNameProperty)
	// SetActivityStreamsObject sets the "object" property.
	SetActivityStreamsObject(i ActivityStreamsObjectProperty)
	// SetActivityStreamsOrigin sets the "origin" property.
	SetActivityStreamsOrigin(i ActivityStreamsOriginProperty)
	// SetActivityStreamsPreview sets the "preview" property.
	SetActivityStreamsPreview(i ActivityStreamsPreviewProperty)
	// SetActivityStreamsPublished sets the "published" property.
	SetActivityStreamsPublished(i ActivityStreamsPublishedProperty)
	// SetActivityStreamsReplies sets the "replies" property.
	SetActivityStreamsReplies(i ActivityStreamsRepliesProperty)
	// SetActivityStreamsResult sets the "result" property.
	SetActivityStreamsResult(i ActivityStreamsResultProperty)
	// SetActivityStreamsShares sets the "shares" property.
	SetActivityStreamsShares(i ActivityStreamsSharesProperty)
	// SetActivityStreamsSource sets the "source" property.
	SetActivityStreamsSource(i ActivityStreamsSourceProperty)
	// SetActivityStreamsStartTime sets the "startTime" property.
	SetActivityStreamsStartTime(i ActivityStreamsStartTimeProperty)
	// SetActivityStreamsSummary sets the "summary" property.
	SetActivityStreamsSummary(i ActivityStreamsSummaryProperty)
	// SetActivityStreamsTag sets the "tag" property.
	SetActivityStreamsTag(i ActivityStreamsTagProperty)
	// SetActivityStreamsTarget sets the "target" property.
	SetActivityStreamsTarget(i ActivityStreamsTargetProperty)
	// SetActivityStreamsTo sets the "to" property.
	SetActivityStreamsTo(i ActivityStreamsToProperty)
	// SetActivityStreamsUpdated sets the "updated" property.
	SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
	// SetActivityStreamsUrl sets the "url" property.
	SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
	// SetForgeFedTeam sets the "team" property.
	SetForgeFedTeam(i ForgeFedTeamProperty)
	// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
	SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
	// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
	SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
	// SetJSONLDId sets the "id" property.
	SetJSONLDId(i JSONLDIdProperty)
	// SetJSONLDType sets the "type" property.
	SetJSONLDType(i JSONLDTypeProperty)
	// VocabularyURI returns the vocabulary's URI as a string.
	VocabularyURI() string
}

Indicates that the actor has deleted the object. If specified, the origin indicates the context from which the object was deleted.

Example 16 (https://www.w3.org/TR/activitystreams-vocabulary/#ex13-jsonld):

{
  "actor": {
    "name": "Sally",
    "type": "Person"
  },
  "object": "http://example.org/notes/1",
  "origin": {
    "name": "Sally's Notes",
    "type": "Collection"
  },
  "summary": "Sally deleted a note",
  "type": "Delete"
}

type ActivityStreamsDeletedProperty

type ActivityStreamsDeletedProperty interface {
	// Clear ensures no value of this property is set. Calling
	// IsXMLSchemaDateTime afterwards will return false.
	Clear()
	// Get returns the value of this property. When IsXMLSchemaDateTime
	// returns false, Get will return any arbitrary value.
	Get() time.Time
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return any arbitrary value.
	GetIRI() *url.URL
	// HasAny returns true if the value or IRI is set.
	HasAny() bool
	// IsIRI returns true if this property is an IRI.
	IsIRI() bool
	// IsXMLSchemaDateTime returns true if this property is set and not an IRI.
	IsXMLSchemaDateTime() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsDeletedProperty) bool
	// Name returns the name of this property: "deleted".
	Name() string
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// Set sets the value of this property. Calling IsXMLSchemaDateTime
	// afterwards will return true.
	Set(v time.Time)
	// SetIRI sets the value of this property. Calling IsIRI afterwards will
	// return true.
	SetIRI(v *url.URL)
}

On a Tombstone object, the deleted property is a timestamp for when the object was deleted.

Example 143 (https://www.w3.org/TR/activitystreams-vocabulary/#ex185c-jsonld):

{
  "deleted": "2016-05-03T00:00:00Z",
  "summary": "This image has been deleted",
  "type": "Tombstone"
}

type ActivityStreamsDescribesProperty

type ActivityStreamsDescribesProperty interface {
	// Clear ensures no value of this property is set. Calling HasAny or any
	// of the 'Is' methods afterwards will return false.
	Clear()
	// GetActivityStreamsAccept returns the value of this property. When
	// IsActivityStreamsAccept returns false, GetActivityStreamsAccept
	// will return an arbitrary value.
	GetActivityStreamsAccept() ActivityStreamsAccept
	// GetActivityStreamsActivity returns the value of this property. When
	// IsActivityStreamsActivity returns false, GetActivityStreamsActivity
	// will return an arbitrary value.
	GetActivityStreamsActivity() ActivityStreamsActivity
	// GetActivityStreamsAdd returns the value of this property. When
	// IsActivityStreamsAdd returns false, GetActivityStreamsAdd will
	// return an arbitrary value.
	GetActivityStreamsAdd() ActivityStreamsAdd
	// GetActivityStreamsAnnounce returns the value of this property. When
	// IsActivityStreamsAnnounce returns false, GetActivityStreamsAnnounce
	// will return an arbitrary value.
	GetActivityStreamsAnnounce() ActivityStreamsAnnounce
	// GetActivityStreamsApplication returns the value of this property. When
	// IsActivityStreamsApplication returns false,
	// GetActivityStreamsApplication will return an arbitrary value.
	GetActivityStreamsApplication() ActivityStreamsApplication
	// GetActivityStreamsArrive returns the value of this property. When
	// IsActivityStreamsArrive returns false, GetActivityStreamsArrive
	// will return an arbitrary value.
	GetActivityStreamsArrive() ActivityStreamsArrive
	// GetActivityStreamsArticle returns the value of this property. When
	// IsActivityStreamsArticle returns false, GetActivityStreamsArticle
	// will return an arbitrary value.
	GetActivityStreamsArticle() ActivityStreamsArticle
	// GetActivityStreamsAudio returns the value of this property. When
	// IsActivityStreamsAudio returns false, GetActivityStreamsAudio will
	// return an arbitrary value.
	GetActivityStreamsAudio() ActivityStreamsAudio
	// GetActivityStreamsBlock returns the value of this property. When
	// IsActivityStreamsBlock returns false, GetActivityStreamsBlock will
	// return an arbitrary value.
	GetActivityStreamsBlock() ActivityStreamsBlock
	// GetActivityStreamsCollection returns the value of this property. When
	// IsActivityStreamsCollection returns false,
	// GetActivityStreamsCollection will return an arbitrary value.
	GetActivityStreamsCollection() ActivityStreamsCollection
	// GetActivityStreamsCollectionPage returns the value of this property.
	// When IsActivityStreamsCollectionPage returns false,
	// GetActivityStreamsCollectionPage will return an arbitrary value.
	GetActivityStreamsCollectionPage() ActivityStreamsCollectionPage
	// GetActivityStreamsCreate returns the value of this property. When
	// IsActivityStreamsCreate returns false, GetActivityStreamsCreate
	// will return an arbitrary value.
	GetActivityStreamsCreate() ActivityStreamsCreate
	// GetActivityStreamsDelete returns the value of this property. When
	// IsActivityStreamsDelete returns false, GetActivityStreamsDelete
	// will return an arbitrary value.
	GetActivityStreamsDelete() ActivityStreamsDelete
	// GetActivityStreamsDislike returns the value of this property. When
	// IsActivityStreamsDislike returns false, GetActivityStreamsDislike
	// will return an arbitrary value.
	GetActivityStreamsDislike() ActivityStreamsDislike
	// GetActivityStreamsDocument returns the value of this property. When
	// IsActivityStreamsDocument returns false, GetActivityStreamsDocument
	// will return an arbitrary value.
	GetActivityStreamsDocument() ActivityStreamsDocument
	// GetActivityStreamsEvent returns the value of this property. When
	// IsActivityStreamsEvent returns false, GetActivityStreamsEvent will
	// return an arbitrary value.
	GetActivityStreamsEvent() ActivityStreamsEvent
	// GetActivityStreamsFlag returns the value of this property. When
	// IsActivityStreamsFlag returns false, GetActivityStreamsFlag will
	// return an arbitrary value.
	GetActivityStreamsFlag() ActivityStreamsFlag
	// GetActivityStreamsFollow returns the value of this property. When
	// IsActivityStreamsFollow returns false, GetActivityStreamsFollow
	// will return an arbitrary value.
	GetActivityStreamsFollow() ActivityStreamsFollow
	// GetActivityStreamsGroup returns the value of this property. When
	// IsActivityStreamsGroup returns false, GetActivityStreamsGroup will
	// return an arbitrary value.
	GetActivityStreamsGroup() ActivityStreamsGroup
	// GetActivityStreamsIgnore returns the value of this property. When
	// IsActivityStreamsIgnore returns false, GetActivityStreamsIgnore
	// will return an arbitrary value.
	GetActivityStreamsIgnore() ActivityStreamsIgnore
	// GetActivityStreamsImage returns the value of this property. When
	// IsActivityStreamsImage returns false, GetActivityStreamsImage will
	// return an arbitrary value.
	GetActivityStreamsImage() ActivityStreamsImage
	// GetActivityStreamsIntransitiveActivity returns the value of this
	// property. When IsActivityStreamsIntransitiveActivity returns false,
	// GetActivityStreamsIntransitiveActivity will return an arbitrary
	// value.
	GetActivityStreamsIntransitiveActivity() ActivityStreamsIntransitiveActivity
	// GetActivityStreamsInvite returns the value of this property. When
	// IsActivityStreamsInvite returns false, GetActivityStreamsInvite
	// will return an arbitrary value.
	GetActivityStreamsInvite() ActivityStreamsInvite
	// GetActivityStreamsJoin returns the value of this property. When
	// IsActivityStreamsJoin returns false, GetActivityStreamsJoin will
	// return an arbitrary value.
	GetActivityStreamsJoin() ActivityStreamsJoin
	// GetActivityStreamsLeave returns the value of this property. When
	// IsActivityStreamsLeave returns false, GetActivityStreamsLeave will
	// return an arbitrary value.
	GetActivityStreamsLeave() ActivityStreamsLeave
	// GetActivityStreamsLike returns the value of this property. When
	// IsActivityStreamsLike returns false, GetActivityStreamsLike will
	// return an arbitrary value.
	GetActivityStreamsLike() ActivityStreamsLike
	// GetActivityStreamsListen returns the value of this property. When
	// IsActivityStreamsListen returns false, GetActivityStreamsListen
	// will return an arbitrary value.
	GetActivityStreamsListen() ActivityStreamsListen
	// GetActivityStreamsMove returns the value of this property. When
	// IsActivityStreamsMove returns false, GetActivityStreamsMove will
	// return an arbitrary value.
	GetActivityStreamsMove() ActivityStreamsMove
	// GetActivityStreamsNote returns the value of this property. When
	// IsActivityStreamsNote returns false, GetActivityStreamsNote will
	// return an arbitrary value.
	GetActivityStreamsNote() ActivityStreamsNote
	// GetActivityStreamsObject returns the value of this property. When
	// IsActivityStreamsObject returns false, GetActivityStreamsObject
	// will return an arbitrary value.
	GetActivityStreamsObject() ActivityStreamsObject
	// GetActivityStreamsOffer returns the value of this property. When
	// IsActivityStreamsOffer returns false, GetActivityStreamsOffer will
	// return an arbitrary value.
	GetActivityStreamsOffer() ActivityStreamsOffer
	// GetActivityStreamsOrderedCollection returns the value of this property.
	// When IsActivityStreamsOrderedCollection returns false,
	// GetActivityStreamsOrderedCollection will return an arbitrary value.
	GetActivityStreamsOrderedCollection() ActivityStreamsOrderedCollection
	// GetActivityStreamsOrderedCollectionPage returns the value of this
	// property. When IsActivityStreamsOrderedCollectionPage returns
	// false, GetActivityStreamsOrderedCollectionPage will return an
	// arbitrary value.
	GetActivityStreamsOrderedCollectionPage() ActivityStreamsOrderedCollectionPage
	// GetActivityStreamsOrganization returns the value of this property. When
	// IsActivityStreamsOrganization returns false,
	// GetActivityStreamsOrganization will return an arbitrary value.
	GetActivityStreamsOrganization() ActivityStreamsOrganization
	// GetActivityStreamsPage returns the value of this property. When
	// IsActivityStreamsPage returns false, GetActivityStreamsPage will
	// return an arbitrary value.
	GetActivityStreamsPage() ActivityStreamsPage
	// GetActivityStreamsPerson returns the value of this property. When
	// IsActivityStreamsPerson returns false, GetActivityStreamsPerson
	// will return an arbitrary value.
	GetActivityStreamsPerson() ActivityStreamsPerson
	// GetActivityStreamsPlace returns the value of this property. When
	// IsActivityStreamsPlace returns false, GetActivityStreamsPlace will
	// return an arbitrary value.
	GetActivityStreamsPlace() ActivityStreamsPlace
	// GetActivityStreamsProfile returns the value of this property. When
	// IsActivityStreamsProfile returns false, GetActivityStreamsProfile
	// will return an arbitrary value.
	GetActivityStreamsProfile() ActivityStreamsProfile
	// GetActivityStreamsQuestion returns the value of this property. When
	// IsActivityStreamsQuestion returns false, GetActivityStreamsQuestion
	// will return an arbitrary value.
	GetActivityStreamsQuestion() ActivityStreamsQuestion
	// GetActivityStreamsRead returns the value of this property. When
	// IsActivityStreamsRead returns false, GetActivityStreamsRead will
	// return an arbitrary value.
	GetActivityStreamsRead() ActivityStreamsRead
	// GetActivityStreamsReject returns the value of this property. When
	// IsActivityStreamsReject returns false, GetActivityStreamsReject
	// will return an arbitrary value.
	GetActivityStreamsReject() ActivityStreamsReject
	// GetActivityStreamsRelationship returns the value of this property. When
	// IsActivityStreamsRelationship returns false,
	// GetActivityStreamsRelationship will return an arbitrary value.
	GetActivityStreamsRelationship() ActivityStreamsRelationship
	// GetActivityStreamsRemove returns the value of this property. When
	// IsActivityStreamsRemove returns false, GetActivityStreamsRemove
	// will return an arbitrary value.
	GetActivityStreamsRemove() ActivityStreamsRemove
	// GetActivityStreamsService returns the value of this property. When
	// IsActivityStreamsService returns false, GetActivityStreamsService
	// will return an arbitrary value.
	GetActivityStreamsService() ActivityStreamsService
	// GetActivityStreamsTentativeAccept returns the value of this property.
	// When IsActivityStreamsTentativeAccept returns false,
	// GetActivityStreamsTentativeAccept will return an arbitrary value.
	GetActivityStreamsTentativeAccept() ActivityStreamsTentativeAccept
	// GetActivityStreamsTentativeReject returns the value of this property.
	// When IsActivityStreamsTentativeReject returns false,
	// GetActivityStreamsTentativeReject will return an arbitrary value.
	GetActivityStreamsTentativeReject() ActivityStreamsTentativeReject
	// GetActivityStreamsTombstone returns the value of this property. When
	// IsActivityStreamsTombstone returns false,
	// GetActivityStreamsTombstone will return an arbitrary value.
	GetActivityStreamsTombstone() ActivityStreamsTombstone
	// GetActivityStreamsTravel returns the value of this property. When
	// IsActivityStreamsTravel returns false, GetActivityStreamsTravel
	// will return an arbitrary value.
	GetActivityStreamsTravel() ActivityStreamsTravel
	// GetActivityStreamsUndo returns the value of this property. When
	// IsActivityStreamsUndo returns false, GetActivityStreamsUndo will
	// return an arbitrary value.
	GetActivityStreamsUndo() ActivityStreamsUndo
	// GetActivityStreamsUpdate returns the value of this property. When
	// IsActivityStreamsUpdate returns false, GetActivityStreamsUpdate
	// will return an arbitrary value.
	GetActivityStreamsUpdate() ActivityStreamsUpdate
	// GetActivityStreamsVideo returns the value of this property. When
	// IsActivityStreamsVideo returns false, GetActivityStreamsVideo will
	// return an arbitrary value.
	GetActivityStreamsVideo() ActivityStreamsVideo
	// GetActivityStreamsView returns the value of this property. When
	// IsActivityStreamsView returns false, GetActivityStreamsView will
	// return an arbitrary value.
	GetActivityStreamsView() ActivityStreamsView
	// GetForgeFedBranch returns the value of this property. When
	// IsForgeFedBranch returns false, GetForgeFedBranch will return an
	// arbitrary value.
	GetForgeFedBranch() ForgeFedBranch
	// GetForgeFedCommit returns the value of this property. When
	// IsForgeFedCommit returns false, GetForgeFedCommit will return an
	// arbitrary value.
	GetForgeFedCommit() ForgeFedCommit
	// GetForgeFedPush returns the value of this property. When IsForgeFedPush
	// returns false, GetForgeFedPush will return an arbitrary value.
	GetForgeFedPush() ForgeFedPush
	// GetForgeFedRepository returns the value of this property. When
	// IsForgeFedRepository returns false, GetForgeFedRepository will
	// return an arbitrary value.
	GetForgeFedRepository() ForgeFedRepository
	// GetForgeFedTicket returns the value of this property. When
	// IsForgeFedTicket returns false, GetForgeFedTicket will return an
	// arbitrary value.
	GetForgeFedTicket() ForgeFedTicket
	// GetForgeFedTicketDependency returns the value of this property. When
	// IsForgeFedTicketDependency returns false,
	// GetForgeFedTicketDependency will return an arbitrary value.
	GetForgeFedTicketDependency() ForgeFedTicketDependency
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return an arbitrary value.
	GetIRI() *url.URL
	// GetTootEmoji returns the value of this property. When IsTootEmoji
	// returns false, GetTootEmoji will return an arbitrary value.
	GetTootEmoji() TootEmoji
	// GetTootIdentityProof returns the value of this property. When
	// IsTootIdentityProof returns false, GetTootIdentityProof will return
	// an arbitrary value.
	GetTootIdentityProof() TootIdentityProof
	// GetType returns the value in this property as a Type. Returns nil if
	// the value is not an ActivityStreams type, such as an IRI or another
	// value.
	GetType() Type
	// HasAny returns true if any of the different values is set.
	HasAny() bool
	// IsActivityStreamsAccept returns true if this property has a type of
	// "Accept". When true, use the GetActivityStreamsAccept and
	// SetActivityStreamsAccept methods to access and set this property.
	IsActivityStreamsAccept() bool
	// IsActivityStreamsActivity returns true if this property has a type of
	// "Activity". When true, use the GetActivityStreamsActivity and
	// SetActivityStreamsActivity methods to access and set this property.
	IsActivityStreamsActivity() bool
	// IsActivityStreamsAdd returns true if this property has a type of "Add".
	// When true, use the GetActivityStreamsAdd and SetActivityStreamsAdd
	// methods to access and set this property.
	IsActivityStreamsAdd() bool
	// IsActivityStreamsAnnounce returns true if this property has a type of
	// "Announce". When true, use the GetActivityStreamsAnnounce and
	// SetActivityStreamsAnnounce methods to access and set this property.
	IsActivityStreamsAnnounce() bool
	// IsActivityStreamsApplication returns true if this property has a type
	// of "Application". When true, use the GetActivityStreamsApplication
	// and SetActivityStreamsApplication methods to access and set this
	// property.
	IsActivityStreamsApplication() bool
	// IsActivityStreamsArrive returns true if this property has a type of
	// "Arrive". When true, use the GetActivityStreamsArrive and
	// SetActivityStreamsArrive methods to access and set this property.
	IsActivityStreamsArrive() bool
	// IsActivityStreamsArticle returns true if this property has a type of
	// "Article". When true, use the GetActivityStreamsArticle and
	// SetActivityStreamsArticle methods to access and set this property.
	IsActivityStreamsArticle() bool
	// IsActivityStreamsAudio returns true if this property has a type of
	// "Audio". When true, use the GetActivityStreamsAudio and
	// SetActivityStreamsAudio methods to access and set this property.
	IsActivityStreamsAudio() bool
	// IsActivityStreamsBlock returns true if this property has a type of
	// "Block". When true, use the GetActivityStreamsBlock and
	// SetActivityStreamsBlock methods to access and set this property.
	IsActivityStreamsBlock() bool
	// IsActivityStreamsCollection returns true if this property has a type of
	// "Collection". When true, use the GetActivityStreamsCollection and
	// SetActivityStreamsCollection methods to access and set this
	// property.
	IsActivityStreamsCollection() bool
	// IsActivityStreamsCollectionPage returns true if this property has a
	// type of "CollectionPage". When true, use the
	// GetActivityStreamsCollectionPage and
	// SetActivityStreamsCollectionPage methods to access and set this
	// property.
	IsActivityStreamsCollectionPage() bool
	// IsActivityStreamsCreate returns true if this property has a type of
	// "Create". When true, use the GetActivityStreamsCreate and
	// SetActivityStreamsCreate methods to access and set this property.
	IsActivityStreamsCreate() bool
	// IsActivityStreamsDelete returns true if this property has a type of
	// "Delete". When true, use the GetActivityStreamsDelete and
	// SetActivityStreamsDelete methods to access and set this property.
	IsActivityStreamsDelete() bool
	// IsActivityStreamsDislike returns true if this property has a type of
	// "Dislike". When true, use the GetActivityStreamsDislike and
	// SetActivityStreamsDislike methods to access and set this property.
	IsActivityStreamsDislike() bool
	// IsActivityStreamsDocument returns true if this property has a type of
	// "Document". When true, use the GetActivityStreamsDocument and
	// SetActivityStreamsDocument methods to access and set this property.
	IsActivityStreamsDocument() bool
	// IsActivityStreamsEvent returns true if this property has a type of
	// "Event". When true, use the GetActivityStreamsEvent and
	// SetActivityStreamsEvent methods to access and set this property.
	IsActivityStreamsEvent() bool
	// IsActivityStreamsFlag returns true if this property has a type of
	// "Flag". When true, use the GetActivityStreamsFlag and
	// SetActivityStreamsFlag methods to access and set this property.
	IsActivityStreamsFlag() bool
	// IsActivityStreamsFollow returns true if this property has a type of
	// "Follow". When true, use the GetActivityStreamsFollow and
	// SetActivityStreamsFollow methods to access and set this property.
	IsActivityStreamsFollow() bool
	// IsActivityStreamsGroup returns true if this property has a type of
	// "Group". When true, use the GetActivityStreamsGroup and
	// SetActivityStreamsGroup methods to access and set this property.
	IsActivityStreamsGroup() bool
	// IsActivityStreamsIgnore returns true if this property has a type of
	// "Ignore". When true, use the GetActivityStreamsIgnore and
	// SetActivityStreamsIgnore methods to access and set this property.
	IsActivityStreamsIgnore() bool
	// IsActivityStreamsImage returns true if this property has a type of
	// "Image". When true, use the GetActivityStreamsImage and
	// SetActivityStreamsImage methods to access and set this property.
	IsActivityStreamsImage() bool
	// IsActivityStreamsIntransitiveActivity returns true if this property has
	// a type of "IntransitiveActivity". When true, use the
	// GetActivityStreamsIntransitiveActivity and
	// SetActivityStreamsIntransitiveActivity methods to access and set
	// this property.
	IsActivityStreamsIntransitiveActivity() bool
	// IsActivityStreamsInvite returns true if this property has a type of
	// "Invite". When true, use the GetActivityStreamsInvite and
	// SetActivityStreamsInvite methods to access and set this property.
	IsActivityStreamsInvite() bool
	// IsActivityStreamsJoin returns true if this property has a type of
	// "Join". When true, use the GetActivityStreamsJoin and
	// SetActivityStreamsJoin methods to access and set this property.
	IsActivityStreamsJoin() bool
	// IsActivityStreamsLeave returns true if this property has a type of
	// "Leave". When true, use the GetActivityStreamsLeave and
	// SetActivityStreamsLeave methods to access and set this property.
	IsActivityStreamsLeave() bool
	// IsActivityStreamsLike returns true if this property has a type of
	// "Like". When true, use the GetActivityStreamsLike and
	// SetActivityStreamsLike methods to access and set this property.
	IsActivityStreamsLike() bool
	// IsActivityStreamsListen returns true if this property has a type of
	// "Listen". When true, use the GetActivityStreamsListen and
	// SetActivityStreamsListen methods to access and set this property.
	IsActivityStreamsListen() bool
	// IsActivityStreamsMove returns true if this property has a type of
	// "Move". When true, use the GetActivityStreamsMove and
	// SetActivityStreamsMove methods to access and set this property.
	IsActivityStreamsMove() bool
	// IsActivityStreamsNote returns true if this property has a type of
	// "Note". When true, use the GetActivityStreamsNote and
	// SetActivityStreamsNote methods to access and set this property.
	IsActivityStreamsNote() bool
	// IsActivityStreamsObject returns true if this property has a type of
	// "Object". When true, use the GetActivityStreamsObject and
	// SetActivityStreamsObject methods to access and set this property.
	IsActivityStreamsObject() bool
	// IsActivityStreamsOffer returns true if this property has a type of
	// "Offer". When true, use the GetActivityStreamsOffer and
	// SetActivityStreamsOffer methods to access and set this property.
	IsActivityStreamsOffer() bool
	// IsActivityStreamsOrderedCollection returns true if this property has a
	// type of "OrderedCollection". When true, use the
	// GetActivityStreamsOrderedCollection and
	// SetActivityStreamsOrderedCollection methods to access and set this
	// property.
	IsActivityStreamsOrderedCollection() bool
	// IsActivityStreamsOrderedCollectionPage returns true if this property
	// has a type of "OrderedCollectionPage". When true, use the
	// GetActivityStreamsOrderedCollectionPage and
	// SetActivityStreamsOrderedCollectionPage methods to access and set
	// this property.
	IsActivityStreamsOrderedCollectionPage() bool
	// IsActivityStreamsOrganization returns true if this property has a type
	// of "Organization". When true, use the
	// GetActivityStreamsOrganization and SetActivityStreamsOrganization
	// methods to access and set this property.
	IsActivityStreamsOrganization() bool
	// IsActivityStreamsPage returns true if this property has a type of
	// "Page". When true, use the GetActivityStreamsPage and
	// SetActivityStreamsPage methods to access and set this property.
	IsActivityStreamsPage() bool
	// IsActivityStreamsPerson returns true if this property has a type of
	// "Person". When true, use the GetActivityStreamsPerson and
	// SetActivityStreamsPerson methods to access and set this property.
	IsActivityStreamsPerson() bool
	// IsActivityStreamsPlace returns true if this property has a type of
	// "Place". When true, use the GetActivityStreamsPlace and
	// SetActivityStreamsPlace methods to access and set this property.
	IsActivityStreamsPlace() bool
	// IsActivityStreamsProfile returns true if this property has a type of
	// "Profile". When true, use the GetActivityStreamsProfile and
	// SetActivityStreamsProfile methods to access and set this property.
	IsActivityStreamsProfile() bool
	// IsActivityStreamsQuestion returns true if this property has a type of
	// "Question". When true, use the GetActivityStreamsQuestion and
	// SetActivityStreamsQuestion methods to access and set this property.
	IsActivityStreamsQuestion() bool
	// IsActivityStreamsRead returns true if this property has a type of
	// "Read". When true, use the GetActivityStreamsRead and
	// SetActivityStreamsRead methods to access and set this property.
	IsActivityStreamsRead() bool
	// IsActivityStreamsReject returns true if this property has a type of
	// "Reject". When true, use the GetActivityStreamsReject and
	// SetActivityStreamsReject methods to access and set this property.
	IsActivityStreamsReject() bool
	// IsActivityStreamsRelationship returns true if this property has a type
	// of "Relationship". When true, use the
	// GetActivityStreamsRelationship and SetActivityStreamsRelationship
	// methods to access and set this property.
	IsActivityStreamsRelationship() bool
	// IsActivityStreamsRemove returns true if this property has a type of
	// "Remove". When true, use the GetActivityStreamsRemove and
	// SetActivityStreamsRemove methods to access and set this property.
	IsActivityStreamsRemove() bool
	// IsActivityStreamsService returns true if this property has a type of
	// "Service". When true, use the GetActivityStreamsService and
	// SetActivityStreamsService methods to access and set this property.
	IsActivityStreamsService() bool
	// IsActivityStreamsTentativeAccept returns true if this property has a
	// type of "TentativeAccept". When true, use the
	// GetActivityStreamsTentativeAccept and
	// SetActivityStreamsTentativeAccept methods to access and set this
	// property.
	IsActivityStreamsTentativeAccept() bool
	// IsActivityStreamsTentativeReject returns true if this property has a
	// type of "TentativeReject". When true, use the
	// GetActivityStreamsTentativeReject and
	// SetActivityStreamsTentativeReject methods to access and set this
	// property.
	IsActivityStreamsTentativeReject() bool
	// IsActivityStreamsTombstone returns true if this property has a type of
	// "Tombstone". When true, use the GetActivityStreamsTombstone and
	// SetActivityStreamsTombstone methods to access and set this property.
	IsActivityStreamsTombstone() bool
	// IsActivityStreamsTravel returns true if this property has a type of
	// "Travel". When true, use the GetActivityStreamsTravel and
	// SetActivityStreamsTravel methods to access and set this property.
	IsActivityStreamsTravel() bool
	// IsActivityStreamsUndo returns true if this property has a type of
	// "Undo". When true, use the GetActivityStreamsUndo and
	// SetActivityStreamsUndo methods to access and set this property.
	IsActivityStreamsUndo() bool
	// IsActivityStreamsUpdate returns true if this property has a type of
	// "Update". When true, use the GetActivityStreamsUpdate and
	// SetActivityStreamsUpdate methods to access and set this property.
	IsActivityStreamsUpdate() bool
	// IsActivityStreamsVideo returns true if this property has a type of
	// "Video". When true, use the GetActivityStreamsVideo and
	// SetActivityStreamsVideo methods to access and set this property.
	IsActivityStreamsVideo() bool
	// IsActivityStreamsView returns true if this property has a type of
	// "View". When true, use the GetActivityStreamsView and
	// SetActivityStreamsView methods to access and set this property.
	IsActivityStreamsView() bool
	// IsForgeFedBranch returns true if this property has a type of "Branch".
	// When true, use the GetForgeFedBranch and SetForgeFedBranch methods
	// to access and set this property.
	IsForgeFedBranch() bool
	// IsForgeFedCommit returns true if this property has a type of "Commit".
	// When true, use the GetForgeFedCommit and SetForgeFedCommit methods
	// to access and set this property.
	IsForgeFedCommit() bool
	// IsForgeFedPush returns true if this property has a type of "Push". When
	// true, use the GetForgeFedPush and SetForgeFedPush methods to access
	// and set this property.
	IsForgeFedPush() bool
	// IsForgeFedRepository returns true if this property has a type of
	// "Repository". When true, use the GetForgeFedRepository and
	// SetForgeFedRepository methods to access and set this property.
	IsForgeFedRepository() bool
	// IsForgeFedTicket returns true if this property has a type of "Ticket".
	// When true, use the GetForgeFedTicket and SetForgeFedTicket methods
	// to access and set this property.
	IsForgeFedTicket() bool
	// IsForgeFedTicketDependency returns true if this property has a type of
	// "TicketDependency". When true, use the GetForgeFedTicketDependency
	// and SetForgeFedTicketDependency methods to access and set this
	// property.
	IsForgeFedTicketDependency() bool
	// IsIRI returns true if this property is an IRI. When true, use GetIRI
	// and SetIRI to access and set this property
	IsIRI() bool
	// IsTootEmoji returns true if this property has a type of "Emoji". When
	// true, use the GetTootEmoji and SetTootEmoji methods to access and
	// set this property.
	IsTootEmoji() bool
	// IsTootIdentityProof returns true if this property has a type of
	// "IdentityProof". When true, use the GetTootIdentityProof and
	// SetTootIdentityProof methods to access and set this property.
	IsTootIdentityProof() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsDescribesProperty) bool
	// Name returns the name of this property: "describes".
	Name() string
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// SetActivityStreamsAccept sets the value of this property. Calling
	// IsActivityStreamsAccept afterwards returns true.
	SetActivityStreamsAccept(v ActivityStreamsAccept)
	// SetActivityStreamsActivity sets the value of this property. Calling
	// IsActivityStreamsActivity afterwards returns true.
	SetActivityStreamsActivity(v ActivityStreamsActivity)
	// SetActivityStreamsAdd sets the value of this property. Calling
	// IsActivityStreamsAdd afterwards returns true.
	SetActivityStreamsAdd(v ActivityStreamsAdd)
	// SetActivityStreamsAnnounce sets the value of this property. Calling
	// IsActivityStreamsAnnounce afterwards returns true.
	SetActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// SetActivityStreamsApplication sets the value of this property. Calling
	// IsActivityStreamsApplication afterwards returns true.
	SetActivityStreamsApplication(v ActivityStreamsApplication)
	// SetActivityStreamsArrive sets the value of this property. Calling
	// IsActivityStreamsArrive afterwards returns true.
	SetActivityStreamsArrive(v ActivityStreamsArrive)
	// SetActivityStreamsArticle sets the value of this property. Calling
	// IsActivityStreamsArticle afterwards returns true.
	SetActivityStreamsArticle(v ActivityStreamsArticle)
	// SetActivityStreamsAudio sets the value of this property. Calling
	// IsActivityStreamsAudio afterwards returns true.
	SetActivityStreamsAudio(v ActivityStreamsAudio)
	// SetActivityStreamsBlock sets the value of this property. Calling
	// IsActivityStreamsBlock afterwards returns true.
	SetActivityStreamsBlock(v ActivityStreamsBlock)
	// SetActivityStreamsCollection sets the value of this property. Calling
	// IsActivityStreamsCollection afterwards returns true.
	SetActivityStreamsCollection(v ActivityStreamsCollection)
	// SetActivityStreamsCollectionPage sets the value of this property.
	// Calling IsActivityStreamsCollectionPage afterwards returns true.
	SetActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// SetActivityStreamsCreate sets the value of this property. Calling
	// IsActivityStreamsCreate afterwards returns true.
	SetActivityStreamsCreate(v ActivityStreamsCreate)
	// SetActivityStreamsDelete sets the value of this property. Calling
	// IsActivityStreamsDelete afterwards returns true.
	SetActivityStreamsDelete(v ActivityStreamsDelete)
	// SetActivityStreamsDislike sets the value of this property. Calling
	// IsActivityStreamsDislike afterwards returns true.
	SetActivityStreamsDislike(v ActivityStreamsDislike)
	// SetActivityStreamsDocument sets the value of this property. Calling
	// IsActivityStreamsDocument afterwards returns true.
	SetActivityStreamsDocument(v ActivityStreamsDocument)
	// SetActivityStreamsEvent sets the value of this property. Calling
	// IsActivityStreamsEvent afterwards returns true.
	SetActivityStreamsEvent(v ActivityStreamsEvent)
	// SetActivityStreamsFlag sets the value of this property. Calling
	// IsActivityStreamsFlag afterwards returns true.
	SetActivityStreamsFlag(v ActivityStreamsFlag)
	// SetActivityStreamsFollow sets the value of this property. Calling
	// IsActivityStreamsFollow afterwards returns true.
	SetActivityStreamsFollow(v ActivityStreamsFollow)
	// SetActivityStreamsGroup sets the value of this property. Calling
	// IsActivityStreamsGroup afterwards returns true.
	SetActivityStreamsGroup(v ActivityStreamsGroup)
	// SetActivityStreamsIgnore sets the value of this property. Calling
	// IsActivityStreamsIgnore afterwards returns true.
	SetActivityStreamsIgnore(v ActivityStreamsIgnore)
	// SetActivityStreamsImage sets the value of this property. Calling
	// IsActivityStreamsImage afterwards returns true.
	SetActivityStreamsImage(v ActivityStreamsImage)
	// SetActivityStreamsIntransitiveActivity sets the value of this property.
	// Calling IsActivityStreamsIntransitiveActivity afterwards returns
	// true.
	SetActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// SetActivityStreamsInvite sets the value of this property. Calling
	// IsActivityStreamsInvite afterwards returns true.
	SetActivityStreamsInvite(v ActivityStreamsInvite)
	// SetActivityStreamsJoin sets the value of this property. Calling
	// IsActivityStreamsJoin afterwards returns true.
	SetActivityStreamsJoin(v ActivityStreamsJoin)
	// SetActivityStreamsLeave sets the value of this property. Calling
	// IsActivityStreamsLeave afterwards returns true.
	SetActivityStreamsLeave(v ActivityStreamsLeave)
	// SetActivityStreamsLike sets the value of this property. Calling
	// IsActivityStreamsLike afterwards returns true.
	SetActivityStreamsLike(v ActivityStreamsLike)
	// SetActivityStreamsListen sets the value of this property. Calling
	// IsActivityStreamsListen afterwards returns true.
	SetActivityStreamsListen(v ActivityStreamsListen)
	// SetActivityStreamsMove sets the value of this property. Calling
	// IsActivityStreamsMove afterwards returns true.
	SetActivityStreamsMove(v ActivityStreamsMove)
	// SetActivityStreamsNote sets the value of this property. Calling
	// IsActivityStreamsNote afterwards returns true.
	SetActivityStreamsNote(v ActivityStreamsNote)
	// SetActivityStreamsObject sets the value of this property. Calling
	// IsActivityStreamsObject afterwards returns true.
	SetActivityStreamsObject(v ActivityStreamsObject)
	// SetActivityStreamsOffer sets the value of this property. Calling
	// IsActivityStreamsOffer afterwards returns true.
	SetActivityStreamsOffer(v ActivityStreamsOffer)
	// SetActivityStreamsOrderedCollection sets the value of this property.
	// Calling IsActivityStreamsOrderedCollection afterwards returns true.
	SetActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// SetActivityStreamsOrderedCollectionPage sets the value of this
	// property. Calling IsActivityStreamsOrderedCollectionPage afterwards
	// returns true.
	SetActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// SetActivityStreamsOrganization sets the value of this property. Calling
	// IsActivityStreamsOrganization afterwards returns true.
	SetActivityStreamsOrganization(v ActivityStreamsOrganization)
	// SetActivityStreamsPage sets the value of this property. Calling
	// IsActivityStreamsPage afterwards returns true.
	SetActivityStreamsPage(v ActivityStreamsPage)
	// SetActivityStreamsPerson sets the value of this property. Calling
	// IsActivityStreamsPerson afterwards returns true.
	SetActivityStreamsPerson(v ActivityStreamsPerson)
	// SetActivityStreamsPlace sets the value of this property. Calling
	// IsActivityStreamsPlace afterwards returns true.
	SetActivityStreamsPlace(v ActivityStreamsPlace)
	// SetActivityStreamsProfile sets the value of this property. Calling
	// IsActivityStreamsProfile afterwards returns true.
	SetActivityStreamsProfile(v ActivityStreamsProfile)
	// SetActivityStreamsQuestion sets the value of this property. Calling
	// IsActivityStreamsQuestion afterwards returns true.
	SetActivityStreamsQuestion(v ActivityStreamsQuestion)
	// SetActivityStreamsRead sets the value of this property. Calling
	// IsActivityStreamsRead afterwards returns true.
	SetActivityStreamsRead(v ActivityStreamsRead)
	// SetActivityStreamsReject sets the value of this property. Calling
	// IsActivityStreamsReject afterwards returns true.
	SetActivityStreamsReject(v ActivityStreamsReject)
	// SetActivityStreamsRelationship sets the value of this property. Calling
	// IsActivityStreamsRelationship afterwards returns true.
	SetActivityStreamsRelationship(v ActivityStreamsRelationship)
	// SetActivityStreamsRemove sets the value of this property. Calling
	// IsActivityStreamsRemove afterwards returns true.
	SetActivityStreamsRemove(v ActivityStreamsRemove)
	// SetActivityStreamsService sets the value of this property. Calling
	// IsActivityStreamsService afterwards returns true.
	SetActivityStreamsService(v ActivityStreamsService)
	// SetActivityStreamsTentativeAccept sets the value of this property.
	// Calling IsActivityStreamsTentativeAccept afterwards returns true.
	SetActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// SetActivityStreamsTentativeReject sets the value of this property.
	// Calling IsActivityStreamsTentativeReject afterwards returns true.
	SetActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// SetActivityStreamsTombstone sets the value of this property. Calling
	// IsActivityStreamsTombstone afterwards returns true.
	SetActivityStreamsTombstone(v ActivityStreamsTombstone)
	// SetActivityStreamsTravel sets the value of this property. Calling
	// IsActivityStreamsTravel afterwards returns true.
	SetActivityStreamsTravel(v ActivityStreamsTravel)
	// SetActivityStreamsUndo sets the value of this property. Calling
	// IsActivityStreamsUndo afterwards returns true.
	SetActivityStreamsUndo(v ActivityStreamsUndo)
	// SetActivityStreamsUpdate sets the value of this property. Calling
	// IsActivityStreamsUpdate afterwards returns true.
	SetActivityStreamsUpdate(v ActivityStreamsUpdate)
	// SetActivityStreamsVideo sets the value of this property. Calling
	// IsActivityStreamsVideo afterwards returns true.
	SetActivityStreamsVideo(v ActivityStreamsVideo)
	// SetActivityStreamsView sets the value of this property. Calling
	// IsActivityStreamsView afterwards returns true.
	SetActivityStreamsView(v ActivityStreamsView)
	// SetForgeFedBranch sets the value of this property. Calling
	// IsForgeFedBranch afterwards returns true.
	SetForgeFedBranch(v ForgeFedBranch)
	// SetForgeFedCommit sets the value of this property. Calling
	// IsForgeFedCommit afterwards returns true.
	SetForgeFedCommit(v ForgeFedCommit)
	// SetForgeFedPush sets the value of this property. Calling IsForgeFedPush
	// afterwards returns true.
	SetForgeFedPush(v ForgeFedPush)
	// SetForgeFedRepository sets the value of this property. Calling
	// IsForgeFedRepository afterwards returns true.
	SetForgeFedRepository(v ForgeFedRepository)
	// SetForgeFedTicket sets the value of this property. Calling
	// IsForgeFedTicket afterwards returns true.
	SetForgeFedTicket(v ForgeFedTicket)
	// SetForgeFedTicketDependency sets the value of this property. Calling
	// IsForgeFedTicketDependency afterwards returns true.
	SetForgeFedTicketDependency(v ForgeFedTicketDependency)
	// SetIRI sets the value of this property. Calling IsIRI afterwards
	// returns true.
	SetIRI(v *url.URL)
	// SetTootEmoji sets the value of this property. Calling IsTootEmoji
	// afterwards returns true.
	SetTootEmoji(v TootEmoji)
	// SetTootIdentityProof sets the value of this property. Calling
	// IsTootIdentityProof afterwards returns true.
	SetTootIdentityProof(v TootIdentityProof)
	// SetType attempts to set the property for the arbitrary type. Returns an
	// error if it is not a valid type to set on this property.
	SetType(t Type) error
}

On a Profile object, the describes property identifies the object described by the Profile.

Example 141 (https://www.w3.org/TR/activitystreams-vocabulary/#ex185-jsonld):

{
  "describes": {
    "name": "Sally",
    "type": "Person"
  },
  "summary": "Sally's profile",
  "type": "Profile",
  "url": "http://sally.example.org"
}

type ActivityStreamsDislike

type ActivityStreamsDislike interface {
	// GetActivityStreamsActor returns the "actor" property if it exists, and
	// nil otherwise.
	GetActivityStreamsActor() ActivityStreamsActorProperty
	// GetActivityStreamsAltitude returns the "altitude" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAltitude() ActivityStreamsAltitudeProperty
	// GetActivityStreamsAttachment returns the "attachment" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAttachment() ActivityStreamsAttachmentProperty
	// GetActivityStreamsAttributedTo returns the "attributedTo" property if
	// it exists, and nil otherwise.
	GetActivityStreamsAttributedTo() ActivityStreamsAttributedToProperty
	// GetActivityStreamsAudience returns the "audience" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAudience() ActivityStreamsAudienceProperty
	// GetActivityStreamsBcc returns the "bcc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBcc() ActivityStreamsBccProperty
	// GetActivityStreamsBto returns the "bto" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBto() ActivityStreamsBtoProperty
	// GetActivityStreamsCc returns the "cc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsCc() ActivityStreamsCcProperty
	// GetActivityStreamsContent returns the "content" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContent() ActivityStreamsContentProperty
	// GetActivityStreamsContext returns the "context" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContext() ActivityStreamsContextProperty
	// GetActivityStreamsDuration returns the "duration" property if it
	// exists, and nil otherwise.
	GetActivityStreamsDuration() ActivityStreamsDurationProperty
	// GetActivityStreamsEndTime returns the "endTime" property if it exists,
	// and nil otherwise.
	GetActivityStreamsEndTime() ActivityStreamsEndTimeProperty
	// GetActivityStreamsGenerator returns the "generator" property if it
	// exists, and nil otherwise.
	GetActivityStreamsGenerator() ActivityStreamsGeneratorProperty
	// GetActivityStreamsIcon returns the "icon" property if it exists, and
	// nil otherwise.
	GetActivityStreamsIcon() ActivityStreamsIconProperty
	// GetActivityStreamsImage returns the "image" property if it exists, and
	// nil otherwise.
	GetActivityStreamsImage() ActivityStreamsImageProperty
	// GetActivityStreamsInReplyTo returns the "inReplyTo" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInReplyTo() ActivityStreamsInReplyToProperty
	// GetActivityStreamsInstrument returns the "instrument" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInstrument() ActivityStreamsInstrumentProperty
	// GetActivityStreamsLikes returns the "likes" property if it exists, and
	// nil otherwise.
	GetActivityStreamsLikes() ActivityStreamsLikesProperty
	// GetActivityStreamsLocation returns the "location" property if it
	// exists, and nil otherwise.
	GetActivityStreamsLocation() ActivityStreamsLocationProperty
	// GetActivityStreamsMediaType returns the "mediaType" property if it
	// exists, and nil otherwise.
	GetActivityStreamsMediaType() ActivityStreamsMediaTypeProperty
	// GetActivityStreamsName returns the "name" property if it exists, and
	// nil otherwise.
	GetActivityStreamsName() ActivityStreamsNameProperty
	// GetActivityStreamsObject returns the "object" property if it exists,
	// and nil otherwise.
	GetActivityStreamsObject() ActivityStreamsObjectProperty
	// GetActivityStreamsOrigin returns the "origin" property if it exists,
	// and nil otherwise.
	GetActivityStreamsOrigin() ActivityStreamsOriginProperty
	// GetActivityStreamsPreview returns the "preview" property if it exists,
	// and nil otherwise.
	GetActivityStreamsPreview() ActivityStreamsPreviewProperty
	// GetActivityStreamsPublished returns the "published" property if it
	// exists, and nil otherwise.
	GetActivityStreamsPublished() ActivityStreamsPublishedProperty
	// GetActivityStreamsReplies returns the "replies" property if it exists,
	// and nil otherwise.
	GetActivityStreamsReplies() ActivityStreamsRepliesProperty
	// GetActivityStreamsResult returns the "result" property if it exists,
	// and nil otherwise.
	GetActivityStreamsResult() ActivityStreamsResultProperty
	// GetActivityStreamsShares returns the "shares" property if it exists,
	// and nil otherwise.
	GetActivityStreamsShares() ActivityStreamsSharesProperty
	// GetActivityStreamsSource returns the "source" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSource() ActivityStreamsSourceProperty
	// GetActivityStreamsStartTime returns the "startTime" property if it
	// exists, and nil otherwise.
	GetActivityStreamsStartTime() ActivityStreamsStartTimeProperty
	// GetActivityStreamsSummary returns the "summary" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSummary() ActivityStreamsSummaryProperty
	// GetActivityStreamsTag returns the "tag" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTag() ActivityStreamsTagProperty
	// GetActivityStreamsTarget returns the "target" property if it exists,
	// and nil otherwise.
	GetActivityStreamsTarget() ActivityStreamsTargetProperty
	// GetActivityStreamsTo returns the "to" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTo() ActivityStreamsToProperty
	// GetActivityStreamsUpdated returns the "updated" property if it exists,
	// and nil otherwise.
	GetActivityStreamsUpdated() ActivityStreamsUpdatedProperty
	// GetActivityStreamsUrl returns the "url" property if it exists, and nil
	// otherwise.
	GetActivityStreamsUrl() ActivityStreamsUrlProperty
	// GetForgeFedTeam returns the "team" property if it exists, and nil
	// otherwise.
	GetForgeFedTeam() ForgeFedTeamProperty
	// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
	// it exists, and nil otherwise.
	GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
	// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
	// it exists, and nil otherwise.
	GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
	// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
	GetJSONLDId() JSONLDIdProperty
	// GetJSONLDType returns the "type" property if it exists, and nil
	// otherwise.
	GetJSONLDType() JSONLDTypeProperty
	// GetTypeName returns the name of this type.
	GetTypeName() string
	// GetUnknownProperties returns the unknown properties for the Dislike
	// type. Note that this should not be used by app developers. It is
	// only used to help determine which implementation is LessThan the
	// other. Developers who are creating a different implementation of
	// this type's interface can use this method in their LessThan
	// implementation, but routine ActivityPub applications should not use
	// this to bypass the code generation tool.
	GetUnknownProperties() map[string]interface{}
	// IsExtending returns true if the Dislike type extends from the other
	// type.
	IsExtending(other Type) bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this type and the specific properties that are set. The value
	// in the map is the alias used to import the type and its properties.
	JSONLDContext() map[string]string
	// LessThan computes if this Dislike is lesser, with an arbitrary but
	// stable determination.
	LessThan(o ActivityStreamsDislike) bool
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format.
	Serialize() (map[string]interface{}, error)
	// SetActivityStreamsActor sets the "actor" property.
	SetActivityStreamsActor(i ActivityStreamsActorProperty)
	// SetActivityStreamsAltitude sets the "altitude" property.
	SetActivityStreamsAltitude(i ActivityStreamsAltitudeProperty)
	// SetActivityStreamsAttachment sets the "attachment" property.
	SetActivityStreamsAttachment(i ActivityStreamsAttachmentProperty)
	// SetActivityStreamsAttributedTo sets the "attributedTo" property.
	SetActivityStreamsAttributedTo(i ActivityStreamsAttributedToProperty)
	// SetActivityStreamsAudience sets the "audience" property.
	SetActivityStreamsAudience(i ActivityStreamsAudienceProperty)
	// SetActivityStreamsBcc sets the "bcc" property.
	SetActivityStreamsBcc(i ActivityStreamsBccProperty)
	// SetActivityStreamsBto sets the "bto" property.
	SetActivityStreamsBto(i ActivityStreamsBtoProperty)
	// SetActivityStreamsCc sets the "cc" property.
	SetActivityStreamsCc(i ActivityStreamsCcProperty)
	// SetActivityStreamsContent sets the "content" property.
	SetActivityStreamsContent(i ActivityStreamsContentProperty)
	// SetActivityStreamsContext sets the "context" property.
	SetActivityStreamsContext(i ActivityStreamsContextProperty)
	// SetActivityStreamsDuration sets the "duration" property.
	SetActivityStreamsDuration(i ActivityStreamsDurationProperty)
	// SetActivityStreamsEndTime sets the "endTime" property.
	SetActivityStreamsEndTime(i ActivityStreamsEndTimeProperty)
	// SetActivityStreamsGenerator sets the "generator" property.
	SetActivityStreamsGenerator(i ActivityStreamsGeneratorProperty)
	// SetActivityStreamsIcon sets the "icon" property.
	SetActivityStreamsIcon(i ActivityStreamsIconProperty)
	// SetActivityStreamsImage sets the "image" property.
	SetActivityStreamsImage(i ActivityStreamsImageProperty)
	// SetActivityStreamsInReplyTo sets the "inReplyTo" property.
	SetActivityStreamsInReplyTo(i ActivityStreamsInReplyToProperty)
	// SetActivityStreamsInstrument sets the "instrument" property.
	SetActivityStreamsInstrument(i ActivityStreamsInstrumentProperty)
	// SetActivityStreamsLikes sets the "likes" property.
	SetActivityStreamsLikes(i ActivityStreamsLikesProperty)
	// SetActivityStreamsLocation sets the "location" property.
	SetActivityStreamsLocation(i ActivityStreamsLocationProperty)
	// SetActivityStreamsMediaType sets the "mediaType" property.
	SetActivityStreamsMediaType(i ActivityStreamsMediaTypeProperty)
	// SetActivityStreamsName sets the "name" property.
	SetActivityStreamsName(i ActivityStreamsNameProperty)
	// SetActivityStreamsObject sets the "object" property.
	SetActivityStreamsObject(i ActivityStreamsObjectProperty)
	// SetActivityStreamsOrigin sets the "origin" property.
	SetActivityStreamsOrigin(i ActivityStreamsOriginProperty)
	// SetActivityStreamsPreview sets the "preview" property.
	SetActivityStreamsPreview(i ActivityStreamsPreviewProperty)
	// SetActivityStreamsPublished sets the "published" property.
	SetActivityStreamsPublished(i ActivityStreamsPublishedProperty)
	// SetActivityStreamsReplies sets the "replies" property.
	SetActivityStreamsReplies(i ActivityStreamsRepliesProperty)
	// SetActivityStreamsResult sets the "result" property.
	SetActivityStreamsResult(i ActivityStreamsResultProperty)
	// SetActivityStreamsShares sets the "shares" property.
	SetActivityStreamsShares(i ActivityStreamsSharesProperty)
	// SetActivityStreamsSource sets the "source" property.
	SetActivityStreamsSource(i ActivityStreamsSourceProperty)
	// SetActivityStreamsStartTime sets the "startTime" property.
	SetActivityStreamsStartTime(i ActivityStreamsStartTimeProperty)
	// SetActivityStreamsSummary sets the "summary" property.
	SetActivityStreamsSummary(i ActivityStreamsSummaryProperty)
	// SetActivityStreamsTag sets the "tag" property.
	SetActivityStreamsTag(i ActivityStreamsTagProperty)
	// SetActivityStreamsTarget sets the "target" property.
	SetActivityStreamsTarget(i ActivityStreamsTargetProperty)
	// SetActivityStreamsTo sets the "to" property.
	SetActivityStreamsTo(i ActivityStreamsToProperty)
	// SetActivityStreamsUpdated sets the "updated" property.
	SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
	// SetActivityStreamsUrl sets the "url" property.
	SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
	// SetForgeFedTeam sets the "team" property.
	SetForgeFedTeam(i ForgeFedTeamProperty)
	// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
	SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
	// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
	SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
	// SetJSONLDId sets the "id" property.
	SetJSONLDId(i JSONLDIdProperty)
	// SetJSONLDType sets the "type" property.
	SetJSONLDType(i JSONLDTypeProperty)
	// VocabularyURI returns the vocabulary's URI as a string.
	VocabularyURI() string
}

Indicates that the actor dislikes the object.

Example 39 (https://www.w3.org/TR/activitystreams-vocabulary/#ex175-jsonld):

{
  "actor": "http://sally.example.org",
  "object": "http://example.org/posts/1",
  "summary": "Sally disliked a post",
  "type": "Dislike"
}

type ActivityStreamsDocument

type ActivityStreamsDocument interface {
	// GetActivityStreamsAltitude returns the "altitude" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAltitude() ActivityStreamsAltitudeProperty
	// GetActivityStreamsAttachment returns the "attachment" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAttachment() ActivityStreamsAttachmentProperty
	// GetActivityStreamsAttributedTo returns the "attributedTo" property if
	// it exists, and nil otherwise.
	GetActivityStreamsAttributedTo() ActivityStreamsAttributedToProperty
	// GetActivityStreamsAudience returns the "audience" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAudience() ActivityStreamsAudienceProperty
	// GetActivityStreamsBcc returns the "bcc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBcc() ActivityStreamsBccProperty
	// GetActivityStreamsBto returns the "bto" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBto() ActivityStreamsBtoProperty
	// GetActivityStreamsCc returns the "cc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsCc() ActivityStreamsCcProperty
	// GetActivityStreamsContent returns the "content" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContent() ActivityStreamsContentProperty
	// GetActivityStreamsContext returns the "context" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContext() ActivityStreamsContextProperty
	// GetActivityStreamsDuration returns the "duration" property if it
	// exists, and nil otherwise.
	GetActivityStreamsDuration() ActivityStreamsDurationProperty
	// GetActivityStreamsEndTime returns the "endTime" property if it exists,
	// and nil otherwise.
	GetActivityStreamsEndTime() ActivityStreamsEndTimeProperty
	// GetActivityStreamsGenerator returns the "generator" property if it
	// exists, and nil otherwise.
	GetActivityStreamsGenerator() ActivityStreamsGeneratorProperty
	// GetActivityStreamsIcon returns the "icon" property if it exists, and
	// nil otherwise.
	GetActivityStreamsIcon() ActivityStreamsIconProperty
	// GetActivityStreamsImage returns the "image" property if it exists, and
	// nil otherwise.
	GetActivityStreamsImage() ActivityStreamsImageProperty
	// GetActivityStreamsInReplyTo returns the "inReplyTo" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInReplyTo() ActivityStreamsInReplyToProperty
	// GetActivityStreamsLikes returns the "likes" property if it exists, and
	// nil otherwise.
	GetActivityStreamsLikes() ActivityStreamsLikesProperty
	// GetActivityStreamsLocation returns the "location" property if it
	// exists, and nil otherwise.
	GetActivityStreamsLocation() ActivityStreamsLocationProperty
	// GetActivityStreamsMediaType returns the "mediaType" property if it
	// exists, and nil otherwise.
	GetActivityStreamsMediaType() ActivityStreamsMediaTypeProperty
	// GetActivityStreamsName returns the "name" property if it exists, and
	// nil otherwise.
	GetActivityStreamsName() ActivityStreamsNameProperty
	// GetActivityStreamsObject returns the "object" property if it exists,
	// and nil otherwise.
	GetActivityStreamsObject() ActivityStreamsObjectProperty
	// GetActivityStreamsPreview returns the "preview" property if it exists,
	// and nil otherwise.
	GetActivityStreamsPreview() ActivityStreamsPreviewProperty
	// GetActivityStreamsPublished returns the "published" property if it
	// exists, and nil otherwise.
	GetActivityStreamsPublished() ActivityStreamsPublishedProperty
	// GetActivityStreamsReplies returns the "replies" property if it exists,
	// and nil otherwise.
	GetActivityStreamsReplies() ActivityStreamsRepliesProperty
	// GetActivityStreamsShares returns the "shares" property if it exists,
	// and nil otherwise.
	GetActivityStreamsShares() ActivityStreamsSharesProperty
	// GetActivityStreamsSource returns the "source" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSource() ActivityStreamsSourceProperty
	// GetActivityStreamsStartTime returns the "startTime" property if it
	// exists, and nil otherwise.
	GetActivityStreamsStartTime() ActivityStreamsStartTimeProperty
	// GetActivityStreamsSummary returns the "summary" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSummary() ActivityStreamsSummaryProperty
	// GetActivityStreamsTag returns the "tag" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTag() ActivityStreamsTagProperty
	// GetActivityStreamsTo returns the "to" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTo() ActivityStreamsToProperty
	// GetActivityStreamsUpdated returns the "updated" property if it exists,
	// and nil otherwise.
	GetActivityStreamsUpdated() ActivityStreamsUpdatedProperty
	// GetActivityStreamsUrl returns the "url" property if it exists, and nil
	// otherwise.
	GetActivityStreamsUrl() ActivityStreamsUrlProperty
	// GetForgeFedTeam returns the "team" property if it exists, and nil
	// otherwise.
	GetForgeFedTeam() ForgeFedTeamProperty
	// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
	// it exists, and nil otherwise.
	GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
	// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
	// it exists, and nil otherwise.
	GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
	// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
	GetJSONLDId() JSONLDIdProperty
	// GetJSONLDType returns the "type" property if it exists, and nil
	// otherwise.
	GetJSONLDType() JSONLDTypeProperty
	// GetTootBlurhash returns the "blurhash" property if it exists, and nil
	// otherwise.
	GetTootBlurhash() TootBlurhashProperty
	// GetTypeName returns the name of this type.
	GetTypeName() string
	// GetUnknownProperties returns the unknown properties for the Document
	// type. Note that this should not be used by app developers. It is
	// only used to help determine which implementation is LessThan the
	// other. Developers who are creating a different implementation of
	// this type's interface can use this method in their LessThan
	// implementation, but routine ActivityPub applications should not use
	// this to bypass the code generation tool.
	GetUnknownProperties() map[string]interface{}
	// IsExtending returns true if the Document type extends from the other
	// type.
	IsExtending(other Type) bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this type and the specific properties that are set. The value
	// in the map is the alias used to import the type and its properties.
	JSONLDContext() map[string]string
	// LessThan computes if this Document is lesser, with an arbitrary but
	// stable determination.
	LessThan(o ActivityStreamsDocument) bool
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format.
	Serialize() (map[string]interface{}, error)
	// SetActivityStreamsAltitude sets the "altitude" property.
	SetActivityStreamsAltitude(i ActivityStreamsAltitudeProperty)
	// SetActivityStreamsAttachment sets the "attachment" property.
	SetActivityStreamsAttachment(i ActivityStreamsAttachmentProperty)
	// SetActivityStreamsAttributedTo sets the "attributedTo" property.
	SetActivityStreamsAttributedTo(i ActivityStreamsAttributedToProperty)
	// SetActivityStreamsAudience sets the "audience" property.
	SetActivityStreamsAudience(i ActivityStreamsAudienceProperty)
	// SetActivityStreamsBcc sets the "bcc" property.
	SetActivityStreamsBcc(i ActivityStreamsBccProperty)
	// SetActivityStreamsBto sets the "bto" property.
	SetActivityStreamsBto(i ActivityStreamsBtoProperty)
	// SetActivityStreamsCc sets the "cc" property.
	SetActivityStreamsCc(i ActivityStreamsCcProperty)
	// SetActivityStreamsContent sets the "content" property.
	SetActivityStreamsContent(i ActivityStreamsContentProperty)
	// SetActivityStreamsContext sets the "context" property.
	SetActivityStreamsContext(i ActivityStreamsContextProperty)
	// SetActivityStreamsDuration sets the "duration" property.
	SetActivityStreamsDuration(i ActivityStreamsDurationProperty)
	// SetActivityStreamsEndTime sets the "endTime" property.
	SetActivityStreamsEndTime(i ActivityStreamsEndTimeProperty)
	// SetActivityStreamsGenerator sets the "generator" property.
	SetActivityStreamsGenerator(i ActivityStreamsGeneratorProperty)
	// SetActivityStreamsIcon sets the "icon" property.
	SetActivityStreamsIcon(i ActivityStreamsIconProperty)
	// SetActivityStreamsImage sets the "image" property.
	SetActivityStreamsImage(i ActivityStreamsImageProperty)
	// SetActivityStreamsInReplyTo sets the "inReplyTo" property.
	SetActivityStreamsInReplyTo(i ActivityStreamsInReplyToProperty)
	// SetActivityStreamsLikes sets the "likes" property.
	SetActivityStreamsLikes(i ActivityStreamsLikesProperty)
	// SetActivityStreamsLocation sets the "location" property.
	SetActivityStreamsLocation(i ActivityStreamsLocationProperty)
	// SetActivityStreamsMediaType sets the "mediaType" property.
	SetActivityStreamsMediaType(i ActivityStreamsMediaTypeProperty)
	// SetActivityStreamsName sets the "name" property.
	SetActivityStreamsName(i ActivityStreamsNameProperty)
	// SetActivityStreamsObject sets the "object" property.
	SetActivityStreamsObject(i ActivityStreamsObjectProperty)
	// SetActivityStreamsPreview sets the "preview" property.
	SetActivityStreamsPreview(i ActivityStreamsPreviewProperty)
	// SetActivityStreamsPublished sets the "published" property.
	SetActivityStreamsPublished(i ActivityStreamsPublishedProperty)
	// SetActivityStreamsReplies sets the "replies" property.
	SetActivityStreamsReplies(i ActivityStreamsRepliesProperty)
	// SetActivityStreamsShares sets the "shares" property.
	SetActivityStreamsShares(i ActivityStreamsSharesProperty)
	// SetActivityStreamsSource sets the "source" property.
	SetActivityStreamsSource(i ActivityStreamsSourceProperty)
	// SetActivityStreamsStartTime sets the "startTime" property.
	SetActivityStreamsStartTime(i ActivityStreamsStartTimeProperty)
	// SetActivityStreamsSummary sets the "summary" property.
	SetActivityStreamsSummary(i ActivityStreamsSummaryProperty)
	// SetActivityStreamsTag sets the "tag" property.
	SetActivityStreamsTag(i ActivityStreamsTagProperty)
	// SetActivityStreamsTo sets the "to" property.
	SetActivityStreamsTo(i ActivityStreamsToProperty)
	// SetActivityStreamsUpdated sets the "updated" property.
	SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
	// SetActivityStreamsUrl sets the "url" property.
	SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
	// SetForgeFedTeam sets the "team" property.
	SetForgeFedTeam(i ForgeFedTeamProperty)
	// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
	SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
	// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
	SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
	// SetJSONLDId sets the "id" property.
	SetJSONLDId(i JSONLDIdProperty)
	// SetJSONLDType sets the "type" property.
	SetJSONLDType(i JSONLDTypeProperty)
	// SetTootBlurhash sets the "blurhash" property.
	SetTootBlurhash(i TootBlurhashProperty)
	// VocabularyURI returns the vocabulary's URI as a string.
	VocabularyURI() string
}

Represents a document of any kind.

Example 49 (https://www.w3.org/TR/activitystreams-vocabulary/#ex48-jsonld):

{
  "name": "4Q Sales Forecast",
  "type": "Document",
  "url": "http://example.org/4q-sales-forecast.pdf"
}

type ActivityStreamsDurationProperty

type ActivityStreamsDurationProperty interface {
	// Clear ensures no value of this property is set. Calling
	// IsXMLSchemaDuration afterwards will return false.
	Clear()
	// Get returns the value of this property. When IsXMLSchemaDuration
	// returns false, Get will return any arbitrary value.
	Get() time.Duration
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return any arbitrary value.
	GetIRI() *url.URL
	// HasAny returns true if the value or IRI is set.
	HasAny() bool
	// IsIRI returns true if this property is an IRI.
	IsIRI() bool
	// IsXMLSchemaDuration returns true if this property is set and not an IRI.
	IsXMLSchemaDuration() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsDurationProperty) bool
	// Name returns the name of this property: "duration".
	Name() string
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// Set sets the value of this property. Calling IsXMLSchemaDuration
	// afterwards will return true.
	Set(v time.Duration)
	// SetIRI sets the value of this property. Calling IsIRI afterwards will
	// return true.
	SetIRI(v *url.URL)
}

When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object's approximate duration. The value MUST be expressed as an xsd:duration as defined by [xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as "PT5S").

Example 119 (https://www.w3.org/TR/activitystreams-vocabulary/#ex134-jsonld):

{
  "duration": "PT2H",
  "name": "Birds Flying",
  "type": "Video",
  "url": "http://example.org/video.mkv"
}

type ActivityStreamsEndTimeProperty

type ActivityStreamsEndTimeProperty interface {
	// Clear ensures no value of this property is set. Calling
	// IsXMLSchemaDateTime afterwards will return false.
	Clear()
	// Get returns the value of this property. When IsXMLSchemaDateTime
	// returns false, Get will return any arbitrary value.
	Get() time.Time
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return any arbitrary value.
	GetIRI() *url.URL
	// HasAny returns true if the value or IRI is set.
	HasAny() bool
	// IsIRI returns true if this property is an IRI.
	IsIRI() bool
	// IsXMLSchemaDateTime returns true if this property is set and not an IRI.
	IsXMLSchemaDateTime() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsEndTimeProperty) bool
	// Name returns the name of this property: "endTime".
	Name() string
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// Set sets the value of this property. Calling IsXMLSchemaDateTime
	// afterwards will return true.
	Set(v time.Time)
	// SetIRI sets the value of this property. Calling IsIRI afterwards will
	// return true.
	SetIRI(v *url.URL)
}

The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.

Example 127 (https://www.w3.org/TR/activitystreams-vocabulary/#ex144-jsonld):

{
  "endTime": "2015-01-01T06:00:00-08:00",
  "name": "Going-Away Party for Jim",
  "startTime": "2014-12-31T23:00:00-08:00",
  "type": "Event"
}

type ActivityStreamsEvent

type ActivityStreamsEvent interface {
	// GetActivityStreamsAltitude returns the "altitude" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAltitude() ActivityStreamsAltitudeProperty
	// GetActivityStreamsAttachment returns the "attachment" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAttachment() ActivityStreamsAttachmentProperty
	// GetActivityStreamsAttributedTo returns the "attributedTo" property if
	// it exists, and nil otherwise.
	GetActivityStreamsAttributedTo() ActivityStreamsAttributedToProperty
	// GetActivityStreamsAudience returns the "audience" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAudience() ActivityStreamsAudienceProperty
	// GetActivityStreamsBcc returns the "bcc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBcc() ActivityStreamsBccProperty
	// GetActivityStreamsBto returns the "bto" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBto() ActivityStreamsBtoProperty
	// GetActivityStreamsCc returns the "cc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsCc() ActivityStreamsCcProperty
	// GetActivityStreamsContent returns the "content" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContent() ActivityStreamsContentProperty
	// GetActivityStreamsContext returns the "context" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContext() ActivityStreamsContextProperty
	// GetActivityStreamsDuration returns the "duration" property if it
	// exists, and nil otherwise.
	GetActivityStreamsDuration() ActivityStreamsDurationProperty
	// GetActivityStreamsEndTime returns the "endTime" property if it exists,
	// and nil otherwise.
	GetActivityStreamsEndTime() ActivityStreamsEndTimeProperty
	// GetActivityStreamsGenerator returns the "generator" property if it
	// exists, and nil otherwise.
	GetActivityStreamsGenerator() ActivityStreamsGeneratorProperty
	// GetActivityStreamsIcon returns the "icon" property if it exists, and
	// nil otherwise.
	GetActivityStreamsIcon() ActivityStreamsIconProperty
	// GetActivityStreamsImage returns the "image" property if it exists, and
	// nil otherwise.
	GetActivityStreamsImage() ActivityStreamsImageProperty
	// GetActivityStreamsInReplyTo returns the "inReplyTo" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInReplyTo() ActivityStreamsInReplyToProperty
	// GetActivityStreamsLikes returns the "likes" property if it exists, and
	// nil otherwise.
	GetActivityStreamsLikes() ActivityStreamsLikesProperty
	// GetActivityStreamsLocation returns the "location" property if it
	// exists, and nil otherwise.
	GetActivityStreamsLocation() ActivityStreamsLocationProperty
	// GetActivityStreamsMediaType returns the "mediaType" property if it
	// exists, and nil otherwise.
	GetActivityStreamsMediaType() ActivityStreamsMediaTypeProperty
	// GetActivityStreamsName returns the "name" property if it exists, and
	// nil otherwise.
	GetActivityStreamsName() ActivityStreamsNameProperty
	// GetActivityStreamsObject returns the "object" property if it exists,
	// and nil otherwise.
	GetActivityStreamsObject() ActivityStreamsObjectProperty
	// GetActivityStreamsPreview returns the "preview" property if it exists,
	// and nil otherwise.
	GetActivityStreamsPreview() ActivityStreamsPreviewProperty
	// GetActivityStreamsPublished returns the "published" property if it
	// exists, and nil otherwise.
	GetActivityStreamsPublished() ActivityStreamsPublishedProperty
	// GetActivityStreamsReplies returns the "replies" property if it exists,
	// and nil otherwise.
	GetActivityStreamsReplies() ActivityStreamsRepliesProperty
	// GetActivityStreamsShares returns the "shares" property if it exists,
	// and nil otherwise.
	GetActivityStreamsShares() ActivityStreamsSharesProperty
	// GetActivityStreamsSource returns the "source" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSource() ActivityStreamsSourceProperty
	// GetActivityStreamsStartTime returns the "startTime" property if it
	// exists, and nil otherwise.
	GetActivityStreamsStartTime() ActivityStreamsStartTimeProperty
	// GetActivityStreamsSummary returns the "summary" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSummary() ActivityStreamsSummaryProperty
	// GetActivityStreamsTag returns the "tag" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTag() ActivityStreamsTagProperty
	// GetActivityStreamsTo returns the "to" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTo() ActivityStreamsToProperty
	// GetActivityStreamsUpdated returns the "updated" property if it exists,
	// and nil otherwise.
	GetActivityStreamsUpdated() ActivityStreamsUpdatedProperty
	// GetActivityStreamsUrl returns the "url" property if it exists, and nil
	// otherwise.
	GetActivityStreamsUrl() ActivityStreamsUrlProperty
	// GetForgeFedTeam returns the "team" property if it exists, and nil
	// otherwise.
	GetForgeFedTeam() ForgeFedTeamProperty
	// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
	// it exists, and nil otherwise.
	GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
	// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
	// it exists, and nil otherwise.
	GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
	// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
	GetJSONLDId() JSONLDIdProperty
	// GetJSONLDType returns the "type" property if it exists, and nil
	// otherwise.
	GetJSONLDType() JSONLDTypeProperty
	// GetTypeName returns the name of this type.
	GetTypeName() string
	// GetUnknownProperties returns the unknown properties for the Event type.
	// Note that this should not be used by app developers. It is only
	// used to help determine which implementation is LessThan the other.
	// Developers who are creating a different implementation of this
	// type's interface can use this method in their LessThan
	// implementation, but routine ActivityPub applications should not use
	// this to bypass the code generation tool.
	GetUnknownProperties() map[string]interface{}
	// IsExtending returns true if the Event type extends from the other type.
	IsExtending(other Type) bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this type and the specific properties that are set. The value
	// in the map is the alias used to import the type and its properties.
	JSONLDContext() map[string]string
	// LessThan computes if this Event is lesser, with an arbitrary but stable
	// determination.
	LessThan(o ActivityStreamsEvent) bool
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format.
	Serialize() (map[string]interface{}, error)
	// SetActivityStreamsAltitude sets the "altitude" property.
	SetActivityStreamsAltitude(i ActivityStreamsAltitudeProperty)
	// SetActivityStreamsAttachment sets the "attachment" property.
	SetActivityStreamsAttachment(i ActivityStreamsAttachmentProperty)
	// SetActivityStreamsAttributedTo sets the "attributedTo" property.
	SetActivityStreamsAttributedTo(i ActivityStreamsAttributedToProperty)
	// SetActivityStreamsAudience sets the "audience" property.
	SetActivityStreamsAudience(i ActivityStreamsAudienceProperty)
	// SetActivityStreamsBcc sets the "bcc" property.
	SetActivityStreamsBcc(i ActivityStreamsBccProperty)
	// SetActivityStreamsBto sets the "bto" property.
	SetActivityStreamsBto(i ActivityStreamsBtoProperty)
	// SetActivityStreamsCc sets the "cc" property.
	SetActivityStreamsCc(i ActivityStreamsCcProperty)
	// SetActivityStreamsContent sets the "content" property.
	SetActivityStreamsContent(i ActivityStreamsContentProperty)
	// SetActivityStreamsContext sets the "context" property.
	SetActivityStreamsContext(i ActivityStreamsContextProperty)
	// SetActivityStreamsDuration sets the "duration" property.
	SetActivityStreamsDuration(i ActivityStreamsDurationProperty)
	// SetActivityStreamsEndTime sets the "endTime" property.
	SetActivityStreamsEndTime(i ActivityStreamsEndTimeProperty)
	// SetActivityStreamsGenerator sets the "generator" property.
	SetActivityStreamsGenerator(i ActivityStreamsGeneratorProperty)
	// SetActivityStreamsIcon sets the "icon" property.
	SetActivityStreamsIcon(i ActivityStreamsIconProperty)
	// SetActivityStreamsImage sets the "image" property.
	SetActivityStreamsImage(i ActivityStreamsImageProperty)
	// SetActivityStreamsInReplyTo sets the "inReplyTo" property.
	SetActivityStreamsInReplyTo(i ActivityStreamsInReplyToProperty)
	// SetActivityStreamsLikes sets the "likes" property.
	SetActivityStreamsLikes(i ActivityStreamsLikesProperty)
	// SetActivityStreamsLocation sets the "location" property.
	SetActivityStreamsLocation(i ActivityStreamsLocationProperty)
	// SetActivityStreamsMediaType sets the "mediaType" property.
	SetActivityStreamsMediaType(i ActivityStreamsMediaTypeProperty)
	// SetActivityStreamsName sets the "name" property.
	SetActivityStreamsName(i ActivityStreamsNameProperty)
	// SetActivityStreamsObject sets the "object" property.
	SetActivityStreamsObject(i ActivityStreamsObjectProperty)
	// SetActivityStreamsPreview sets the "preview" property.
	SetActivityStreamsPreview(i ActivityStreamsPreviewProperty)
	// SetActivityStreamsPublished sets the "published" property.
	SetActivityStreamsPublished(i ActivityStreamsPublishedProperty)
	// SetActivityStreamsReplies sets the "replies" property.
	SetActivityStreamsReplies(i ActivityStreamsRepliesProperty)
	// SetActivityStreamsShares sets the "shares" property.
	SetActivityStreamsShares(i ActivityStreamsSharesProperty)
	// SetActivityStreamsSource sets the "source" property.
	SetActivityStreamsSource(i ActivityStreamsSourceProperty)
	// SetActivityStreamsStartTime sets the "startTime" property.
	SetActivityStreamsStartTime(i ActivityStreamsStartTimeProperty)
	// SetActivityStreamsSummary sets the "summary" property.
	SetActivityStreamsSummary(i ActivityStreamsSummaryProperty)
	// SetActivityStreamsTag sets the "tag" property.
	SetActivityStreamsTag(i ActivityStreamsTagProperty)
	// SetActivityStreamsTo sets the "to" property.
	SetActivityStreamsTo(i ActivityStreamsToProperty)
	// SetActivityStreamsUpdated sets the "updated" property.
	SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
	// SetActivityStreamsUrl sets the "url" property.
	SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
	// SetForgeFedTeam sets the "team" property.
	SetForgeFedTeam(i ForgeFedTeamProperty)
	// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
	SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
	// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
	SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
	// SetJSONLDId sets the "id" property.
	SetJSONLDId(i JSONLDIdProperty)
	// SetJSONLDType sets the "type" property.
	SetJSONLDType(i JSONLDTypeProperty)
	// VocabularyURI returns the vocabulary's URI as a string.
	VocabularyURI() string
}

Represents any kind of event.

Example 55 (https://www.w3.org/TR/activitystreams-vocabulary/#ex56-jsonld):

{
  "endTime": "2015-01-01T06:00:00-08:00",
  "name": "Going-Away Party for Jim",
  "startTime": "2014-12-31T23:00:00-08:00",
  "type": "Event"
}

type ActivityStreamsFirstProperty

type ActivityStreamsFirstProperty interface {
	// Clear ensures no value of this property is set. Calling HasAny or any
	// of the 'Is' methods afterwards will return false.
	Clear()
	// GetActivityStreamsCollectionPage returns the value of this property.
	// When IsActivityStreamsCollectionPage returns false,
	// GetActivityStreamsCollectionPage will return an arbitrary value.
	GetActivityStreamsCollectionPage() ActivityStreamsCollectionPage
	// GetActivityStreamsLink returns the value of this property. When
	// IsActivityStreamsLink returns false, GetActivityStreamsLink will
	// return an arbitrary value.
	GetActivityStreamsLink() ActivityStreamsLink
	// GetActivityStreamsMention returns the value of this property. When
	// IsActivityStreamsMention returns false, GetActivityStreamsMention
	// will return an arbitrary value.
	GetActivityStreamsMention() ActivityStreamsMention
	// GetActivityStreamsOrderedCollectionPage returns the value of this
	// property. When IsActivityStreamsOrderedCollectionPage returns
	// false, GetActivityStreamsOrderedCollectionPage will return an
	// arbitrary value.
	GetActivityStreamsOrderedCollectionPage() ActivityStreamsOrderedCollectionPage
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return an arbitrary value.
	GetIRI() *url.URL
	// GetType returns the value in this property as a Type. Returns nil if
	// the value is not an ActivityStreams type, such as an IRI or another
	// value.
	GetType() Type
	// HasAny returns true if any of the different values is set.
	HasAny() bool
	// IsActivityStreamsCollectionPage returns true if this property has a
	// type of "CollectionPage". When true, use the
	// GetActivityStreamsCollectionPage and
	// SetActivityStreamsCollectionPage methods to access and set this
	// property.
	IsActivityStreamsCollectionPage() bool
	// IsActivityStreamsLink returns true if this property has a type of
	// "Link". When true, use the GetActivityStreamsLink and
	// SetActivityStreamsLink methods to access and set this property.
	IsActivityStreamsLink() bool
	// IsActivityStreamsMention returns true if this property has a type of
	// "Mention". When true, use the GetActivityStreamsMention and
	// SetActivityStreamsMention methods to access and set this property.
	IsActivityStreamsMention() bool
	// IsActivityStreamsOrderedCollectionPage returns true if this property
	// has a type of "OrderedCollectionPage". When true, use the
	// GetActivityStreamsOrderedCollectionPage and
	// SetActivityStreamsOrderedCollectionPage methods to access and set
	// this property.
	IsActivityStreamsOrderedCollectionPage() bool
	// IsIRI returns true if this property is an IRI. When true, use GetIRI
	// and SetIRI to access and set this property
	IsIRI() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsFirstProperty) bool
	// Name returns the name of this property: "first".
	Name() string
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// SetActivityStreamsCollectionPage sets the value of this property.
	// Calling IsActivityStreamsCollectionPage afterwards returns true.
	SetActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// SetActivityStreamsLink sets the value of this property. Calling
	// IsActivityStreamsLink afterwards returns true.
	SetActivityStreamsLink(v ActivityStreamsLink)
	// SetActivityStreamsMention sets the value of this property. Calling
	// IsActivityStreamsMention afterwards returns true.
	SetActivityStreamsMention(v ActivityStreamsMention)
	// SetActivityStreamsOrderedCollectionPage sets the value of this
	// property. Calling IsActivityStreamsOrderedCollectionPage afterwards
	// returns true.
	SetActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// SetIRI sets the value of this property. Calling IsIRI afterwards
	// returns true.
	SetIRI(v *url.URL)
	// SetType attempts to set the property for the arbitrary type. Returns an
	// error if it is not a valid type to set on this property.
	SetType(t Type) error
}

In a paged Collection, indicates the furthest preceeding page of items in the collection.

Example 76 (https://www.w3.org/TR/activitystreams-vocabulary/#ex73-jsonld):

{
  "first": "http://example.org/collection?page=0",
  "summary": "Sally's blog posts",
  "totalItems": 3,
  "type": "Collection"
}

Example 77 (https://www.w3.org/TR/activitystreams-vocabulary/#ex74-jsonld):

{
  "first": {
    "summary": "First Page",
    "type": "owl:Class",
    "url": "http://example.org/collection?page=0"
  },
  "summary": "Sally's blog posts",
  "totalItems": 3,
  "type": "Collection"
}

type ActivityStreamsFlag

type ActivityStreamsFlag interface {
	// GetActivityStreamsActor returns the "actor" property if it exists, and
	// nil otherwise.
	GetActivityStreamsActor() ActivityStreamsActorProperty
	// GetActivityStreamsAltitude returns the "altitude" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAltitude() ActivityStreamsAltitudeProperty
	// GetActivityStreamsAttachment returns the "attachment" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAttachment() ActivityStreamsAttachmentProperty
	// GetActivityStreamsAttributedTo returns the "attributedTo" property if
	// it exists, and nil otherwise.
	GetActivityStreamsAttributedTo() ActivityStreamsAttributedToProperty
	// GetActivityStreamsAudience returns the "audience" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAudience() ActivityStreamsAudienceProperty
	// GetActivityStreamsBcc returns the "bcc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBcc() ActivityStreamsBccProperty
	// GetActivityStreamsBto returns the "bto" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBto() ActivityStreamsBtoProperty
	// GetActivityStreamsCc returns the "cc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsCc() ActivityStreamsCcProperty
	// GetActivityStreamsContent returns the "content" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContent() ActivityStreamsContentProperty
	// GetActivityStreamsContext returns the "context" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContext() ActivityStreamsContextProperty
	// GetActivityStreamsDuration returns the "duration" property if it
	// exists, and nil otherwise.
	GetActivityStreamsDuration() ActivityStreamsDurationProperty
	// GetActivityStreamsEndTime returns the "endTime" property if it exists,
	// and nil otherwise.
	GetActivityStreamsEndTime() ActivityStreamsEndTimeProperty
	// GetActivityStreamsGenerator returns the "generator" property if it
	// exists, and nil otherwise.
	GetActivityStreamsGenerator() ActivityStreamsGeneratorProperty
	// GetActivityStreamsIcon returns the "icon" property if it exists, and
	// nil otherwise.
	GetActivityStreamsIcon() ActivityStreamsIconProperty
	// GetActivityStreamsImage returns the "image" property if it exists, and
	// nil otherwise.
	GetActivityStreamsImage() ActivityStreamsImageProperty
	// GetActivityStreamsInReplyTo returns the "inReplyTo" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInReplyTo() ActivityStreamsInReplyToProperty
	// GetActivityStreamsInstrument returns the "instrument" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInstrument() ActivityStreamsInstrumentProperty
	// GetActivityStreamsLikes returns the "likes" property if it exists, and
	// nil otherwise.
	GetActivityStreamsLikes() ActivityStreamsLikesProperty
	// GetActivityStreamsLocation returns the "location" property if it
	// exists, and nil otherwise.
	GetActivityStreamsLocation() ActivityStreamsLocationProperty
	// GetActivityStreamsMediaType returns the "mediaType" property if it
	// exists, and nil otherwise.
	GetActivityStreamsMediaType() ActivityStreamsMediaTypeProperty
	// GetActivityStreamsName returns the "name" property if it exists, and
	// nil otherwise.
	GetActivityStreamsName() ActivityStreamsNameProperty
	// GetActivityStreamsObject returns the "object" property if it exists,
	// and nil otherwise.
	GetActivityStreamsObject() ActivityStreamsObjectProperty
	// GetActivityStreamsOrigin returns the "origin" property if it exists,
	// and nil otherwise.
	GetActivityStreamsOrigin() ActivityStreamsOriginProperty
	// GetActivityStreamsPreview returns the "preview" property if it exists,
	// and nil otherwise.
	GetActivityStreamsPreview() ActivityStreamsPreviewProperty
	// GetActivityStreamsPublished returns the "published" property if it
	// exists, and nil otherwise.
	GetActivityStreamsPublished() ActivityStreamsPublishedProperty
	// GetActivityStreamsReplies returns the "replies" property if it exists,
	// and nil otherwise.
	GetActivityStreamsReplies() ActivityStreamsRepliesProperty
	// GetActivityStreamsResult returns the "result" property if it exists,
	// and nil otherwise.
	GetActivityStreamsResult() ActivityStreamsResultProperty
	// GetActivityStreamsShares returns the "shares" property if it exists,
	// and nil otherwise.
	GetActivityStreamsShares() ActivityStreamsSharesProperty
	// GetActivityStreamsSource returns the "source" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSource() ActivityStreamsSourceProperty
	// GetActivityStreamsStartTime returns the "startTime" property if it
	// exists, and nil otherwise.
	GetActivityStreamsStartTime() ActivityStreamsStartTimeProperty
	// GetActivityStreamsSummary returns the "summary" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSummary() ActivityStreamsSummaryProperty
	// GetActivityStreamsTag returns the "tag" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTag() ActivityStreamsTagProperty
	// GetActivityStreamsTarget returns the "target" property if it exists,
	// and nil otherwise.
	GetActivityStreamsTarget() ActivityStreamsTargetProperty
	// GetActivityStreamsTo returns the "to" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTo() ActivityStreamsToProperty
	// GetActivityStreamsUpdated returns the "updated" property if it exists,
	// and nil otherwise.
	GetActivityStreamsUpdated() ActivityStreamsUpdatedProperty
	// GetActivityStreamsUrl returns the "url" property if it exists, and nil
	// otherwise.
	GetActivityStreamsUrl() ActivityStreamsUrlProperty
	// GetForgeFedTeam returns the "team" property if it exists, and nil
	// otherwise.
	GetForgeFedTeam() ForgeFedTeamProperty
	// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
	// it exists, and nil otherwise.
	GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
	// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
	// it exists, and nil otherwise.
	GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
	// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
	GetJSONLDId() JSONLDIdProperty
	// GetJSONLDType returns the "type" property if it exists, and nil
	// otherwise.
	GetJSONLDType() JSONLDTypeProperty
	// GetTypeName returns the name of this type.
	GetTypeName() string
	// GetUnknownProperties returns the unknown properties for the Flag type.
	// Note that this should not be used by app developers. It is only
	// used to help determine which implementation is LessThan the other.
	// Developers who are creating a different implementation of this
	// type's interface can use this method in their LessThan
	// implementation, but routine ActivityPub applications should not use
	// this to bypass the code generation tool.
	GetUnknownProperties() map[string]interface{}
	// IsExtending returns true if the Flag type extends from the other type.
	IsExtending(other Type) bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this type and the specific properties that are set. The value
	// in the map is the alias used to import the type and its properties.
	JSONLDContext() map[string]string
	// LessThan computes if this Flag is lesser, with an arbitrary but stable
	// determination.
	LessThan(o ActivityStreamsFlag) bool
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format.
	Serialize() (map[string]interface{}, error)
	// SetActivityStreamsActor sets the "actor" property.
	SetActivityStreamsActor(i ActivityStreamsActorProperty)
	// SetActivityStreamsAltitude sets the "altitude" property.
	SetActivityStreamsAltitude(i ActivityStreamsAltitudeProperty)
	// SetActivityStreamsAttachment sets the "attachment" property.
	SetActivityStreamsAttachment(i ActivityStreamsAttachmentProperty)
	// SetActivityStreamsAttributedTo sets the "attributedTo" property.
	SetActivityStreamsAttributedTo(i ActivityStreamsAttributedToProperty)
	// SetActivityStreamsAudience sets the "audience" property.
	SetActivityStreamsAudience(i ActivityStreamsAudienceProperty)
	// SetActivityStreamsBcc sets the "bcc" property.
	SetActivityStreamsBcc(i ActivityStreamsBccProperty)
	// SetActivityStreamsBto sets the "bto" property.
	SetActivityStreamsBto(i ActivityStreamsBtoProperty)
	// SetActivityStreamsCc sets the "cc" property.
	SetActivityStreamsCc(i ActivityStreamsCcProperty)
	// SetActivityStreamsContent sets the "content" property.
	SetActivityStreamsContent(i ActivityStreamsContentProperty)
	// SetActivityStreamsContext sets the "context" property.
	SetActivityStreamsContext(i ActivityStreamsContextProperty)
	// SetActivityStreamsDuration sets the "duration" property.
	SetActivityStreamsDuration(i ActivityStreamsDurationProperty)
	// SetActivityStreamsEndTime sets the "endTime" property.
	SetActivityStreamsEndTime(i ActivityStreamsEndTimeProperty)
	// SetActivityStreamsGenerator sets the "generator" property.
	SetActivityStreamsGenerator(i ActivityStreamsGeneratorProperty)
	// SetActivityStreamsIcon sets the "icon" property.
	SetActivityStreamsIcon(i ActivityStreamsIconProperty)
	// SetActivityStreamsImage sets the "image" property.
	SetActivityStreamsImage(i ActivityStreamsImageProperty)
	// SetActivityStreamsInReplyTo sets the "inReplyTo" property.
	SetActivityStreamsInReplyTo(i ActivityStreamsInReplyToProperty)
	// SetActivityStreamsInstrument sets the "instrument" property.
	SetActivityStreamsInstrument(i ActivityStreamsInstrumentProperty)
	// SetActivityStreamsLikes sets the "likes" property.
	SetActivityStreamsLikes(i ActivityStreamsLikesProperty)
	// SetActivityStreamsLocation sets the "location" property.
	SetActivityStreamsLocation(i ActivityStreamsLocationProperty)
	// SetActivityStreamsMediaType sets the "mediaType" property.
	SetActivityStreamsMediaType(i ActivityStreamsMediaTypeProperty)
	// SetActivityStreamsName sets the "name" property.
	SetActivityStreamsName(i ActivityStreamsNameProperty)
	// SetActivityStreamsObject sets the "object" property.
	SetActivityStreamsObject(i ActivityStreamsObjectProperty)
	// SetActivityStreamsOrigin sets the "origin" property.
	SetActivityStreamsOrigin(i ActivityStreamsOriginProperty)
	// SetActivityStreamsPreview sets the "preview" property.
	SetActivityStreamsPreview(i ActivityStreamsPreviewProperty)
	// SetActivityStreamsPublished sets the "published" property.
	SetActivityStreamsPublished(i ActivityStreamsPublishedProperty)
	// SetActivityStreamsReplies sets the "replies" property.
	SetActivityStreamsReplies(i ActivityStreamsRepliesProperty)
	// SetActivityStreamsResult sets the "result" property.
	SetActivityStreamsResult(i ActivityStreamsResultProperty)
	// SetActivityStreamsShares sets the "shares" property.
	SetActivityStreamsShares(i ActivityStreamsSharesProperty)
	// SetActivityStreamsSource sets the "source" property.
	SetActivityStreamsSource(i ActivityStreamsSourceProperty)
	// SetActivityStreamsStartTime sets the "startTime" property.
	SetActivityStreamsStartTime(i ActivityStreamsStartTimeProperty)
	// SetActivityStreamsSummary sets the "summary" property.
	SetActivityStreamsSummary(i ActivityStreamsSummaryProperty)
	// SetActivityStreamsTag sets the "tag" property.
	SetActivityStreamsTag(i ActivityStreamsTagProperty)
	// SetActivityStreamsTarget sets the "target" property.
	SetActivityStreamsTarget(i ActivityStreamsTargetProperty)
	// SetActivityStreamsTo sets the "to" property.
	SetActivityStreamsTo(i ActivityStreamsToProperty)
	// SetActivityStreamsUpdated sets the "updated" property.
	SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
	// SetActivityStreamsUrl sets the "url" property.
	SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
	// SetForgeFedTeam sets the "team" property.
	SetForgeFedTeam(i ForgeFedTeamProperty)
	// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
	SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
	// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
	SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
	// SetJSONLDId sets the "id" property.
	SetJSONLDId(i JSONLDIdProperty)
	// SetJSONLDType sets the "type" property.
	SetJSONLDType(i JSONLDTypeProperty)
	// VocabularyURI returns the vocabulary's URI as a string.
	VocabularyURI() string
}

Indicates that the actor is "flagging" the object. Flagging is defined in the sense common to many social platforms as reporting content as being inappropriate for any number of reasons.

Example 38 (https://www.w3.org/TR/activitystreams-vocabulary/#ex174-jsonld):

{
  "actor": "http://sally.example.org",
  "object": {
    "content": "An inappropriate note",
    "type": "Note"
  },
  "summary": "Sally flagged an inappropriate note",
  "type": "Flag"
}

type ActivityStreamsFollow

type ActivityStreamsFollow interface {
	// GetActivityStreamsActor returns the "actor" property if it exists, and
	// nil otherwise.
	GetActivityStreamsActor() ActivityStreamsActorProperty
	// GetActivityStreamsAltitude returns the "altitude" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAltitude() ActivityStreamsAltitudeProperty
	// GetActivityStreamsAttachment returns the "attachment" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAttachment() ActivityStreamsAttachmentProperty
	// GetActivityStreamsAttributedTo returns the "attributedTo" property if
	// it exists, and nil otherwise.
	GetActivityStreamsAttributedTo() ActivityStreamsAttributedToProperty
	// GetActivityStreamsAudience returns the "audience" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAudience() ActivityStreamsAudienceProperty
	// GetActivityStreamsBcc returns the "bcc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBcc() ActivityStreamsBccProperty
	// GetActivityStreamsBto returns the "bto" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBto() ActivityStreamsBtoProperty
	// GetActivityStreamsCc returns the "cc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsCc() ActivityStreamsCcProperty
	// GetActivityStreamsContent returns the "content" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContent() ActivityStreamsContentProperty
	// GetActivityStreamsContext returns the "context" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContext() ActivityStreamsContextProperty
	// GetActivityStreamsDuration returns the "duration" property if it
	// exists, and nil otherwise.
	GetActivityStreamsDuration() ActivityStreamsDurationProperty
	// GetActivityStreamsEndTime returns the "endTime" property if it exists,
	// and nil otherwise.
	GetActivityStreamsEndTime() ActivityStreamsEndTimeProperty
	// GetActivityStreamsGenerator returns the "generator" property if it
	// exists, and nil otherwise.
	GetActivityStreamsGenerator() ActivityStreamsGeneratorProperty
	// GetActivityStreamsIcon returns the "icon" property if it exists, and
	// nil otherwise.
	GetActivityStreamsIcon() ActivityStreamsIconProperty
	// GetActivityStreamsImage returns the "image" property if it exists, and
	// nil otherwise.
	GetActivityStreamsImage() ActivityStreamsImageProperty
	// GetActivityStreamsInReplyTo returns the "inReplyTo" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInReplyTo() ActivityStreamsInReplyToProperty
	// GetActivityStreamsInstrument returns the "instrument" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInstrument() ActivityStreamsInstrumentProperty
	// GetActivityStreamsLikes returns the "likes" property if it exists, and
	// nil otherwise.
	GetActivityStreamsLikes() ActivityStreamsLikesProperty
	// GetActivityStreamsLocation returns the "location" property if it
	// exists, and nil otherwise.
	GetActivityStreamsLocation() ActivityStreamsLocationProperty
	// GetActivityStreamsMediaType returns the "mediaType" property if it
	// exists, and nil otherwise.
	GetActivityStreamsMediaType() ActivityStreamsMediaTypeProperty
	// GetActivityStreamsName returns the "name" property if it exists, and
	// nil otherwise.
	GetActivityStreamsName() ActivityStreamsNameProperty
	// GetActivityStreamsObject returns the "object" property if it exists,
	// and nil otherwise.
	GetActivityStreamsObject() ActivityStreamsObjectProperty
	// GetActivityStreamsOrigin returns the "origin" property if it exists,
	// and nil otherwise.
	GetActivityStreamsOrigin() ActivityStreamsOriginProperty
	// GetActivityStreamsPreview returns the "preview" property if it exists,
	// and nil otherwise.
	GetActivityStreamsPreview() ActivityStreamsPreviewProperty
	// GetActivityStreamsPublished returns the "published" property if it
	// exists, and nil otherwise.
	GetActivityStreamsPublished() ActivityStreamsPublishedProperty
	// GetActivityStreamsReplies returns the "replies" property if it exists,
	// and nil otherwise.
	GetActivityStreamsReplies() ActivityStreamsRepliesProperty
	// GetActivityStreamsResult returns the "result" property if it exists,
	// and nil otherwise.
	GetActivityStreamsResult() ActivityStreamsResultProperty
	// GetActivityStreamsShares returns the "shares" property if it exists,
	// and nil otherwise.
	GetActivityStreamsShares() ActivityStreamsSharesProperty
	// GetActivityStreamsSource returns the "source" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSource() ActivityStreamsSourceProperty
	// GetActivityStreamsStartTime returns the "startTime" property if it
	// exists, and nil otherwise.
	GetActivityStreamsStartTime() ActivityStreamsStartTimeProperty
	// GetActivityStreamsSummary returns the "summary" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSummary() ActivityStreamsSummaryProperty
	// GetActivityStreamsTag returns the "tag" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTag() ActivityStreamsTagProperty
	// GetActivityStreamsTarget returns the "target" property if it exists,
	// and nil otherwise.
	GetActivityStreamsTarget() ActivityStreamsTargetProperty
	// GetActivityStreamsTo returns the "to" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTo() ActivityStreamsToProperty
	// GetActivityStreamsUpdated returns the "updated" property if it exists,
	// and nil otherwise.
	GetActivityStreamsUpdated() ActivityStreamsUpdatedProperty
	// GetActivityStreamsUrl returns the "url" property if it exists, and nil
	// otherwise.
	GetActivityStreamsUrl() ActivityStreamsUrlProperty
	// GetForgeFedTeam returns the "team" property if it exists, and nil
	// otherwise.
	GetForgeFedTeam() ForgeFedTeamProperty
	// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
	// it exists, and nil otherwise.
	GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
	// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
	// it exists, and nil otherwise.
	GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
	// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
	GetJSONLDId() JSONLDIdProperty
	// GetJSONLDType returns the "type" property if it exists, and nil
	// otherwise.
	GetJSONLDType() JSONLDTypeProperty
	// GetTypeName returns the name of this type.
	GetTypeName() string
	// GetUnknownProperties returns the unknown properties for the Follow
	// type. Note that this should not be used by app developers. It is
	// only used to help determine which implementation is LessThan the
	// other. Developers who are creating a different implementation of
	// this type's interface can use this method in their LessThan
	// implementation, but routine ActivityPub applications should not use
	// this to bypass the code generation tool.
	GetUnknownProperties() map[string]interface{}
	// IsExtending returns true if the Follow type extends from the other type.
	IsExtending(other Type) bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this type and the specific properties that are set. The value
	// in the map is the alias used to import the type and its properties.
	JSONLDContext() map[string]string
	// LessThan computes if this Follow is lesser, with an arbitrary but
	// stable determination.
	LessThan(o ActivityStreamsFollow) bool
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format.
	Serialize() (map[string]interface{}, error)
	// SetActivityStreamsActor sets the "actor" property.
	SetActivityStreamsActor(i ActivityStreamsActorProperty)
	// SetActivityStreamsAltitude sets the "altitude" property.
	SetActivityStreamsAltitude(i ActivityStreamsAltitudeProperty)
	// SetActivityStreamsAttachment sets the "attachment" property.
	SetActivityStreamsAttachment(i ActivityStreamsAttachmentProperty)
	// SetActivityStreamsAttributedTo sets the "attributedTo" property.
	SetActivityStreamsAttributedTo(i ActivityStreamsAttributedToProperty)
	// SetActivityStreamsAudience sets the "audience" property.
	SetActivityStreamsAudience(i ActivityStreamsAudienceProperty)
	// SetActivityStreamsBcc sets the "bcc" property.
	SetActivityStreamsBcc(i ActivityStreamsBccProperty)
	// SetActivityStreamsBto sets the "bto" property.
	SetActivityStreamsBto(i ActivityStreamsBtoProperty)
	// SetActivityStreamsCc sets the "cc" property.
	SetActivityStreamsCc(i ActivityStreamsCcProperty)
	// SetActivityStreamsContent sets the "content" property.
	SetActivityStreamsContent(i ActivityStreamsContentProperty)
	// SetActivityStreamsContext sets the "context" property.
	SetActivityStreamsContext(i ActivityStreamsContextProperty)
	// SetActivityStreamsDuration sets the "duration" property.
	SetActivityStreamsDuration(i ActivityStreamsDurationProperty)
	// SetActivityStreamsEndTime sets the "endTime" property.
	SetActivityStreamsEndTime(i ActivityStreamsEndTimeProperty)
	// SetActivityStreamsGenerator sets the "generator" property.
	SetActivityStreamsGenerator(i ActivityStreamsGeneratorProperty)
	// SetActivityStreamsIcon sets the "icon" property.
	SetActivityStreamsIcon(i ActivityStreamsIconProperty)
	// SetActivityStreamsImage sets the "image" property.
	SetActivityStreamsImage(i ActivityStreamsImageProperty)
	// SetActivityStreamsInReplyTo sets the "inReplyTo" property.
	SetActivityStreamsInReplyTo(i ActivityStreamsInReplyToProperty)
	// SetActivityStreamsInstrument sets the "instrument" property.
	SetActivityStreamsInstrument(i ActivityStreamsInstrumentProperty)
	// SetActivityStreamsLikes sets the "likes" property.
	SetActivityStreamsLikes(i ActivityStreamsLikesProperty)
	// SetActivityStreamsLocation sets the "location" property.
	SetActivityStreamsLocation(i ActivityStreamsLocationProperty)
	// SetActivityStreamsMediaType sets the "mediaType" property.
	SetActivityStreamsMediaType(i ActivityStreamsMediaTypeProperty)
	// SetActivityStreamsName sets the "name" property.
	SetActivityStreamsName(i ActivityStreamsNameProperty)
	// SetActivityStreamsObject sets the "object" property.
	SetActivityStreamsObject(i ActivityStreamsObjectProperty)
	// SetActivityStreamsOrigin sets the "origin" property.
	SetActivityStreamsOrigin(i ActivityStreamsOriginProperty)
	// SetActivityStreamsPreview sets the "preview" property.
	SetActivityStreamsPreview(i ActivityStreamsPreviewProperty)
	// SetActivityStreamsPublished sets the "published" property.
	SetActivityStreamsPublished(i ActivityStreamsPublishedProperty)
	// SetActivityStreamsReplies sets the "replies" property.
	SetActivityStreamsReplies(i ActivityStreamsRepliesProperty)
	// SetActivityStreamsResult sets the "result" property.
	SetActivityStreamsResult(i ActivityStreamsResultProperty)
	// SetActivityStreamsShares sets the "shares" property.
	SetActivityStreamsShares(i ActivityStreamsSharesProperty)
	// SetActivityStreamsSource sets the "source" property.
	SetActivityStreamsSource(i ActivityStreamsSourceProperty)
	// SetActivityStreamsStartTime sets the "startTime" property.
	SetActivityStreamsStartTime(i ActivityStreamsStartTimeProperty)
	// SetActivityStreamsSummary sets the "summary" property.
	SetActivityStreamsSummary(i ActivityStreamsSummaryProperty)
	// SetActivityStreamsTag sets the "tag" property.
	SetActivityStreamsTag(i ActivityStreamsTagProperty)
	// SetActivityStreamsTarget sets the "target" property.
	SetActivityStreamsTarget(i ActivityStreamsTargetProperty)
	// SetActivityStreamsTo sets the "to" property.
	SetActivityStreamsTo(i ActivityStreamsToProperty)
	// SetActivityStreamsUpdated sets the "updated" property.
	SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
	// SetActivityStreamsUrl sets the "url" property.
	SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
	// SetForgeFedTeam sets the "team" property.
	SetForgeFedTeam(i ForgeFedTeamProperty)
	// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
	SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
	// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
	SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
	// SetJSONLDId sets the "id" property.
	SetJSONLDId(i JSONLDIdProperty)
	// SetJSONLDType sets the "type" property.
	SetJSONLDType(i JSONLDTypeProperty)
	// VocabularyURI returns the vocabulary's URI as a string.
	VocabularyURI() string
}

Indicates that the actor is "following" the object. Following is defined in the sense typically used within Social systems in which the actor is interested in any activity performed by or on the object. The target and origin typically have no defined meaning.

Example 17 (https://www.w3.org/TR/activitystreams-vocabulary/#ex15-jsonld):

{
  "actor": {
    "name": "Sally",
    "type": "Person"
  },
  "object": {
    "name": "John",
    "type": "Person"
  },
  "summary": "Sally followed John",
  "type": "Follow"
}

type ActivityStreamsFollowersProperty

type ActivityStreamsFollowersProperty interface {
	// Clear ensures no value of this property is set. Calling HasAny or any
	// of the 'Is' methods afterwards will return false.
	Clear()
	// GetActivityStreamsCollection returns the value of this property. When
	// IsActivityStreamsCollection returns false,
	// GetActivityStreamsCollection will return an arbitrary value.
	GetActivityStreamsCollection() ActivityStreamsCollection
	// GetActivityStreamsCollectionPage returns the value of this property.
	// When IsActivityStreamsCollectionPage returns false,
	// GetActivityStreamsCollectionPage will return an arbitrary value.
	GetActivityStreamsCollectionPage() ActivityStreamsCollectionPage
	// GetActivityStreamsOrderedCollection returns the value of this property.
	// When IsActivityStreamsOrderedCollection returns false,
	// GetActivityStreamsOrderedCollection will return an arbitrary value.
	GetActivityStreamsOrderedCollection() ActivityStreamsOrderedCollection
	// GetActivityStreamsOrderedCollectionPage returns the value of this
	// property. When IsActivityStreamsOrderedCollectionPage returns
	// false, GetActivityStreamsOrderedCollectionPage will return an
	// arbitrary value.
	GetActivityStreamsOrderedCollectionPage() ActivityStreamsOrderedCollectionPage
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return an arbitrary value.
	GetIRI() *url.URL
	// GetType returns the value in this property as a Type. Returns nil if
	// the value is not an ActivityStreams type, such as an IRI or another
	// value.
	GetType() Type
	// HasAny returns true if any of the different values is set.
	HasAny() bool
	// IsActivityStreamsCollection returns true if this property has a type of
	// "Collection". When true, use the GetActivityStreamsCollection and
	// SetActivityStreamsCollection methods to access and set this
	// property.
	IsActivityStreamsCollection() bool
	// IsActivityStreamsCollectionPage returns true if this property has a
	// type of "CollectionPage". When true, use the
	// GetActivityStreamsCollectionPage and
	// SetActivityStreamsCollectionPage methods to access and set this
	// property.
	IsActivityStreamsCollectionPage() bool
	// IsActivityStreamsOrderedCollection returns true if this property has a
	// type of "OrderedCollection". When true, use the
	// GetActivityStreamsOrderedCollection and
	// SetActivityStreamsOrderedCollection methods to access and set this
	// property.
	IsActivityStreamsOrderedCollection() bool
	// IsActivityStreamsOrderedCollectionPage returns true if this property
	// has a type of "OrderedCollectionPage". When true, use the
	// GetActivityStreamsOrderedCollectionPage and
	// SetActivityStreamsOrderedCollectionPage methods to access and set
	// this property.
	IsActivityStreamsOrderedCollectionPage() bool
	// IsIRI returns true if this property is an IRI. When true, use GetIRI
	// and SetIRI to access and set this property
	IsIRI() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsFollowersProperty) bool
	// Name returns the name of this property: "followers".
	Name() string
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// SetActivityStreamsCollection sets the value of this property. Calling
	// IsActivityStreamsCollection afterwards returns true.
	SetActivityStreamsCollection(v ActivityStreamsCollection)
	// SetActivityStreamsCollectionPage sets the value of this property.
	// Calling IsActivityStreamsCollectionPage afterwards returns true.
	SetActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// SetActivityStreamsOrderedCollection sets the value of this property.
	// Calling IsActivityStreamsOrderedCollection afterwards returns true.
	SetActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// SetActivityStreamsOrderedCollectionPage sets the value of this
	// property. Calling IsActivityStreamsOrderedCollectionPage afterwards
	// returns true.
	SetActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// SetIRI sets the value of this property. Calling IsIRI afterwards
	// returns true.
	SetIRI(v *url.URL)
	// SetType attempts to set the property for the arbitrary type. Returns an
	// error if it is not a valid type to set on this property.
	SetType(t Type) error
}

A link to an ActivityStreams collection of the actors that follow this actor

Example 9 (https://www.w3.org/TR/activitypub/#example9):

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "@language": "ja"
    }
  ],
  "followers": "https://kenzoishii.example.com/followers.json",
  "following": "https://kenzoishii.example.com/following.json",
  "icon": [
    "https://kenzoishii.example.com/image/165987aklre4"
  ],
  "id": "https://kenzoishii.example.com/",
  "inbox": "https://kenzoishii.example.com/inbox.json",
  "liked": "https://kenzoishii.example.com/liked.json",
  "name": "石井健蔵",
  "outbox": "https://kenzoishii.example.com/feed.json",
  "preferredUsername": "kenzoishii",
  "summary": "この方はただの例です",
  "type": "Person"
}

type ActivityStreamsFollowingProperty

type ActivityStreamsFollowingProperty interface {
	// Clear ensures no value of this property is set. Calling HasAny or any
	// of the 'Is' methods afterwards will return false.
	Clear()
	// GetActivityStreamsCollection returns the value of this property. When
	// IsActivityStreamsCollection returns false,
	// GetActivityStreamsCollection will return an arbitrary value.
	GetActivityStreamsCollection() ActivityStreamsCollection
	// GetActivityStreamsCollectionPage returns the value of this property.
	// When IsActivityStreamsCollectionPage returns false,
	// GetActivityStreamsCollectionPage will return an arbitrary value.
	GetActivityStreamsCollectionPage() ActivityStreamsCollectionPage
	// GetActivityStreamsOrderedCollection returns the value of this property.
	// When IsActivityStreamsOrderedCollection returns false,
	// GetActivityStreamsOrderedCollection will return an arbitrary value.
	GetActivityStreamsOrderedCollection() ActivityStreamsOrderedCollection
	// GetActivityStreamsOrderedCollectionPage returns the value of this
	// property. When IsActivityStreamsOrderedCollectionPage returns
	// false, GetActivityStreamsOrderedCollectionPage will return an
	// arbitrary value.
	GetActivityStreamsOrderedCollectionPage() ActivityStreamsOrderedCollectionPage
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return an arbitrary value.
	GetIRI() *url.URL
	// GetType returns the value in this property as a Type. Returns nil if
	// the value is not an ActivityStreams type, such as an IRI or another
	// value.
	GetType() Type
	// HasAny returns true if any of the different values is set.
	HasAny() bool
	// IsActivityStreamsCollection returns true if this property has a type of
	// "Collection". When true, use the GetActivityStreamsCollection and
	// SetActivityStreamsCollection methods to access and set this
	// property.
	IsActivityStreamsCollection() bool
	// IsActivityStreamsCollectionPage returns true if this property has a
	// type of "CollectionPage". When true, use the
	// GetActivityStreamsCollectionPage and
	// SetActivityStreamsCollectionPage methods to access and set this
	// property.
	IsActivityStreamsCollectionPage() bool
	// IsActivityStreamsOrderedCollection returns true if this property has a
	// type of "OrderedCollection". When true, use the
	// GetActivityStreamsOrderedCollection and
	// SetActivityStreamsOrderedCollection methods to access and set this
	// property.
	IsActivityStreamsOrderedCollection() bool
	// IsActivityStreamsOrderedCollectionPage returns true if this property
	// has a type of "OrderedCollectionPage". When true, use the
	// GetActivityStreamsOrderedCollectionPage and
	// SetActivityStreamsOrderedCollectionPage methods to access and set
	// this property.
	IsActivityStreamsOrderedCollectionPage() bool
	// IsIRI returns true if this property is an IRI. When true, use GetIRI
	// and SetIRI to access and set this property
	IsIRI() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsFollowingProperty) bool
	// Name returns the name of this property: "following".
	Name() string
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// SetActivityStreamsCollection sets the value of this property. Calling
	// IsActivityStreamsCollection afterwards returns true.
	SetActivityStreamsCollection(v ActivityStreamsCollection)
	// SetActivityStreamsCollectionPage sets the value of this property.
	// Calling IsActivityStreamsCollectionPage afterwards returns true.
	SetActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// SetActivityStreamsOrderedCollection sets the value of this property.
	// Calling IsActivityStreamsOrderedCollection afterwards returns true.
	SetActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// SetActivityStreamsOrderedCollectionPage sets the value of this
	// property. Calling IsActivityStreamsOrderedCollectionPage afterwards
	// returns true.
	SetActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// SetIRI sets the value of this property. Calling IsIRI afterwards
	// returns true.
	SetIRI(v *url.URL)
	// SetType attempts to set the property for the arbitrary type. Returns an
	// error if it is not a valid type to set on this property.
	SetType(t Type) error
}

A link to an ActivityStreams collection of the actors that this actor is following

Example 9 (https://www.w3.org/TR/activitypub/#example9):

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "@language": "ja"
    }
  ],
  "followers": "https://kenzoishii.example.com/followers.json",
  "following": "https://kenzoishii.example.com/following.json",
  "icon": [
    "https://kenzoishii.example.com/image/165987aklre4"
  ],
  "id": "https://kenzoishii.example.com/",
  "inbox": "https://kenzoishii.example.com/inbox.json",
  "liked": "https://kenzoishii.example.com/liked.json",
  "name": "石井健蔵",
  "outbox": "https://kenzoishii.example.com/feed.json",
  "preferredUsername": "kenzoishii",
  "summary": "この方はただの例です",
  "type": "Person"
}

type ActivityStreamsFormerTypeProperty

type ActivityStreamsFormerTypeProperty interface {
	// AppendActivityStreamsAccept appends a Accept value to the back of a
	// list of the property "formerType". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsAccept(v ActivityStreamsAccept)
	// AppendActivityStreamsActivity appends a Activity value to the back of a
	// list of the property "formerType". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsActivity(v ActivityStreamsActivity)
	// AppendActivityStreamsAdd appends a Add value to the back of a list of
	// the property "formerType". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsAdd(v ActivityStreamsAdd)
	// AppendActivityStreamsAnnounce appends a Announce value to the back of a
	// list of the property "formerType". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// AppendActivityStreamsApplication appends a Application value to the
	// back of a list of the property "formerType". Invalidates iterators
	// that are traversing using Prev.
	AppendActivityStreamsApplication(v ActivityStreamsApplication)
	// AppendActivityStreamsArrive appends a Arrive value to the back of a
	// list of the property "formerType". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsArrive(v ActivityStreamsArrive)
	// AppendActivityStreamsArticle appends a Article value to the back of a
	// list of the property "formerType". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsArticle(v ActivityStreamsArticle)
	// AppendActivityStreamsAudio appends a Audio value to the back of a list
	// of the property "formerType". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsAudio(v ActivityStreamsAudio)
	// AppendActivityStreamsBlock appends a Block value to the back of a list
	// of the property "formerType". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsBlock(v ActivityStreamsBlock)
	// AppendActivityStreamsCollection appends a Collection value to the back
	// of a list of the property "formerType". Invalidates iterators that
	// are traversing using Prev.
	AppendActivityStreamsCollection(v ActivityStreamsCollection)
	// AppendActivityStreamsCollectionPage appends a CollectionPage value to
	// the back of a list of the property "formerType". Invalidates
	// iterators that are traversing using Prev.
	AppendActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// AppendActivityStreamsCreate appends a Create value to the back of a
	// list of the property "formerType". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsCreate(v ActivityStreamsCreate)
	// AppendActivityStreamsDelete appends a Delete value to the back of a
	// list of the property "formerType". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDelete(v ActivityStreamsDelete)
	// AppendActivityStreamsDislike appends a Dislike value to the back of a
	// list of the property "formerType". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDislike(v ActivityStreamsDislike)
	// AppendActivityStreamsDocument appends a Document value to the back of a
	// list of the property "formerType". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDocument(v ActivityStreamsDocument)
	// AppendActivityStreamsEvent appends a Event value to the back of a list
	// of the property "formerType". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsEvent(v ActivityStreamsEvent)
	// AppendActivityStreamsFlag appends a Flag value to the back of a list of
	// the property "formerType". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsFlag(v ActivityStreamsFlag)
	// AppendActivityStreamsFollow appends a Follow value to the back of a
	// list of the property "formerType". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsFollow(v ActivityStreamsFollow)
	// AppendActivityStreamsGroup appends a Group value to the back of a list
	// of the property "formerType". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsGroup(v ActivityStreamsGroup)
	// AppendActivityStreamsIgnore appends a Ignore value to the back of a
	// list of the property "formerType". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsIgnore(v ActivityStreamsIgnore)
	// AppendActivityStreamsImage appends a Image value to the back of a list
	// of the property "formerType". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsImage(v ActivityStreamsImage)
	// AppendActivityStreamsIntransitiveActivity appends a
	// IntransitiveActivity value to the back of a list of the property
	// "formerType". Invalidates iterators that are traversing using Prev.
	AppendActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// AppendActivityStreamsInvite appends a Invite value to the back of a
	// list of the property "formerType". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsInvite(v ActivityStreamsInvite)
	// AppendActivityStreamsJoin appends a Join value to the back of a list of
	// the property "formerType". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsJoin(v ActivityStreamsJoin)
	// AppendActivityStreamsLeave appends a Leave value to the back of a list
	// of the property "formerType". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsLeave(v ActivityStreamsLeave)
	// AppendActivityStreamsLike appends a Like value to the back of a list of
	// the property "formerType". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsLike(v ActivityStreamsLike)
	// AppendActivityStreamsListen appends a Listen value to the back of a
	// list of the property "formerType". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsListen(v ActivityStreamsListen)
	// AppendActivityStreamsMove appends a Move value to the back of a list of
	// the property "formerType". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsMove(v ActivityStreamsMove)
	// AppendActivityStreamsNote appends a Note value to the back of a list of
	// the property "formerType". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsNote(v ActivityStreamsNote)
	// AppendActivityStreamsObject appends a Object value to the back of a
	// list of the property "formerType". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsObject(v ActivityStreamsObject)
	// AppendActivityStreamsOffer appends a Offer value to the back of a list
	// of the property "formerType". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsOffer(v ActivityStreamsOffer)
	// AppendActivityStreamsOrderedCollection appends a OrderedCollection
	// value to the back of a list of the property "formerType".
	// Invalidates iterators that are traversing using Prev.
	AppendActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// AppendActivityStreamsOrderedCollectionPage appends a
	// OrderedCollectionPage value to the back of a list of the property
	// "formerType". Invalidates iterators that are traversing using Prev.
	AppendActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// AppendActivityStreamsOrganization appends a Organization value to the
	// back of a list of the property "formerType". Invalidates iterators
	// that are traversing using Prev.
	AppendActivityStreamsOrganization(v ActivityStreamsOrganization)
	// AppendActivityStreamsPage appends a Page value to the back of a list of
	// the property "formerType". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsPage(v ActivityStreamsPage)
	// AppendActivityStreamsPerson appends a Person value to the back of a
	// list of the property "formerType". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsPerson(v ActivityStreamsPerson)
	// AppendActivityStreamsPlace appends a Place value to the back of a list
	// of the property "formerType". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsPlace(v ActivityStreamsPlace)
	// AppendActivityStreamsProfile appends a Profile value to the back of a
	// list of the property "formerType". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsProfile(v ActivityStreamsProfile)
	// AppendActivityStreamsQuestion appends a Question value to the back of a
	// list of the property "formerType". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsQuestion(v ActivityStreamsQuestion)
	// AppendActivityStreamsRead appends a Read value to the back of a list of
	// the property "formerType". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsRead(v ActivityStreamsRead)
	// AppendActivityStreamsReject appends a Reject value to the back of a
	// list of the property "formerType". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsReject(v ActivityStreamsReject)
	// AppendActivityStreamsRelationship appends a Relationship value to the
	// back of a list of the property "formerType". Invalidates iterators
	// that are traversing using Prev.
	AppendActivityStreamsRelationship(v ActivityStreamsRelationship)
	// AppendActivityStreamsRemove appends a Remove value to the back of a
	// list of the property "formerType". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsRemove(v ActivityStreamsRemove)
	// AppendActivityStreamsService appends a Service value to the back of a
	// list of the property "formerType". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsService(v ActivityStreamsService)
	// AppendActivityStreamsTentativeAccept appends a TentativeAccept value to
	// the back of a list of the property "formerType". Invalidates
	// iterators that are traversing using Prev.
	AppendActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// AppendActivityStreamsTentativeReject appends a TentativeReject value to
	// the back of a list of the property "formerType". Invalidates
	// iterators that are traversing using Prev.
	AppendActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// AppendActivityStreamsTombstone appends a Tombstone value to the back of
	// a list of the property "formerType". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsTombstone(v ActivityStreamsTombstone)
	// AppendActivityStreamsTravel appends a Travel value to the back of a
	// list of the property "formerType". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsTravel(v ActivityStreamsTravel)
	// AppendActivityStreamsUndo appends a Undo value to the back of a list of
	// the property "formerType". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsUndo(v ActivityStreamsUndo)
	// AppendActivityStreamsUpdate appends a Update value to the back of a
	// list of the property "formerType". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsUpdate(v ActivityStreamsUpdate)
	// AppendActivityStreamsVideo appends a Video value to the back of a list
	// of the property "formerType". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsVideo(v ActivityStreamsVideo)
	// AppendActivityStreamsView appends a View value to the back of a list of
	// the property "formerType". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsView(v ActivityStreamsView)
	// AppendForgeFedBranch appends a Branch value to the back of a list of
	// the property "formerType". Invalidates iterators that are
	// traversing using Prev.
	AppendForgeFedBranch(v ForgeFedBranch)
	// AppendForgeFedCommit appends a Commit value to the back of a list of
	// the property "formerType". Invalidates iterators that are
	// traversing using Prev.
	AppendForgeFedCommit(v ForgeFedCommit)
	// AppendForgeFedPush appends a Push value to the back of a list of the
	// property "formerType". Invalidates iterators that are traversing
	// using Prev.
	AppendForgeFedPush(v ForgeFedPush)
	// AppendForgeFedRepository appends a Repository value to the back of a
	// list of the property "formerType". Invalidates iterators that are
	// traversing using Prev.
	AppendForgeFedRepository(v ForgeFedRepository)
	// AppendForgeFedTicket appends a Ticket value to the back of a list of
	// the property "formerType". Invalidates iterators that are
	// traversing using Prev.
	AppendForgeFedTicket(v ForgeFedTicket)
	// AppendForgeFedTicketDependency appends a TicketDependency value to the
	// back of a list of the property "formerType". Invalidates iterators
	// that are traversing using Prev.
	AppendForgeFedTicketDependency(v ForgeFedTicketDependency)
	// AppendIRI appends an IRI value to the back of a list of the property
	// "formerType"
	AppendIRI(v *url.URL)
	// AppendTootEmoji appends a Emoji value to the back of a list of the
	// property "formerType". Invalidates iterators that are traversing
	// using Prev.
	AppendTootEmoji(v TootEmoji)
	// AppendTootIdentityProof appends a IdentityProof value to the back of a
	// list of the property "formerType". Invalidates iterators that are
	// traversing using Prev.
	AppendTootIdentityProof(v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "formerType". Invalidates iterators that are
	// traversing using Prev. Returns an error if the type is not a valid
	// one to set for this property.
	AppendType(t Type) error
	// AppendXMLSchemaString appends a string value to the back of a list of
	// the property "formerType". Invalidates iterators that are
	// traversing using Prev.
	AppendXMLSchemaString(v string)
	// At returns the property value for the specified index. Panics if the
	// index is out of bounds.
	At(index int) ActivityStreamsFormerTypePropertyIterator
	// Begin returns the first iterator, or nil if empty. Can be used with the
	// iterator's Next method and this property's End method to iterate
	// from front to back through all values.
	Begin() ActivityStreamsFormerTypePropertyIterator
	// Empty returns returns true if there are no elements.
	Empty() bool
	// End returns beyond-the-last iterator, which is nil. Can be used with
	// the iterator's Next method and this property's Begin method to
	// iterate from front to back through all values.
	End() ActivityStreamsFormerTypePropertyIterator
	// InsertActivityStreamsAccept inserts a Accept value at the specified
	// index for a property "formerType". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAccept(idx int, v ActivityStreamsAccept)
	// InsertActivityStreamsActivity inserts a Activity value at the specified
	// index for a property "formerType". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsActivity(idx int, v ActivityStreamsActivity)
	// InsertActivityStreamsAdd inserts a Add value at the specified index for
	// a property "formerType". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAdd(idx int, v ActivityStreamsAdd)
	// InsertActivityStreamsAnnounce inserts a Announce value at the specified
	// index for a property "formerType". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAnnounce(idx int, v ActivityStreamsAnnounce)
	// InsertActivityStreamsApplication inserts a Application value at the
	// specified index for a property "formerType". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsApplication(idx int, v ActivityStreamsApplication)
	// InsertActivityStreamsArrive inserts a Arrive value at the specified
	// index for a property "formerType". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsArrive(idx int, v ActivityStreamsArrive)
	// InsertActivityStreamsArticle inserts a Article value at the specified
	// index for a property "formerType". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsArticle(idx int, v ActivityStreamsArticle)
	// InsertActivityStreamsAudio inserts a Audio value at the specified index
	// for a property "formerType". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAudio(idx int, v ActivityStreamsAudio)
	// InsertActivityStreamsBlock inserts a Block value at the specified index
	// for a property "formerType". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsBlock(idx int, v ActivityStreamsBlock)
	// InsertActivityStreamsCollection inserts a Collection value at the
	// specified index for a property "formerType". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsCollection(idx int, v ActivityStreamsCollection)
	// InsertActivityStreamsCollectionPage inserts a CollectionPage value at
	// the specified index for a property "formerType". Existing elements
	// at that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsCollectionPage(idx int, v ActivityStreamsCollectionPage)
	// InsertActivityStreamsCreate inserts a Create value at the specified
	// index for a property "formerType". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsCreate(idx int, v ActivityStreamsCreate)
	// InsertActivityStreamsDelete inserts a Delete value at the specified
	// index for a property "formerType". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDelete(idx int, v ActivityStreamsDelete)
	// InsertActivityStreamsDislike inserts a Dislike value at the specified
	// index for a property "formerType". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDislike(idx int, v ActivityStreamsDislike)
	// InsertActivityStreamsDocument inserts a Document value at the specified
	// index for a property "formerType". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDocument(idx int, v ActivityStreamsDocument)
	// InsertActivityStreamsEvent inserts a Event value at the specified index
	// for a property "formerType". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsEvent(idx int, v ActivityStreamsEvent)
	// InsertActivityStreamsFlag inserts a Flag value at the specified index
	// for a property "formerType". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsFlag(idx int, v ActivityStreamsFlag)
	// InsertActivityStreamsFollow inserts a Follow value at the specified
	// index for a property "formerType". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsFollow(idx int, v ActivityStreamsFollow)
	// InsertActivityStreamsGroup inserts a Group value at the specified index
	// for a property "formerType". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsGroup(idx int, v ActivityStreamsGroup)
	// InsertActivityStreamsIgnore inserts a Ignore value at the specified
	// index for a property "formerType". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsIgnore(idx int, v ActivityStreamsIgnore)
	// InsertActivityStreamsImage inserts a Image value at the specified index
	// for a property "formerType". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsImage(idx int, v ActivityStreamsImage)
	// InsertActivityStreamsIntransitiveActivity inserts a
	// IntransitiveActivity value at the specified index for a property
	// "formerType". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertActivityStreamsIntransitiveActivity(idx int, v ActivityStreamsIntransitiveActivity)
	// InsertActivityStreamsInvite inserts a Invite value at the specified
	// index for a property "formerType". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsInvite(idx int, v ActivityStreamsInvite)
	// InsertActivityStreamsJoin inserts a Join value at the specified index
	// for a property "formerType". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsJoin(idx int, v ActivityStreamsJoin)
	// InsertActivityStreamsLeave inserts a Leave value at the specified index
	// for a property "formerType". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsLeave(idx int, v ActivityStreamsLeave)
	// InsertActivityStreamsLike inserts a Like value at the specified index
	// for a property "formerType". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsLike(idx int, v ActivityStreamsLike)
	// InsertActivityStreamsListen inserts a Listen value at the specified
	// index for a property "formerType". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsListen(idx int, v ActivityStreamsListen)
	// InsertActivityStreamsMove inserts a Move value at the specified index
	// for a property "formerType". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsMove(idx int, v ActivityStreamsMove)
	// InsertActivityStreamsNote inserts a Note value at the specified index
	// for a property "formerType". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsNote(idx int, v ActivityStreamsNote)
	// InsertActivityStreamsObject inserts a Object value at the specified
	// index for a property "formerType". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsObject(idx int, v ActivityStreamsObject)
	// InsertActivityStreamsOffer inserts a Offer value at the specified index
	// for a property "formerType". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsOffer(idx int, v ActivityStreamsOffer)
	// InsertActivityStreamsOrderedCollection inserts a OrderedCollection
	// value at the specified index for a property "formerType". Existing
	// elements at that index and higher are shifted back once.
	// Invalidates all iterators.
	InsertActivityStreamsOrderedCollection(idx int, v ActivityStreamsOrderedCollection)
	// InsertActivityStreamsOrderedCollectionPage inserts a
	// OrderedCollectionPage value at the specified index for a property
	// "formerType". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertActivityStreamsOrderedCollectionPage(idx int, v ActivityStreamsOrderedCollectionPage)
	// InsertActivityStreamsOrganization inserts a Organization value at the
	// specified index for a property "formerType". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsOrganization(idx int, v ActivityStreamsOrganization)
	// InsertActivityStreamsPage inserts a Page value at the specified index
	// for a property "formerType". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsPage(idx int, v ActivityStreamsPage)
	// InsertActivityStreamsPerson inserts a Person value at the specified
	// index for a property "formerType". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsPerson(idx int, v ActivityStreamsPerson)
	// InsertActivityStreamsPlace inserts a Place value at the specified index
	// for a property "formerType". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsPlace(idx int, v ActivityStreamsPlace)
	// InsertActivityStreamsProfile inserts a Profile value at the specified
	// index for a property "formerType". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsProfile(idx int, v ActivityStreamsProfile)
	// InsertActivityStreamsQuestion inserts a Question value at the specified
	// index for a property "formerType". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsQuestion(idx int, v ActivityStreamsQuestion)
	// InsertActivityStreamsRead inserts a Read value at the specified index
	// for a property "formerType". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsRead(idx int, v ActivityStreamsRead)
	// InsertActivityStreamsReject inserts a Reject value at the specified
	// index for a property "formerType". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsReject(idx int, v ActivityStreamsReject)
	// InsertActivityStreamsRelationship inserts a Relationship value at the
	// specified index for a property "formerType". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsRelationship(idx int, v ActivityStreamsRelationship)
	// InsertActivityStreamsRemove inserts a Remove value at the specified
	// index for a property "formerType". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsRemove(idx int, v ActivityStreamsRemove)
	// InsertActivityStreamsService inserts a Service value at the specified
	// index for a property "formerType". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsService(idx int, v ActivityStreamsService)
	// InsertActivityStreamsTentativeAccept inserts a TentativeAccept value at
	// the specified index for a property "formerType". Existing elements
	// at that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsTentativeAccept(idx int, v ActivityStreamsTentativeAccept)
	// InsertActivityStreamsTentativeReject inserts a TentativeReject value at
	// the specified index for a property "formerType". Existing elements
	// at that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsTentativeReject(idx int, v ActivityStreamsTentativeReject)
	// InsertActivityStreamsTombstone inserts a Tombstone value at the
	// specified index for a property "formerType". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsTombstone(idx int, v ActivityStreamsTombstone)
	// InsertActivityStreamsTravel inserts a Travel value at the specified
	// index for a property "formerType". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsTravel(idx int, v ActivityStreamsTravel)
	// InsertActivityStreamsUndo inserts a Undo value at the specified index
	// for a property "formerType". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsUndo(idx int, v ActivityStreamsUndo)
	// InsertActivityStreamsUpdate inserts a Update value at the specified
	// index for a property "formerType". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsUpdate(idx int, v ActivityStreamsUpdate)
	// InsertActivityStreamsVideo inserts a Video value at the specified index
	// for a property "formerType". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsVideo(idx int, v ActivityStreamsVideo)
	// InsertActivityStreamsView inserts a View value at the specified index
	// for a property "formerType". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsView(idx int, v ActivityStreamsView)
	// InsertForgeFedBranch inserts a Branch value at the specified index for
	// a property "formerType". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertForgeFedBranch(idx int, v ForgeFedBranch)
	// InsertForgeFedCommit inserts a Commit value at the specified index for
	// a property "formerType". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertForgeFedCommit(idx int, v ForgeFedCommit)
	// InsertForgeFedPush inserts a Push value at the specified index for a
	// property "formerType". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertForgeFedPush(idx int, v ForgeFedPush)
	// InsertForgeFedRepository inserts a Repository value at the specified
	// index for a property "formerType". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertForgeFedRepository(idx int, v ForgeFedRepository)
	// InsertForgeFedTicket inserts a Ticket value at the specified index for
	// a property "formerType". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertForgeFedTicket(idx int, v ForgeFedTicket)
	// InsertForgeFedTicketDependency inserts a TicketDependency value at the
	// specified index for a property "formerType". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
	// Insert inserts an IRI value at the specified index for a property
	// "formerType". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertIRI(idx int, v *url.URL)
	// InsertTootEmoji inserts a Emoji value at the specified index for a
	// property "formerType". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertTootEmoji(idx int, v TootEmoji)
	// InsertTootIdentityProof inserts a IdentityProof value at the specified
	// index for a property "formerType". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertTootIdentityProof(idx int, v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "formerType". Invalidates all iterators. Returns an
	// error if the type is not a valid one to set for this property.
	InsertType(idx int, t Type) error
	// InsertXMLSchemaString inserts a string value at the specified index for
	// a property "formerType". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertXMLSchemaString(idx int, v string)
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API method specifically needed only for alternate
	// implementations for go-fed. Applications should not use this
	// method. Panics if the index is out of bounds.
	KindIndex(idx int) int
	// Len returns the number of values that exist for the "formerType"
	// property.
	Len() (length int)
	// Less computes whether another property is less than this one. Mixing
	// types results in a consistent but arbitrary ordering
	Less(i, j int) bool
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsFormerTypeProperty) bool
	// Name returns the name of this property ("formerType") with any alias.
	Name() string
	// PrependActivityStreamsAccept prepends a Accept value to the front of a
	// list of the property "formerType". Invalidates all iterators.
	PrependActivityStreamsAccept(v ActivityStreamsAccept)
	// PrependActivityStreamsActivity prepends a Activity value to the front
	// of a list of the property "formerType". Invalidates all iterators.
	PrependActivityStreamsActivity(v ActivityStreamsActivity)
	// PrependActivityStreamsAdd prepends a Add value to the front of a list
	// of the property "formerType". Invalidates all iterators.
	PrependActivityStreamsAdd(v ActivityStreamsAdd)
	// PrependActivityStreamsAnnounce prepends a Announce value to the front
	// of a list of the property "formerType". Invalidates all iterators.
	PrependActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// PrependActivityStreamsApplication prepends a Application value to the
	// front of a list of the property "formerType". Invalidates all
	// iterators.
	PrependActivityStreamsApplication(v ActivityStreamsApplication)
	// PrependActivityStreamsArrive prepends a Arrive value to the front of a
	// list of the property "formerType". Invalidates all iterators.
	PrependActivityStreamsArrive(v ActivityStreamsArrive)
	// PrependActivityStreamsArticle prepends a Article value to the front of
	// a list of the property "formerType". Invalidates all iterators.
	PrependActivityStreamsArticle(v ActivityStreamsArticle)
	// PrependActivityStreamsAudio prepends a Audio value to the front of a
	// list of the property "formerType". Invalidates all iterators.
	PrependActivityStreamsAudio(v ActivityStreamsAudio)
	// PrependActivityStreamsBlock prepends a Block value to the front of a
	// list of the property "formerType". Invalidates all iterators.
	PrependActivityStreamsBlock(v ActivityStreamsBlock)
	// PrependActivityStreamsCollection prepends a Collection value to the
	// front of a list of the property "formerType". Invalidates all
	// iterators.
	PrependActivityStreamsCollection(v ActivityStreamsCollection)
	// PrependActivityStreamsCollectionPage prepends a CollectionPage value to
	// the front of a list of the property "formerType". Invalidates all
	// iterators.
	PrependActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// PrependActivityStreamsCreate prepends a Create value to the front of a
	// list of the property "formerType". Invalidates all iterators.
	PrependActivityStreamsCreate(v ActivityStreamsCreate)
	// PrependActivityStreamsDelete prepends a Delete value to the front of a
	// list of the property "formerType". Invalidates all iterators.
	PrependActivityStreamsDelete(v ActivityStreamsDelete)
	// PrependActivityStreamsDislike prepends a Dislike value to the front of
	// a list of the property "formerType". Invalidates all iterators.
	PrependActivityStreamsDislike(v ActivityStreamsDislike)
	// PrependActivityStreamsDocument prepends a Document value to the front
	// of a list of the property "formerType". Invalidates all iterators.
	PrependActivityStreamsDocument(v ActivityStreamsDocument)
	// PrependActivityStreamsEvent prepends a Event value to the front of a
	// list of the property "formerType". Invalidates all iterators.
	PrependActivityStreamsEvent(v ActivityStreamsEvent)
	// PrependActivityStreamsFlag prepends a Flag value to the front of a list
	// of the property "formerType". Invalidates all iterators.
	PrependActivityStreamsFlag(v ActivityStreamsFlag)
	// PrependActivityStreamsFollow prepends a Follow value to the front of a
	// list of the property "formerType". Invalidates all iterators.
	PrependActivityStreamsFollow(v ActivityStreamsFollow)
	// PrependActivityStreamsGroup prepends a Group value to the front of a
	// list of the property "formerType". Invalidates all iterators.
	PrependActivityStreamsGroup(v ActivityStreamsGroup)
	// PrependActivityStreamsIgnore prepends a Ignore value to the front of a
	// list of the property "formerType". Invalidates all iterators.
	PrependActivityStreamsIgnore(v ActivityStreamsIgnore)
	// PrependActivityStreamsImage prepends a Image value to the front of a
	// list of the property "formerType". Invalidates all iterators.
	PrependActivityStreamsImage(v ActivityStreamsImage)
	// PrependActivityStreamsIntransitiveActivity prepends a
	// IntransitiveActivity value to the front of a list of the property
	// "formerType". Invalidates all iterators.
	PrependActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// PrependActivityStreamsInvite prepends a Invite value to the front of a
	// list of the property "formerType". Invalidates all iterators.
	PrependActivityStreamsInvite(v ActivityStreamsInvite)
	// PrependActivityStreamsJoin prepends a Join value to the front of a list
	// of the property "formerType". Invalidates all iterators.
	PrependActivityStreamsJoin(v ActivityStreamsJoin)
	// PrependActivityStreamsLeave prepends a Leave value to the front of a
	// list of the property "formerType". Invalidates all iterators.
	PrependActivityStreamsLeave(v ActivityStreamsLeave)
	// PrependActivityStreamsLike prepends a Like value to the front of a list
	// of the property "formerType". Invalidates all iterators.
	PrependActivityStreamsLike(v ActivityStreamsLike)
	// PrependActivityStreamsListen prepends a Listen value to the front of a
	// list of the property "formerType". Invalidates all iterators.
	PrependActivityStreamsListen(v ActivityStreamsListen)
	// PrependActivityStreamsMove prepends a Move value to the front of a list
	// of the property "formerType". Invalidates all iterators.
	PrependActivityStreamsMove(v ActivityStreamsMove)
	// PrependActivityStreamsNote prepends a Note value to the front of a list
	// of the property "formerType". Invalidates all iterators.
	PrependActivityStreamsNote(v ActivityStreamsNote)
	// PrependActivityStreamsObject prepends a Object value to the front of a
	// list of the property "formerType". Invalidates all iterators.
	PrependActivityStreamsObject(v ActivityStreamsObject)
	// PrependActivityStreamsOffer prepends a Offer value to the front of a
	// list of the property "formerType". Invalidates all iterators.
	PrependActivityStreamsOffer(v ActivityStreamsOffer)
	// PrependActivityStreamsOrderedCollection prepends a OrderedCollection
	// value to the front of a list of the property "formerType".
	// Invalidates all iterators.
	PrependActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// PrependActivityStreamsOrderedCollectionPage prepends a
	// OrderedCollectionPage value to the front of a list of the property
	// "formerType". Invalidates all iterators.
	PrependActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// PrependActivityStreamsOrganization prepends a Organization value to the
	// front of a list of the property "formerType". Invalidates all
	// iterators.
	PrependActivityStreamsOrganization(v ActivityStreamsOrganization)
	// PrependActivityStreamsPage prepends a Page value to the front of a list
	// of the property "formerType". Invalidates all iterators.
	PrependActivityStreamsPage(v ActivityStreamsPage)
	// PrependActivityStreamsPerson prepends a Person value to the front of a
	// list of the property "formerType". Invalidates all iterators.
	PrependActivityStreamsPerson(v ActivityStreamsPerson)
	// PrependActivityStreamsPlace prepends a Place value to the front of a
	// list of the property "formerType". Invalidates all iterators.
	PrependActivityStreamsPlace(v ActivityStreamsPlace)
	// PrependActivityStreamsProfile prepends a Profile value to the front of
	// a list of the property "formerType". Invalidates all iterators.
	PrependActivityStreamsProfile(v ActivityStreamsProfile)
	// PrependActivityStreamsQuestion prepends a Question value to the front
	// of a list of the property "formerType". Invalidates all iterators.
	PrependActivityStreamsQuestion(v ActivityStreamsQuestion)
	// PrependActivityStreamsRead prepends a Read value to the front of a list
	// of the property "formerType". Invalidates all iterators.
	PrependActivityStreamsRead(v ActivityStreamsRead)
	// PrependActivityStreamsReject prepends a Reject value to the front of a
	// list of the property "formerType". Invalidates all iterators.
	PrependActivityStreamsReject(v ActivityStreamsReject)
	// PrependActivityStreamsRelationship prepends a Relationship value to the
	// front of a list of the property "formerType". Invalidates all
	// iterators.
	PrependActivityStreamsRelationship(v ActivityStreamsRelationship)
	// PrependActivityStreamsRemove prepends a Remove value to the front of a
	// list of the property "formerType". Invalidates all iterators.
	PrependActivityStreamsRemove(v ActivityStreamsRemove)
	// PrependActivityStreamsService prepends a Service value to the front of
	// a list of the property "formerType". Invalidates all iterators.
	PrependActivityStreamsService(v ActivityStreamsService)
	// PrependActivityStreamsTentativeAccept prepends a TentativeAccept value
	// to the front of a list of the property "formerType". Invalidates
	// all iterators.
	PrependActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// PrependActivityStreamsTentativeReject prepends a TentativeReject value
	// to the front of a list of the property "formerType". Invalidates
	// all iterators.
	PrependActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// PrependActivityStreamsTombstone prepends a Tombstone value to the front
	// of a list of the property "formerType". Invalidates all iterators.
	PrependActivityStreamsTombstone(v ActivityStreamsTombstone)
	// PrependActivityStreamsTravel prepends a Travel value to the front of a
	// list of the property "formerType". Invalidates all iterators.
	PrependActivityStreamsTravel(v ActivityStreamsTravel)
	// PrependActivityStreamsUndo prepends a Undo value to the front of a list
	// of the property "formerType". Invalidates all iterators.
	PrependActivityStreamsUndo(v ActivityStreamsUndo)
	// PrependActivityStreamsUpdate prepends a Update value to the front of a
	// list of the property "formerType". Invalidates all iterators.
	PrependActivityStreamsUpdate(v ActivityStreamsUpdate)
	// PrependActivityStreamsVideo prepends a Video value to the front of a
	// list of the property "formerType". Invalidates all iterators.
	PrependActivityStreamsVideo(v ActivityStreamsVideo)
	// PrependActivityStreamsView prepends a View value to the front of a list
	// of the property "formerType". Invalidates all iterators.
	PrependActivityStreamsView(v ActivityStreamsView)
	// PrependForgeFedBranch prepends a Branch value to the front of a list of
	// the property "formerType". Invalidates all iterators.
	PrependForgeFedBranch(v ForgeFedBranch)
	// PrependForgeFedCommit prepends a Commit value to the front of a list of
	// the property "formerType". Invalidates all iterators.
	PrependForgeFedCommit(v ForgeFedCommit)
	// PrependForgeFedPush prepends a Push value to the front of a list of the
	// property "formerType". Invalidates all iterators.
	PrependForgeFedPush(v ForgeFedPush)
	// PrependForgeFedRepository prepends a Repository value to the front of a
	// list of the property "formerType". Invalidates all iterators.
	PrependForgeFedRepository(v ForgeFedRepository)
	// PrependForgeFedTicket prepends a Ticket value to the front of a list of
	// the property "formerType". Invalidates all iterators.
	PrependForgeFedTicket(v ForgeFedTicket)
	// PrependForgeFedTicketDependency prepends a TicketDependency value to
	// the front of a list of the property "formerType". Invalidates all
	// iterators.
	PrependForgeFedTicketDependency(v ForgeFedTicketDependency)
	// PrependIRI prepends an IRI value to the front of a list of the property
	// "formerType".
	PrependIRI(v *url.URL)
	// PrependTootEmoji prepends a Emoji value to the front of a list of the
	// property "formerType". Invalidates all iterators.
	PrependTootEmoji(v TootEmoji)
	// PrependTootIdentityProof prepends a IdentityProof value to the front of
	// a list of the property "formerType". Invalidates all iterators.
	PrependTootIdentityProof(v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "formerType". Invalidates all iterators. Returns an
	// error if the type is not a valid one to set for this property.
	PrependType(t Type) error
	// PrependXMLSchemaString prepends a string value to the front of a list
	// of the property "formerType". Invalidates all iterators.
	PrependXMLSchemaString(v string)
	// Remove deletes an element at the specified index from a list of the
	// property "formerType", regardless of its type. Panics if the index
	// is out of bounds. Invalidates all iterators.
	Remove(idx int)
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// SetActivityStreamsAccept sets a Accept value to be at the specified
	// index for the property "formerType". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsAccept(idx int, v ActivityStreamsAccept)
	// SetActivityStreamsActivity sets a Activity value to be at the specified
	// index for the property "formerType". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsActivity(idx int, v ActivityStreamsActivity)
	// SetActivityStreamsAdd sets a Add value to be at the specified index for
	// the property "formerType". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsAdd(idx int, v ActivityStreamsAdd)
	// SetActivityStreamsAnnounce sets a Announce value to be at the specified
	// index for the property "formerType". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsAnnounce(idx int, v ActivityStreamsAnnounce)
	// SetActivityStreamsApplication sets a Application value to be at the
	// specified index for the property "formerType". Panics if the index
	// is out of bounds. Invalidates all iterators.
	SetActivityStreamsApplication(idx int, v ActivityStreamsApplication)
	// SetActivityStreamsArrive sets a Arrive value to be at the specified
	// index for the property "formerType". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsArrive(idx int, v ActivityStreamsArrive)
	// SetActivityStreamsArticle sets a Article value to be at the specified
	// index for the property "formerType". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsArticle(idx int, v ActivityStreamsArticle)
	// SetActivityStreamsAudio sets a Audio value to be at the specified index
	// for the property "formerType". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsAudio(idx int, v ActivityStreamsAudio)
	// SetActivityStreamsBlock sets a Block value to be at the specified index
	// for the property "formerType". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsBlock(idx int, v ActivityStreamsBlock)
	// SetActivityStreamsCollection sets a Collection value to be at the
	// specified index for the property "formerType". Panics if the index
	// is out of bounds. Invalidates all iterators.
	SetActivityStreamsCollection(idx int, v ActivityStreamsCollection)
	// SetActivityStreamsCollectionPage sets a CollectionPage value to be at
	// the specified index for the property "formerType". Panics if the
	// index is out of bounds. Invalidates all iterators.
	SetActivityStreamsCollectionPage(idx int, v ActivityStreamsCollectionPage)
	// SetActivityStreamsCreate sets a Create value to be at the specified
	// index for the property "formerType". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsCreate(idx int, v ActivityStreamsCreate)
	// SetActivityStreamsDelete sets a Delete value to be at the specified
	// index for the property "formerType". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsDelete(idx int, v ActivityStreamsDelete)
	// SetActivityStreamsDislike sets a Dislike value to be at the specified
	// index for the property "formerType". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsDislike(idx int, v ActivityStreamsDislike)
	// SetActivityStreamsDocument sets a Document value to be at the specified
	// index for the property "formerType". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsDocument(idx int, v ActivityStreamsDocument)
	// SetActivityStreamsEvent sets a Event value to be at the specified index
	// for the property "formerType". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsEvent(idx int, v ActivityStreamsEvent)
	// SetActivityStreamsFlag sets a Flag value to be at the specified index
	// for the property "formerType". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsFlag(idx int, v ActivityStreamsFlag)
	// SetActivityStreamsFollow sets a Follow value to be at the specified
	// index for the property "formerType". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsFollow(idx int, v ActivityStreamsFollow)
	// SetActivityStreamsGroup sets a Group value to be at the specified index
	// for the property "formerType". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsGroup(idx int, v ActivityStreamsGroup)
	// SetActivityStreamsIgnore sets a Ignore value to be at the specified
	// index for the property "formerType". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsIgnore(idx int, v ActivityStreamsIgnore)
	// SetActivityStreamsImage sets a Image value to be at the specified index
	// for the property "formerType". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsImage(idx int, v ActivityStreamsImage)
	// SetActivityStreamsIntransitiveActivity sets a IntransitiveActivity
	// value to be at the specified index for the property "formerType".
	// Panics if the index is out of bounds. Invalidates all iterators.
	SetActivityStreamsIntransitiveActivity(idx int, v ActivityStreamsIntransitiveActivity)
	// SetActivityStreamsInvite sets a Invite value to be at the specified
	// index for the property "formerType". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsInvite(idx int, v ActivityStreamsInvite)
	// SetActivityStreamsJoin sets a Join value to be at the specified index
	// for the property "formerType". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsJoin(idx int, v ActivityStreamsJoin)
	// SetActivityStreamsLeave sets a Leave value to be at the specified index
	// for the property "formerType". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsLeave(idx int, v ActivityStreamsLeave)
	// SetActivityStreamsLike sets a Like value to be at the specified index
	// for the property "formerType". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsLike(idx int, v ActivityStreamsLike)
	// SetActivityStreamsListen sets a Listen value to be at the specified
	// index for the property "formerType". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsListen(idx int, v ActivityStreamsListen)
	// SetActivityStreamsMove sets a Move value to be at the specified index
	// for the property "formerType". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsMove(idx int, v ActivityStreamsMove)
	// SetActivityStreamsNote sets a Note value to be at the specified index
	// for the property "formerType". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsNote(idx int, v ActivityStreamsNote)
	// SetActivityStreamsObject sets a Object value to be at the specified
	// index for the property "formerType". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsObject(idx int, v ActivityStreamsObject)
	// SetActivityStreamsOffer sets a Offer value to be at the specified index
	// for the property "formerType". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsOffer(idx int, v ActivityStreamsOffer)
	// SetActivityStreamsOrderedCollection sets a OrderedCollection value to
	// be at the specified index for the property "formerType". Panics if
	// the index is out of bounds. Invalidates all iterators.
	SetActivityStreamsOrderedCollection(idx int, v ActivityStreamsOrderedCollection)
	// SetActivityStreamsOrderedCollectionPage sets a OrderedCollectionPage
	// value to be at the specified index for the property "formerType".
	// Panics if the index is out of bounds. Invalidates all iterators.
	SetActivityStreamsOrderedCollectionPage(idx int, v ActivityStreamsOrderedCollectionPage)
	// SetActivityStreamsOrganization sets a Organization value to be at the
	// specified index for the property "formerType". Panics if the index
	// is out of bounds. Invalidates all iterators.
	SetActivityStreamsOrganization(idx int, v ActivityStreamsOrganization)
	// SetActivityStreamsPage sets a Page value to be at the specified index
	// for the property "formerType". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsPage(idx int, v ActivityStreamsPage)
	// SetActivityStreamsPerson sets a Person value to be at the specified
	// index for the property "formerType". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsPerson(idx int, v ActivityStreamsPerson)
	// SetActivityStreamsPlace sets a Place value to be at the specified index
	// for the property "formerType". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsPlace(idx int, v ActivityStreamsPlace)
	// SetActivityStreamsProfile sets a Profile value to be at the specified
	// index for the property "formerType". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsProfile(idx int, v ActivityStreamsProfile)
	// SetActivityStreamsQuestion sets a Question value to be at the specified
	// index for the property "formerType". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsQuestion(idx int, v ActivityStreamsQuestion)
	// SetActivityStreamsRead sets a Read value to be at the specified index
	// for the property "formerType". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsRead(idx int, v ActivityStreamsRead)
	// SetActivityStreamsReject sets a Reject value to be at the specified
	// index for the property "formerType". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsReject(idx int, v ActivityStreamsReject)
	// SetActivityStreamsRelationship sets a Relationship value to be at the
	// specified index for the property "formerType". Panics if the index
	// is out of bounds. Invalidates all iterators.
	SetActivityStreamsRelationship(idx int, v ActivityStreamsRelationship)
	// SetActivityStreamsRemove sets a Remove value to be at the specified
	// index for the property "formerType". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsRemove(idx int, v ActivityStreamsRemove)
	// SetActivityStreamsService sets a Service value to be at the specified
	// index for the property "formerType". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsService(idx int, v ActivityStreamsService)
	// SetActivityStreamsTentativeAccept sets a TentativeAccept value to be at
	// the specified index for the property "formerType". Panics if the
	// index is out of bounds. Invalidates all iterators.
	SetActivityStreamsTentativeAccept(idx int, v ActivityStreamsTentativeAccept)
	// SetActivityStreamsTentativeReject sets a TentativeReject value to be at
	// the specified index for the property "formerType". Panics if the
	// index is out of bounds. Invalidates all iterators.
	SetActivityStreamsTentativeReject(idx int, v ActivityStreamsTentativeReject)
	// SetActivityStreamsTombstone sets a Tombstone value to be at the
	// specified index for the property "formerType". Panics if the index
	// is out of bounds. Invalidates all iterators.
	SetActivityStreamsTombstone(idx int, v ActivityStreamsTombstone)
	// SetActivityStreamsTravel sets a Travel value to be at the specified
	// index for the property "formerType". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsTravel(idx int, v ActivityStreamsTravel)
	// SetActivityStreamsUndo sets a Undo value to be at the specified index
	// for the property "formerType". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsUndo(idx int, v ActivityStreamsUndo)
	// SetActivityStreamsUpdate sets a Update value to be at the specified
	// index for the property "formerType". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsUpdate(idx int, v ActivityStreamsUpdate)
	// SetActivityStreamsVideo sets a Video value to be at the specified index
	// for the property "formerType". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsVideo(idx int, v ActivityStreamsVideo)
	// SetActivityStreamsView sets a View value to be at the specified index
	// for the property "formerType". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsView(idx int, v ActivityStreamsView)
	// SetForgeFedBranch sets a Branch value to be at the specified index for
	// the property "formerType". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedBranch(idx int, v ForgeFedBranch)
	// SetForgeFedCommit sets a Commit value to be at the specified index for
	// the property "formerType". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedCommit(idx int, v ForgeFedCommit)
	// SetForgeFedPush sets a Push value to be at the specified index for the
	// property "formerType". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedPush(idx int, v ForgeFedPush)
	// SetForgeFedRepository sets a Repository value to be at the specified
	// index for the property "formerType". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetForgeFedRepository(idx int, v ForgeFedRepository)
	// SetForgeFedTicket sets a Ticket value to be at the specified index for
	// the property "formerType". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedTicket(idx int, v ForgeFedTicket)
	// SetForgeFedTicketDependency sets a TicketDependency value to be at the
	// specified index for the property "formerType". Panics if the index
	// is out of bounds. Invalidates all iterators.
	SetForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
	// SetIRI sets an IRI value to be at the specified index for the property
	// "formerType". Panics if the index is out of bounds.
	SetIRI(idx int, v *url.URL)
	// SetTootEmoji sets a Emoji value to be at the specified index for the
	// property "formerType". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetTootEmoji(idx int, v TootEmoji)
	// SetTootIdentityProof sets a IdentityProof value to be at the specified
	// index for the property "formerType". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetTootIdentityProof(idx int, v TootIdentityProof)
	// SetType sets an arbitrary type value to the specified index of the
	// property "formerType". Invalidates all iterators. Returns an error
	// if the type is not a valid one to set for this property. Panics if
	// the index is out of bounds.
	SetType(idx int, t Type) error
	// SetXMLSchemaString sets a string value to be at the specified index for
	// the property "formerType". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetXMLSchemaString(idx int, v string)
	// Swap swaps the location of values at two indices for the "formerType"
	// property.
	Swap(i, j int)
}

On a Tombstone object, the formerType property identifies the type of the object that was deleted.

Example 142 (https://www.w3.org/TR/activitystreams-vocabulary/#ex185b-jsonld):

{
  "formerType": "/Image",
  "summary": "This image has been deleted",
  "type": "Tombstone",
  "url": "http://example.org/image/2"
}

type ActivityStreamsFormerTypePropertyIterator

type ActivityStreamsFormerTypePropertyIterator interface {
	// GetActivityStreamsAccept returns the value of this property. When
	// IsActivityStreamsAccept returns false, GetActivityStreamsAccept
	// will return an arbitrary value.
	GetActivityStreamsAccept() ActivityStreamsAccept
	// GetActivityStreamsActivity returns the value of this property. When
	// IsActivityStreamsActivity returns false, GetActivityStreamsActivity
	// will return an arbitrary value.
	GetActivityStreamsActivity() ActivityStreamsActivity
	// GetActivityStreamsAdd returns the value of this property. When
	// IsActivityStreamsAdd returns false, GetActivityStreamsAdd will
	// return an arbitrary value.
	GetActivityStreamsAdd() ActivityStreamsAdd
	// GetActivityStreamsAnnounce returns the value of this property. When
	// IsActivityStreamsAnnounce returns false, GetActivityStreamsAnnounce
	// will return an arbitrary value.
	GetActivityStreamsAnnounce() ActivityStreamsAnnounce
	// GetActivityStreamsApplication returns the value of this property. When
	// IsActivityStreamsApplication returns false,
	// GetActivityStreamsApplication will return an arbitrary value.
	GetActivityStreamsApplication() ActivityStreamsApplication
	// GetActivityStreamsArrive returns the value of this property. When
	// IsActivityStreamsArrive returns false, GetActivityStreamsArrive
	// will return an arbitrary value.
	GetActivityStreamsArrive() ActivityStreamsArrive
	// GetActivityStreamsArticle returns the value of this property. When
	// IsActivityStreamsArticle returns false, GetActivityStreamsArticle
	// will return an arbitrary value.
	GetActivityStreamsArticle() ActivityStreamsArticle
	// GetActivityStreamsAudio returns the value of this property. When
	// IsActivityStreamsAudio returns false, GetActivityStreamsAudio will
	// return an arbitrary value.
	GetActivityStreamsAudio() ActivityStreamsAudio
	// GetActivityStreamsBlock returns the value of this property. When
	// IsActivityStreamsBlock returns false, GetActivityStreamsBlock will
	// return an arbitrary value.
	GetActivityStreamsBlock() ActivityStreamsBlock
	// GetActivityStreamsCollection returns the value of this property. When
	// IsActivityStreamsCollection returns false,
	// GetActivityStreamsCollection will return an arbitrary value.
	GetActivityStreamsCollection() ActivityStreamsCollection
	// GetActivityStreamsCollectionPage returns the value of this property.
	// When IsActivityStreamsCollectionPage returns false,
	// GetActivityStreamsCollectionPage will return an arbitrary value.
	GetActivityStreamsCollectionPage() ActivityStreamsCollectionPage
	// GetActivityStreamsCreate returns the value of this property. When
	// IsActivityStreamsCreate returns false, GetActivityStreamsCreate
	// will return an arbitrary value.
	GetActivityStreamsCreate() ActivityStreamsCreate
	// GetActivityStreamsDelete returns the value of this property. When
	// IsActivityStreamsDelete returns false, GetActivityStreamsDelete
	// will return an arbitrary value.
	GetActivityStreamsDelete() ActivityStreamsDelete
	// GetActivityStreamsDislike returns the value of this property. When
	// IsActivityStreamsDislike returns false, GetActivityStreamsDislike
	// will return an arbitrary value.
	GetActivityStreamsDislike() ActivityStreamsDislike
	// GetActivityStreamsDocument returns the value of this property. When
	// IsActivityStreamsDocument returns false, GetActivityStreamsDocument
	// will return an arbitrary value.
	GetActivityStreamsDocument() ActivityStreamsDocument
	// GetActivityStreamsEvent returns the value of this property. When
	// IsActivityStreamsEvent returns false, GetActivityStreamsEvent will
	// return an arbitrary value.
	GetActivityStreamsEvent() ActivityStreamsEvent
	// GetActivityStreamsFlag returns the value of this property. When
	// IsActivityStreamsFlag returns false, GetActivityStreamsFlag will
	// return an arbitrary value.
	GetActivityStreamsFlag() ActivityStreamsFlag
	// GetActivityStreamsFollow returns the value of this property. When
	// IsActivityStreamsFollow returns false, GetActivityStreamsFollow
	// will return an arbitrary value.
	GetActivityStreamsFollow() ActivityStreamsFollow
	// GetActivityStreamsGroup returns the value of this property. When
	// IsActivityStreamsGroup returns false, GetActivityStreamsGroup will
	// return an arbitrary value.
	GetActivityStreamsGroup() ActivityStreamsGroup
	// GetActivityStreamsIgnore returns the value of this property. When
	// IsActivityStreamsIgnore returns false, GetActivityStreamsIgnore
	// will return an arbitrary value.
	GetActivityStreamsIgnore() ActivityStreamsIgnore
	// GetActivityStreamsImage returns the value of this property. When
	// IsActivityStreamsImage returns false, GetActivityStreamsImage will
	// return an arbitrary value.
	GetActivityStreamsImage() ActivityStreamsImage
	// GetActivityStreamsIntransitiveActivity returns the value of this
	// property. When IsActivityStreamsIntransitiveActivity returns false,
	// GetActivityStreamsIntransitiveActivity will return an arbitrary
	// value.
	GetActivityStreamsIntransitiveActivity() ActivityStreamsIntransitiveActivity
	// GetActivityStreamsInvite returns the value of this property. When
	// IsActivityStreamsInvite returns false, GetActivityStreamsInvite
	// will return an arbitrary value.
	GetActivityStreamsInvite() ActivityStreamsInvite
	// GetActivityStreamsJoin returns the value of this property. When
	// IsActivityStreamsJoin returns false, GetActivityStreamsJoin will
	// return an arbitrary value.
	GetActivityStreamsJoin() ActivityStreamsJoin
	// GetActivityStreamsLeave returns the value of this property. When
	// IsActivityStreamsLeave returns false, GetActivityStreamsLeave will
	// return an arbitrary value.
	GetActivityStreamsLeave() ActivityStreamsLeave
	// GetActivityStreamsLike returns the value of this property. When
	// IsActivityStreamsLike returns false, GetActivityStreamsLike will
	// return an arbitrary value.
	GetActivityStreamsLike() ActivityStreamsLike
	// GetActivityStreamsListen returns the value of this property. When
	// IsActivityStreamsListen returns false, GetActivityStreamsListen
	// will return an arbitrary value.
	GetActivityStreamsListen() ActivityStreamsListen
	// GetActivityStreamsMove returns the value of this property. When
	// IsActivityStreamsMove returns false, GetActivityStreamsMove will
	// return an arbitrary value.
	GetActivityStreamsMove() ActivityStreamsMove
	// GetActivityStreamsNote returns the value of this property. When
	// IsActivityStreamsNote returns false, GetActivityStreamsNote will
	// return an arbitrary value.
	GetActivityStreamsNote() ActivityStreamsNote
	// GetActivityStreamsObject returns the value of this property. When
	// IsActivityStreamsObject returns false, GetActivityStreamsObject
	// will return an arbitrary value.
	GetActivityStreamsObject() ActivityStreamsObject
	// GetActivityStreamsOffer returns the value of this property. When
	// IsActivityStreamsOffer returns false, GetActivityStreamsOffer will
	// return an arbitrary value.
	GetActivityStreamsOffer() ActivityStreamsOffer
	// GetActivityStreamsOrderedCollection returns the value of this property.
	// When IsActivityStreamsOrderedCollection returns false,
	// GetActivityStreamsOrderedCollection will return an arbitrary value.
	GetActivityStreamsOrderedCollection() ActivityStreamsOrderedCollection
	// GetActivityStreamsOrderedCollectionPage returns the value of this
	// property. When IsActivityStreamsOrderedCollectionPage returns
	// false, GetActivityStreamsOrderedCollectionPage will return an
	// arbitrary value.
	GetActivityStreamsOrderedCollectionPage() ActivityStreamsOrderedCollectionPage
	// GetActivityStreamsOrganization returns the value of this property. When
	// IsActivityStreamsOrganization returns false,
	// GetActivityStreamsOrganization will return an arbitrary value.
	GetActivityStreamsOrganization() ActivityStreamsOrganization
	// GetActivityStreamsPage returns the value of this property. When
	// IsActivityStreamsPage returns false, GetActivityStreamsPage will
	// return an arbitrary value.
	GetActivityStreamsPage() ActivityStreamsPage
	// GetActivityStreamsPerson returns the value of this property. When
	// IsActivityStreamsPerson returns false, GetActivityStreamsPerson
	// will return an arbitrary value.
	GetActivityStreamsPerson() ActivityStreamsPerson
	// GetActivityStreamsPlace returns the value of this property. When
	// IsActivityStreamsPlace returns false, GetActivityStreamsPlace will
	// return an arbitrary value.
	GetActivityStreamsPlace() ActivityStreamsPlace
	// GetActivityStreamsProfile returns the value of this property. When
	// IsActivityStreamsProfile returns false, GetActivityStreamsProfile
	// will return an arbitrary value.
	GetActivityStreamsProfile() ActivityStreamsProfile
	// GetActivityStreamsQuestion returns the value of this property. When
	// IsActivityStreamsQuestion returns false, GetActivityStreamsQuestion
	// will return an arbitrary value.
	GetActivityStreamsQuestion() ActivityStreamsQuestion
	// GetActivityStreamsRead returns the value of this property. When
	// IsActivityStreamsRead returns false, GetActivityStreamsRead will
	// return an arbitrary value.
	GetActivityStreamsRead() ActivityStreamsRead
	// GetActivityStreamsReject returns the value of this property. When
	// IsActivityStreamsReject returns false, GetActivityStreamsReject
	// will return an arbitrary value.
	GetActivityStreamsReject() ActivityStreamsReject
	// GetActivityStreamsRelationship returns the value of this property. When
	// IsActivityStreamsRelationship returns false,
	// GetActivityStreamsRelationship will return an arbitrary value.
	GetActivityStreamsRelationship() ActivityStreamsRelationship
	// GetActivityStreamsRemove returns the value of this property. When
	// IsActivityStreamsRemove returns false, GetActivityStreamsRemove
	// will return an arbitrary value.
	GetActivityStreamsRemove() ActivityStreamsRemove
	// GetActivityStreamsService returns the value of this property. When
	// IsActivityStreamsService returns false, GetActivityStreamsService
	// will return an arbitrary value.
	GetActivityStreamsService() ActivityStreamsService
	// GetActivityStreamsTentativeAccept returns the value of this property.
	// When IsActivityStreamsTentativeAccept returns false,
	// GetActivityStreamsTentativeAccept will return an arbitrary value.
	GetActivityStreamsTentativeAccept() ActivityStreamsTentativeAccept
	// GetActivityStreamsTentativeReject returns the value of this property.
	// When IsActivityStreamsTentativeReject returns false,
	// GetActivityStreamsTentativeReject will return an arbitrary value.
	GetActivityStreamsTentativeReject() ActivityStreamsTentativeReject
	// GetActivityStreamsTombstone returns the value of this property. When
	// IsActivityStreamsTombstone returns false,
	// GetActivityStreamsTombstone will return an arbitrary value.
	GetActivityStreamsTombstone() ActivityStreamsTombstone
	// GetActivityStreamsTravel returns the value of this property. When
	// IsActivityStreamsTravel returns false, GetActivityStreamsTravel
	// will return an arbitrary value.
	GetActivityStreamsTravel() ActivityStreamsTravel
	// GetActivityStreamsUndo returns the value of this property. When
	// IsActivityStreamsUndo returns false, GetActivityStreamsUndo will
	// return an arbitrary value.
	GetActivityStreamsUndo() ActivityStreamsUndo
	// GetActivityStreamsUpdate returns the value of this property. When
	// IsActivityStreamsUpdate returns false, GetActivityStreamsUpdate
	// will return an arbitrary value.
	GetActivityStreamsUpdate() ActivityStreamsUpdate
	// GetActivityStreamsVideo returns the value of this property. When
	// IsActivityStreamsVideo returns false, GetActivityStreamsVideo will
	// return an arbitrary value.
	GetActivityStreamsVideo() ActivityStreamsVideo
	// GetActivityStreamsView returns the value of this property. When
	// IsActivityStreamsView returns false, GetActivityStreamsView will
	// return an arbitrary value.
	GetActivityStreamsView() ActivityStreamsView
	// GetForgeFedBranch returns the value of this property. When
	// IsForgeFedBranch returns false, GetForgeFedBranch will return an
	// arbitrary value.
	GetForgeFedBranch() ForgeFedBranch
	// GetForgeFedCommit returns the value of this property. When
	// IsForgeFedCommit returns false, GetForgeFedCommit will return an
	// arbitrary value.
	GetForgeFedCommit() ForgeFedCommit
	// GetForgeFedPush returns the value of this property. When IsForgeFedPush
	// returns false, GetForgeFedPush will return an arbitrary value.
	GetForgeFedPush() ForgeFedPush
	// GetForgeFedRepository returns the value of this property. When
	// IsForgeFedRepository returns false, GetForgeFedRepository will
	// return an arbitrary value.
	GetForgeFedRepository() ForgeFedRepository
	// GetForgeFedTicket returns the value of this property. When
	// IsForgeFedTicket returns false, GetForgeFedTicket will return an
	// arbitrary value.
	GetForgeFedTicket() ForgeFedTicket
	// GetForgeFedTicketDependency returns the value of this property. When
	// IsForgeFedTicketDependency returns false,
	// GetForgeFedTicketDependency will return an arbitrary value.
	GetForgeFedTicketDependency() ForgeFedTicketDependency
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return an arbitrary value.
	GetIRI() *url.URL
	// GetTootEmoji returns the value of this property. When IsTootEmoji
	// returns false, GetTootEmoji will return an arbitrary value.
	GetTootEmoji() TootEmoji
	// GetTootIdentityProof returns the value of this property. When
	// IsTootIdentityProof returns false, GetTootIdentityProof will return
	// an arbitrary value.
	GetTootIdentityProof() TootIdentityProof
	// GetType returns the value in this property as a Type. Returns nil if
	// the value is not an ActivityStreams type, such as an IRI or another
	// value.
	GetType() Type
	// GetXMLSchemaString returns the value of this property. When
	// IsXMLSchemaString returns false, GetXMLSchemaString will return an
	// arbitrary value.
	GetXMLSchemaString() string
	// HasAny returns true if any of the different values is set.
	HasAny() bool
	// IsActivityStreamsAccept returns true if this property has a type of
	// "Accept". When true, use the GetActivityStreamsAccept and
	// SetActivityStreamsAccept methods to access and set this property.
	IsActivityStreamsAccept() bool
	// IsActivityStreamsActivity returns true if this property has a type of
	// "Activity". When true, use the GetActivityStreamsActivity and
	// SetActivityStreamsActivity methods to access and set this property.
	IsActivityStreamsActivity() bool
	// IsActivityStreamsAdd returns true if this property has a type of "Add".
	// When true, use the GetActivityStreamsAdd and SetActivityStreamsAdd
	// methods to access and set this property.
	IsActivityStreamsAdd() bool
	// IsActivityStreamsAnnounce returns true if this property has a type of
	// "Announce". When true, use the GetActivityStreamsAnnounce and
	// SetActivityStreamsAnnounce methods to access and set this property.
	IsActivityStreamsAnnounce() bool
	// IsActivityStreamsApplication returns true if this property has a type
	// of "Application". When true, use the GetActivityStreamsApplication
	// and SetActivityStreamsApplication methods to access and set this
	// property.
	IsActivityStreamsApplication() bool
	// IsActivityStreamsArrive returns true if this property has a type of
	// "Arrive". When true, use the GetActivityStreamsArrive and
	// SetActivityStreamsArrive methods to access and set this property.
	IsActivityStreamsArrive() bool
	// IsActivityStreamsArticle returns true if this property has a type of
	// "Article". When true, use the GetActivityStreamsArticle and
	// SetActivityStreamsArticle methods to access and set this property.
	IsActivityStreamsArticle() bool
	// IsActivityStreamsAudio returns true if this property has a type of
	// "Audio". When true, use the GetActivityStreamsAudio and
	// SetActivityStreamsAudio methods to access and set this property.
	IsActivityStreamsAudio() bool
	// IsActivityStreamsBlock returns true if this property has a type of
	// "Block". When true, use the GetActivityStreamsBlock and
	// SetActivityStreamsBlock methods to access and set this property.
	IsActivityStreamsBlock() bool
	// IsActivityStreamsCollection returns true if this property has a type of
	// "Collection". When true, use the GetActivityStreamsCollection and
	// SetActivityStreamsCollection methods to access and set this
	// property.
	IsActivityStreamsCollection() bool
	// IsActivityStreamsCollectionPage returns true if this property has a
	// type of "CollectionPage". When true, use the
	// GetActivityStreamsCollectionPage and
	// SetActivityStreamsCollectionPage methods to access and set this
	// property.
	IsActivityStreamsCollectionPage() bool
	// IsActivityStreamsCreate returns true if this property has a type of
	// "Create". When true, use the GetActivityStreamsCreate and
	// SetActivityStreamsCreate methods to access and set this property.
	IsActivityStreamsCreate() bool
	// IsActivityStreamsDelete returns true if this property has a type of
	// "Delete". When true, use the GetActivityStreamsDelete and
	// SetActivityStreamsDelete methods to access and set this property.
	IsActivityStreamsDelete() bool
	// IsActivityStreamsDislike returns true if this property has a type of
	// "Dislike". When true, use the GetActivityStreamsDislike and
	// SetActivityStreamsDislike methods to access and set this property.
	IsActivityStreamsDislike() bool
	// IsActivityStreamsDocument returns true if this property has a type of
	// "Document". When true, use the GetActivityStreamsDocument and
	// SetActivityStreamsDocument methods to access and set this property.
	IsActivityStreamsDocument() bool
	// IsActivityStreamsEvent returns true if this property has a type of
	// "Event". When true, use the GetActivityStreamsEvent and
	// SetActivityStreamsEvent methods to access and set this property.
	IsActivityStreamsEvent() bool
	// IsActivityStreamsFlag returns true if this property has a type of
	// "Flag". When true, use the GetActivityStreamsFlag and
	// SetActivityStreamsFlag methods to access and set this property.
	IsActivityStreamsFlag() bool
	// IsActivityStreamsFollow returns true if this property has a type of
	// "Follow". When true, use the GetActivityStreamsFollow and
	// SetActivityStreamsFollow methods to access and set this property.
	IsActivityStreamsFollow() bool
	// IsActivityStreamsGroup returns true if this property has a type of
	// "Group". When true, use the GetActivityStreamsGroup and
	// SetActivityStreamsGroup methods to access and set this property.
	IsActivityStreamsGroup() bool
	// IsActivityStreamsIgnore returns true if this property has a type of
	// "Ignore". When true, use the GetActivityStreamsIgnore and
	// SetActivityStreamsIgnore methods to access and set this property.
	IsActivityStreamsIgnore() bool
	// IsActivityStreamsImage returns true if this property has a type of
	// "Image". When true, use the GetActivityStreamsImage and
	// SetActivityStreamsImage methods to access and set this property.
	IsActivityStreamsImage() bool
	// IsActivityStreamsIntransitiveActivity returns true if this property has
	// a type of "IntransitiveActivity". When true, use the
	// GetActivityStreamsIntransitiveActivity and
	// SetActivityStreamsIntransitiveActivity methods to access and set
	// this property.
	IsActivityStreamsIntransitiveActivity() bool
	// IsActivityStreamsInvite returns true if this property has a type of
	// "Invite". When true, use the GetActivityStreamsInvite and
	// SetActivityStreamsInvite methods to access and set this property.
	IsActivityStreamsInvite() bool
	// IsActivityStreamsJoin returns true if this property has a type of
	// "Join". When true, use the GetActivityStreamsJoin and
	// SetActivityStreamsJoin methods to access and set this property.
	IsActivityStreamsJoin() bool
	// IsActivityStreamsLeave returns true if this property has a type of
	// "Leave". When true, use the GetActivityStreamsLeave and
	// SetActivityStreamsLeave methods to access and set this property.
	IsActivityStreamsLeave() bool
	// IsActivityStreamsLike returns true if this property has a type of
	// "Like". When true, use the GetActivityStreamsLike and
	// SetActivityStreamsLike methods to access and set this property.
	IsActivityStreamsLike() bool
	// IsActivityStreamsListen returns true if this property has a type of
	// "Listen". When true, use the GetActivityStreamsListen and
	// SetActivityStreamsListen methods to access and set this property.
	IsActivityStreamsListen() bool
	// IsActivityStreamsMove returns true if this property has a type of
	// "Move". When true, use the GetActivityStreamsMove and
	// SetActivityStreamsMove methods to access and set this property.
	IsActivityStreamsMove() bool
	// IsActivityStreamsNote returns true if this property has a type of
	// "Note". When true, use the GetActivityStreamsNote and
	// SetActivityStreamsNote methods to access and set this property.
	IsActivityStreamsNote() bool
	// IsActivityStreamsObject returns true if this property has a type of
	// "Object". When true, use the GetActivityStreamsObject and
	// SetActivityStreamsObject methods to access and set this property.
	IsActivityStreamsObject() bool
	// IsActivityStreamsOffer returns true if this property has a type of
	// "Offer". When true, use the GetActivityStreamsOffer and
	// SetActivityStreamsOffer methods to access and set this property.
	IsActivityStreamsOffer() bool
	// IsActivityStreamsOrderedCollection returns true if this property has a
	// type of "OrderedCollection". When true, use the
	// GetActivityStreamsOrderedCollection and
	// SetActivityStreamsOrderedCollection methods to access and set this
	// property.
	IsActivityStreamsOrderedCollection() bool
	// IsActivityStreamsOrderedCollectionPage returns true if this property
	// has a type of "OrderedCollectionPage". When true, use the
	// GetActivityStreamsOrderedCollectionPage and
	// SetActivityStreamsOrderedCollectionPage methods to access and set
	// this property.
	IsActivityStreamsOrderedCollectionPage() bool
	// IsActivityStreamsOrganization returns true if this property has a type
	// of "Organization". When true, use the
	// GetActivityStreamsOrganization and SetActivityStreamsOrganization
	// methods to access and set this property.
	IsActivityStreamsOrganization() bool
	// IsActivityStreamsPage returns true if this property has a type of
	// "Page". When true, use the GetActivityStreamsPage and
	// SetActivityStreamsPage methods to access and set this property.
	IsActivityStreamsPage() bool
	// IsActivityStreamsPerson returns true if this property has a type of
	// "Person". When true, use the GetActivityStreamsPerson and
	// SetActivityStreamsPerson methods to access and set this property.
	IsActivityStreamsPerson() bool
	// IsActivityStreamsPlace returns true if this property has a type of
	// "Place". When true, use the GetActivityStreamsPlace and
	// SetActivityStreamsPlace methods to access and set this property.
	IsActivityStreamsPlace() bool
	// IsActivityStreamsProfile returns true if this property has a type of
	// "Profile". When true, use the GetActivityStreamsProfile and
	// SetActivityStreamsProfile methods to access and set this property.
	IsActivityStreamsProfile() bool
	// IsActivityStreamsQuestion returns true if this property has a type of
	// "Question". When true, use the GetActivityStreamsQuestion and
	// SetActivityStreamsQuestion methods to access and set this property.
	IsActivityStreamsQuestion() bool
	// IsActivityStreamsRead returns true if this property has a type of
	// "Read". When true, use the GetActivityStreamsRead and
	// SetActivityStreamsRead methods to access and set this property.
	IsActivityStreamsRead() bool
	// IsActivityStreamsReject returns true if this property has a type of
	// "Reject". When true, use the GetActivityStreamsReject and
	// SetActivityStreamsReject methods to access and set this property.
	IsActivityStreamsReject() bool
	// IsActivityStreamsRelationship returns true if this property has a type
	// of "Relationship". When true, use the
	// GetActivityStreamsRelationship and SetActivityStreamsRelationship
	// methods to access and set this property.
	IsActivityStreamsRelationship() bool
	// IsActivityStreamsRemove returns true if this property has a type of
	// "Remove". When true, use the GetActivityStreamsRemove and
	// SetActivityStreamsRemove methods to access and set this property.
	IsActivityStreamsRemove() bool
	// IsActivityStreamsService returns true if this property has a type of
	// "Service". When true, use the GetActivityStreamsService and
	// SetActivityStreamsService methods to access and set this property.
	IsActivityStreamsService() bool
	// IsActivityStreamsTentativeAccept returns true if this property has a
	// type of "TentativeAccept". When true, use the
	// GetActivityStreamsTentativeAccept and
	// SetActivityStreamsTentativeAccept methods to access and set this
	// property.
	IsActivityStreamsTentativeAccept() bool
	// IsActivityStreamsTentativeReject returns true if this property has a
	// type of "TentativeReject". When true, use the
	// GetActivityStreamsTentativeReject and
	// SetActivityStreamsTentativeReject methods to access and set this
	// property.
	IsActivityStreamsTentativeReject() bool
	// IsActivityStreamsTombstone returns true if this property has a type of
	// "Tombstone". When true, use the GetActivityStreamsTombstone and
	// SetActivityStreamsTombstone methods to access and set this property.
	IsActivityStreamsTombstone() bool
	// IsActivityStreamsTravel returns true if this property has a type of
	// "Travel". When true, use the GetActivityStreamsTravel and
	// SetActivityStreamsTravel methods to access and set this property.
	IsActivityStreamsTravel() bool
	// IsActivityStreamsUndo returns true if this property has a type of
	// "Undo". When true, use the GetActivityStreamsUndo and
	// SetActivityStreamsUndo methods to access and set this property.
	IsActivityStreamsUndo() bool
	// IsActivityStreamsUpdate returns true if this property has a type of
	// "Update". When true, use the GetActivityStreamsUpdate and
	// SetActivityStreamsUpdate methods to access and set this property.
	IsActivityStreamsUpdate() bool
	// IsActivityStreamsVideo returns true if this property has a type of
	// "Video". When true, use the GetActivityStreamsVideo and
	// SetActivityStreamsVideo methods to access and set this property.
	IsActivityStreamsVideo() bool
	// IsActivityStreamsView returns true if this property has a type of
	// "View". When true, use the GetActivityStreamsView and
	// SetActivityStreamsView methods to access and set this property.
	IsActivityStreamsView() bool
	// IsForgeFedBranch returns true if this property has a type of "Branch".
	// When true, use the GetForgeFedBranch and SetForgeFedBranch methods
	// to access and set this property.
	IsForgeFedBranch() bool
	// IsForgeFedCommit returns true if this property has a type of "Commit".
	// When true, use the GetForgeFedCommit and SetForgeFedCommit methods
	// to access and set this property.
	IsForgeFedCommit() bool
	// IsForgeFedPush returns true if this property has a type of "Push". When
	// true, use the GetForgeFedPush and SetForgeFedPush methods to access
	// and set this property.
	IsForgeFedPush() bool
	// IsForgeFedRepository returns true if this property has a type of
	// "Repository". When true, use the GetForgeFedRepository and
	// SetForgeFedRepository methods to access and set this property.
	IsForgeFedRepository() bool
	// IsForgeFedTicket returns true if this property has a type of "Ticket".
	// When true, use the GetForgeFedTicket and SetForgeFedTicket methods
	// to access and set this property.
	IsForgeFedTicket() bool
	// IsForgeFedTicketDependency returns true if this property has a type of
	// "TicketDependency". When true, use the GetForgeFedTicketDependency
	// and SetForgeFedTicketDependency methods to access and set this
	// property.
	IsForgeFedTicketDependency() bool
	// IsIRI returns true if this property is an IRI. When true, use GetIRI
	// and SetIRI to access and set this property
	IsIRI() bool
	// IsTootEmoji returns true if this property has a type of "Emoji". When
	// true, use the GetTootEmoji and SetTootEmoji methods to access and
	// set this property.
	IsTootEmoji() bool
	// IsTootIdentityProof returns true if this property has a type of
	// "IdentityProof". When true, use the GetTootIdentityProof and
	// SetTootIdentityProof methods to access and set this property.
	IsTootIdentityProof() bool
	// IsXMLSchemaString returns true if this property has a type of "string".
	// When true, use the GetXMLSchemaString and SetXMLSchemaString
	// methods to access and set this property.
	IsXMLSchemaString() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsFormerTypePropertyIterator) bool
	// Name returns the name of this property: "ActivityStreamsFormerType".
	Name() string
	// Next returns the next iterator, or nil if there is no next iterator.
	Next() ActivityStreamsFormerTypePropertyIterator
	// Prev returns the previous iterator, or nil if there is no previous
	// iterator.
	Prev() ActivityStreamsFormerTypePropertyIterator
	// SetActivityStreamsAccept sets the value of this property. Calling
	// IsActivityStreamsAccept afterwards returns true.
	SetActivityStreamsAccept(v ActivityStreamsAccept)
	// SetActivityStreamsActivity sets the value of this property. Calling
	// IsActivityStreamsActivity afterwards returns true.
	SetActivityStreamsActivity(v ActivityStreamsActivity)
	// SetActivityStreamsAdd sets the value of this property. Calling
	// IsActivityStreamsAdd afterwards returns true.
	SetActivityStreamsAdd(v ActivityStreamsAdd)
	// SetActivityStreamsAnnounce sets the value of this property. Calling
	// IsActivityStreamsAnnounce afterwards returns true.
	SetActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// SetActivityStreamsApplication sets the value of this property. Calling
	// IsActivityStreamsApplication afterwards returns true.
	SetActivityStreamsApplication(v ActivityStreamsApplication)
	// SetActivityStreamsArrive sets the value of this property. Calling
	// IsActivityStreamsArrive afterwards returns true.
	SetActivityStreamsArrive(v ActivityStreamsArrive)
	// SetActivityStreamsArticle sets the value of this property. Calling
	// IsActivityStreamsArticle afterwards returns true.
	SetActivityStreamsArticle(v ActivityStreamsArticle)
	// SetActivityStreamsAudio sets the value of this property. Calling
	// IsActivityStreamsAudio afterwards returns true.
	SetActivityStreamsAudio(v ActivityStreamsAudio)
	// SetActivityStreamsBlock sets the value of this property. Calling
	// IsActivityStreamsBlock afterwards returns true.
	SetActivityStreamsBlock(v ActivityStreamsBlock)
	// SetActivityStreamsCollection sets the value of this property. Calling
	// IsActivityStreamsCollection afterwards returns true.
	SetActivityStreamsCollection(v ActivityStreamsCollection)
	// SetActivityStreamsCollectionPage sets the value of this property.
	// Calling IsActivityStreamsCollectionPage afterwards returns true.
	SetActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// SetActivityStreamsCreate sets the value of this property. Calling
	// IsActivityStreamsCreate afterwards returns true.
	SetActivityStreamsCreate(v ActivityStreamsCreate)
	// SetActivityStreamsDelete sets the value of this property. Calling
	// IsActivityStreamsDelete afterwards returns true.
	SetActivityStreamsDelete(v ActivityStreamsDelete)
	// SetActivityStreamsDislike sets the value of this property. Calling
	// IsActivityStreamsDislike afterwards returns true.
	SetActivityStreamsDislike(v ActivityStreamsDislike)
	// SetActivityStreamsDocument sets the value of this property. Calling
	// IsActivityStreamsDocument afterwards returns true.
	SetActivityStreamsDocument(v ActivityStreamsDocument)
	// SetActivityStreamsEvent sets the value of this property. Calling
	// IsActivityStreamsEvent afterwards returns true.
	SetActivityStreamsEvent(v ActivityStreamsEvent)
	// SetActivityStreamsFlag sets the value of this property. Calling
	// IsActivityStreamsFlag afterwards returns true.
	SetActivityStreamsFlag(v ActivityStreamsFlag)
	// SetActivityStreamsFollow sets the value of this property. Calling
	// IsActivityStreamsFollow afterwards returns true.
	SetActivityStreamsFollow(v ActivityStreamsFollow)
	// SetActivityStreamsGroup sets the value of this property. Calling
	// IsActivityStreamsGroup afterwards returns true.
	SetActivityStreamsGroup(v ActivityStreamsGroup)
	// SetActivityStreamsIgnore sets the value of this property. Calling
	// IsActivityStreamsIgnore afterwards returns true.
	SetActivityStreamsIgnore(v ActivityStreamsIgnore)
	// SetActivityStreamsImage sets the value of this property. Calling
	// IsActivityStreamsImage afterwards returns true.
	SetActivityStreamsImage(v ActivityStreamsImage)
	// SetActivityStreamsIntransitiveActivity sets the value of this property.
	// Calling IsActivityStreamsIntransitiveActivity afterwards returns
	// true.
	SetActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// SetActivityStreamsInvite sets the value of this property. Calling
	// IsActivityStreamsInvite afterwards returns true.
	SetActivityStreamsInvite(v ActivityStreamsInvite)
	// SetActivityStreamsJoin sets the value of this property. Calling
	// IsActivityStreamsJoin afterwards returns true.
	SetActivityStreamsJoin(v ActivityStreamsJoin)
	// SetActivityStreamsLeave sets the value of this property. Calling
	// IsActivityStreamsLeave afterwards returns true.
	SetActivityStreamsLeave(v ActivityStreamsLeave)
	// SetActivityStreamsLike sets the value of this property. Calling
	// IsActivityStreamsLike afterwards returns true.
	SetActivityStreamsLike(v ActivityStreamsLike)
	// SetActivityStreamsListen sets the value of this property. Calling
	// IsActivityStreamsListen afterwards returns true.
	SetActivityStreamsListen(v ActivityStreamsListen)
	// SetActivityStreamsMove sets the value of this property. Calling
	// IsActivityStreamsMove afterwards returns true.
	SetActivityStreamsMove(v ActivityStreamsMove)
	// SetActivityStreamsNote sets the value of this property. Calling
	// IsActivityStreamsNote afterwards returns true.
	SetActivityStreamsNote(v ActivityStreamsNote)
	// SetActivityStreamsObject sets the value of this property. Calling
	// IsActivityStreamsObject afterwards returns true.
	SetActivityStreamsObject(v ActivityStreamsObject)
	// SetActivityStreamsOffer sets the value of this property. Calling
	// IsActivityStreamsOffer afterwards returns true.
	SetActivityStreamsOffer(v ActivityStreamsOffer)
	// SetActivityStreamsOrderedCollection sets the value of this property.
	// Calling IsActivityStreamsOrderedCollection afterwards returns true.
	SetActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// SetActivityStreamsOrderedCollectionPage sets the value of this
	// property. Calling IsActivityStreamsOrderedCollectionPage afterwards
	// returns true.
	SetActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// SetActivityStreamsOrganization sets the value of this property. Calling
	// IsActivityStreamsOrganization afterwards returns true.
	SetActivityStreamsOrganization(v ActivityStreamsOrganization)
	// SetActivityStreamsPage sets the value of this property. Calling
	// IsActivityStreamsPage afterwards returns true.
	SetActivityStreamsPage(v ActivityStreamsPage)
	// SetActivityStreamsPerson sets the value of this property. Calling
	// IsActivityStreamsPerson afterwards returns true.
	SetActivityStreamsPerson(v ActivityStreamsPerson)
	// SetActivityStreamsPlace sets the value of this property. Calling
	// IsActivityStreamsPlace afterwards returns true.
	SetActivityStreamsPlace(v ActivityStreamsPlace)
	// SetActivityStreamsProfile sets the value of this property. Calling
	// IsActivityStreamsProfile afterwards returns true.
	SetActivityStreamsProfile(v ActivityStreamsProfile)
	// SetActivityStreamsQuestion sets the value of this property. Calling
	// IsActivityStreamsQuestion afterwards returns true.
	SetActivityStreamsQuestion(v ActivityStreamsQuestion)
	// SetActivityStreamsRead sets the value of this property. Calling
	// IsActivityStreamsRead afterwards returns true.
	SetActivityStreamsRead(v ActivityStreamsRead)
	// SetActivityStreamsReject sets the value of this property. Calling
	// IsActivityStreamsReject afterwards returns true.
	SetActivityStreamsReject(v ActivityStreamsReject)
	// SetActivityStreamsRelationship sets the value of this property. Calling
	// IsActivityStreamsRelationship afterwards returns true.
	SetActivityStreamsRelationship(v ActivityStreamsRelationship)
	// SetActivityStreamsRemove sets the value of this property. Calling
	// IsActivityStreamsRemove afterwards returns true.
	SetActivityStreamsRemove(v ActivityStreamsRemove)
	// SetActivityStreamsService sets the value of this property. Calling
	// IsActivityStreamsService afterwards returns true.
	SetActivityStreamsService(v ActivityStreamsService)
	// SetActivityStreamsTentativeAccept sets the value of this property.
	// Calling IsActivityStreamsTentativeAccept afterwards returns true.
	SetActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// SetActivityStreamsTentativeReject sets the value of this property.
	// Calling IsActivityStreamsTentativeReject afterwards returns true.
	SetActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// SetActivityStreamsTombstone sets the value of this property. Calling
	// IsActivityStreamsTombstone afterwards returns true.
	SetActivityStreamsTombstone(v ActivityStreamsTombstone)
	// SetActivityStreamsTravel sets the value of this property. Calling
	// IsActivityStreamsTravel afterwards returns true.
	SetActivityStreamsTravel(v ActivityStreamsTravel)
	// SetActivityStreamsUndo sets the value of this property. Calling
	// IsActivityStreamsUndo afterwards returns true.
	SetActivityStreamsUndo(v ActivityStreamsUndo)
	// SetActivityStreamsUpdate sets the value of this property. Calling
	// IsActivityStreamsUpdate afterwards returns true.
	SetActivityStreamsUpdate(v ActivityStreamsUpdate)
	// SetActivityStreamsVideo sets the value of this property. Calling
	// IsActivityStreamsVideo afterwards returns true.
	SetActivityStreamsVideo(v ActivityStreamsVideo)
	// SetActivityStreamsView sets the value of this property. Calling
	// IsActivityStreamsView afterwards returns true.
	SetActivityStreamsView(v ActivityStreamsView)
	// SetForgeFedBranch sets the value of this property. Calling
	// IsForgeFedBranch afterwards returns true.
	SetForgeFedBranch(v ForgeFedBranch)
	// SetForgeFedCommit sets the value of this property. Calling
	// IsForgeFedCommit afterwards returns true.
	SetForgeFedCommit(v ForgeFedCommit)
	// SetForgeFedPush sets the value of this property. Calling IsForgeFedPush
	// afterwards returns true.
	SetForgeFedPush(v ForgeFedPush)
	// SetForgeFedRepository sets the value of this property. Calling
	// IsForgeFedRepository afterwards returns true.
	SetForgeFedRepository(v ForgeFedRepository)
	// SetForgeFedTicket sets the value of this property. Calling
	// IsForgeFedTicket afterwards returns true.
	SetForgeFedTicket(v ForgeFedTicket)
	// SetForgeFedTicketDependency sets the value of this property. Calling
	// IsForgeFedTicketDependency afterwards returns true.
	SetForgeFedTicketDependency(v ForgeFedTicketDependency)
	// SetIRI sets the value of this property. Calling IsIRI afterwards
	// returns true.
	SetIRI(v *url.URL)
	// SetTootEmoji sets the value of this property. Calling IsTootEmoji
	// afterwards returns true.
	SetTootEmoji(v TootEmoji)
	// SetTootIdentityProof sets the value of this property. Calling
	// IsTootIdentityProof afterwards returns true.
	SetTootIdentityProof(v TootIdentityProof)
	// SetType attempts to set the property for the arbitrary type. Returns an
	// error if it is not a valid type to set on this property.
	SetType(t Type) error
	// SetXMLSchemaString sets the value of this property. Calling
	// IsXMLSchemaString afterwards returns true.
	SetXMLSchemaString(v string)
}

ActivityStreamsFormerTypePropertyIterator represents a single value for the "formerType" property.

type ActivityStreamsGeneratorProperty

type ActivityStreamsGeneratorProperty interface {
	// AppendActivityStreamsAccept appends a Accept value to the back of a
	// list of the property "generator". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsAccept(v ActivityStreamsAccept)
	// AppendActivityStreamsActivity appends a Activity value to the back of a
	// list of the property "generator". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsActivity(v ActivityStreamsActivity)
	// AppendActivityStreamsAdd appends a Add value to the back of a list of
	// the property "generator". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsAdd(v ActivityStreamsAdd)
	// AppendActivityStreamsAnnounce appends a Announce value to the back of a
	// list of the property "generator". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// AppendActivityStreamsApplication appends a Application value to the
	// back of a list of the property "generator". Invalidates iterators
	// that are traversing using Prev.
	AppendActivityStreamsApplication(v ActivityStreamsApplication)
	// AppendActivityStreamsArrive appends a Arrive value to the back of a
	// list of the property "generator". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsArrive(v ActivityStreamsArrive)
	// AppendActivityStreamsArticle appends a Article value to the back of a
	// list of the property "generator". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsArticle(v ActivityStreamsArticle)
	// AppendActivityStreamsAudio appends a Audio value to the back of a list
	// of the property "generator". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsAudio(v ActivityStreamsAudio)
	// AppendActivityStreamsBlock appends a Block value to the back of a list
	// of the property "generator". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsBlock(v ActivityStreamsBlock)
	// AppendActivityStreamsCollection appends a Collection value to the back
	// of a list of the property "generator". Invalidates iterators that
	// are traversing using Prev.
	AppendActivityStreamsCollection(v ActivityStreamsCollection)
	// AppendActivityStreamsCollectionPage appends a CollectionPage value to
	// the back of a list of the property "generator". Invalidates
	// iterators that are traversing using Prev.
	AppendActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// AppendActivityStreamsCreate appends a Create value to the back of a
	// list of the property "generator". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsCreate(v ActivityStreamsCreate)
	// AppendActivityStreamsDelete appends a Delete value to the back of a
	// list of the property "generator". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDelete(v ActivityStreamsDelete)
	// AppendActivityStreamsDislike appends a Dislike value to the back of a
	// list of the property "generator". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDislike(v ActivityStreamsDislike)
	// AppendActivityStreamsDocument appends a Document value to the back of a
	// list of the property "generator". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDocument(v ActivityStreamsDocument)
	// AppendActivityStreamsEvent appends a Event value to the back of a list
	// of the property "generator". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsEvent(v ActivityStreamsEvent)
	// AppendActivityStreamsFlag appends a Flag value to the back of a list of
	// the property "generator". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsFlag(v ActivityStreamsFlag)
	// AppendActivityStreamsFollow appends a Follow value to the back of a
	// list of the property "generator". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsFollow(v ActivityStreamsFollow)
	// AppendActivityStreamsGroup appends a Group value to the back of a list
	// of the property "generator". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsGroup(v ActivityStreamsGroup)
	// AppendActivityStreamsIgnore appends a Ignore value to the back of a
	// list of the property "generator". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsIgnore(v ActivityStreamsIgnore)
	// AppendActivityStreamsImage appends a Image value to the back of a list
	// of the property "generator". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsImage(v ActivityStreamsImage)
	// AppendActivityStreamsIntransitiveActivity appends a
	// IntransitiveActivity value to the back of a list of the property
	// "generator". Invalidates iterators that are traversing using Prev.
	AppendActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// AppendActivityStreamsInvite appends a Invite value to the back of a
	// list of the property "generator". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsInvite(v ActivityStreamsInvite)
	// AppendActivityStreamsJoin appends a Join value to the back of a list of
	// the property "generator". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsJoin(v ActivityStreamsJoin)
	// AppendActivityStreamsLeave appends a Leave value to the back of a list
	// of the property "generator". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsLeave(v ActivityStreamsLeave)
	// AppendActivityStreamsLike appends a Like value to the back of a list of
	// the property "generator". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsLike(v ActivityStreamsLike)
	// AppendActivityStreamsLink appends a Link value to the back of a list of
	// the property "generator". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsLink(v ActivityStreamsLink)
	// AppendActivityStreamsListen appends a Listen value to the back of a
	// list of the property "generator". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsListen(v ActivityStreamsListen)
	// AppendActivityStreamsMention appends a Mention value to the back of a
	// list of the property "generator". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsMention(v ActivityStreamsMention)
	// AppendActivityStreamsMove appends a Move value to the back of a list of
	// the property "generator". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsMove(v ActivityStreamsMove)
	// AppendActivityStreamsNote appends a Note value to the back of a list of
	// the property "generator". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsNote(v ActivityStreamsNote)
	// AppendActivityStreamsObject appends a Object value to the back of a
	// list of the property "generator". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsObject(v ActivityStreamsObject)
	// AppendActivityStreamsOffer appends a Offer value to the back of a list
	// of the property "generator". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsOffer(v ActivityStreamsOffer)
	// AppendActivityStreamsOrderedCollection appends a OrderedCollection
	// value to the back of a list of the property "generator".
	// Invalidates iterators that are traversing using Prev.
	AppendActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// AppendActivityStreamsOrderedCollectionPage appends a
	// OrderedCollectionPage value to the back of a list of the property
	// "generator". Invalidates iterators that are traversing using Prev.
	AppendActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// AppendActivityStreamsOrganization appends a Organization value to the
	// back of a list of the property "generator". Invalidates iterators
	// that are traversing using Prev.
	AppendActivityStreamsOrganization(v ActivityStreamsOrganization)
	// AppendActivityStreamsPage appends a Page value to the back of a list of
	// the property "generator". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsPage(v ActivityStreamsPage)
	// AppendActivityStreamsPerson appends a Person value to the back of a
	// list of the property "generator". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsPerson(v ActivityStreamsPerson)
	// AppendActivityStreamsPlace appends a Place value to the back of a list
	// of the property "generator". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsPlace(v ActivityStreamsPlace)
	// AppendActivityStreamsProfile appends a Profile value to the back of a
	// list of the property "generator". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsProfile(v ActivityStreamsProfile)
	// AppendActivityStreamsQuestion appends a Question value to the back of a
	// list of the property "generator". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsQuestion(v ActivityStreamsQuestion)
	// AppendActivityStreamsRead appends a Read value to the back of a list of
	// the property "generator". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsRead(v ActivityStreamsRead)
	// AppendActivityStreamsReject appends a Reject value to the back of a
	// list of the property "generator". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsReject(v ActivityStreamsReject)
	// AppendActivityStreamsRelationship appends a Relationship value to the
	// back of a list of the property "generator". Invalidates iterators
	// that are traversing using Prev.
	AppendActivityStreamsRelationship(v ActivityStreamsRelationship)
	// AppendActivityStreamsRemove appends a Remove value to the back of a
	// list of the property "generator". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsRemove(v ActivityStreamsRemove)
	// AppendActivityStreamsService appends a Service value to the back of a
	// list of the property "generator". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsService(v ActivityStreamsService)
	// AppendActivityStreamsTentativeAccept appends a TentativeAccept value to
	// the back of a list of the property "generator". Invalidates
	// iterators that are traversing using Prev.
	AppendActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// AppendActivityStreamsTentativeReject appends a TentativeReject value to
	// the back of a list of the property "generator". Invalidates
	// iterators that are traversing using Prev.
	AppendActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// AppendActivityStreamsTombstone appends a Tombstone value to the back of
	// a list of the property "generator". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsTombstone(v ActivityStreamsTombstone)
	// AppendActivityStreamsTravel appends a Travel value to the back of a
	// list of the property "generator". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsTravel(v ActivityStreamsTravel)
	// AppendActivityStreamsUndo appends a Undo value to the back of a list of
	// the property "generator". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsUndo(v ActivityStreamsUndo)
	// AppendActivityStreamsUpdate appends a Update value to the back of a
	// list of the property "generator". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsUpdate(v ActivityStreamsUpdate)
	// AppendActivityStreamsVideo appends a Video value to the back of a list
	// of the property "generator". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsVideo(v ActivityStreamsVideo)
	// AppendActivityStreamsView appends a View value to the back of a list of
	// the property "generator". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsView(v ActivityStreamsView)
	// AppendForgeFedBranch appends a Branch value to the back of a list of
	// the property "generator". Invalidates iterators that are traversing
	// using Prev.
	AppendForgeFedBranch(v ForgeFedBranch)
	// AppendForgeFedCommit appends a Commit value to the back of a list of
	// the property "generator". Invalidates iterators that are traversing
	// using Prev.
	AppendForgeFedCommit(v ForgeFedCommit)
	// AppendForgeFedPush appends a Push value to the back of a list of the
	// property "generator". Invalidates iterators that are traversing
	// using Prev.
	AppendForgeFedPush(v ForgeFedPush)
	// AppendForgeFedRepository appends a Repository value to the back of a
	// list of the property "generator". Invalidates iterators that are
	// traversing using Prev.
	AppendForgeFedRepository(v ForgeFedRepository)
	// AppendForgeFedTicket appends a Ticket value to the back of a list of
	// the property "generator". Invalidates iterators that are traversing
	// using Prev.
	AppendForgeFedTicket(v ForgeFedTicket)
	// AppendForgeFedTicketDependency appends a TicketDependency value to the
	// back of a list of the property "generator". Invalidates iterators
	// that are traversing using Prev.
	AppendForgeFedTicketDependency(v ForgeFedTicketDependency)
	// AppendIRI appends an IRI value to the back of a list of the property
	// "generator"
	AppendIRI(v *url.URL)
	// AppendTootEmoji appends a Emoji value to the back of a list of the
	// property "generator". Invalidates iterators that are traversing
	// using Prev.
	AppendTootEmoji(v TootEmoji)
	// AppendTootIdentityProof appends a IdentityProof value to the back of a
	// list of the property "generator". Invalidates iterators that are
	// traversing using Prev.
	AppendTootIdentityProof(v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "generator". Invalidates iterators that are traversing
	// using Prev. Returns an error if the type is not a valid one to set
	// for this property.
	AppendType(t Type) error
	// At returns the property value for the specified index. Panics if the
	// index is out of bounds.
	At(index int) ActivityStreamsGeneratorPropertyIterator
	// Begin returns the first iterator, or nil if empty. Can be used with the
	// iterator's Next method and this property's End method to iterate
	// from front to back through all values.
	Begin() ActivityStreamsGeneratorPropertyIterator
	// Empty returns returns true if there are no elements.
	Empty() bool
	// End returns beyond-the-last iterator, which is nil. Can be used with
	// the iterator's Next method and this property's Begin method to
	// iterate from front to back through all values.
	End() ActivityStreamsGeneratorPropertyIterator
	// InsertActivityStreamsAccept inserts a Accept value at the specified
	// index for a property "generator". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAccept(idx int, v ActivityStreamsAccept)
	// InsertActivityStreamsActivity inserts a Activity value at the specified
	// index for a property "generator". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsActivity(idx int, v ActivityStreamsActivity)
	// InsertActivityStreamsAdd inserts a Add value at the specified index for
	// a property "generator". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAdd(idx int, v ActivityStreamsAdd)
	// InsertActivityStreamsAnnounce inserts a Announce value at the specified
	// index for a property "generator". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAnnounce(idx int, v ActivityStreamsAnnounce)
	// InsertActivityStreamsApplication inserts a Application value at the
	// specified index for a property "generator". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsApplication(idx int, v ActivityStreamsApplication)
	// InsertActivityStreamsArrive inserts a Arrive value at the specified
	// index for a property "generator". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsArrive(idx int, v ActivityStreamsArrive)
	// InsertActivityStreamsArticle inserts a Article value at the specified
	// index for a property "generator". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsArticle(idx int, v ActivityStreamsArticle)
	// InsertActivityStreamsAudio inserts a Audio value at the specified index
	// for a property "generator". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAudio(idx int, v ActivityStreamsAudio)
	// InsertActivityStreamsBlock inserts a Block value at the specified index
	// for a property "generator". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsBlock(idx int, v ActivityStreamsBlock)
	// InsertActivityStreamsCollection inserts a Collection value at the
	// specified index for a property "generator". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsCollection(idx int, v ActivityStreamsCollection)
	// InsertActivityStreamsCollectionPage inserts a CollectionPage value at
	// the specified index for a property "generator". Existing elements
	// at that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsCollectionPage(idx int, v ActivityStreamsCollectionPage)
	// InsertActivityStreamsCreate inserts a Create value at the specified
	// index for a property "generator". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsCreate(idx int, v ActivityStreamsCreate)
	// InsertActivityStreamsDelete inserts a Delete value at the specified
	// index for a property "generator". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDelete(idx int, v ActivityStreamsDelete)
	// InsertActivityStreamsDislike inserts a Dislike value at the specified
	// index for a property "generator". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDislike(idx int, v ActivityStreamsDislike)
	// InsertActivityStreamsDocument inserts a Document value at the specified
	// index for a property "generator". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDocument(idx int, v ActivityStreamsDocument)
	// InsertActivityStreamsEvent inserts a Event value at the specified index
	// for a property "generator". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsEvent(idx int, v ActivityStreamsEvent)
	// InsertActivityStreamsFlag inserts a Flag value at the specified index
	// for a property "generator". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsFlag(idx int, v ActivityStreamsFlag)
	// InsertActivityStreamsFollow inserts a Follow value at the specified
	// index for a property "generator". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsFollow(idx int, v ActivityStreamsFollow)
	// InsertActivityStreamsGroup inserts a Group value at the specified index
	// for a property "generator". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsGroup(idx int, v ActivityStreamsGroup)
	// InsertActivityStreamsIgnore inserts a Ignore value at the specified
	// index for a property "generator". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsIgnore(idx int, v ActivityStreamsIgnore)
	// InsertActivityStreamsImage inserts a Image value at the specified index
	// for a property "generator". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsImage(idx int, v ActivityStreamsImage)
	// InsertActivityStreamsIntransitiveActivity inserts a
	// IntransitiveActivity value at the specified index for a property
	// "generator". Existing elements at that index and higher are shifted
	// back once. Invalidates all iterators.
	InsertActivityStreamsIntransitiveActivity(idx int, v ActivityStreamsIntransitiveActivity)
	// InsertActivityStreamsInvite inserts a Invite value at the specified
	// index for a property "generator". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsInvite(idx int, v ActivityStreamsInvite)
	// InsertActivityStreamsJoin inserts a Join value at the specified index
	// for a property "generator". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsJoin(idx int, v ActivityStreamsJoin)
	// InsertActivityStreamsLeave inserts a Leave value at the specified index
	// for a property "generator". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsLeave(idx int, v ActivityStreamsLeave)
	// InsertActivityStreamsLike inserts a Like value at the specified index
	// for a property "generator". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsLike(idx int, v ActivityStreamsLike)
	// InsertActivityStreamsLink inserts a Link value at the specified index
	// for a property "generator". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsLink(idx int, v ActivityStreamsLink)
	// InsertActivityStreamsListen inserts a Listen value at the specified
	// index for a property "generator". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsListen(idx int, v ActivityStreamsListen)
	// InsertActivityStreamsMention inserts a Mention value at the specified
	// index for a property "generator". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsMention(idx int, v ActivityStreamsMention)
	// InsertActivityStreamsMove inserts a Move value at the specified index
	// for a property "generator". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsMove(idx int, v ActivityStreamsMove)
	// InsertActivityStreamsNote inserts a Note value at the specified index
	// for a property "generator". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsNote(idx int, v ActivityStreamsNote)
	// InsertActivityStreamsObject inserts a Object value at the specified
	// index for a property "generator". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsObject(idx int, v ActivityStreamsObject)
	// InsertActivityStreamsOffer inserts a Offer value at the specified index
	// for a property "generator". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsOffer(idx int, v ActivityStreamsOffer)
	// InsertActivityStreamsOrderedCollection inserts a OrderedCollection
	// value at the specified index for a property "generator". Existing
	// elements at that index and higher are shifted back once.
	// Invalidates all iterators.
	InsertActivityStreamsOrderedCollection(idx int, v ActivityStreamsOrderedCollection)
	// InsertActivityStreamsOrderedCollectionPage inserts a
	// OrderedCollectionPage value at the specified index for a property
	// "generator". Existing elements at that index and higher are shifted
	// back once. Invalidates all iterators.
	InsertActivityStreamsOrderedCollectionPage(idx int, v ActivityStreamsOrderedCollectionPage)
	// InsertActivityStreamsOrganization inserts a Organization value at the
	// specified index for a property "generator". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsOrganization(idx int, v ActivityStreamsOrganization)
	// InsertActivityStreamsPage inserts a Page value at the specified index
	// for a property "generator". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsPage(idx int, v ActivityStreamsPage)
	// InsertActivityStreamsPerson inserts a Person value at the specified
	// index for a property "generator". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsPerson(idx int, v ActivityStreamsPerson)
	// InsertActivityStreamsPlace inserts a Place value at the specified index
	// for a property "generator". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsPlace(idx int, v ActivityStreamsPlace)
	// InsertActivityStreamsProfile inserts a Profile value at the specified
	// index for a property "generator". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsProfile(idx int, v ActivityStreamsProfile)
	// InsertActivityStreamsQuestion inserts a Question value at the specified
	// index for a property "generator". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsQuestion(idx int, v ActivityStreamsQuestion)
	// InsertActivityStreamsRead inserts a Read value at the specified index
	// for a property "generator". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsRead(idx int, v ActivityStreamsRead)
	// InsertActivityStreamsReject inserts a Reject value at the specified
	// index for a property "generator". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsReject(idx int, v ActivityStreamsReject)
	// InsertActivityStreamsRelationship inserts a Relationship value at the
	// specified index for a property "generator". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsRelationship(idx int, v ActivityStreamsRelationship)
	// InsertActivityStreamsRemove inserts a Remove value at the specified
	// index for a property "generator". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsRemove(idx int, v ActivityStreamsRemove)
	// InsertActivityStreamsService inserts a Service value at the specified
	// index for a property "generator". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsService(idx int, v ActivityStreamsService)
	// InsertActivityStreamsTentativeAccept inserts a TentativeAccept value at
	// the specified index for a property "generator". Existing elements
	// at that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsTentativeAccept(idx int, v ActivityStreamsTentativeAccept)
	// InsertActivityStreamsTentativeReject inserts a TentativeReject value at
	// the specified index for a property "generator". Existing elements
	// at that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsTentativeReject(idx int, v ActivityStreamsTentativeReject)
	// InsertActivityStreamsTombstone inserts a Tombstone value at the
	// specified index for a property "generator". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsTombstone(idx int, v ActivityStreamsTombstone)
	// InsertActivityStreamsTravel inserts a Travel value at the specified
	// index for a property "generator". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsTravel(idx int, v ActivityStreamsTravel)
	// InsertActivityStreamsUndo inserts a Undo value at the specified index
	// for a property "generator". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsUndo(idx int, v ActivityStreamsUndo)
	// InsertActivityStreamsUpdate inserts a Update value at the specified
	// index for a property "generator". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsUpdate(idx int, v ActivityStreamsUpdate)
	// InsertActivityStreamsVideo inserts a Video value at the specified index
	// for a property "generator". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsVideo(idx int, v ActivityStreamsVideo)
	// InsertActivityStreamsView inserts a View value at the specified index
	// for a property "generator". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsView(idx int, v ActivityStreamsView)
	// InsertForgeFedBranch inserts a Branch value at the specified index for
	// a property "generator". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertForgeFedBranch(idx int, v ForgeFedBranch)
	// InsertForgeFedCommit inserts a Commit value at the specified index for
	// a property "generator". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertForgeFedCommit(idx int, v ForgeFedCommit)
	// InsertForgeFedPush inserts a Push value at the specified index for a
	// property "generator". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertForgeFedPush(idx int, v ForgeFedPush)
	// InsertForgeFedRepository inserts a Repository value at the specified
	// index for a property "generator". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertForgeFedRepository(idx int, v ForgeFedRepository)
	// InsertForgeFedTicket inserts a Ticket value at the specified index for
	// a property "generator". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertForgeFedTicket(idx int, v ForgeFedTicket)
	// InsertForgeFedTicketDependency inserts a TicketDependency value at the
	// specified index for a property "generator". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
	// Insert inserts an IRI value at the specified index for a property
	// "generator". Existing elements at that index and higher are shifted
	// back once. Invalidates all iterators.
	InsertIRI(idx int, v *url.URL)
	// InsertTootEmoji inserts a Emoji value at the specified index for a
	// property "generator". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertTootEmoji(idx int, v TootEmoji)
	// InsertTootIdentityProof inserts a IdentityProof value at the specified
	// index for a property "generator". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertTootIdentityProof(idx int, v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "generator". Invalidates all iterators. Returns an
	// error if the type is not a valid one to set for this property.
	InsertType(idx int, t Type) error
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API method specifically needed only for alternate
	// implementations for go-fed. Applications should not use this
	// method. Panics if the index is out of bounds.
	KindIndex(idx int) int
	// Len returns the number of values that exist for the "generator"
	// property.
	Len() (length int)
	// Less computes whether another property is less than this one. Mixing
	// types results in a consistent but arbitrary ordering
	Less(i, j int) bool
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsGeneratorProperty) bool
	// Name returns the name of this property ("generator") with any alias.
	Name() string
	// PrependActivityStreamsAccept prepends a Accept value to the front of a
	// list of the property "generator". Invalidates all iterators.
	PrependActivityStreamsAccept(v ActivityStreamsAccept)
	// PrependActivityStreamsActivity prepends a Activity value to the front
	// of a list of the property "generator". Invalidates all iterators.
	PrependActivityStreamsActivity(v ActivityStreamsActivity)
	// PrependActivityStreamsAdd prepends a Add value to the front of a list
	// of the property "generator". Invalidates all iterators.
	PrependActivityStreamsAdd(v ActivityStreamsAdd)
	// PrependActivityStreamsAnnounce prepends a Announce value to the front
	// of a list of the property "generator". Invalidates all iterators.
	PrependActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// PrependActivityStreamsApplication prepends a Application value to the
	// front of a list of the property "generator". Invalidates all
	// iterators.
	PrependActivityStreamsApplication(v ActivityStreamsApplication)
	// PrependActivityStreamsArrive prepends a Arrive value to the front of a
	// list of the property "generator". Invalidates all iterators.
	PrependActivityStreamsArrive(v ActivityStreamsArrive)
	// PrependActivityStreamsArticle prepends a Article value to the front of
	// a list of the property "generator". Invalidates all iterators.
	PrependActivityStreamsArticle(v ActivityStreamsArticle)
	// PrependActivityStreamsAudio prepends a Audio value to the front of a
	// list of the property "generator". Invalidates all iterators.
	PrependActivityStreamsAudio(v ActivityStreamsAudio)
	// PrependActivityStreamsBlock prepends a Block value to the front of a
	// list of the property "generator". Invalidates all iterators.
	PrependActivityStreamsBlock(v ActivityStreamsBlock)
	// PrependActivityStreamsCollection prepends a Collection value to the
	// front of a list of the property "generator". Invalidates all
	// iterators.
	PrependActivityStreamsCollection(v ActivityStreamsCollection)
	// PrependActivityStreamsCollectionPage prepends a CollectionPage value to
	// the front of a list of the property "generator". Invalidates all
	// iterators.
	PrependActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// PrependActivityStreamsCreate prepends a Create value to the front of a
	// list of the property "generator". Invalidates all iterators.
	PrependActivityStreamsCreate(v ActivityStreamsCreate)
	// PrependActivityStreamsDelete prepends a Delete value to the front of a
	// list of the property "generator". Invalidates all iterators.
	PrependActivityStreamsDelete(v ActivityStreamsDelete)
	// PrependActivityStreamsDislike prepends a Dislike value to the front of
	// a list of the property "generator". Invalidates all iterators.
	PrependActivityStreamsDislike(v ActivityStreamsDislike)
	// PrependActivityStreamsDocument prepends a Document value to the front
	// of a list of the property "generator". Invalidates all iterators.
	PrependActivityStreamsDocument(v ActivityStreamsDocument)
	// PrependActivityStreamsEvent prepends a Event value to the front of a
	// list of the property "generator". Invalidates all iterators.
	PrependActivityStreamsEvent(v ActivityStreamsEvent)
	// PrependActivityStreamsFlag prepends a Flag value to the front of a list
	// of the property "generator". Invalidates all iterators.
	PrependActivityStreamsFlag(v ActivityStreamsFlag)
	// PrependActivityStreamsFollow prepends a Follow value to the front of a
	// list of the property "generator". Invalidates all iterators.
	PrependActivityStreamsFollow(v ActivityStreamsFollow)
	// PrependActivityStreamsGroup prepends a Group value to the front of a
	// list of the property "generator". Invalidates all iterators.
	PrependActivityStreamsGroup(v ActivityStreamsGroup)
	// PrependActivityStreamsIgnore prepends a Ignore value to the front of a
	// list of the property "generator". Invalidates all iterators.
	PrependActivityStreamsIgnore(v ActivityStreamsIgnore)
	// PrependActivityStreamsImage prepends a Image value to the front of a
	// list of the property "generator". Invalidates all iterators.
	PrependActivityStreamsImage(v ActivityStreamsImage)
	// PrependActivityStreamsIntransitiveActivity prepends a
	// IntransitiveActivity value to the front of a list of the property
	// "generator". Invalidates all iterators.
	PrependActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// PrependActivityStreamsInvite prepends a Invite value to the front of a
	// list of the property "generator". Invalidates all iterators.
	PrependActivityStreamsInvite(v ActivityStreamsInvite)
	// PrependActivityStreamsJoin prepends a Join value to the front of a list
	// of the property "generator". Invalidates all iterators.
	PrependActivityStreamsJoin(v ActivityStreamsJoin)
	// PrependActivityStreamsLeave prepends a Leave value to the front of a
	// list of the property "generator". Invalidates all iterators.
	PrependActivityStreamsLeave(v ActivityStreamsLeave)
	// PrependActivityStreamsLike prepends a Like value to the front of a list
	// of the property "generator". Invalidates all iterators.
	PrependActivityStreamsLike(v ActivityStreamsLike)
	// PrependActivityStreamsLink prepends a Link value to the front of a list
	// of the property "generator". Invalidates all iterators.
	PrependActivityStreamsLink(v ActivityStreamsLink)
	// PrependActivityStreamsListen prepends a Listen value to the front of a
	// list of the property "generator". Invalidates all iterators.
	PrependActivityStreamsListen(v ActivityStreamsListen)
	// PrependActivityStreamsMention prepends a Mention value to the front of
	// a list of the property "generator". Invalidates all iterators.
	PrependActivityStreamsMention(v ActivityStreamsMention)
	// PrependActivityStreamsMove prepends a Move value to the front of a list
	// of the property "generator". Invalidates all iterators.
	PrependActivityStreamsMove(v ActivityStreamsMove)
	// PrependActivityStreamsNote prepends a Note value to the front of a list
	// of the property "generator". Invalidates all iterators.
	PrependActivityStreamsNote(v ActivityStreamsNote)
	// PrependActivityStreamsObject prepends a Object value to the front of a
	// list of the property "generator". Invalidates all iterators.
	PrependActivityStreamsObject(v ActivityStreamsObject)
	// PrependActivityStreamsOffer prepends a Offer value to the front of a
	// list of the property "generator". Invalidates all iterators.
	PrependActivityStreamsOffer(v ActivityStreamsOffer)
	// PrependActivityStreamsOrderedCollection prepends a OrderedCollection
	// value to the front of a list of the property "generator".
	// Invalidates all iterators.
	PrependActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// PrependActivityStreamsOrderedCollectionPage prepends a
	// OrderedCollectionPage value to the front of a list of the property
	// "generator". Invalidates all iterators.
	PrependActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// PrependActivityStreamsOrganization prepends a Organization value to the
	// front of a list of the property "generator". Invalidates all
	// iterators.
	PrependActivityStreamsOrganization(v ActivityStreamsOrganization)
	// PrependActivityStreamsPage prepends a Page value to the front of a list
	// of the property "generator". Invalidates all iterators.
	PrependActivityStreamsPage(v ActivityStreamsPage)
	// PrependActivityStreamsPerson prepends a Person value to the front of a
	// list of the property "generator". Invalidates all iterators.
	PrependActivityStreamsPerson(v ActivityStreamsPerson)
	// PrependActivityStreamsPlace prepends a Place value to the front of a
	// list of the property "generator". Invalidates all iterators.
	PrependActivityStreamsPlace(v ActivityStreamsPlace)
	// PrependActivityStreamsProfile prepends a Profile value to the front of
	// a list of the property "generator". Invalidates all iterators.
	PrependActivityStreamsProfile(v ActivityStreamsProfile)
	// PrependActivityStreamsQuestion prepends a Question value to the front
	// of a list of the property "generator". Invalidates all iterators.
	PrependActivityStreamsQuestion(v ActivityStreamsQuestion)
	// PrependActivityStreamsRead prepends a Read value to the front of a list
	// of the property "generator". Invalidates all iterators.
	PrependActivityStreamsRead(v ActivityStreamsRead)
	// PrependActivityStreamsReject prepends a Reject value to the front of a
	// list of the property "generator". Invalidates all iterators.
	PrependActivityStreamsReject(v ActivityStreamsReject)
	// PrependActivityStreamsRelationship prepends a Relationship value to the
	// front of a list of the property "generator". Invalidates all
	// iterators.
	PrependActivityStreamsRelationship(v ActivityStreamsRelationship)
	// PrependActivityStreamsRemove prepends a Remove value to the front of a
	// list of the property "generator". Invalidates all iterators.
	PrependActivityStreamsRemove(v ActivityStreamsRemove)
	// PrependActivityStreamsService prepends a Service value to the front of
	// a list of the property "generator". Invalidates all iterators.
	PrependActivityStreamsService(v ActivityStreamsService)
	// PrependActivityStreamsTentativeAccept prepends a TentativeAccept value
	// to the front of a list of the property "generator". Invalidates all
	// iterators.
	PrependActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// PrependActivityStreamsTentativeReject prepends a TentativeReject value
	// to the front of a list of the property "generator". Invalidates all
	// iterators.
	PrependActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// PrependActivityStreamsTombstone prepends a Tombstone value to the front
	// of a list of the property "generator". Invalidates all iterators.
	PrependActivityStreamsTombstone(v ActivityStreamsTombstone)
	// PrependActivityStreamsTravel prepends a Travel value to the front of a
	// list of the property "generator". Invalidates all iterators.
	PrependActivityStreamsTravel(v ActivityStreamsTravel)
	// PrependActivityStreamsUndo prepends a Undo value to the front of a list
	// of the property "generator". Invalidates all iterators.
	PrependActivityStreamsUndo(v ActivityStreamsUndo)
	// PrependActivityStreamsUpdate prepends a Update value to the front of a
	// list of the property "generator". Invalidates all iterators.
	PrependActivityStreamsUpdate(v ActivityStreamsUpdate)
	// PrependActivityStreamsVideo prepends a Video value to the front of a
	// list of the property "generator". Invalidates all iterators.
	PrependActivityStreamsVideo(v ActivityStreamsVideo)
	// PrependActivityStreamsView prepends a View value to the front of a list
	// of the property "generator". Invalidates all iterators.
	PrependActivityStreamsView(v ActivityStreamsView)
	// PrependForgeFedBranch prepends a Branch value to the front of a list of
	// the property "generator". Invalidates all iterators.
	PrependForgeFedBranch(v ForgeFedBranch)
	// PrependForgeFedCommit prepends a Commit value to the front of a list of
	// the property "generator". Invalidates all iterators.
	PrependForgeFedCommit(v ForgeFedCommit)
	// PrependForgeFedPush prepends a Push value to the front of a list of the
	// property "generator". Invalidates all iterators.
	PrependForgeFedPush(v ForgeFedPush)
	// PrependForgeFedRepository prepends a Repository value to the front of a
	// list of the property "generator". Invalidates all iterators.
	PrependForgeFedRepository(v ForgeFedRepository)
	// PrependForgeFedTicket prepends a Ticket value to the front of a list of
	// the property "generator". Invalidates all iterators.
	PrependForgeFedTicket(v ForgeFedTicket)
	// PrependForgeFedTicketDependency prepends a TicketDependency value to
	// the front of a list of the property "generator". Invalidates all
	// iterators.
	PrependForgeFedTicketDependency(v ForgeFedTicketDependency)
	// PrependIRI prepends an IRI value to the front of a list of the property
	// "generator".
	PrependIRI(v *url.URL)
	// PrependTootEmoji prepends a Emoji value to the front of a list of the
	// property "generator". Invalidates all iterators.
	PrependTootEmoji(v TootEmoji)
	// PrependTootIdentityProof prepends a IdentityProof value to the front of
	// a list of the property "generator". Invalidates all iterators.
	PrependTootIdentityProof(v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "generator". Invalidates all iterators. Returns an
	// error if the type is not a valid one to set for this property.
	PrependType(t Type) error
	// Remove deletes an element at the specified index from a list of the
	// property "generator", regardless of its type. Panics if the index
	// is out of bounds. Invalidates all iterators.
	Remove(idx int)
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// SetActivityStreamsAccept sets a Accept value to be at the specified
	// index for the property "generator". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsAccept(idx int, v ActivityStreamsAccept)
	// SetActivityStreamsActivity sets a Activity value to be at the specified
	// index for the property "generator". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsActivity(idx int, v ActivityStreamsActivity)
	// SetActivityStreamsAdd sets a Add value to be at the specified index for
	// the property "generator". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsAdd(idx int, v ActivityStreamsAdd)
	// SetActivityStreamsAnnounce sets a Announce value to be at the specified
	// index for the property "generator". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsAnnounce(idx int, v ActivityStreamsAnnounce)
	// SetActivityStreamsApplication sets a Application value to be at the
	// specified index for the property "generator". Panics if the index
	// is out of bounds. Invalidates all iterators.
	SetActivityStreamsApplication(idx int, v ActivityStreamsApplication)
	// SetActivityStreamsArrive sets a Arrive value to be at the specified
	// index for the property "generator". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsArrive(idx int, v ActivityStreamsArrive)
	// SetActivityStreamsArticle sets a Article value to be at the specified
	// index for the property "generator". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsArticle(idx int, v ActivityStreamsArticle)
	// SetActivityStreamsAudio sets a Audio value to be at the specified index
	// for the property "generator". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsAudio(idx int, v ActivityStreamsAudio)
	// SetActivityStreamsBlock sets a Block value to be at the specified index
	// for the property "generator". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsBlock(idx int, v ActivityStreamsBlock)
	// SetActivityStreamsCollection sets a Collection value to be at the
	// specified index for the property "generator". Panics if the index
	// is out of bounds. Invalidates all iterators.
	SetActivityStreamsCollection(idx int, v ActivityStreamsCollection)
	// SetActivityStreamsCollectionPage sets a CollectionPage value to be at
	// the specified index for the property "generator". Panics if the
	// index is out of bounds. Invalidates all iterators.
	SetActivityStreamsCollectionPage(idx int, v ActivityStreamsCollectionPage)
	// SetActivityStreamsCreate sets a Create value to be at the specified
	// index for the property "generator". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsCreate(idx int, v ActivityStreamsCreate)
	// SetActivityStreamsDelete sets a Delete value to be at the specified
	// index for the property "generator". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsDelete(idx int, v ActivityStreamsDelete)
	// SetActivityStreamsDislike sets a Dislike value to be at the specified
	// index for the property "generator". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsDislike(idx int, v ActivityStreamsDislike)
	// SetActivityStreamsDocument sets a Document value to be at the specified
	// index for the property "generator". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsDocument(idx int, v ActivityStreamsDocument)
	// SetActivityStreamsEvent sets a Event value to be at the specified index
	// for the property "generator". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsEvent(idx int, v ActivityStreamsEvent)
	// SetActivityStreamsFlag sets a Flag value to be at the specified index
	// for the property "generator". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsFlag(idx int, v ActivityStreamsFlag)
	// SetActivityStreamsFollow sets a Follow value to be at the specified
	// index for the property "generator". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsFollow(idx int, v ActivityStreamsFollow)
	// SetActivityStreamsGroup sets a Group value to be at the specified index
	// for the property "generator". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsGroup(idx int, v ActivityStreamsGroup)
	// SetActivityStreamsIgnore sets a Ignore value to be at the specified
	// index for the property "generator". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsIgnore(idx int, v ActivityStreamsIgnore)
	// SetActivityStreamsImage sets a Image value to be at the specified index
	// for the property "generator". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsImage(idx int, v ActivityStreamsImage)
	// SetActivityStreamsIntransitiveActivity sets a IntransitiveActivity
	// value to be at the specified index for the property "generator".
	// Panics if the index is out of bounds. Invalidates all iterators.
	SetActivityStreamsIntransitiveActivity(idx int, v ActivityStreamsIntransitiveActivity)
	// SetActivityStreamsInvite sets a Invite value to be at the specified
	// index for the property "generator". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsInvite(idx int, v ActivityStreamsInvite)
	// SetActivityStreamsJoin sets a Join value to be at the specified index
	// for the property "generator". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsJoin(idx int, v ActivityStreamsJoin)
	// SetActivityStreamsLeave sets a Leave value to be at the specified index
	// for the property "generator". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsLeave(idx int, v ActivityStreamsLeave)
	// SetActivityStreamsLike sets a Like value to be at the specified index
	// for the property "generator". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsLike(idx int, v ActivityStreamsLike)
	// SetActivityStreamsLink sets a Link value to be at the specified index
	// for the property "generator". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsLink(idx int, v ActivityStreamsLink)
	// SetActivityStreamsListen sets a Listen value to be at the specified
	// index for the property "generator". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsListen(idx int, v ActivityStreamsListen)
	// SetActivityStreamsMention sets a Mention value to be at the specified
	// index for the property "generator". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsMention(idx int, v ActivityStreamsMention)
	// SetActivityStreamsMove sets a Move value to be at the specified index
	// for the property "generator". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsMove(idx int, v ActivityStreamsMove)
	// SetActivityStreamsNote sets a Note value to be at the specified index
	// for the property "generator". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsNote(idx int, v ActivityStreamsNote)
	// SetActivityStreamsObject sets a Object value to be at the specified
	// index for the property "generator". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsObject(idx int, v ActivityStreamsObject)
	// SetActivityStreamsOffer sets a Offer value to be at the specified index
	// for the property "generator". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsOffer(idx int, v ActivityStreamsOffer)
	// SetActivityStreamsOrderedCollection sets a OrderedCollection value to
	// be at the specified index for the property "generator". Panics if
	// the index is out of bounds. Invalidates all iterators.
	SetActivityStreamsOrderedCollection(idx int, v ActivityStreamsOrderedCollection)
	// SetActivityStreamsOrderedCollectionPage sets a OrderedCollectionPage
	// value to be at the specified index for the property "generator".
	// Panics if the index is out of bounds. Invalidates all iterators.
	SetActivityStreamsOrderedCollectionPage(idx int, v ActivityStreamsOrderedCollectionPage)
	// SetActivityStreamsOrganization sets a Organization value to be at the
	// specified index for the property "generator". Panics if the index
	// is out of bounds. Invalidates all iterators.
	SetActivityStreamsOrganization(idx int, v ActivityStreamsOrganization)
	// SetActivityStreamsPage sets a Page value to be at the specified index
	// for the property "generator". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsPage(idx int, v ActivityStreamsPage)
	// SetActivityStreamsPerson sets a Person value to be at the specified
	// index for the property "generator". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsPerson(idx int, v ActivityStreamsPerson)
	// SetActivityStreamsPlace sets a Place value to be at the specified index
	// for the property "generator". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsPlace(idx int, v ActivityStreamsPlace)
	// SetActivityStreamsProfile sets a Profile value to be at the specified
	// index for the property "generator". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsProfile(idx int, v ActivityStreamsProfile)
	// SetActivityStreamsQuestion sets a Question value to be at the specified
	// index for the property "generator". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsQuestion(idx int, v ActivityStreamsQuestion)
	// SetActivityStreamsRead sets a Read value to be at the specified index
	// for the property "generator". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsRead(idx int, v ActivityStreamsRead)
	// SetActivityStreamsReject sets a Reject value to be at the specified
	// index for the property "generator". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsReject(idx int, v ActivityStreamsReject)
	// SetActivityStreamsRelationship sets a Relationship value to be at the
	// specified index for the property "generator". Panics if the index
	// is out of bounds. Invalidates all iterators.
	SetActivityStreamsRelationship(idx int, v ActivityStreamsRelationship)
	// SetActivityStreamsRemove sets a Remove value to be at the specified
	// index for the property "generator". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsRemove(idx int, v ActivityStreamsRemove)
	// SetActivityStreamsService sets a Service value to be at the specified
	// index for the property "generator". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsService(idx int, v ActivityStreamsService)
	// SetActivityStreamsTentativeAccept sets a TentativeAccept value to be at
	// the specified index for the property "generator". Panics if the
	// index is out of bounds. Invalidates all iterators.
	SetActivityStreamsTentativeAccept(idx int, v ActivityStreamsTentativeAccept)
	// SetActivityStreamsTentativeReject sets a TentativeReject value to be at
	// the specified index for the property "generator". Panics if the
	// index is out of bounds. Invalidates all iterators.
	SetActivityStreamsTentativeReject(idx int, v ActivityStreamsTentativeReject)
	// SetActivityStreamsTombstone sets a Tombstone value to be at the
	// specified index for the property "generator". Panics if the index
	// is out of bounds. Invalidates all iterators.
	SetActivityStreamsTombstone(idx int, v ActivityStreamsTombstone)
	// SetActivityStreamsTravel sets a Travel value to be at the specified
	// index for the property "generator". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsTravel(idx int, v ActivityStreamsTravel)
	// SetActivityStreamsUndo sets a Undo value to be at the specified index
	// for the property "generator". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsUndo(idx int, v ActivityStreamsUndo)
	// SetActivityStreamsUpdate sets a Update value to be at the specified
	// index for the property "generator". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsUpdate(idx int, v ActivityStreamsUpdate)
	// SetActivityStreamsVideo sets a Video value to be at the specified index
	// for the property "generator". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsVideo(idx int, v ActivityStreamsVideo)
	// SetActivityStreamsView sets a View value to be at the specified index
	// for the property "generator". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsView(idx int, v ActivityStreamsView)
	// SetForgeFedBranch sets a Branch value to be at the specified index for
	// the property "generator". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedBranch(idx int, v ForgeFedBranch)
	// SetForgeFedCommit sets a Commit value to be at the specified index for
	// the property "generator". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedCommit(idx int, v ForgeFedCommit)
	// SetForgeFedPush sets a Push value to be at the specified index for the
	// property "generator". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedPush(idx int, v ForgeFedPush)
	// SetForgeFedRepository sets a Repository value to be at the specified
	// index for the property "generator". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetForgeFedRepository(idx int, v ForgeFedRepository)
	// SetForgeFedTicket sets a Ticket value to be at the specified index for
	// the property "generator". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedTicket(idx int, v ForgeFedTicket)
	// SetForgeFedTicketDependency sets a TicketDependency value to be at the
	// specified index for the property "generator". Panics if the index
	// is out of bounds. Invalidates all iterators.
	SetForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
	// SetIRI sets an IRI value to be at the specified index for the property
	// "generator". Panics if the index is out of bounds.
	SetIRI(idx int, v *url.URL)
	// SetTootEmoji sets a Emoji value to be at the specified index for the
	// property "generator". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetTootEmoji(idx int, v TootEmoji)
	// SetTootIdentityProof sets a IdentityProof value to be at the specified
	// index for the property "generator". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetTootIdentityProof(idx int, v TootIdentityProof)
	// SetType sets an arbitrary type value to the specified index of the
	// property "generator". Invalidates all iterators. Returns an error
	// if the type is not a valid one to set for this property. Panics if
	// the index is out of bounds.
	SetType(idx int, t Type) error
	// Swap swaps the location of values at two indices for the "generator"
	// property.
	Swap(i, j int)
}

Identifies the entity (e.g. an application) that generated the object.

Example 78 (https://www.w3.org/TR/activitystreams-vocabulary/#ex75-jsonld):

{
  "content": "This is all there is.",
  "generator": {
    "name": "Exampletron 3000",
    "type": "Application"
  },
  "summary": "A simple note",
  "type": "Note"
}

type ActivityStreamsGeneratorPropertyIterator

type ActivityStreamsGeneratorPropertyIterator interface {
	// GetActivityStreamsAccept returns the value of this property. When
	// IsActivityStreamsAccept returns false, GetActivityStreamsAccept
	// will return an arbitrary value.
	GetActivityStreamsAccept() ActivityStreamsAccept
	// GetActivityStreamsActivity returns the value of this property. When
	// IsActivityStreamsActivity returns false, GetActivityStreamsActivity
	// will return an arbitrary value.
	GetActivityStreamsActivity() ActivityStreamsActivity
	// GetActivityStreamsAdd returns the value of this property. When
	// IsActivityStreamsAdd returns false, GetActivityStreamsAdd will
	// return an arbitrary value.
	GetActivityStreamsAdd() ActivityStreamsAdd
	// GetActivityStreamsAnnounce returns the value of this property. When
	// IsActivityStreamsAnnounce returns false, GetActivityStreamsAnnounce
	// will return an arbitrary value.
	GetActivityStreamsAnnounce() ActivityStreamsAnnounce
	// GetActivityStreamsApplication returns the value of this property. When
	// IsActivityStreamsApplication returns false,
	// GetActivityStreamsApplication will return an arbitrary value.
	GetActivityStreamsApplication() ActivityStreamsApplication
	// GetActivityStreamsArrive returns the value of this property. When
	// IsActivityStreamsArrive returns false, GetActivityStreamsArrive
	// will return an arbitrary value.
	GetActivityStreamsArrive() ActivityStreamsArrive
	// GetActivityStreamsArticle returns the value of this property. When
	// IsActivityStreamsArticle returns false, GetActivityStreamsArticle
	// will return an arbitrary value.
	GetActivityStreamsArticle() ActivityStreamsArticle
	// GetActivityStreamsAudio returns the value of this property. When
	// IsActivityStreamsAudio returns false, GetActivityStreamsAudio will
	// return an arbitrary value.
	GetActivityStreamsAudio() ActivityStreamsAudio
	// GetActivityStreamsBlock returns the value of this property. When
	// IsActivityStreamsBlock returns false, GetActivityStreamsBlock will
	// return an arbitrary value.
	GetActivityStreamsBlock() ActivityStreamsBlock
	// GetActivityStreamsCollection returns the value of this property. When
	// IsActivityStreamsCollection returns false,
	// GetActivityStreamsCollection will return an arbitrary value.
	GetActivityStreamsCollection() ActivityStreamsCollection
	// GetActivityStreamsCollectionPage returns the value of this property.
	// When IsActivityStreamsCollectionPage returns false,
	// GetActivityStreamsCollectionPage will return an arbitrary value.
	GetActivityStreamsCollectionPage() ActivityStreamsCollectionPage
	// GetActivityStreamsCreate returns the value of this property. When
	// IsActivityStreamsCreate returns false, GetActivityStreamsCreate
	// will return an arbitrary value.
	GetActivityStreamsCreate() ActivityStreamsCreate
	// GetActivityStreamsDelete returns the value of this property. When
	// IsActivityStreamsDelete returns false, GetActivityStreamsDelete
	// will return an arbitrary value.
	GetActivityStreamsDelete() ActivityStreamsDelete
	// GetActivityStreamsDislike returns the value of this property. When
	// IsActivityStreamsDislike returns false, GetActivityStreamsDislike
	// will return an arbitrary value.
	GetActivityStreamsDislike() ActivityStreamsDislike
	// GetActivityStreamsDocument returns the value of this property. When
	// IsActivityStreamsDocument returns false, GetActivityStreamsDocument
	// will return an arbitrary value.
	GetActivityStreamsDocument() ActivityStreamsDocument
	// GetActivityStreamsEvent returns the value of this property. When
	// IsActivityStreamsEvent returns false, GetActivityStreamsEvent will
	// return an arbitrary value.
	GetActivityStreamsEvent() ActivityStreamsEvent
	// GetActivityStreamsFlag returns the value of this property. When
	// IsActivityStreamsFlag returns false, GetActivityStreamsFlag will
	// return an arbitrary value.
	GetActivityStreamsFlag() ActivityStreamsFlag
	// GetActivityStreamsFollow returns the value of this property. When
	// IsActivityStreamsFollow returns false, GetActivityStreamsFollow
	// will return an arbitrary value.
	GetActivityStreamsFollow() ActivityStreamsFollow
	// GetActivityStreamsGroup returns the value of this property. When
	// IsActivityStreamsGroup returns false, GetActivityStreamsGroup will
	// return an arbitrary value.
	GetActivityStreamsGroup() ActivityStreamsGroup
	// GetActivityStreamsIgnore returns the value of this property. When
	// IsActivityStreamsIgnore returns false, GetActivityStreamsIgnore
	// will return an arbitrary value.
	GetActivityStreamsIgnore() ActivityStreamsIgnore
	// GetActivityStreamsImage returns the value of this property. When
	// IsActivityStreamsImage returns false, GetActivityStreamsImage will
	// return an arbitrary value.
	GetActivityStreamsImage() ActivityStreamsImage
	// GetActivityStreamsIntransitiveActivity returns the value of this
	// property. When IsActivityStreamsIntransitiveActivity returns false,
	// GetActivityStreamsIntransitiveActivity will return an arbitrary
	// value.
	GetActivityStreamsIntransitiveActivity() ActivityStreamsIntransitiveActivity
	// GetActivityStreamsInvite returns the value of this property. When
	// IsActivityStreamsInvite returns false, GetActivityStreamsInvite
	// will return an arbitrary value.
	GetActivityStreamsInvite() ActivityStreamsInvite
	// GetActivityStreamsJoin returns the value of this property. When
	// IsActivityStreamsJoin returns false, GetActivityStreamsJoin will
	// return an arbitrary value.
	GetActivityStreamsJoin() ActivityStreamsJoin
	// GetActivityStreamsLeave returns the value of this property. When
	// IsActivityStreamsLeave returns false, GetActivityStreamsLeave will
	// return an arbitrary value.
	GetActivityStreamsLeave() ActivityStreamsLeave
	// GetActivityStreamsLike returns the value of this property. When
	// IsActivityStreamsLike returns false, GetActivityStreamsLike will
	// return an arbitrary value.
	GetActivityStreamsLike() ActivityStreamsLike
	// GetActivityStreamsLink returns the value of this property. When
	// IsActivityStreamsLink returns false, GetActivityStreamsLink will
	// return an arbitrary value.
	GetActivityStreamsLink() ActivityStreamsLink
	// GetActivityStreamsListen returns the value of this property. When
	// IsActivityStreamsListen returns false, GetActivityStreamsListen
	// will return an arbitrary value.
	GetActivityStreamsListen() ActivityStreamsListen
	// GetActivityStreamsMention returns the value of this property. When
	// IsActivityStreamsMention returns false, GetActivityStreamsMention
	// will return an arbitrary value.
	GetActivityStreamsMention() ActivityStreamsMention
	// GetActivityStreamsMove returns the value of this property. When
	// IsActivityStreamsMove returns false, GetActivityStreamsMove will
	// return an arbitrary value.
	GetActivityStreamsMove() ActivityStreamsMove
	// GetActivityStreamsNote returns the value of this property. When
	// IsActivityStreamsNote returns false, GetActivityStreamsNote will
	// return an arbitrary value.
	GetActivityStreamsNote() ActivityStreamsNote
	// GetActivityStreamsObject returns the value of this property. When
	// IsActivityStreamsObject returns false, GetActivityStreamsObject
	// will return an arbitrary value.
	GetActivityStreamsObject() ActivityStreamsObject
	// GetActivityStreamsOffer returns the value of this property. When
	// IsActivityStreamsOffer returns false, GetActivityStreamsOffer will
	// return an arbitrary value.
	GetActivityStreamsOffer() ActivityStreamsOffer
	// GetActivityStreamsOrderedCollection returns the value of this property.
	// When IsActivityStreamsOrderedCollection returns false,
	// GetActivityStreamsOrderedCollection will return an arbitrary value.
	GetActivityStreamsOrderedCollection() ActivityStreamsOrderedCollection
	// GetActivityStreamsOrderedCollectionPage returns the value of this
	// property. When IsActivityStreamsOrderedCollectionPage returns
	// false, GetActivityStreamsOrderedCollectionPage will return an
	// arbitrary value.
	GetActivityStreamsOrderedCollectionPage() ActivityStreamsOrderedCollectionPage
	// GetActivityStreamsOrganization returns the value of this property. When
	// IsActivityStreamsOrganization returns false,
	// GetActivityStreamsOrganization will return an arbitrary value.
	GetActivityStreamsOrganization() ActivityStreamsOrganization
	// GetActivityStreamsPage returns the value of this property. When
	// IsActivityStreamsPage returns false, GetActivityStreamsPage will
	// return an arbitrary value.
	GetActivityStreamsPage() ActivityStreamsPage
	// GetActivityStreamsPerson returns the value of this property. When
	// IsActivityStreamsPerson returns false, GetActivityStreamsPerson
	// will return an arbitrary value.
	GetActivityStreamsPerson() ActivityStreamsPerson
	// GetActivityStreamsPlace returns the value of this property. When
	// IsActivityStreamsPlace returns false, GetActivityStreamsPlace will
	// return an arbitrary value.
	GetActivityStreamsPlace() ActivityStreamsPlace
	// GetActivityStreamsProfile returns the value of this property. When
	// IsActivityStreamsProfile returns false, GetActivityStreamsProfile
	// will return an arbitrary value.
	GetActivityStreamsProfile() ActivityStreamsProfile
	// GetActivityStreamsQuestion returns the value of this property. When
	// IsActivityStreamsQuestion returns false, GetActivityStreamsQuestion
	// will return an arbitrary value.
	GetActivityStreamsQuestion() ActivityStreamsQuestion
	// GetActivityStreamsRead returns the value of this property. When
	// IsActivityStreamsRead returns false, GetActivityStreamsRead will
	// return an arbitrary value.
	GetActivityStreamsRead() ActivityStreamsRead
	// GetActivityStreamsReject returns the value of this property. When
	// IsActivityStreamsReject returns false, GetActivityStreamsReject
	// will return an arbitrary value.
	GetActivityStreamsReject() ActivityStreamsReject
	// GetActivityStreamsRelationship returns the value of this property. When
	// IsActivityStreamsRelationship returns false,
	// GetActivityStreamsRelationship will return an arbitrary value.
	GetActivityStreamsRelationship() ActivityStreamsRelationship
	// GetActivityStreamsRemove returns the value of this property. When
	// IsActivityStreamsRemove returns false, GetActivityStreamsRemove
	// will return an arbitrary value.
	GetActivityStreamsRemove() ActivityStreamsRemove
	// GetActivityStreamsService returns the value of this property. When
	// IsActivityStreamsService returns false, GetActivityStreamsService
	// will return an arbitrary value.
	GetActivityStreamsService() ActivityStreamsService
	// GetActivityStreamsTentativeAccept returns the value of this property.
	// When IsActivityStreamsTentativeAccept returns false,
	// GetActivityStreamsTentativeAccept will return an arbitrary value.
	GetActivityStreamsTentativeAccept() ActivityStreamsTentativeAccept
	// GetActivityStreamsTentativeReject returns the value of this property.
	// When IsActivityStreamsTentativeReject returns false,
	// GetActivityStreamsTentativeReject will return an arbitrary value.
	GetActivityStreamsTentativeReject() ActivityStreamsTentativeReject
	// GetActivityStreamsTombstone returns the value of this property. When
	// IsActivityStreamsTombstone returns false,
	// GetActivityStreamsTombstone will return an arbitrary value.
	GetActivityStreamsTombstone() ActivityStreamsTombstone
	// GetActivityStreamsTravel returns the value of this property. When
	// IsActivityStreamsTravel returns false, GetActivityStreamsTravel
	// will return an arbitrary value.
	GetActivityStreamsTravel() ActivityStreamsTravel
	// GetActivityStreamsUndo returns the value of this property. When
	// IsActivityStreamsUndo returns false, GetActivityStreamsUndo will
	// return an arbitrary value.
	GetActivityStreamsUndo() ActivityStreamsUndo
	// GetActivityStreamsUpdate returns the value of this property. When
	// IsActivityStreamsUpdate returns false, GetActivityStreamsUpdate
	// will return an arbitrary value.
	GetActivityStreamsUpdate() ActivityStreamsUpdate
	// GetActivityStreamsVideo returns the value of this property. When
	// IsActivityStreamsVideo returns false, GetActivityStreamsVideo will
	// return an arbitrary value.
	GetActivityStreamsVideo() ActivityStreamsVideo
	// GetActivityStreamsView returns the value of this property. When
	// IsActivityStreamsView returns false, GetActivityStreamsView will
	// return an arbitrary value.
	GetActivityStreamsView() ActivityStreamsView
	// GetForgeFedBranch returns the value of this property. When
	// IsForgeFedBranch returns false, GetForgeFedBranch will return an
	// arbitrary value.
	GetForgeFedBranch() ForgeFedBranch
	// GetForgeFedCommit returns the value of this property. When
	// IsForgeFedCommit returns false, GetForgeFedCommit will return an
	// arbitrary value.
	GetForgeFedCommit() ForgeFedCommit
	// GetForgeFedPush returns the value of this property. When IsForgeFedPush
	// returns false, GetForgeFedPush will return an arbitrary value.
	GetForgeFedPush() ForgeFedPush
	// GetForgeFedRepository returns the value of this property. When
	// IsForgeFedRepository returns false, GetForgeFedRepository will
	// return an arbitrary value.
	GetForgeFedRepository() ForgeFedRepository
	// GetForgeFedTicket returns the value of this property. When
	// IsForgeFedTicket returns false, GetForgeFedTicket will return an
	// arbitrary value.
	GetForgeFedTicket() ForgeFedTicket
	// GetForgeFedTicketDependency returns the value of this property. When
	// IsForgeFedTicketDependency returns false,
	// GetForgeFedTicketDependency will return an arbitrary value.
	GetForgeFedTicketDependency() ForgeFedTicketDependency
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return an arbitrary value.
	GetIRI() *url.URL
	// GetTootEmoji returns the value of this property. When IsTootEmoji
	// returns false, GetTootEmoji will return an arbitrary value.
	GetTootEmoji() TootEmoji
	// GetTootIdentityProof returns the value of this property. When
	// IsTootIdentityProof returns false, GetTootIdentityProof will return
	// an arbitrary value.
	GetTootIdentityProof() TootIdentityProof
	// GetType returns the value in this property as a Type. Returns nil if
	// the value is not an ActivityStreams type, such as an IRI or another
	// value.
	GetType() Type
	// HasAny returns true if any of the different values is set.
	HasAny() bool
	// IsActivityStreamsAccept returns true if this property has a type of
	// "Accept". When true, use the GetActivityStreamsAccept and
	// SetActivityStreamsAccept methods to access and set this property.
	IsActivityStreamsAccept() bool
	// IsActivityStreamsActivity returns true if this property has a type of
	// "Activity". When true, use the GetActivityStreamsActivity and
	// SetActivityStreamsActivity methods to access and set this property.
	IsActivityStreamsActivity() bool
	// IsActivityStreamsAdd returns true if this property has a type of "Add".
	// When true, use the GetActivityStreamsAdd and SetActivityStreamsAdd
	// methods to access and set this property.
	IsActivityStreamsAdd() bool
	// IsActivityStreamsAnnounce returns true if this property has a type of
	// "Announce". When true, use the GetActivityStreamsAnnounce and
	// SetActivityStreamsAnnounce methods to access and set this property.
	IsActivityStreamsAnnounce() bool
	// IsActivityStreamsApplication returns true if this property has a type
	// of "Application". When true, use the GetActivityStreamsApplication
	// and SetActivityStreamsApplication methods to access and set this
	// property.
	IsActivityStreamsApplication() bool
	// IsActivityStreamsArrive returns true if this property has a type of
	// "Arrive". When true, use the GetActivityStreamsArrive and
	// SetActivityStreamsArrive methods to access and set this property.
	IsActivityStreamsArrive() bool
	// IsActivityStreamsArticle returns true if this property has a type of
	// "Article". When true, use the GetActivityStreamsArticle and
	// SetActivityStreamsArticle methods to access and set this property.
	IsActivityStreamsArticle() bool
	// IsActivityStreamsAudio returns true if this property has a type of
	// "Audio". When true, use the GetActivityStreamsAudio and
	// SetActivityStreamsAudio methods to access and set this property.
	IsActivityStreamsAudio() bool
	// IsActivityStreamsBlock returns true if this property has a type of
	// "Block". When true, use the GetActivityStreamsBlock and
	// SetActivityStreamsBlock methods to access and set this property.
	IsActivityStreamsBlock() bool
	// IsActivityStreamsCollection returns true if this property has a type of
	// "Collection". When true, use the GetActivityStreamsCollection and
	// SetActivityStreamsCollection methods to access and set this
	// property.
	IsActivityStreamsCollection() bool
	// IsActivityStreamsCollectionPage returns true if this property has a
	// type of "CollectionPage". When true, use the
	// GetActivityStreamsCollectionPage and
	// SetActivityStreamsCollectionPage methods to access and set this
	// property.
	IsActivityStreamsCollectionPage() bool
	// IsActivityStreamsCreate returns true if this property has a type of
	// "Create". When true, use the GetActivityStreamsCreate and
	// SetActivityStreamsCreate methods to access and set this property.
	IsActivityStreamsCreate() bool
	// IsActivityStreamsDelete returns true if this property has a type of
	// "Delete". When true, use the GetActivityStreamsDelete and
	// SetActivityStreamsDelete methods to access and set this property.
	IsActivityStreamsDelete() bool
	// IsActivityStreamsDislike returns true if this property has a type of
	// "Dislike". When true, use the GetActivityStreamsDislike and
	// SetActivityStreamsDislike methods to access and set this property.
	IsActivityStreamsDislike() bool
	// IsActivityStreamsDocument returns true if this property has a type of
	// "Document". When true, use the GetActivityStreamsDocument and
	// SetActivityStreamsDocument methods to access and set this property.
	IsActivityStreamsDocument() bool
	// IsActivityStreamsEvent returns true if this property has a type of
	// "Event". When true, use the GetActivityStreamsEvent and
	// SetActivityStreamsEvent methods to access and set this property.
	IsActivityStreamsEvent() bool
	// IsActivityStreamsFlag returns true if this property has a type of
	// "Flag". When true, use the GetActivityStreamsFlag and
	// SetActivityStreamsFlag methods to access and set this property.
	IsActivityStreamsFlag() bool
	// IsActivityStreamsFollow returns true if this property has a type of
	// "Follow". When true, use the GetActivityStreamsFollow and
	// SetActivityStreamsFollow methods to access and set this property.
	IsActivityStreamsFollow() bool
	// IsActivityStreamsGroup returns true if this property has a type of
	// "Group". When true, use the GetActivityStreamsGroup and
	// SetActivityStreamsGroup methods to access and set this property.
	IsActivityStreamsGroup() bool
	// IsActivityStreamsIgnore returns true if this property has a type of
	// "Ignore". When true, use the GetActivityStreamsIgnore and
	// SetActivityStreamsIgnore methods to access and set this property.
	IsActivityStreamsIgnore() bool
	// IsActivityStreamsImage returns true if this property has a type of
	// "Image". When true, use the GetActivityStreamsImage and
	// SetActivityStreamsImage methods to access and set this property.
	IsActivityStreamsImage() bool
	// IsActivityStreamsIntransitiveActivity returns true if this property has
	// a type of "IntransitiveActivity". When true, use the
	// GetActivityStreamsIntransitiveActivity and
	// SetActivityStreamsIntransitiveActivity methods to access and set
	// this property.
	IsActivityStreamsIntransitiveActivity() bool
	// IsActivityStreamsInvite returns true if this property has a type of
	// "Invite". When true, use the GetActivityStreamsInvite and
	// SetActivityStreamsInvite methods to access and set this property.
	IsActivityStreamsInvite() bool
	// IsActivityStreamsJoin returns true if this property has a type of
	// "Join". When true, use the GetActivityStreamsJoin and
	// SetActivityStreamsJoin methods to access and set this property.
	IsActivityStreamsJoin() bool
	// IsActivityStreamsLeave returns true if this property has a type of
	// "Leave". When true, use the GetActivityStreamsLeave and
	// SetActivityStreamsLeave methods to access and set this property.
	IsActivityStreamsLeave() bool
	// IsActivityStreamsLike returns true if this property has a type of
	// "Like". When true, use the GetActivityStreamsLike and
	// SetActivityStreamsLike methods to access and set this property.
	IsActivityStreamsLike() bool
	// IsActivityStreamsLink returns true if this property has a type of
	// "Link". When true, use the GetActivityStreamsLink and
	// SetActivityStreamsLink methods to access and set this property.
	IsActivityStreamsLink() bool
	// IsActivityStreamsListen returns true if this property has a type of
	// "Listen". When true, use the GetActivityStreamsListen and
	// SetActivityStreamsListen methods to access and set this property.
	IsActivityStreamsListen() bool
	// IsActivityStreamsMention returns true if this property has a type of
	// "Mention". When true, use the GetActivityStreamsMention and
	// SetActivityStreamsMention methods to access and set this property.
	IsActivityStreamsMention() bool
	// IsActivityStreamsMove returns true if this property has a type of
	// "Move". When true, use the GetActivityStreamsMove and
	// SetActivityStreamsMove methods to access and set this property.
	IsActivityStreamsMove() bool
	// IsActivityStreamsNote returns true if this property has a type of
	// "Note". When true, use the GetActivityStreamsNote and
	// SetActivityStreamsNote methods to access and set this property.
	IsActivityStreamsNote() bool
	// IsActivityStreamsObject returns true if this property has a type of
	// "Object". When true, use the GetActivityStreamsObject and
	// SetActivityStreamsObject methods to access and set this property.
	IsActivityStreamsObject() bool
	// IsActivityStreamsOffer returns true if this property has a type of
	// "Offer". When true, use the GetActivityStreamsOffer and
	// SetActivityStreamsOffer methods to access and set this property.
	IsActivityStreamsOffer() bool
	// IsActivityStreamsOrderedCollection returns true if this property has a
	// type of "OrderedCollection". When true, use the
	// GetActivityStreamsOrderedCollection and
	// SetActivityStreamsOrderedCollection methods to access and set this
	// property.
	IsActivityStreamsOrderedCollection() bool
	// IsActivityStreamsOrderedCollectionPage returns true if this property
	// has a type of "OrderedCollectionPage". When true, use the
	// GetActivityStreamsOrderedCollectionPage and
	// SetActivityStreamsOrderedCollectionPage methods to access and set
	// this property.
	IsActivityStreamsOrderedCollectionPage() bool
	// IsActivityStreamsOrganization returns true if this property has a type
	// of "Organization". When true, use the
	// GetActivityStreamsOrganization and SetActivityStreamsOrganization
	// methods to access and set this property.
	IsActivityStreamsOrganization() bool
	// IsActivityStreamsPage returns true if this property has a type of
	// "Page". When true, use the GetActivityStreamsPage and
	// SetActivityStreamsPage methods to access and set this property.
	IsActivityStreamsPage() bool
	// IsActivityStreamsPerson returns true if this property has a type of
	// "Person". When true, use the GetActivityStreamsPerson and
	// SetActivityStreamsPerson methods to access and set this property.
	IsActivityStreamsPerson() bool
	// IsActivityStreamsPlace returns true if this property has a type of
	// "Place". When true, use the GetActivityStreamsPlace and
	// SetActivityStreamsPlace methods to access and set this property.
	IsActivityStreamsPlace() bool
	// IsActivityStreamsProfile returns true if this property has a type of
	// "Profile". When true, use the GetActivityStreamsProfile and
	// SetActivityStreamsProfile methods to access and set this property.
	IsActivityStreamsProfile() bool
	// IsActivityStreamsQuestion returns true if this property has a type of
	// "Question". When true, use the GetActivityStreamsQuestion and
	// SetActivityStreamsQuestion methods to access and set this property.
	IsActivityStreamsQuestion() bool
	// IsActivityStreamsRead returns true if this property has a type of
	// "Read". When true, use the GetActivityStreamsRead and
	// SetActivityStreamsRead methods to access and set this property.
	IsActivityStreamsRead() bool
	// IsActivityStreamsReject returns true if this property has a type of
	// "Reject". When true, use the GetActivityStreamsReject and
	// SetActivityStreamsReject methods to access and set this property.
	IsActivityStreamsReject() bool
	// IsActivityStreamsRelationship returns true if this property has a type
	// of "Relationship". When true, use the
	// GetActivityStreamsRelationship and SetActivityStreamsRelationship
	// methods to access and set this property.
	IsActivityStreamsRelationship() bool
	// IsActivityStreamsRemove returns true if this property has a type of
	// "Remove". When true, use the GetActivityStreamsRemove and
	// SetActivityStreamsRemove methods to access and set this property.
	IsActivityStreamsRemove() bool
	// IsActivityStreamsService returns true if this property has a type of
	// "Service". When true, use the GetActivityStreamsService and
	// SetActivityStreamsService methods to access and set this property.
	IsActivityStreamsService() bool
	// IsActivityStreamsTentativeAccept returns true if this property has a
	// type of "TentativeAccept". When true, use the
	// GetActivityStreamsTentativeAccept and
	// SetActivityStreamsTentativeAccept methods to access and set this
	// property.
	IsActivityStreamsTentativeAccept() bool
	// IsActivityStreamsTentativeReject returns true if this property has a
	// type of "TentativeReject". When true, use the
	// GetActivityStreamsTentativeReject and
	// SetActivityStreamsTentativeReject methods to access and set this
	// property.
	IsActivityStreamsTentativeReject() bool
	// IsActivityStreamsTombstone returns true if this property has a type of
	// "Tombstone". When true, use the GetActivityStreamsTombstone and
	// SetActivityStreamsTombstone methods to access and set this property.
	IsActivityStreamsTombstone() bool
	// IsActivityStreamsTravel returns true if this property has a type of
	// "Travel". When true, use the GetActivityStreamsTravel and
	// SetActivityStreamsTravel methods to access and set this property.
	IsActivityStreamsTravel() bool
	// IsActivityStreamsUndo returns true if this property has a type of
	// "Undo". When true, use the GetActivityStreamsUndo and
	// SetActivityStreamsUndo methods to access and set this property.
	IsActivityStreamsUndo() bool
	// IsActivityStreamsUpdate returns true if this property has a type of
	// "Update". When true, use the GetActivityStreamsUpdate and
	// SetActivityStreamsUpdate methods to access and set this property.
	IsActivityStreamsUpdate() bool
	// IsActivityStreamsVideo returns true if this property has a type of
	// "Video". When true, use the GetActivityStreamsVideo and
	// SetActivityStreamsVideo methods to access and set this property.
	IsActivityStreamsVideo() bool
	// IsActivityStreamsView returns true if this property has a type of
	// "View". When true, use the GetActivityStreamsView and
	// SetActivityStreamsView methods to access and set this property.
	IsActivityStreamsView() bool
	// IsForgeFedBranch returns true if this property has a type of "Branch".
	// When true, use the GetForgeFedBranch and SetForgeFedBranch methods
	// to access and set this property.
	IsForgeFedBranch() bool
	// IsForgeFedCommit returns true if this property has a type of "Commit".
	// When true, use the GetForgeFedCommit and SetForgeFedCommit methods
	// to access and set this property.
	IsForgeFedCommit() bool
	// IsForgeFedPush returns true if this property has a type of "Push". When
	// true, use the GetForgeFedPush and SetForgeFedPush methods to access
	// and set this property.
	IsForgeFedPush() bool
	// IsForgeFedRepository returns true if this property has a type of
	// "Repository". When true, use the GetForgeFedRepository and
	// SetForgeFedRepository methods to access and set this property.
	IsForgeFedRepository() bool
	// IsForgeFedTicket returns true if this property has a type of "Ticket".
	// When true, use the GetForgeFedTicket and SetForgeFedTicket methods
	// to access and set this property.
	IsForgeFedTicket() bool
	// IsForgeFedTicketDependency returns true if this property has a type of
	// "TicketDependency". When true, use the GetForgeFedTicketDependency
	// and SetForgeFedTicketDependency methods to access and set this
	// property.
	IsForgeFedTicketDependency() bool
	// IsIRI returns true if this property is an IRI. When true, use GetIRI
	// and SetIRI to access and set this property
	IsIRI() bool
	// IsTootEmoji returns true if this property has a type of "Emoji". When
	// true, use the GetTootEmoji and SetTootEmoji methods to access and
	// set this property.
	IsTootEmoji() bool
	// IsTootIdentityProof returns true if this property has a type of
	// "IdentityProof". When true, use the GetTootIdentityProof and
	// SetTootIdentityProof methods to access and set this property.
	IsTootIdentityProof() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsGeneratorPropertyIterator) bool
	// Name returns the name of this property: "ActivityStreamsGenerator".
	Name() string
	// Next returns the next iterator, or nil if there is no next iterator.
	Next() ActivityStreamsGeneratorPropertyIterator
	// Prev returns the previous iterator, or nil if there is no previous
	// iterator.
	Prev() ActivityStreamsGeneratorPropertyIterator
	// SetActivityStreamsAccept sets the value of this property. Calling
	// IsActivityStreamsAccept afterwards returns true.
	SetActivityStreamsAccept(v ActivityStreamsAccept)
	// SetActivityStreamsActivity sets the value of this property. Calling
	// IsActivityStreamsActivity afterwards returns true.
	SetActivityStreamsActivity(v ActivityStreamsActivity)
	// SetActivityStreamsAdd sets the value of this property. Calling
	// IsActivityStreamsAdd afterwards returns true.
	SetActivityStreamsAdd(v ActivityStreamsAdd)
	// SetActivityStreamsAnnounce sets the value of this property. Calling
	// IsActivityStreamsAnnounce afterwards returns true.
	SetActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// SetActivityStreamsApplication sets the value of this property. Calling
	// IsActivityStreamsApplication afterwards returns true.
	SetActivityStreamsApplication(v ActivityStreamsApplication)
	// SetActivityStreamsArrive sets the value of this property. Calling
	// IsActivityStreamsArrive afterwards returns true.
	SetActivityStreamsArrive(v ActivityStreamsArrive)
	// SetActivityStreamsArticle sets the value of this property. Calling
	// IsActivityStreamsArticle afterwards returns true.
	SetActivityStreamsArticle(v ActivityStreamsArticle)
	// SetActivityStreamsAudio sets the value of this property. Calling
	// IsActivityStreamsAudio afterwards returns true.
	SetActivityStreamsAudio(v ActivityStreamsAudio)
	// SetActivityStreamsBlock sets the value of this property. Calling
	// IsActivityStreamsBlock afterwards returns true.
	SetActivityStreamsBlock(v ActivityStreamsBlock)
	// SetActivityStreamsCollection sets the value of this property. Calling
	// IsActivityStreamsCollection afterwards returns true.
	SetActivityStreamsCollection(v ActivityStreamsCollection)
	// SetActivityStreamsCollectionPage sets the value of this property.
	// Calling IsActivityStreamsCollectionPage afterwards returns true.
	SetActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// SetActivityStreamsCreate sets the value of this property. Calling
	// IsActivityStreamsCreate afterwards returns true.
	SetActivityStreamsCreate(v ActivityStreamsCreate)
	// SetActivityStreamsDelete sets the value of this property. Calling
	// IsActivityStreamsDelete afterwards returns true.
	SetActivityStreamsDelete(v ActivityStreamsDelete)
	// SetActivityStreamsDislike sets the value of this property. Calling
	// IsActivityStreamsDislike afterwards returns true.
	SetActivityStreamsDislike(v ActivityStreamsDislike)
	// SetActivityStreamsDocument sets the value of this property. Calling
	// IsActivityStreamsDocument afterwards returns true.
	SetActivityStreamsDocument(v ActivityStreamsDocument)
	// SetActivityStreamsEvent sets the value of this property. Calling
	// IsActivityStreamsEvent afterwards returns true.
	SetActivityStreamsEvent(v ActivityStreamsEvent)
	// SetActivityStreamsFlag sets the value of this property. Calling
	// IsActivityStreamsFlag afterwards returns true.
	SetActivityStreamsFlag(v ActivityStreamsFlag)
	// SetActivityStreamsFollow sets the value of this property. Calling
	// IsActivityStreamsFollow afterwards returns true.
	SetActivityStreamsFollow(v ActivityStreamsFollow)
	// SetActivityStreamsGroup sets the value of this property. Calling
	// IsActivityStreamsGroup afterwards returns true.
	SetActivityStreamsGroup(v ActivityStreamsGroup)
	// SetActivityStreamsIgnore sets the value of this property. Calling
	// IsActivityStreamsIgnore afterwards returns true.
	SetActivityStreamsIgnore(v ActivityStreamsIgnore)
	// SetActivityStreamsImage sets the value of this property. Calling
	// IsActivityStreamsImage afterwards returns true.
	SetActivityStreamsImage(v ActivityStreamsImage)
	// SetActivityStreamsIntransitiveActivity sets the value of this property.
	// Calling IsActivityStreamsIntransitiveActivity afterwards returns
	// true.
	SetActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// SetActivityStreamsInvite sets the value of this property. Calling
	// IsActivityStreamsInvite afterwards returns true.
	SetActivityStreamsInvite(v ActivityStreamsInvite)
	// SetActivityStreamsJoin sets the value of this property. Calling
	// IsActivityStreamsJoin afterwards returns true.
	SetActivityStreamsJoin(v ActivityStreamsJoin)
	// SetActivityStreamsLeave sets the value of this property. Calling
	// IsActivityStreamsLeave afterwards returns true.
	SetActivityStreamsLeave(v ActivityStreamsLeave)
	// SetActivityStreamsLike sets the value of this property. Calling
	// IsActivityStreamsLike afterwards returns true.
	SetActivityStreamsLike(v ActivityStreamsLike)
	// SetActivityStreamsLink sets the value of this property. Calling
	// IsActivityStreamsLink afterwards returns true.
	SetActivityStreamsLink(v ActivityStreamsLink)
	// SetActivityStreamsListen sets the value of this property. Calling
	// IsActivityStreamsListen afterwards returns true.
	SetActivityStreamsListen(v ActivityStreamsListen)
	// SetActivityStreamsMention sets the value of this property. Calling
	// IsActivityStreamsMention afterwards returns true.
	SetActivityStreamsMention(v ActivityStreamsMention)
	// SetActivityStreamsMove sets the value of this property. Calling
	// IsActivityStreamsMove afterwards returns true.
	SetActivityStreamsMove(v ActivityStreamsMove)
	// SetActivityStreamsNote sets the value of this property. Calling
	// IsActivityStreamsNote afterwards returns true.
	SetActivityStreamsNote(v ActivityStreamsNote)
	// SetActivityStreamsObject sets the value of this property. Calling
	// IsActivityStreamsObject afterwards returns true.
	SetActivityStreamsObject(v ActivityStreamsObject)
	// SetActivityStreamsOffer sets the value of this property. Calling
	// IsActivityStreamsOffer afterwards returns true.
	SetActivityStreamsOffer(v ActivityStreamsOffer)
	// SetActivityStreamsOrderedCollection sets the value of this property.
	// Calling IsActivityStreamsOrderedCollection afterwards returns true.
	SetActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// SetActivityStreamsOrderedCollectionPage sets the value of this
	// property. Calling IsActivityStreamsOrderedCollectionPage afterwards
	// returns true.
	SetActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// SetActivityStreamsOrganization sets the value of this property. Calling
	// IsActivityStreamsOrganization afterwards returns true.
	SetActivityStreamsOrganization(v ActivityStreamsOrganization)
	// SetActivityStreamsPage sets the value of this property. Calling
	// IsActivityStreamsPage afterwards returns true.
	SetActivityStreamsPage(v ActivityStreamsPage)
	// SetActivityStreamsPerson sets the value of this property. Calling
	// IsActivityStreamsPerson afterwards returns true.
	SetActivityStreamsPerson(v ActivityStreamsPerson)
	// SetActivityStreamsPlace sets the value of this property. Calling
	// IsActivityStreamsPlace afterwards returns true.
	SetActivityStreamsPlace(v ActivityStreamsPlace)
	// SetActivityStreamsProfile sets the value of this property. Calling
	// IsActivityStreamsProfile afterwards returns true.
	SetActivityStreamsProfile(v ActivityStreamsProfile)
	// SetActivityStreamsQuestion sets the value of this property. Calling
	// IsActivityStreamsQuestion afterwards returns true.
	SetActivityStreamsQuestion(v ActivityStreamsQuestion)
	// SetActivityStreamsRead sets the value of this property. Calling
	// IsActivityStreamsRead afterwards returns true.
	SetActivityStreamsRead(v ActivityStreamsRead)
	// SetActivityStreamsReject sets the value of this property. Calling
	// IsActivityStreamsReject afterwards returns true.
	SetActivityStreamsReject(v ActivityStreamsReject)
	// SetActivityStreamsRelationship sets the value of this property. Calling
	// IsActivityStreamsRelationship afterwards returns true.
	SetActivityStreamsRelationship(v ActivityStreamsRelationship)
	// SetActivityStreamsRemove sets the value of this property. Calling
	// IsActivityStreamsRemove afterwards returns true.
	SetActivityStreamsRemove(v ActivityStreamsRemove)
	// SetActivityStreamsService sets the value of this property. Calling
	// IsActivityStreamsService afterwards returns true.
	SetActivityStreamsService(v ActivityStreamsService)
	// SetActivityStreamsTentativeAccept sets the value of this property.
	// Calling IsActivityStreamsTentativeAccept afterwards returns true.
	SetActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// SetActivityStreamsTentativeReject sets the value of this property.
	// Calling IsActivityStreamsTentativeReject afterwards returns true.
	SetActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// SetActivityStreamsTombstone sets the value of this property. Calling
	// IsActivityStreamsTombstone afterwards returns true.
	SetActivityStreamsTombstone(v ActivityStreamsTombstone)
	// SetActivityStreamsTravel sets the value of this property. Calling
	// IsActivityStreamsTravel afterwards returns true.
	SetActivityStreamsTravel(v ActivityStreamsTravel)
	// SetActivityStreamsUndo sets the value of this property. Calling
	// IsActivityStreamsUndo afterwards returns true.
	SetActivityStreamsUndo(v ActivityStreamsUndo)
	// SetActivityStreamsUpdate sets the value of this property. Calling
	// IsActivityStreamsUpdate afterwards returns true.
	SetActivityStreamsUpdate(v ActivityStreamsUpdate)
	// SetActivityStreamsVideo sets the value of this property. Calling
	// IsActivityStreamsVideo afterwards returns true.
	SetActivityStreamsVideo(v ActivityStreamsVideo)
	// SetActivityStreamsView sets the value of this property. Calling
	// IsActivityStreamsView afterwards returns true.
	SetActivityStreamsView(v ActivityStreamsView)
	// SetForgeFedBranch sets the value of this property. Calling
	// IsForgeFedBranch afterwards returns true.
	SetForgeFedBranch(v ForgeFedBranch)
	// SetForgeFedCommit sets the value of this property. Calling
	// IsForgeFedCommit afterwards returns true.
	SetForgeFedCommit(v ForgeFedCommit)
	// SetForgeFedPush sets the value of this property. Calling IsForgeFedPush
	// afterwards returns true.
	SetForgeFedPush(v ForgeFedPush)
	// SetForgeFedRepository sets the value of this property. Calling
	// IsForgeFedRepository afterwards returns true.
	SetForgeFedRepository(v ForgeFedRepository)
	// SetForgeFedTicket sets the value of this property. Calling
	// IsForgeFedTicket afterwards returns true.
	SetForgeFedTicket(v ForgeFedTicket)
	// SetForgeFedTicketDependency sets the value of this property. Calling
	// IsForgeFedTicketDependency afterwards returns true.
	SetForgeFedTicketDependency(v ForgeFedTicketDependency)
	// SetIRI sets the value of this property. Calling IsIRI afterwards
	// returns true.
	SetIRI(v *url.URL)
	// SetTootEmoji sets the value of this property. Calling IsTootEmoji
	// afterwards returns true.
	SetTootEmoji(v TootEmoji)
	// SetTootIdentityProof sets the value of this property. Calling
	// IsTootIdentityProof afterwards returns true.
	SetTootIdentityProof(v TootIdentityProof)
	// SetType attempts to set the property for the arbitrary type. Returns an
	// error if it is not a valid type to set on this property.
	SetType(t Type) error
}

ActivityStreamsGeneratorPropertyIterator represents a single value for the "generator" property.

type ActivityStreamsGroup

type ActivityStreamsGroup interface {
	// GetActivityStreamsAltitude returns the "altitude" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAltitude() ActivityStreamsAltitudeProperty
	// GetActivityStreamsAttachment returns the "attachment" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAttachment() ActivityStreamsAttachmentProperty
	// GetActivityStreamsAttributedTo returns the "attributedTo" property if
	// it exists, and nil otherwise.
	GetActivityStreamsAttributedTo() ActivityStreamsAttributedToProperty
	// GetActivityStreamsAudience returns the "audience" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAudience() ActivityStreamsAudienceProperty
	// GetActivityStreamsBcc returns the "bcc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBcc() ActivityStreamsBccProperty
	// GetActivityStreamsBto returns the "bto" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBto() ActivityStreamsBtoProperty
	// GetActivityStreamsCc returns the "cc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsCc() ActivityStreamsCcProperty
	// GetActivityStreamsContent returns the "content" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContent() ActivityStreamsContentProperty
	// GetActivityStreamsContext returns the "context" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContext() ActivityStreamsContextProperty
	// GetActivityStreamsDuration returns the "duration" property if it
	// exists, and nil otherwise.
	GetActivityStreamsDuration() ActivityStreamsDurationProperty
	// GetActivityStreamsEndTime returns the "endTime" property if it exists,
	// and nil otherwise.
	GetActivityStreamsEndTime() ActivityStreamsEndTimeProperty
	// GetActivityStreamsFollowers returns the "followers" property if it
	// exists, and nil otherwise.
	GetActivityStreamsFollowers() ActivityStreamsFollowersProperty
	// GetActivityStreamsFollowing returns the "following" property if it
	// exists, and nil otherwise.
	GetActivityStreamsFollowing() ActivityStreamsFollowingProperty
	// GetActivityStreamsGenerator returns the "generator" property if it
	// exists, and nil otherwise.
	GetActivityStreamsGenerator() ActivityStreamsGeneratorProperty
	// GetActivityStreamsIcon returns the "icon" property if it exists, and
	// nil otherwise.
	GetActivityStreamsIcon() ActivityStreamsIconProperty
	// GetActivityStreamsImage returns the "image" property if it exists, and
	// nil otherwise.
	GetActivityStreamsImage() ActivityStreamsImageProperty
	// GetActivityStreamsInReplyTo returns the "inReplyTo" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInReplyTo() ActivityStreamsInReplyToProperty
	// GetActivityStreamsInbox returns the "inbox" property if it exists, and
	// nil otherwise.
	GetActivityStreamsInbox() ActivityStreamsInboxProperty
	// GetActivityStreamsLiked returns the "liked" property if it exists, and
	// nil otherwise.
	GetActivityStreamsLiked() ActivityStreamsLikedProperty
	// GetActivityStreamsLikes returns the "likes" property if it exists, and
	// nil otherwise.
	GetActivityStreamsLikes() ActivityStreamsLikesProperty
	// GetActivityStreamsLocation returns the "location" property if it
	// exists, and nil otherwise.
	GetActivityStreamsLocation() ActivityStreamsLocationProperty
	// GetActivityStreamsMediaType returns the "mediaType" property if it
	// exists, and nil otherwise.
	GetActivityStreamsMediaType() ActivityStreamsMediaTypeProperty
	// GetActivityStreamsName returns the "name" property if it exists, and
	// nil otherwise.
	GetActivityStreamsName() ActivityStreamsNameProperty
	// GetActivityStreamsObject returns the "object" property if it exists,
	// and nil otherwise.
	GetActivityStreamsObject() ActivityStreamsObjectProperty
	// GetActivityStreamsOutbox returns the "outbox" property if it exists,
	// and nil otherwise.
	GetActivityStreamsOutbox() ActivityStreamsOutboxProperty
	// GetActivityStreamsPreferredUsername returns the "preferredUsername"
	// property if it exists, and nil otherwise.
	GetActivityStreamsPreferredUsername() ActivityStreamsPreferredUsernameProperty
	// GetActivityStreamsPreview returns the "preview" property if it exists,
	// and nil otherwise.
	GetActivityStreamsPreview() ActivityStreamsPreviewProperty
	// GetActivityStreamsPublished returns the "published" property if it
	// exists, and nil otherwise.
	GetActivityStreamsPublished() ActivityStreamsPublishedProperty
	// GetActivityStreamsReplies returns the "replies" property if it exists,
	// and nil otherwise.
	GetActivityStreamsReplies() ActivityStreamsRepliesProperty
	// GetActivityStreamsShares returns the "shares" property if it exists,
	// and nil otherwise.
	GetActivityStreamsShares() ActivityStreamsSharesProperty
	// GetActivityStreamsSource returns the "source" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSource() ActivityStreamsSourceProperty
	// GetActivityStreamsStartTime returns the "startTime" property if it
	// exists, and nil otherwise.
	GetActivityStreamsStartTime() ActivityStreamsStartTimeProperty
	// GetActivityStreamsStreams returns the "streams" property if it exists,
	// and nil otherwise.
	GetActivityStreamsStreams() ActivityStreamsStreamsProperty
	// GetActivityStreamsSummary returns the "summary" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSummary() ActivityStreamsSummaryProperty
	// GetActivityStreamsTag returns the "tag" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTag() ActivityStreamsTagProperty
	// GetActivityStreamsTo returns the "to" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTo() ActivityStreamsToProperty
	// GetActivityStreamsUpdated returns the "updated" property if it exists,
	// and nil otherwise.
	GetActivityStreamsUpdated() ActivityStreamsUpdatedProperty
	// GetActivityStreamsUrl returns the "url" property if it exists, and nil
	// otherwise.
	GetActivityStreamsUrl() ActivityStreamsUrlProperty
	// GetForgeFedTeam returns the "team" property if it exists, and nil
	// otherwise.
	GetForgeFedTeam() ForgeFedTeamProperty
	// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
	// it exists, and nil otherwise.
	GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
	// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
	// it exists, and nil otherwise.
	GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
	// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
	GetJSONLDId() JSONLDIdProperty
	// GetJSONLDType returns the "type" property if it exists, and nil
	// otherwise.
	GetJSONLDType() JSONLDTypeProperty
	// GetTootDiscoverable returns the "discoverable" property if it exists,
	// and nil otherwise.
	GetTootDiscoverable() TootDiscoverableProperty
	// GetTootFeatured returns the "featured" property if it exists, and nil
	// otherwise.
	GetTootFeatured() TootFeaturedProperty
	// GetTypeName returns the name of this type.
	GetTypeName() string
	// GetUnknownProperties returns the unknown properties for the Group type.
	// Note that this should not be used by app developers. It is only
	// used to help determine which implementation is LessThan the other.
	// Developers who are creating a different implementation of this
	// type's interface can use this method in their LessThan
	// implementation, but routine ActivityPub applications should not use
	// this to bypass the code generation tool.
	GetUnknownProperties() map[string]interface{}
	// GetW3IDSecurityV1PublicKey returns the "publicKey" property if it
	// exists, and nil otherwise.
	GetW3IDSecurityV1PublicKey() W3IDSecurityV1PublicKeyProperty
	// IsExtending returns true if the Group type extends from the other type.
	IsExtending(other Type) bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this type and the specific properties that are set. The value
	// in the map is the alias used to import the type and its properties.
	JSONLDContext() map[string]string
	// LessThan computes if this Group is lesser, with an arbitrary but stable
	// determination.
	LessThan(o ActivityStreamsGroup) bool
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format.
	Serialize() (map[string]interface{}, error)
	// SetActivityStreamsAltitude sets the "altitude" property.
	SetActivityStreamsAltitude(i ActivityStreamsAltitudeProperty)
	// SetActivityStreamsAttachment sets the "attachment" property.
	SetActivityStreamsAttachment(i ActivityStreamsAttachmentProperty)
	// SetActivityStreamsAttributedTo sets the "attributedTo" property.
	SetActivityStreamsAttributedTo(i ActivityStreamsAttributedToProperty)
	// SetActivityStreamsAudience sets the "audience" property.
	SetActivityStreamsAudience(i ActivityStreamsAudienceProperty)
	// SetActivityStreamsBcc sets the "bcc" property.
	SetActivityStreamsBcc(i ActivityStreamsBccProperty)
	// SetActivityStreamsBto sets the "bto" property.
	SetActivityStreamsBto(i ActivityStreamsBtoProperty)
	// SetActivityStreamsCc sets the "cc" property.
	SetActivityStreamsCc(i ActivityStreamsCcProperty)
	// SetActivityStreamsContent sets the "content" property.
	SetActivityStreamsContent(i ActivityStreamsContentProperty)
	// SetActivityStreamsContext sets the "context" property.
	SetActivityStreamsContext(i ActivityStreamsContextProperty)
	// SetActivityStreamsDuration sets the "duration" property.
	SetActivityStreamsDuration(i ActivityStreamsDurationProperty)
	// SetActivityStreamsEndTime sets the "endTime" property.
	SetActivityStreamsEndTime(i ActivityStreamsEndTimeProperty)
	// SetActivityStreamsFollowers sets the "followers" property.
	SetActivityStreamsFollowers(i ActivityStreamsFollowersProperty)
	// SetActivityStreamsFollowing sets the "following" property.
	SetActivityStreamsFollowing(i ActivityStreamsFollowingProperty)
	// SetActivityStreamsGenerator sets the "generator" property.
	SetActivityStreamsGenerator(i ActivityStreamsGeneratorProperty)
	// SetActivityStreamsIcon sets the "icon" property.
	SetActivityStreamsIcon(i ActivityStreamsIconProperty)
	// SetActivityStreamsImage sets the "image" property.
	SetActivityStreamsImage(i ActivityStreamsImageProperty)
	// SetActivityStreamsInReplyTo sets the "inReplyTo" property.
	SetActivityStreamsInReplyTo(i ActivityStreamsInReplyToProperty)
	// SetActivityStreamsInbox sets the "inbox" property.
	SetActivityStreamsInbox(i ActivityStreamsInboxProperty)
	// SetActivityStreamsLiked sets the "liked" property.
	SetActivityStreamsLiked(i ActivityStreamsLikedProperty)
	// SetActivityStreamsLikes sets the "likes" property.
	SetActivityStreamsLikes(i ActivityStreamsLikesProperty)
	// SetActivityStreamsLocation sets the "location" property.
	SetActivityStreamsLocation(i ActivityStreamsLocationProperty)
	// SetActivityStreamsMediaType sets the "mediaType" property.
	SetActivityStreamsMediaType(i ActivityStreamsMediaTypeProperty)
	// SetActivityStreamsName sets the "name" property.
	SetActivityStreamsName(i ActivityStreamsNameProperty)
	// SetActivityStreamsObject sets the "object" property.
	SetActivityStreamsObject(i ActivityStreamsObjectProperty)
	// SetActivityStreamsOutbox sets the "outbox" property.
	SetActivityStreamsOutbox(i ActivityStreamsOutboxProperty)
	// SetActivityStreamsPreferredUsername sets the "preferredUsername"
	// property.
	SetActivityStreamsPreferredUsername(i ActivityStreamsPreferredUsernameProperty)
	// SetActivityStreamsPreview sets the "preview" property.
	SetActivityStreamsPreview(i ActivityStreamsPreviewProperty)
	// SetActivityStreamsPublished sets the "published" property.
	SetActivityStreamsPublished(i ActivityStreamsPublishedProperty)
	// SetActivityStreamsReplies sets the "replies" property.
	SetActivityStreamsReplies(i ActivityStreamsRepliesProperty)
	// SetActivityStreamsShares sets the "shares" property.
	SetActivityStreamsShares(i ActivityStreamsSharesProperty)
	// SetActivityStreamsSource sets the "source" property.
	SetActivityStreamsSource(i ActivityStreamsSourceProperty)
	// SetActivityStreamsStartTime sets the "startTime" property.
	SetActivityStreamsStartTime(i ActivityStreamsStartTimeProperty)
	// SetActivityStreamsStreams sets the "streams" property.
	SetActivityStreamsStreams(i ActivityStreamsStreamsProperty)
	// SetActivityStreamsSummary sets the "summary" property.
	SetActivityStreamsSummary(i ActivityStreamsSummaryProperty)
	// SetActivityStreamsTag sets the "tag" property.
	SetActivityStreamsTag(i ActivityStreamsTagProperty)
	// SetActivityStreamsTo sets the "to" property.
	SetActivityStreamsTo(i ActivityStreamsToProperty)
	// SetActivityStreamsUpdated sets the "updated" property.
	SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
	// SetActivityStreamsUrl sets the "url" property.
	SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
	// SetForgeFedTeam sets the "team" property.
	SetForgeFedTeam(i ForgeFedTeamProperty)
	// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
	SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
	// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
	SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
	// SetJSONLDId sets the "id" property.
	SetJSONLDId(i JSONLDIdProperty)
	// SetJSONLDType sets the "type" property.
	SetJSONLDType(i JSONLDTypeProperty)
	// SetTootDiscoverable sets the "discoverable" property.
	SetTootDiscoverable(i TootDiscoverableProperty)
	// SetTootFeatured sets the "featured" property.
	SetTootFeatured(i TootFeaturedProperty)
	// SetW3IDSecurityV1PublicKey sets the "publicKey" property.
	SetW3IDSecurityV1PublicKey(i W3IDSecurityV1PublicKeyProperty)
	// VocabularyURI returns the vocabulary's URI as a string.
	VocabularyURI() string
}

Represents a formal or informal collective of Actors.

Example 43 (https://www.w3.org/TR/activitystreams-vocabulary/#ex37-jsonld):

{
  "name": "Big Beards of Austin",
  "type": "Group"
}

type ActivityStreamsHeightProperty

type ActivityStreamsHeightProperty interface {
	// Clear ensures no value of this property is set. Calling
	// IsXMLSchemaNonNegativeInteger afterwards will return false.
	Clear()
	// Get returns the value of this property. When
	// IsXMLSchemaNonNegativeInteger returns false, Get will return any
	// arbitrary value.
	Get() int
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return any arbitrary value.
	GetIRI() *url.URL
	// HasAny returns true if the value or IRI is set.
	HasAny() bool
	// IsIRI returns true if this property is an IRI.
	IsIRI() bool
	// IsXMLSchemaNonNegativeInteger returns true if this property is set and
	// not an IRI.
	IsXMLSchemaNonNegativeInteger() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsHeightProperty) bool
	// Name returns the name of this property: "height".
	Name() string
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// Set sets the value of this property. Calling
	// IsXMLSchemaNonNegativeInteger afterwards will return true.
	Set(v int)
	// SetIRI sets the value of this property. Calling IsIRI afterwards will
	// return true.
	SetIRI(v *url.URL)
}

On a Link, specifies a hint as to the rendering height in device-independent pixels of the linked resource.

Example 120 (https://www.w3.org/TR/activitystreams-vocabulary/#ex136-jsonld):

{
  "height": 100,
  "type": "Link",
  "url": "http://example.org/image.png",
  "width": 100
}

type ActivityStreamsHrefProperty

type ActivityStreamsHrefProperty interface {
	// Clear ensures no value of this property is set. Calling
	// IsXMLSchemaAnyURI afterwards will return false.
	Clear()
	// Get returns the value of this property. When IsXMLSchemaAnyURI returns
	// false, Get will return any arbitrary value.
	Get() *url.URL
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return any arbitrary value.
	GetIRI() *url.URL
	// HasAny returns true if the value or IRI is set.
	HasAny() bool
	// IsIRI returns true if this property is an IRI.
	IsIRI() bool
	// IsXMLSchemaAnyURI returns true if this property is set and not an IRI.
	IsXMLSchemaAnyURI() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsHrefProperty) bool
	// Name returns the name of this property: "href".
	Name() string
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// Set sets the value of this property. Calling IsXMLSchemaAnyURI
	// afterwards will return true.
	Set(v *url.URL)
	// SetIRI sets the value of this property. Calling IsIRI afterwards will
	// return true.
	SetIRI(v *url.URL)
}

The target resource pointed to by a Link.

Example 121 (https://www.w3.org/TR/activitystreams-vocabulary/#ex137-jsonld):

{
  "mediaType": "text/html",
  "name": "Previous",
  "type": "Link",
  "url": "http://example.org/abc"
}

type ActivityStreamsHreflangProperty

type ActivityStreamsHreflangProperty interface {
	// Clear ensures no value of this property is set. Calling IsRFCBcp47
	// afterwards will return false.
	Clear()
	// Get returns the value of this property. When IsRFCBcp47 returns false,
	// Get will return any arbitrary value.
	Get() string
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return any arbitrary value.
	GetIRI() *url.URL
	// HasAny returns true if the value or IRI is set.
	HasAny() bool
	// IsIRI returns true if this property is an IRI.
	IsIRI() bool
	// IsRFCBcp47 returns true if this property is set and not an IRI.
	IsRFCBcp47() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsHreflangProperty) bool
	// Name returns the name of this property: "hreflang".
	Name() string
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// Set sets the value of this property. Calling IsRFCBcp47 afterwards will
	// return true.
	Set(v string)
	// SetIRI sets the value of this property. Calling IsIRI afterwards will
	// return true.
	SetIRI(v *url.URL)
}

Hints as to the language used by the target resource. Value MUST be a [BCP47] Language-Tag.

Example 122 (https://www.w3.org/TR/activitystreams-vocabulary/#ex138-jsonld):

{
  "hreflang": "en",
  "mediaType": "text/html",
  "name": "Previous",
  "type": "Link",
  "url": "http://example.org/abc"
}

type ActivityStreamsIconProperty

type ActivityStreamsIconProperty interface {
	// AppendActivityStreamsImage appends a Image value to the back of a list
	// of the property "icon". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsImage(v ActivityStreamsImage)
	// AppendActivityStreamsLink appends a Link value to the back of a list of
	// the property "icon". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsLink(v ActivityStreamsLink)
	// AppendActivityStreamsMention appends a Mention value to the back of a
	// list of the property "icon". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsMention(v ActivityStreamsMention)
	// AppendIRI appends an IRI value to the back of a list of the property
	// "icon"
	AppendIRI(v *url.URL)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "icon". Invalidates iterators that are traversing
	// using Prev. Returns an error if the type is not a valid one to set
	// for this property.
	AppendType(t Type) error
	// At returns the property value for the specified index. Panics if the
	// index is out of bounds.
	At(index int) ActivityStreamsIconPropertyIterator
	// Begin returns the first iterator, or nil if empty. Can be used with the
	// iterator's Next method and this property's End method to iterate
	// from front to back through all values.
	Begin() ActivityStreamsIconPropertyIterator
	// Empty returns returns true if there are no elements.
	Empty() bool
	// End returns beyond-the-last iterator, which is nil. Can be used with
	// the iterator's Next method and this property's Begin method to
	// iterate from front to back through all values.
	End() ActivityStreamsIconPropertyIterator
	// InsertActivityStreamsImage inserts a Image value at the specified index
	// for a property "icon". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsImage(idx int, v ActivityStreamsImage)
	// InsertActivityStreamsLink inserts a Link value at the specified index
	// for a property "icon". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsLink(idx int, v ActivityStreamsLink)
	// InsertActivityStreamsMention inserts a Mention value at the specified
	// index for a property "icon". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsMention(idx int, v ActivityStreamsMention)
	// Insert inserts an IRI value at the specified index for a property
	// "icon". Existing elements at that index and higher are shifted back
	// once. Invalidates all iterators.
	InsertIRI(idx int, v *url.URL)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "icon". Invalidates all iterators. Returns an error if
	// the type is not a valid one to set for this property.
	InsertType(idx int, t Type) error
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API method specifically needed only for alternate
	// implementations for go-fed. Applications should not use this
	// method. Panics if the index is out of bounds.
	KindIndex(idx int) int
	// Len returns the number of values that exist for the "icon" property.
	Len() (length int)
	// Less computes whether another property is less than this one. Mixing
	// types results in a consistent but arbitrary ordering
	Less(i, j int) bool
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsIconProperty) bool
	// Name returns the name of this property ("icon") with any alias.
	Name() string
	// PrependActivityStreamsImage prepends a Image value to the front of a
	// list of the property "icon". Invalidates all iterators.
	PrependActivityStreamsImage(v ActivityStreamsImage)
	// PrependActivityStreamsLink prepends a Link value to the front of a list
	// of the property "icon". Invalidates all iterators.
	PrependActivityStreamsLink(v ActivityStreamsLink)
	// PrependActivityStreamsMention prepends a Mention value to the front of
	// a list of the property "icon". Invalidates all iterators.
	PrependActivityStreamsMention(v ActivityStreamsMention)
	// PrependIRI prepends an IRI value to the front of a list of the property
	// "icon".
	PrependIRI(v *url.URL)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "icon". Invalidates all iterators. Returns an error if
	// the type is not a valid one to set for this property.
	PrependType(t Type) error
	// Remove deletes an element at the specified index from a list of the
	// property "icon", regardless of its type. Panics if the index is out
	// of bounds. Invalidates all iterators.
	Remove(idx int)
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// SetActivityStreamsImage sets a Image value to be at the specified index
	// for the property "icon". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsImage(idx int, v ActivityStreamsImage)
	// SetActivityStreamsLink sets a Link value to be at the specified index
	// for the property "icon". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsLink(idx int, v ActivityStreamsLink)
	// SetActivityStreamsMention sets a Mention value to be at the specified
	// index for the property "icon". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsMention(idx int, v ActivityStreamsMention)
	// SetIRI sets an IRI value to be at the specified index for the property
	// "icon". Panics if the index is out of bounds.
	SetIRI(idx int, v *url.URL)
	// SetType sets an arbitrary type value to the specified index of the
	// property "icon". Invalidates all iterators. Returns an error if the
	// type is not a valid one to set for this property. Panics if the
	// index is out of bounds.
	SetType(idx int, t Type) error
	// Swap swaps the location of values at two indices for the "icon"
	// property.
	Swap(i, j int)
}

Indicates an entity that describes an icon for this object. The image should have an aspect ratio of one (horizontal) to one (vertical) and should be suitable for presentation at a small size.

Example 79 (https://www.w3.org/TR/activitystreams-vocabulary/#ex77-jsonld):

{
  "content": "This is all there is.",
  "icon": {
    "height": 16,
    "name": "Note icon",
    "type": "Image",
    "url": "http://example.org/note.png",
    "width": 16
  },
  "summary": "A simple note",
  "type": "Note"
}

Example 80 (https://www.w3.org/TR/activitystreams-vocabulary/#ex78-jsonld):

{
  "content": "A simple note",
  "icon": [
    {
      "height": 16,
      "summary": "Note (16x16)",
      "type": "Image",
      "url": "http://example.org/note1.png",
      "width": 16
    },
    {
      "height": 32,
      "summary": "Note (32x32)",
      "type": "Image",
      "url": "http://example.org/note2.png",
      "width": 32
    }
  ],
  "summary": "A simple note",
  "type": "Note"
}

type ActivityStreamsIconPropertyIterator

type ActivityStreamsIconPropertyIterator interface {
	// GetActivityStreamsImage returns the value of this property. When
	// IsActivityStreamsImage returns false, GetActivityStreamsImage will
	// return an arbitrary value.
	GetActivityStreamsImage() ActivityStreamsImage
	// GetActivityStreamsLink returns the value of this property. When
	// IsActivityStreamsLink returns false, GetActivityStreamsLink will
	// return an arbitrary value.
	GetActivityStreamsLink() ActivityStreamsLink
	// GetActivityStreamsMention returns the value of this property. When
	// IsActivityStreamsMention returns false, GetActivityStreamsMention
	// will return an arbitrary value.
	GetActivityStreamsMention() ActivityStreamsMention
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return an arbitrary value.
	GetIRI() *url.URL
	// GetType returns the value in this property as a Type. Returns nil if
	// the value is not an ActivityStreams type, such as an IRI or another
	// value.
	GetType() Type
	// HasAny returns true if any of the different values is set.
	HasAny() bool
	// IsActivityStreamsImage returns true if this property has a type of
	// "Image". When true, use the GetActivityStreamsImage and
	// SetActivityStreamsImage methods to access and set this property.
	IsActivityStreamsImage() bool
	// IsActivityStreamsLink returns true if this property has a type of
	// "Link". When true, use the GetActivityStreamsLink and
	// SetActivityStreamsLink methods to access and set this property.
	IsActivityStreamsLink() bool
	// IsActivityStreamsMention returns true if this property has a type of
	// "Mention". When true, use the GetActivityStreamsMention and
	// SetActivityStreamsMention methods to access and set this property.
	IsActivityStreamsMention() bool
	// IsIRI returns true if this property is an IRI. When true, use GetIRI
	// and SetIRI to access and set this property
	IsIRI() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsIconPropertyIterator) bool
	// Name returns the name of this property: "ActivityStreamsIcon".
	Name() string
	// Next returns the next iterator, or nil if there is no next iterator.
	Next() ActivityStreamsIconPropertyIterator
	// Prev returns the previous iterator, or nil if there is no previous
	// iterator.
	Prev() ActivityStreamsIconPropertyIterator
	// SetActivityStreamsImage sets the value of this property. Calling
	// IsActivityStreamsImage afterwards returns true.
	SetActivityStreamsImage(v ActivityStreamsImage)
	// SetActivityStreamsLink sets the value of this property. Calling
	// IsActivityStreamsLink afterwards returns true.
	SetActivityStreamsLink(v ActivityStreamsLink)
	// SetActivityStreamsMention sets the value of this property. Calling
	// IsActivityStreamsMention afterwards returns true.
	SetActivityStreamsMention(v ActivityStreamsMention)
	// SetIRI sets the value of this property. Calling IsIRI afterwards
	// returns true.
	SetIRI(v *url.URL)
	// SetType attempts to set the property for the arbitrary type. Returns an
	// error if it is not a valid type to set on this property.
	SetType(t Type) error
}

ActivityStreamsIconPropertyIterator represents a single value for the "icon" property.

type ActivityStreamsIgnore

type ActivityStreamsIgnore interface {
	// GetActivityStreamsActor returns the "actor" property if it exists, and
	// nil otherwise.
	GetActivityStreamsActor() ActivityStreamsActorProperty
	// GetActivityStreamsAltitude returns the "altitude" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAltitude() ActivityStreamsAltitudeProperty
	// GetActivityStreamsAttachment returns the "attachment" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAttachment() ActivityStreamsAttachmentProperty
	// GetActivityStreamsAttributedTo returns the "attributedTo" property if
	// it exists, and nil otherwise.
	GetActivityStreamsAttributedTo() ActivityStreamsAttributedToProperty
	// GetActivityStreamsAudience returns the "audience" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAudience() ActivityStreamsAudienceProperty
	// GetActivityStreamsBcc returns the "bcc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBcc() ActivityStreamsBccProperty
	// GetActivityStreamsBto returns the "bto" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBto() ActivityStreamsBtoProperty
	// GetActivityStreamsCc returns the "cc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsCc() ActivityStreamsCcProperty
	// GetActivityStreamsContent returns the "content" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContent() ActivityStreamsContentProperty
	// GetActivityStreamsContext returns the "context" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContext() ActivityStreamsContextProperty
	// GetActivityStreamsDuration returns the "duration" property if it
	// exists, and nil otherwise.
	GetActivityStreamsDuration() ActivityStreamsDurationProperty
	// GetActivityStreamsEndTime returns the "endTime" property if it exists,
	// and nil otherwise.
	GetActivityStreamsEndTime() ActivityStreamsEndTimeProperty
	// GetActivityStreamsGenerator returns the "generator" property if it
	// exists, and nil otherwise.
	GetActivityStreamsGenerator() ActivityStreamsGeneratorProperty
	// GetActivityStreamsIcon returns the "icon" property if it exists, and
	// nil otherwise.
	GetActivityStreamsIcon() ActivityStreamsIconProperty
	// GetActivityStreamsImage returns the "image" property if it exists, and
	// nil otherwise.
	GetActivityStreamsImage() ActivityStreamsImageProperty
	// GetActivityStreamsInReplyTo returns the "inReplyTo" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInReplyTo() ActivityStreamsInReplyToProperty
	// GetActivityStreamsInstrument returns the "instrument" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInstrument() ActivityStreamsInstrumentProperty
	// GetActivityStreamsLikes returns the "likes" property if it exists, and
	// nil otherwise.
	GetActivityStreamsLikes() ActivityStreamsLikesProperty
	// GetActivityStreamsLocation returns the "location" property if it
	// exists, and nil otherwise.
	GetActivityStreamsLocation() ActivityStreamsLocationProperty
	// GetActivityStreamsMediaType returns the "mediaType" property if it
	// exists, and nil otherwise.
	GetActivityStreamsMediaType() ActivityStreamsMediaTypeProperty
	// GetActivityStreamsName returns the "name" property if it exists, and
	// nil otherwise.
	GetActivityStreamsName() ActivityStreamsNameProperty
	// GetActivityStreamsObject returns the "object" property if it exists,
	// and nil otherwise.
	GetActivityStreamsObject() ActivityStreamsObjectProperty
	// GetActivityStreamsOrigin returns the "origin" property if it exists,
	// and nil otherwise.
	GetActivityStreamsOrigin() ActivityStreamsOriginProperty
	// GetActivityStreamsPreview returns the "preview" property if it exists,
	// and nil otherwise.
	GetActivityStreamsPreview() ActivityStreamsPreviewProperty
	// GetActivityStreamsPublished returns the "published" property if it
	// exists, and nil otherwise.
	GetActivityStreamsPublished() ActivityStreamsPublishedProperty
	// GetActivityStreamsReplies returns the "replies" property if it exists,
	// and nil otherwise.
	GetActivityStreamsReplies() ActivityStreamsRepliesProperty
	// GetActivityStreamsResult returns the "result" property if it exists,
	// and nil otherwise.
	GetActivityStreamsResult() ActivityStreamsResultProperty
	// GetActivityStreamsShares returns the "shares" property if it exists,
	// and nil otherwise.
	GetActivityStreamsShares() ActivityStreamsSharesProperty
	// GetActivityStreamsSource returns the "source" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSource() ActivityStreamsSourceProperty
	// GetActivityStreamsStartTime returns the "startTime" property if it
	// exists, and nil otherwise.
	GetActivityStreamsStartTime() ActivityStreamsStartTimeProperty
	// GetActivityStreamsSummary returns the "summary" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSummary() ActivityStreamsSummaryProperty
	// GetActivityStreamsTag returns the "tag" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTag() ActivityStreamsTagProperty
	// GetActivityStreamsTarget returns the "target" property if it exists,
	// and nil otherwise.
	GetActivityStreamsTarget() ActivityStreamsTargetProperty
	// GetActivityStreamsTo returns the "to" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTo() ActivityStreamsToProperty
	// GetActivityStreamsUpdated returns the "updated" property if it exists,
	// and nil otherwise.
	GetActivityStreamsUpdated() ActivityStreamsUpdatedProperty
	// GetActivityStreamsUrl returns the "url" property if it exists, and nil
	// otherwise.
	GetActivityStreamsUrl() ActivityStreamsUrlProperty
	// GetForgeFedTeam returns the "team" property if it exists, and nil
	// otherwise.
	GetForgeFedTeam() ForgeFedTeamProperty
	// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
	// it exists, and nil otherwise.
	GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
	// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
	// it exists, and nil otherwise.
	GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
	// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
	GetJSONLDId() JSONLDIdProperty
	// GetJSONLDType returns the "type" property if it exists, and nil
	// otherwise.
	GetJSONLDType() JSONLDTypeProperty
	// GetTypeName returns the name of this type.
	GetTypeName() string
	// GetUnknownProperties returns the unknown properties for the Ignore
	// type. Note that this should not be used by app developers. It is
	// only used to help determine which implementation is LessThan the
	// other. Developers who are creating a different implementation of
	// this type's interface can use this method in their LessThan
	// implementation, but routine ActivityPub applications should not use
	// this to bypass the code generation tool.
	GetUnknownProperties() map[string]interface{}
	// IsExtending returns true if the Ignore type extends from the other type.
	IsExtending(other Type) bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this type and the specific properties that are set. The value
	// in the map is the alias used to import the type and its properties.
	JSONLDContext() map[string]string
	// LessThan computes if this Ignore is lesser, with an arbitrary but
	// stable determination.
	LessThan(o ActivityStreamsIgnore) bool
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format.
	Serialize() (map[string]interface{}, error)
	// SetActivityStreamsActor sets the "actor" property.
	SetActivityStreamsActor(i ActivityStreamsActorProperty)
	// SetActivityStreamsAltitude sets the "altitude" property.
	SetActivityStreamsAltitude(i ActivityStreamsAltitudeProperty)
	// SetActivityStreamsAttachment sets the "attachment" property.
	SetActivityStreamsAttachment(i ActivityStreamsAttachmentProperty)
	// SetActivityStreamsAttributedTo sets the "attributedTo" property.
	SetActivityStreamsAttributedTo(i ActivityStreamsAttributedToProperty)
	// SetActivityStreamsAudience sets the "audience" property.
	SetActivityStreamsAudience(i ActivityStreamsAudienceProperty)
	// SetActivityStreamsBcc sets the "bcc" property.
	SetActivityStreamsBcc(i ActivityStreamsBccProperty)
	// SetActivityStreamsBto sets the "bto" property.
	SetActivityStreamsBto(i ActivityStreamsBtoProperty)
	// SetActivityStreamsCc sets the "cc" property.
	SetActivityStreamsCc(i ActivityStreamsCcProperty)
	// SetActivityStreamsContent sets the "content" property.
	SetActivityStreamsContent(i ActivityStreamsContentProperty)
	// SetActivityStreamsContext sets the "context" property.
	SetActivityStreamsContext(i ActivityStreamsContextProperty)
	// SetActivityStreamsDuration sets the "duration" property.
	SetActivityStreamsDuration(i ActivityStreamsDurationProperty)
	// SetActivityStreamsEndTime sets the "endTime" property.
	SetActivityStreamsEndTime(i ActivityStreamsEndTimeProperty)
	// SetActivityStreamsGenerator sets the "generator" property.
	SetActivityStreamsGenerator(i ActivityStreamsGeneratorProperty)
	// SetActivityStreamsIcon sets the "icon" property.
	SetActivityStreamsIcon(i ActivityStreamsIconProperty)
	// SetActivityStreamsImage sets the "image" property.
	SetActivityStreamsImage(i ActivityStreamsImageProperty)
	// SetActivityStreamsInReplyTo sets the "inReplyTo" property.
	SetActivityStreamsInReplyTo(i ActivityStreamsInReplyToProperty)
	// SetActivityStreamsInstrument sets the "instrument" property.
	SetActivityStreamsInstrument(i ActivityStreamsInstrumentProperty)
	// SetActivityStreamsLikes sets the "likes" property.
	SetActivityStreamsLikes(i ActivityStreamsLikesProperty)
	// SetActivityStreamsLocation sets the "location" property.
	SetActivityStreamsLocation(i ActivityStreamsLocationProperty)
	// SetActivityStreamsMediaType sets the "mediaType" property.
	SetActivityStreamsMediaType(i ActivityStreamsMediaTypeProperty)
	// SetActivityStreamsName sets the "name" property.
	SetActivityStreamsName(i ActivityStreamsNameProperty)
	// SetActivityStreamsObject sets the "object" property.
	SetActivityStreamsObject(i ActivityStreamsObjectProperty)
	// SetActivityStreamsOrigin sets the "origin" property.
	SetActivityStreamsOrigin(i ActivityStreamsOriginProperty)
	// SetActivityStreamsPreview sets the "preview" property.
	SetActivityStreamsPreview(i ActivityStreamsPreviewProperty)
	// SetActivityStreamsPublished sets the "published" property.
	SetActivityStreamsPublished(i ActivityStreamsPublishedProperty)
	// SetActivityStreamsReplies sets the "replies" property.
	SetActivityStreamsReplies(i ActivityStreamsRepliesProperty)
	// SetActivityStreamsResult sets the "result" property.
	SetActivityStreamsResult(i ActivityStreamsResultProperty)
	// SetActivityStreamsShares sets the "shares" property.
	SetActivityStreamsShares(i ActivityStreamsSharesProperty)
	// SetActivityStreamsSource sets the "source" property.
	SetActivityStreamsSource(i ActivityStreamsSourceProperty)
	// SetActivityStreamsStartTime sets the "startTime" property.
	SetActivityStreamsStartTime(i ActivityStreamsStartTimeProperty)
	// SetActivityStreamsSummary sets the "summary" property.
	SetActivityStreamsSummary(i ActivityStreamsSummaryProperty)
	// SetActivityStreamsTag sets the "tag" property.
	SetActivityStreamsTag(i ActivityStreamsTagProperty)
	// SetActivityStreamsTarget sets the "target" property.
	SetActivityStreamsTarget(i ActivityStreamsTargetProperty)
	// SetActivityStreamsTo sets the "to" property.
	SetActivityStreamsTo(i ActivityStreamsToProperty)
	// SetActivityStreamsUpdated sets the "updated" property.
	SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
	// SetActivityStreamsUrl sets the "url" property.
	SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
	// SetForgeFedTeam sets the "team" property.
	SetForgeFedTeam(i ForgeFedTeamProperty)
	// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
	SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
	// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
	SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
	// SetJSONLDId sets the "id" property.
	SetJSONLDId(i JSONLDIdProperty)
	// SetJSONLDType sets the "type" property.
	SetJSONLDType(i JSONLDTypeProperty)
	// VocabularyURI returns the vocabulary's URI as a string.
	VocabularyURI() string
}

Indicates that the actor is ignoring the object. The target and origin typically have no defined meaning.

Example 18 (https://www.w3.org/TR/activitystreams-vocabulary/#ex16-jsonld):

{
  "actor": {
    "name": "Sally",
    "type": "Person"
  },
  "object": "http://example.org/notes/1",
  "summary": "Sally ignored a note",
  "type": "Ignore"
}

type ActivityStreamsImage

type ActivityStreamsImage interface {
	// GetActivityStreamsAltitude returns the "altitude" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAltitude() ActivityStreamsAltitudeProperty
	// GetActivityStreamsAttachment returns the "attachment" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAttachment() ActivityStreamsAttachmentProperty
	// GetActivityStreamsAttributedTo returns the "attributedTo" property if
	// it exists, and nil otherwise.
	GetActivityStreamsAttributedTo() ActivityStreamsAttributedToProperty
	// GetActivityStreamsAudience returns the "audience" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAudience() ActivityStreamsAudienceProperty
	// GetActivityStreamsBcc returns the "bcc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBcc() ActivityStreamsBccProperty
	// GetActivityStreamsBto returns the "bto" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBto() ActivityStreamsBtoProperty
	// GetActivityStreamsCc returns the "cc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsCc() ActivityStreamsCcProperty
	// GetActivityStreamsContent returns the "content" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContent() ActivityStreamsContentProperty
	// GetActivityStreamsContext returns the "context" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContext() ActivityStreamsContextProperty
	// GetActivityStreamsDuration returns the "duration" property if it
	// exists, and nil otherwise.
	GetActivityStreamsDuration() ActivityStreamsDurationProperty
	// GetActivityStreamsEndTime returns the "endTime" property if it exists,
	// and nil otherwise.
	GetActivityStreamsEndTime() ActivityStreamsEndTimeProperty
	// GetActivityStreamsGenerator returns the "generator" property if it
	// exists, and nil otherwise.
	GetActivityStreamsGenerator() ActivityStreamsGeneratorProperty
	// GetActivityStreamsHeight returns the "height" property if it exists,
	// and nil otherwise.
	GetActivityStreamsHeight() ActivityStreamsHeightProperty
	// GetActivityStreamsIcon returns the "icon" property if it exists, and
	// nil otherwise.
	GetActivityStreamsIcon() ActivityStreamsIconProperty
	// GetActivityStreamsImage returns the "image" property if it exists, and
	// nil otherwise.
	GetActivityStreamsImage() ActivityStreamsImageProperty
	// GetActivityStreamsInReplyTo returns the "inReplyTo" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInReplyTo() ActivityStreamsInReplyToProperty
	// GetActivityStreamsLikes returns the "likes" property if it exists, and
	// nil otherwise.
	GetActivityStreamsLikes() ActivityStreamsLikesProperty
	// GetActivityStreamsLocation returns the "location" property if it
	// exists, and nil otherwise.
	GetActivityStreamsLocation() ActivityStreamsLocationProperty
	// GetActivityStreamsMediaType returns the "mediaType" property if it
	// exists, and nil otherwise.
	GetActivityStreamsMediaType() ActivityStreamsMediaTypeProperty
	// GetActivityStreamsName returns the "name" property if it exists, and
	// nil otherwise.
	GetActivityStreamsName() ActivityStreamsNameProperty
	// GetActivityStreamsObject returns the "object" property if it exists,
	// and nil otherwise.
	GetActivityStreamsObject() ActivityStreamsObjectProperty
	// GetActivityStreamsPreview returns the "preview" property if it exists,
	// and nil otherwise.
	GetActivityStreamsPreview() ActivityStreamsPreviewProperty
	// GetActivityStreamsPublished returns the "published" property if it
	// exists, and nil otherwise.
	GetActivityStreamsPublished() ActivityStreamsPublishedProperty
	// GetActivityStreamsReplies returns the "replies" property if it exists,
	// and nil otherwise.
	GetActivityStreamsReplies() ActivityStreamsRepliesProperty
	// GetActivityStreamsShares returns the "shares" property if it exists,
	// and nil otherwise.
	GetActivityStreamsShares() ActivityStreamsSharesProperty
	// GetActivityStreamsSource returns the "source" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSource() ActivityStreamsSourceProperty
	// GetActivityStreamsStartTime returns the "startTime" property if it
	// exists, and nil otherwise.
	GetActivityStreamsStartTime() ActivityStreamsStartTimeProperty
	// GetActivityStreamsSummary returns the "summary" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSummary() ActivityStreamsSummaryProperty
	// GetActivityStreamsTag returns the "tag" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTag() ActivityStreamsTagProperty
	// GetActivityStreamsTo returns the "to" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTo() ActivityStreamsToProperty
	// GetActivityStreamsUpdated returns the "updated" property if it exists,
	// and nil otherwise.
	GetActivityStreamsUpdated() ActivityStreamsUpdatedProperty
	// GetActivityStreamsUrl returns the "url" property if it exists, and nil
	// otherwise.
	GetActivityStreamsUrl() ActivityStreamsUrlProperty
	// GetActivityStreamsWidth returns the "width" property if it exists, and
	// nil otherwise.
	GetActivityStreamsWidth() ActivityStreamsWidthProperty
	// GetForgeFedTeam returns the "team" property if it exists, and nil
	// otherwise.
	GetForgeFedTeam() ForgeFedTeamProperty
	// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
	// it exists, and nil otherwise.
	GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
	// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
	// it exists, and nil otherwise.
	GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
	// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
	GetJSONLDId() JSONLDIdProperty
	// GetJSONLDType returns the "type" property if it exists, and nil
	// otherwise.
	GetJSONLDType() JSONLDTypeProperty
	// GetTootBlurhash returns the "blurhash" property if it exists, and nil
	// otherwise.
	GetTootBlurhash() TootBlurhashProperty
	// GetTypeName returns the name of this type.
	GetTypeName() string
	// GetUnknownProperties returns the unknown properties for the Image type.
	// Note that this should not be used by app developers. It is only
	// used to help determine which implementation is LessThan the other.
	// Developers who are creating a different implementation of this
	// type's interface can use this method in their LessThan
	// implementation, but routine ActivityPub applications should not use
	// this to bypass the code generation tool.
	GetUnknownProperties() map[string]interface{}
	// IsExtending returns true if the Image type extends from the other type.
	IsExtending(other Type) bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this type and the specific properties that are set. The value
	// in the map is the alias used to import the type and its properties.
	JSONLDContext() map[string]string
	// LessThan computes if this Image is lesser, with an arbitrary but stable
	// determination.
	LessThan(o ActivityStreamsImage) bool
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format.
	Serialize() (map[string]interface{}, error)
	// SetActivityStreamsAltitude sets the "altitude" property.
	SetActivityStreamsAltitude(i ActivityStreamsAltitudeProperty)
	// SetActivityStreamsAttachment sets the "attachment" property.
	SetActivityStreamsAttachment(i ActivityStreamsAttachmentProperty)
	// SetActivityStreamsAttributedTo sets the "attributedTo" property.
	SetActivityStreamsAttributedTo(i ActivityStreamsAttributedToProperty)
	// SetActivityStreamsAudience sets the "audience" property.
	SetActivityStreamsAudience(i ActivityStreamsAudienceProperty)
	// SetActivityStreamsBcc sets the "bcc" property.
	SetActivityStreamsBcc(i ActivityStreamsBccProperty)
	// SetActivityStreamsBto sets the "bto" property.
	SetActivityStreamsBto(i ActivityStreamsBtoProperty)
	// SetActivityStreamsCc sets the "cc" property.
	SetActivityStreamsCc(i ActivityStreamsCcProperty)
	// SetActivityStreamsContent sets the "content" property.
	SetActivityStreamsContent(i ActivityStreamsContentProperty)
	// SetActivityStreamsContext sets the "context" property.
	SetActivityStreamsContext(i ActivityStreamsContextProperty)
	// SetActivityStreamsDuration sets the "duration" property.
	SetActivityStreamsDuration(i ActivityStreamsDurationProperty)
	// SetActivityStreamsEndTime sets the "endTime" property.
	SetActivityStreamsEndTime(i ActivityStreamsEndTimeProperty)
	// SetActivityStreamsGenerator sets the "generator" property.
	SetActivityStreamsGenerator(i ActivityStreamsGeneratorProperty)
	// SetActivityStreamsHeight sets the "height" property.
	SetActivityStreamsHeight(i ActivityStreamsHeightProperty)
	// SetActivityStreamsIcon sets the "icon" property.
	SetActivityStreamsIcon(i ActivityStreamsIconProperty)
	// SetActivityStreamsImage sets the "image" property.
	SetActivityStreamsImage(i ActivityStreamsImageProperty)
	// SetActivityStreamsInReplyTo sets the "inReplyTo" property.
	SetActivityStreamsInReplyTo(i ActivityStreamsInReplyToProperty)
	// SetActivityStreamsLikes sets the "likes" property.
	SetActivityStreamsLikes(i ActivityStreamsLikesProperty)
	// SetActivityStreamsLocation sets the "location" property.
	SetActivityStreamsLocation(i ActivityStreamsLocationProperty)
	// SetActivityStreamsMediaType sets the "mediaType" property.
	SetActivityStreamsMediaType(i ActivityStreamsMediaTypeProperty)
	// SetActivityStreamsName sets the "name" property.
	SetActivityStreamsName(i ActivityStreamsNameProperty)
	// SetActivityStreamsObject sets the "object" property.
	SetActivityStreamsObject(i ActivityStreamsObjectProperty)
	// SetActivityStreamsPreview sets the "preview" property.
	SetActivityStreamsPreview(i ActivityStreamsPreviewProperty)
	// SetActivityStreamsPublished sets the "published" property.
	SetActivityStreamsPublished(i ActivityStreamsPublishedProperty)
	// SetActivityStreamsReplies sets the "replies" property.
	SetActivityStreamsReplies(i ActivityStreamsRepliesProperty)
	// SetActivityStreamsShares sets the "shares" property.
	SetActivityStreamsShares(i ActivityStreamsSharesProperty)
	// SetActivityStreamsSource sets the "source" property.
	SetActivityStreamsSource(i ActivityStreamsSourceProperty)
	// SetActivityStreamsStartTime sets the "startTime" property.
	SetActivityStreamsStartTime(i ActivityStreamsStartTimeProperty)
	// SetActivityStreamsSummary sets the "summary" property.
	SetActivityStreamsSummary(i ActivityStreamsSummaryProperty)
	// SetActivityStreamsTag sets the "tag" property.
	SetActivityStreamsTag(i ActivityStreamsTagProperty)
	// SetActivityStreamsTo sets the "to" property.
	SetActivityStreamsTo(i ActivityStreamsToProperty)
	// SetActivityStreamsUpdated sets the "updated" property.
	SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
	// SetActivityStreamsUrl sets the "url" property.
	SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
	// SetActivityStreamsWidth sets the "width" property.
	SetActivityStreamsWidth(i ActivityStreamsWidthProperty)
	// SetForgeFedTeam sets the "team" property.
	SetForgeFedTeam(i ForgeFedTeamProperty)
	// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
	SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
	// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
	SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
	// SetJSONLDId sets the "id" property.
	SetJSONLDId(i JSONLDIdProperty)
	// SetJSONLDType sets the "type" property.
	SetJSONLDType(i JSONLDTypeProperty)
	// SetTootBlurhash sets the "blurhash" property.
	SetTootBlurhash(i TootBlurhashProperty)
	// VocabularyURI returns the vocabulary's URI as a string.
	VocabularyURI() string
}

An image document of any kind

Example 51 (https://www.w3.org/TR/activitystreams-vocabulary/#ex50-jsonld):

{
  "name": "Cat Jumping on Wagon",
  "type": "Image",
  "url": [
    {
      "mediaType": "image/jpeg",
      "type": "Link",
      "url": "http://example.org/image.jpeg"
    },
    {
      "mediaType": "image/png",
      "type": "Link",
      "url": "http://example.org/image.png"
    }
  ]
}

type ActivityStreamsImageProperty

type ActivityStreamsImageProperty interface {
	// AppendActivityStreamsImage appends a Image value to the back of a list
	// of the property "image". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsImage(v ActivityStreamsImage)
	// AppendActivityStreamsLink appends a Link value to the back of a list of
	// the property "image". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsLink(v ActivityStreamsLink)
	// AppendActivityStreamsMention appends a Mention value to the back of a
	// list of the property "image". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsMention(v ActivityStreamsMention)
	// AppendIRI appends an IRI value to the back of a list of the property
	// "image"
	AppendIRI(v *url.URL)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "image". Invalidates iterators that are traversing
	// using Prev. Returns an error if the type is not a valid one to set
	// for this property.
	AppendType(t Type) error
	// At returns the property value for the specified index. Panics if the
	// index is out of bounds.
	At(index int) ActivityStreamsImagePropertyIterator
	// Begin returns the first iterator, or nil if empty. Can be used with the
	// iterator's Next method and this property's End method to iterate
	// from front to back through all values.
	Begin() ActivityStreamsImagePropertyIterator
	// Empty returns returns true if there are no elements.
	Empty() bool
	// End returns beyond-the-last iterator, which is nil. Can be used with
	// the iterator's Next method and this property's Begin method to
	// iterate from front to back through all values.
	End() ActivityStreamsImagePropertyIterator
	// InsertActivityStreamsImage inserts a Image value at the specified index
	// for a property "image". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsImage(idx int, v ActivityStreamsImage)
	// InsertActivityStreamsLink inserts a Link value at the specified index
	// for a property "image". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsLink(idx int, v ActivityStreamsLink)
	// InsertActivityStreamsMention inserts a Mention value at the specified
	// index for a property "image". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsMention(idx int, v ActivityStreamsMention)
	// Insert inserts an IRI value at the specified index for a property
	// "image". Existing elements at that index and higher are shifted
	// back once. Invalidates all iterators.
	InsertIRI(idx int, v *url.URL)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "image". Invalidates all iterators. Returns an error
	// if the type is not a valid one to set for this property.
	InsertType(idx int, t Type) error
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API method specifically needed only for alternate
	// implementations for go-fed. Applications should not use this
	// method. Panics if the index is out of bounds.
	KindIndex(idx int) int
	// Len returns the number of values that exist for the "image" property.
	Len() (length int)
	// Less computes whether another property is less than this one. Mixing
	// types results in a consistent but arbitrary ordering
	Less(i, j int) bool
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsImageProperty) bool
	// Name returns the name of this property ("image") with any alias.
	Name() string
	// PrependActivityStreamsImage prepends a Image value to the front of a
	// list of the property "image". Invalidates all iterators.
	PrependActivityStreamsImage(v ActivityStreamsImage)
	// PrependActivityStreamsLink prepends a Link value to the front of a list
	// of the property "image". Invalidates all iterators.
	PrependActivityStreamsLink(v ActivityStreamsLink)
	// PrependActivityStreamsMention prepends a Mention value to the front of
	// a list of the property "image". Invalidates all iterators.
	PrependActivityStreamsMention(v ActivityStreamsMention)
	// PrependIRI prepends an IRI value to the front of a list of the property
	// "image".
	PrependIRI(v *url.URL)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "image". Invalidates all iterators. Returns an error
	// if the type is not a valid one to set for this property.
	PrependType(t Type) error
	// Remove deletes an element at the specified index from a list of the
	// property "image", regardless of its type. Panics if the index is
	// out of bounds. Invalidates all iterators.
	Remove(idx int)
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// SetActivityStreamsImage sets a Image value to be at the specified index
	// for the property "image". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsImage(idx int, v ActivityStreamsImage)
	// SetActivityStreamsLink sets a Link value to be at the specified index
	// for the property "image". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsLink(idx int, v ActivityStreamsLink)
	// SetActivityStreamsMention sets a Mention value to be at the specified
	// index for the property "image". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsMention(idx int, v ActivityStreamsMention)
	// SetIRI sets an IRI value to be at the specified index for the property
	// "image". Panics if the index is out of bounds.
	SetIRI(idx int, v *url.URL)
	// SetType sets an arbitrary type value to the specified index of the
	// property "image". Invalidates all iterators. Returns an error if
	// the type is not a valid one to set for this property. Panics if the
	// index is out of bounds.
	SetType(idx int, t Type) error
	// Swap swaps the location of values at two indices for the "image"
	// property.
	Swap(i, j int)
}

Indicates an entity that describes an image for this object. Unlike the icon property, there are no aspect ratio or display size limitations assumed.

Example 81 (https://www.w3.org/TR/activitystreams-vocabulary/#ex80-jsonld):

{
  "content": "This is all there is.",
  "image": {
    "name": "A Cat",
    "type": "Image",
    "url": "http://example.org/cat.png"
  },
  "name": "A simple note",
  "type": "Note"
}

Example 82 (https://www.w3.org/TR/activitystreams-vocabulary/#ex81-jsonld):

{
  "content": "This is all there is.",
  "image": [
    {
      "name": "Cat 1",
      "type": "Image",
      "url": "http://example.org/cat1.png"
    },
    {
      "name": "Cat 2",
      "type": "Image",
      "url": "http://example.org/cat2.png"
    }
  ],
  "name": "A simple note",
  "type": "Note"
}

type ActivityStreamsImagePropertyIterator

type ActivityStreamsImagePropertyIterator interface {
	// GetActivityStreamsImage returns the value of this property. When
	// IsActivityStreamsImage returns false, GetActivityStreamsImage will
	// return an arbitrary value.
	GetActivityStreamsImage() ActivityStreamsImage
	// GetActivityStreamsLink returns the value of this property. When
	// IsActivityStreamsLink returns false, GetActivityStreamsLink will
	// return an arbitrary value.
	GetActivityStreamsLink() ActivityStreamsLink
	// GetActivityStreamsMention returns the value of this property. When
	// IsActivityStreamsMention returns false, GetActivityStreamsMention
	// will return an arbitrary value.
	GetActivityStreamsMention() ActivityStreamsMention
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return an arbitrary value.
	GetIRI() *url.URL
	// GetType returns the value in this property as a Type. Returns nil if
	// the value is not an ActivityStreams type, such as an IRI or another
	// value.
	GetType() Type
	// HasAny returns true if any of the different values is set.
	HasAny() bool
	// IsActivityStreamsImage returns true if this property has a type of
	// "Image". When true, use the GetActivityStreamsImage and
	// SetActivityStreamsImage methods to access and set this property.
	IsActivityStreamsImage() bool
	// IsActivityStreamsLink returns true if this property has a type of
	// "Link". When true, use the GetActivityStreamsLink and
	// SetActivityStreamsLink methods to access and set this property.
	IsActivityStreamsLink() bool
	// IsActivityStreamsMention returns true if this property has a type of
	// "Mention". When true, use the GetActivityStreamsMention and
	// SetActivityStreamsMention methods to access and set this property.
	IsActivityStreamsMention() bool
	// IsIRI returns true if this property is an IRI. When true, use GetIRI
	// and SetIRI to access and set this property
	IsIRI() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsImagePropertyIterator) bool
	// Name returns the name of this property: "ActivityStreamsImage".
	Name() string
	// Next returns the next iterator, or nil if there is no next iterator.
	Next() ActivityStreamsImagePropertyIterator
	// Prev returns the previous iterator, or nil if there is no previous
	// iterator.
	Prev() ActivityStreamsImagePropertyIterator
	// SetActivityStreamsImage sets the value of this property. Calling
	// IsActivityStreamsImage afterwards returns true.
	SetActivityStreamsImage(v ActivityStreamsImage)
	// SetActivityStreamsLink sets the value of this property. Calling
	// IsActivityStreamsLink afterwards returns true.
	SetActivityStreamsLink(v ActivityStreamsLink)
	// SetActivityStreamsMention sets the value of this property. Calling
	// IsActivityStreamsMention afterwards returns true.
	SetActivityStreamsMention(v ActivityStreamsMention)
	// SetIRI sets the value of this property. Calling IsIRI afterwards
	// returns true.
	SetIRI(v *url.URL)
	// SetType attempts to set the property for the arbitrary type. Returns an
	// error if it is not a valid type to set on this property.
	SetType(t Type) error
}

ActivityStreamsImagePropertyIterator represents a single value for the "image" property.

type ActivityStreamsInReplyToProperty

type ActivityStreamsInReplyToProperty interface {
	// AppendActivityStreamsAccept appends a Accept value to the back of a
	// list of the property "inReplyTo". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsAccept(v ActivityStreamsAccept)
	// AppendActivityStreamsActivity appends a Activity value to the back of a
	// list of the property "inReplyTo". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsActivity(v ActivityStreamsActivity)
	// AppendActivityStreamsAdd appends a Add value to the back of a list of
	// the property "inReplyTo". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsAdd(v ActivityStreamsAdd)
	// AppendActivityStreamsAnnounce appends a Announce value to the back of a
	// list of the property "inReplyTo". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// AppendActivityStreamsApplication appends a Application value to the
	// back of a list of the property "inReplyTo". Invalidates iterators
	// that are traversing using Prev.
	AppendActivityStreamsApplication(v ActivityStreamsApplication)
	// AppendActivityStreamsArrive appends a Arrive value to the back of a
	// list of the property "inReplyTo". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsArrive(v ActivityStreamsArrive)
	// AppendActivityStreamsArticle appends a Article value to the back of a
	// list of the property "inReplyTo". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsArticle(v ActivityStreamsArticle)
	// AppendActivityStreamsAudio appends a Audio value to the back of a list
	// of the property "inReplyTo". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsAudio(v ActivityStreamsAudio)
	// AppendActivityStreamsBlock appends a Block value to the back of a list
	// of the property "inReplyTo". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsBlock(v ActivityStreamsBlock)
	// AppendActivityStreamsCollection appends a Collection value to the back
	// of a list of the property "inReplyTo". Invalidates iterators that
	// are traversing using Prev.
	AppendActivityStreamsCollection(v ActivityStreamsCollection)
	// AppendActivityStreamsCollectionPage appends a CollectionPage value to
	// the back of a list of the property "inReplyTo". Invalidates
	// iterators that are traversing using Prev.
	AppendActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// AppendActivityStreamsCreate appends a Create value to the back of a
	// list of the property "inReplyTo". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsCreate(v ActivityStreamsCreate)
	// AppendActivityStreamsDelete appends a Delete value to the back of a
	// list of the property "inReplyTo". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDelete(v ActivityStreamsDelete)
	// AppendActivityStreamsDislike appends a Dislike value to the back of a
	// list of the property "inReplyTo". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDislike(v ActivityStreamsDislike)
	// AppendActivityStreamsDocument appends a Document value to the back of a
	// list of the property "inReplyTo". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDocument(v ActivityStreamsDocument)
	// AppendActivityStreamsEvent appends a Event value to the back of a list
	// of the property "inReplyTo". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsEvent(v ActivityStreamsEvent)
	// AppendActivityStreamsFlag appends a Flag value to the back of a list of
	// the property "inReplyTo". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsFlag(v ActivityStreamsFlag)
	// AppendActivityStreamsFollow appends a Follow value to the back of a
	// list of the property "inReplyTo". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsFollow(v ActivityStreamsFollow)
	// AppendActivityStreamsGroup appends a Group value to the back of a list
	// of the property "inReplyTo". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsGroup(v ActivityStreamsGroup)
	// AppendActivityStreamsIgnore appends a Ignore value to the back of a
	// list of the property "inReplyTo". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsIgnore(v ActivityStreamsIgnore)
	// AppendActivityStreamsImage appends a Image value to the back of a list
	// of the property "inReplyTo". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsImage(v ActivityStreamsImage)
	// AppendActivityStreamsIntransitiveActivity appends a
	// IntransitiveActivity value to the back of a list of the property
	// "inReplyTo". Invalidates iterators that are traversing using Prev.
	AppendActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// AppendActivityStreamsInvite appends a Invite value to the back of a
	// list of the property "inReplyTo". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsInvite(v ActivityStreamsInvite)
	// AppendActivityStreamsJoin appends a Join value to the back of a list of
	// the property "inReplyTo". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsJoin(v ActivityStreamsJoin)
	// AppendActivityStreamsLeave appends a Leave value to the back of a list
	// of the property "inReplyTo". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsLeave(v ActivityStreamsLeave)
	// AppendActivityStreamsLike appends a Like value to the back of a list of
	// the property "inReplyTo". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsLike(v ActivityStreamsLike)
	// AppendActivityStreamsLink appends a Link value to the back of a list of
	// the property "inReplyTo". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsLink(v ActivityStreamsLink)
	// AppendActivityStreamsListen appends a Listen value to the back of a
	// list of the property "inReplyTo". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsListen(v ActivityStreamsListen)
	// AppendActivityStreamsMention appends a Mention value to the back of a
	// list of the property "inReplyTo". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsMention(v ActivityStreamsMention)
	// AppendActivityStreamsMove appends a Move value to the back of a list of
	// the property "inReplyTo". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsMove(v ActivityStreamsMove)
	// AppendActivityStreamsNote appends a Note value to the back of a list of
	// the property "inReplyTo". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsNote(v ActivityStreamsNote)
	// AppendActivityStreamsObject appends a Object value to the back of a
	// list of the property "inReplyTo". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsObject(v ActivityStreamsObject)
	// AppendActivityStreamsOffer appends a Offer value to the back of a list
	// of the property "inReplyTo". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsOffer(v ActivityStreamsOffer)
	// AppendActivityStreamsOrderedCollection appends a OrderedCollection
	// value to the back of a list of the property "inReplyTo".
	// Invalidates iterators that are traversing using Prev.
	AppendActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// AppendActivityStreamsOrderedCollectionPage appends a
	// OrderedCollectionPage value to the back of a list of the property
	// "inReplyTo". Invalidates iterators that are traversing using Prev.
	AppendActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// AppendActivityStreamsOrganization appends a Organization value to the
	// back of a list of the property "inReplyTo". Invalidates iterators
	// that are traversing using Prev.
	AppendActivityStreamsOrganization(v ActivityStreamsOrganization)
	// AppendActivityStreamsPage appends a Page value to the back of a list of
	// the property "inReplyTo". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsPage(v ActivityStreamsPage)
	// AppendActivityStreamsPerson appends a Person value to the back of a
	// list of the property "inReplyTo". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsPerson(v ActivityStreamsPerson)
	// AppendActivityStreamsPlace appends a Place value to the back of a list
	// of the property "inReplyTo". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsPlace(v ActivityStreamsPlace)
	// AppendActivityStreamsProfile appends a Profile value to the back of a
	// list of the property "inReplyTo". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsProfile(v ActivityStreamsProfile)
	// AppendActivityStreamsQuestion appends a Question value to the back of a
	// list of the property "inReplyTo". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsQuestion(v ActivityStreamsQuestion)
	// AppendActivityStreamsRead appends a Read value to the back of a list of
	// the property "inReplyTo". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsRead(v ActivityStreamsRead)
	// AppendActivityStreamsReject appends a Reject value to the back of a
	// list of the property "inReplyTo". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsReject(v ActivityStreamsReject)
	// AppendActivityStreamsRelationship appends a Relationship value to the
	// back of a list of the property "inReplyTo". Invalidates iterators
	// that are traversing using Prev.
	AppendActivityStreamsRelationship(v ActivityStreamsRelationship)
	// AppendActivityStreamsRemove appends a Remove value to the back of a
	// list of the property "inReplyTo". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsRemove(v ActivityStreamsRemove)
	// AppendActivityStreamsService appends a Service value to the back of a
	// list of the property "inReplyTo". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsService(v ActivityStreamsService)
	// AppendActivityStreamsTentativeAccept appends a TentativeAccept value to
	// the back of a list of the property "inReplyTo". Invalidates
	// iterators that are traversing using Prev.
	AppendActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// AppendActivityStreamsTentativeReject appends a TentativeReject value to
	// the back of a list of the property "inReplyTo". Invalidates
	// iterators that are traversing using Prev.
	AppendActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// AppendActivityStreamsTombstone appends a Tombstone value to the back of
	// a list of the property "inReplyTo". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsTombstone(v ActivityStreamsTombstone)
	// AppendActivityStreamsTravel appends a Travel value to the back of a
	// list of the property "inReplyTo". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsTravel(v ActivityStreamsTravel)
	// AppendActivityStreamsUndo appends a Undo value to the back of a list of
	// the property "inReplyTo". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsUndo(v ActivityStreamsUndo)
	// AppendActivityStreamsUpdate appends a Update value to the back of a
	// list of the property "inReplyTo". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsUpdate(v ActivityStreamsUpdate)
	// AppendActivityStreamsVideo appends a Video value to the back of a list
	// of the property "inReplyTo". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsVideo(v ActivityStreamsVideo)
	// AppendActivityStreamsView appends a View value to the back of a list of
	// the property "inReplyTo". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsView(v ActivityStreamsView)
	// AppendForgeFedBranch appends a Branch value to the back of a list of
	// the property "inReplyTo". Invalidates iterators that are traversing
	// using Prev.
	AppendForgeFedBranch(v ForgeFedBranch)
	// AppendForgeFedCommit appends a Commit value to the back of a list of
	// the property "inReplyTo". Invalidates iterators that are traversing
	// using Prev.
	AppendForgeFedCommit(v ForgeFedCommit)
	// AppendForgeFedPush appends a Push value to the back of a list of the
	// property "inReplyTo". Invalidates iterators that are traversing
	// using Prev.
	AppendForgeFedPush(v ForgeFedPush)
	// AppendForgeFedRepository appends a Repository value to the back of a
	// list of the property "inReplyTo". Invalidates iterators that are
	// traversing using Prev.
	AppendForgeFedRepository(v ForgeFedRepository)
	// AppendForgeFedTicket appends a Ticket value to the back of a list of
	// the property "inReplyTo". Invalidates iterators that are traversing
	// using Prev.
	AppendForgeFedTicket(v ForgeFedTicket)
	// AppendForgeFedTicketDependency appends a TicketDependency value to the
	// back of a list of the property "inReplyTo". Invalidates iterators
	// that are traversing using Prev.
	AppendForgeFedTicketDependency(v ForgeFedTicketDependency)
	// AppendIRI appends an IRI value to the back of a list of the property
	// "inReplyTo"
	AppendIRI(v *url.URL)
	// AppendTootEmoji appends a Emoji value to the back of a list of the
	// property "inReplyTo". Invalidates iterators that are traversing
	// using Prev.
	AppendTootEmoji(v TootEmoji)
	// AppendTootIdentityProof appends a IdentityProof value to the back of a
	// list of the property "inReplyTo". Invalidates iterators that are
	// traversing using Prev.
	AppendTootIdentityProof(v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "inReplyTo". Invalidates iterators that are traversing
	// using Prev. Returns an error if the type is not a valid one to set
	// for this property.
	AppendType(t Type) error
	// At returns the property value for the specified index. Panics if the
	// index is out of bounds.
	At(index int) ActivityStreamsInReplyToPropertyIterator
	// Begin returns the first iterator, or nil if empty. Can be used with the
	// iterator's Next method and this property's End method to iterate
	// from front to back through all values.
	Begin() ActivityStreamsInReplyToPropertyIterator
	// Empty returns returns true if there are no elements.
	Empty() bool
	// End returns beyond-the-last iterator, which is nil. Can be used with
	// the iterator's Next method and this property's Begin method to
	// iterate from front to back through all values.
	End() ActivityStreamsInReplyToPropertyIterator
	// InsertActivityStreamsAccept inserts a Accept value at the specified
	// index for a property "inReplyTo". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAccept(idx int, v ActivityStreamsAccept)
	// InsertActivityStreamsActivity inserts a Activity value at the specified
	// index for a property "inReplyTo". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsActivity(idx int, v ActivityStreamsActivity)
	// InsertActivityStreamsAdd inserts a Add value at the specified index for
	// a property "inReplyTo". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAdd(idx int, v ActivityStreamsAdd)
	// InsertActivityStreamsAnnounce inserts a Announce value at the specified
	// index for a property "inReplyTo". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAnnounce(idx int, v ActivityStreamsAnnounce)
	// InsertActivityStreamsApplication inserts a Application value at the
	// specified index for a property "inReplyTo". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsApplication(idx int, v ActivityStreamsApplication)
	// InsertActivityStreamsArrive inserts a Arrive value at the specified
	// index for a property "inReplyTo". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsArrive(idx int, v ActivityStreamsArrive)
	// InsertActivityStreamsArticle inserts a Article value at the specified
	// index for a property "inReplyTo". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsArticle(idx int, v ActivityStreamsArticle)
	// InsertActivityStreamsAudio inserts a Audio value at the specified index
	// for a property "inReplyTo". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAudio(idx int, v ActivityStreamsAudio)
	// InsertActivityStreamsBlock inserts a Block value at the specified index
	// for a property "inReplyTo". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsBlock(idx int, v ActivityStreamsBlock)
	// InsertActivityStreamsCollection inserts a Collection value at the
	// specified index for a property "inReplyTo". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsCollection(idx int, v ActivityStreamsCollection)
	// InsertActivityStreamsCollectionPage inserts a CollectionPage value at
	// the specified index for a property "inReplyTo". Existing elements
	// at that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsCollectionPage(idx int, v ActivityStreamsCollectionPage)
	// InsertActivityStreamsCreate inserts a Create value at the specified
	// index for a property "inReplyTo". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsCreate(idx int, v ActivityStreamsCreate)
	// InsertActivityStreamsDelete inserts a Delete value at the specified
	// index for a property "inReplyTo". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDelete(idx int, v ActivityStreamsDelete)
	// InsertActivityStreamsDislike inserts a Dislike value at the specified
	// index for a property "inReplyTo". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDislike(idx int, v ActivityStreamsDislike)
	// InsertActivityStreamsDocument inserts a Document value at the specified
	// index for a property "inReplyTo". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDocument(idx int, v ActivityStreamsDocument)
	// InsertActivityStreamsEvent inserts a Event value at the specified index
	// for a property "inReplyTo". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsEvent(idx int, v ActivityStreamsEvent)
	// InsertActivityStreamsFlag inserts a Flag value at the specified index
	// for a property "inReplyTo". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsFlag(idx int, v ActivityStreamsFlag)
	// InsertActivityStreamsFollow inserts a Follow value at the specified
	// index for a property "inReplyTo". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsFollow(idx int, v ActivityStreamsFollow)
	// InsertActivityStreamsGroup inserts a Group value at the specified index
	// for a property "inReplyTo". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsGroup(idx int, v ActivityStreamsGroup)
	// InsertActivityStreamsIgnore inserts a Ignore value at the specified
	// index for a property "inReplyTo". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsIgnore(idx int, v ActivityStreamsIgnore)
	// InsertActivityStreamsImage inserts a Image value at the specified index
	// for a property "inReplyTo". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsImage(idx int, v ActivityStreamsImage)
	// InsertActivityStreamsIntransitiveActivity inserts a
	// IntransitiveActivity value at the specified index for a property
	// "inReplyTo". Existing elements at that index and higher are shifted
	// back once. Invalidates all iterators.
	InsertActivityStreamsIntransitiveActivity(idx int, v ActivityStreamsIntransitiveActivity)
	// InsertActivityStreamsInvite inserts a Invite value at the specified
	// index for a property "inReplyTo". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsInvite(idx int, v ActivityStreamsInvite)
	// InsertActivityStreamsJoin inserts a Join value at the specified index
	// for a property "inReplyTo". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsJoin(idx int, v ActivityStreamsJoin)
	// InsertActivityStreamsLeave inserts a Leave value at the specified index
	// for a property "inReplyTo". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsLeave(idx int, v ActivityStreamsLeave)
	// InsertActivityStreamsLike inserts a Like value at the specified index
	// for a property "inReplyTo". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsLike(idx int, v ActivityStreamsLike)
	// InsertActivityStreamsLink inserts a Link value at the specified index
	// for a property "inReplyTo". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsLink(idx int, v ActivityStreamsLink)
	// InsertActivityStreamsListen inserts a Listen value at the specified
	// index for a property "inReplyTo". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsListen(idx int, v ActivityStreamsListen)
	// InsertActivityStreamsMention inserts a Mention value at the specified
	// index for a property "inReplyTo". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsMention(idx int, v ActivityStreamsMention)
	// InsertActivityStreamsMove inserts a Move value at the specified index
	// for a property "inReplyTo". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsMove(idx int, v ActivityStreamsMove)
	// InsertActivityStreamsNote inserts a Note value at the specified index
	// for a property "inReplyTo". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsNote(idx int, v ActivityStreamsNote)
	// InsertActivityStreamsObject inserts a Object value at the specified
	// index for a property "inReplyTo". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsObject(idx int, v ActivityStreamsObject)
	// InsertActivityStreamsOffer inserts a Offer value at the specified index
	// for a property "inReplyTo". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsOffer(idx int, v ActivityStreamsOffer)
	// InsertActivityStreamsOrderedCollection inserts a OrderedCollection
	// value at the specified index for a property "inReplyTo". Existing
	// elements at that index and higher are shifted back once.
	// Invalidates all iterators.
	InsertActivityStreamsOrderedCollection(idx int, v ActivityStreamsOrderedCollection)
	// InsertActivityStreamsOrderedCollectionPage inserts a
	// OrderedCollectionPage value at the specified index for a property
	// "inReplyTo". Existing elements at that index and higher are shifted
	// back once. Invalidates all iterators.
	InsertActivityStreamsOrderedCollectionPage(idx int, v ActivityStreamsOrderedCollectionPage)
	// InsertActivityStreamsOrganization inserts a Organization value at the
	// specified index for a property "inReplyTo". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsOrganization(idx int, v ActivityStreamsOrganization)
	// InsertActivityStreamsPage inserts a Page value at the specified index
	// for a property "inReplyTo". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsPage(idx int, v ActivityStreamsPage)
	// InsertActivityStreamsPerson inserts a Person value at the specified
	// index for a property "inReplyTo". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsPerson(idx int, v ActivityStreamsPerson)
	// InsertActivityStreamsPlace inserts a Place value at the specified index
	// for a property "inReplyTo". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsPlace(idx int, v ActivityStreamsPlace)
	// InsertActivityStreamsProfile inserts a Profile value at the specified
	// index for a property "inReplyTo". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsProfile(idx int, v ActivityStreamsProfile)
	// InsertActivityStreamsQuestion inserts a Question value at the specified
	// index for a property "inReplyTo". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsQuestion(idx int, v ActivityStreamsQuestion)
	// InsertActivityStreamsRead inserts a Read value at the specified index
	// for a property "inReplyTo". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsRead(idx int, v ActivityStreamsRead)
	// InsertActivityStreamsReject inserts a Reject value at the specified
	// index for a property "inReplyTo". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsReject(idx int, v ActivityStreamsReject)
	// InsertActivityStreamsRelationship inserts a Relationship value at the
	// specified index for a property "inReplyTo". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsRelationship(idx int, v ActivityStreamsRelationship)
	// InsertActivityStreamsRemove inserts a Remove value at the specified
	// index for a property "inReplyTo". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsRemove(idx int, v ActivityStreamsRemove)
	// InsertActivityStreamsService inserts a Service value at the specified
	// index for a property "inReplyTo". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsService(idx int, v ActivityStreamsService)
	// InsertActivityStreamsTentativeAccept inserts a TentativeAccept value at
	// the specified index for a property "inReplyTo". Existing elements
	// at that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsTentativeAccept(idx int, v ActivityStreamsTentativeAccept)
	// InsertActivityStreamsTentativeReject inserts a TentativeReject value at
	// the specified index for a property "inReplyTo". Existing elements
	// at that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsTentativeReject(idx int, v ActivityStreamsTentativeReject)
	// InsertActivityStreamsTombstone inserts a Tombstone value at the
	// specified index for a property "inReplyTo". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsTombstone(idx int, v ActivityStreamsTombstone)
	// InsertActivityStreamsTravel inserts a Travel value at the specified
	// index for a property "inReplyTo". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsTravel(idx int, v ActivityStreamsTravel)
	// InsertActivityStreamsUndo inserts a Undo value at the specified index
	// for a property "inReplyTo". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsUndo(idx int, v ActivityStreamsUndo)
	// InsertActivityStreamsUpdate inserts a Update value at the specified
	// index for a property "inReplyTo". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsUpdate(idx int, v ActivityStreamsUpdate)
	// InsertActivityStreamsVideo inserts a Video value at the specified index
	// for a property "inReplyTo". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsVideo(idx int, v ActivityStreamsVideo)
	// InsertActivityStreamsView inserts a View value at the specified index
	// for a property "inReplyTo". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsView(idx int, v ActivityStreamsView)
	// InsertForgeFedBranch inserts a Branch value at the specified index for
	// a property "inReplyTo". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertForgeFedBranch(idx int, v ForgeFedBranch)
	// InsertForgeFedCommit inserts a Commit value at the specified index for
	// a property "inReplyTo". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertForgeFedCommit(idx int, v ForgeFedCommit)
	// InsertForgeFedPush inserts a Push value at the specified index for a
	// property "inReplyTo". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertForgeFedPush(idx int, v ForgeFedPush)
	// InsertForgeFedRepository inserts a Repository value at the specified
	// index for a property "inReplyTo". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertForgeFedRepository(idx int, v ForgeFedRepository)
	// InsertForgeFedTicket inserts a Ticket value at the specified index for
	// a property "inReplyTo". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertForgeFedTicket(idx int, v ForgeFedTicket)
	// InsertForgeFedTicketDependency inserts a TicketDependency value at the
	// specified index for a property "inReplyTo". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
	// Insert inserts an IRI value at the specified index for a property
	// "inReplyTo". Existing elements at that index and higher are shifted
	// back once. Invalidates all iterators.
	InsertIRI(idx int, v *url.URL)
	// InsertTootEmoji inserts a Emoji value at the specified index for a
	// property "inReplyTo". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertTootEmoji(idx int, v TootEmoji)
	// InsertTootIdentityProof inserts a IdentityProof value at the specified
	// index for a property "inReplyTo". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertTootIdentityProof(idx int, v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "inReplyTo". Invalidates all iterators. Returns an
	// error if the type is not a valid one to set for this property.
	InsertType(idx int, t Type) error
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API method specifically needed only for alternate
	// implementations for go-fed. Applications should not use this
	// method. Panics if the index is out of bounds.
	KindIndex(idx int) int
	// Len returns the number of values that exist for the "inReplyTo"
	// property.
	Len() (length int)
	// Less computes whether another property is less than this one. Mixing
	// types results in a consistent but arbitrary ordering
	Less(i, j int) bool
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsInReplyToProperty) bool
	// Name returns the name of this property ("inReplyTo") with any alias.
	Name() string
	// PrependActivityStreamsAccept prepends a Accept value to the front of a
	// list of the property "inReplyTo". Invalidates all iterators.
	PrependActivityStreamsAccept(v ActivityStreamsAccept)
	// PrependActivityStreamsActivity prepends a Activity value to the front
	// of a list of the property "inReplyTo". Invalidates all iterators.
	PrependActivityStreamsActivity(v ActivityStreamsActivity)
	// PrependActivityStreamsAdd prepends a Add value to the front of a list
	// of the property "inReplyTo". Invalidates all iterators.
	PrependActivityStreamsAdd(v ActivityStreamsAdd)
	// PrependActivityStreamsAnnounce prepends a Announce value to the front
	// of a list of the property "inReplyTo". Invalidates all iterators.
	PrependActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// PrependActivityStreamsApplication prepends a Application value to the
	// front of a list of the property "inReplyTo". Invalidates all
	// iterators.
	PrependActivityStreamsApplication(v ActivityStreamsApplication)
	// PrependActivityStreamsArrive prepends a Arrive value to the front of a
	// list of the property "inReplyTo". Invalidates all iterators.
	PrependActivityStreamsArrive(v ActivityStreamsArrive)
	// PrependActivityStreamsArticle prepends a Article value to the front of
	// a list of the property "inReplyTo". Invalidates all iterators.
	PrependActivityStreamsArticle(v ActivityStreamsArticle)
	// PrependActivityStreamsAudio prepends a Audio value to the front of a
	// list of the property "inReplyTo". Invalidates all iterators.
	PrependActivityStreamsAudio(v ActivityStreamsAudio)
	// PrependActivityStreamsBlock prepends a Block value to the front of a
	// list of the property "inReplyTo". Invalidates all iterators.
	PrependActivityStreamsBlock(v ActivityStreamsBlock)
	// PrependActivityStreamsCollection prepends a Collection value to the
	// front of a list of the property "inReplyTo". Invalidates all
	// iterators.
	PrependActivityStreamsCollection(v ActivityStreamsCollection)
	// PrependActivityStreamsCollectionPage prepends a CollectionPage value to
	// the front of a list of the property "inReplyTo". Invalidates all
	// iterators.
	PrependActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// PrependActivityStreamsCreate prepends a Create value to the front of a
	// list of the property "inReplyTo". Invalidates all iterators.
	PrependActivityStreamsCreate(v ActivityStreamsCreate)
	// PrependActivityStreamsDelete prepends a Delete value to the front of a
	// list of the property "inReplyTo". Invalidates all iterators.
	PrependActivityStreamsDelete(v ActivityStreamsDelete)
	// PrependActivityStreamsDislike prepends a Dislike value to the front of
	// a list of the property "inReplyTo". Invalidates all iterators.
	PrependActivityStreamsDislike(v ActivityStreamsDislike)
	// PrependActivityStreamsDocument prepends a Document value to the front
	// of a list of the property "inReplyTo". Invalidates all iterators.
	PrependActivityStreamsDocument(v ActivityStreamsDocument)
	// PrependActivityStreamsEvent prepends a Event value to the front of a
	// list of the property "inReplyTo". Invalidates all iterators.
	PrependActivityStreamsEvent(v ActivityStreamsEvent)
	// PrependActivityStreamsFlag prepends a Flag value to the front of a list
	// of the property "inReplyTo". Invalidates all iterators.
	PrependActivityStreamsFlag(v ActivityStreamsFlag)
	// PrependActivityStreamsFollow prepends a Follow value to the front of a
	// list of the property "inReplyTo". Invalidates all iterators.
	PrependActivityStreamsFollow(v ActivityStreamsFollow)
	// PrependActivityStreamsGroup prepends a Group value to the front of a
	// list of the property "inReplyTo". Invalidates all iterators.
	PrependActivityStreamsGroup(v ActivityStreamsGroup)
	// PrependActivityStreamsIgnore prepends a Ignore value to the front of a
	// list of the property "inReplyTo". Invalidates all iterators.
	PrependActivityStreamsIgnore(v ActivityStreamsIgnore)
	// PrependActivityStreamsImage prepends a Image value to the front of a
	// list of the property "inReplyTo". Invalidates all iterators.
	PrependActivityStreamsImage(v ActivityStreamsImage)
	// PrependActivityStreamsIntransitiveActivity prepends a
	// IntransitiveActivity value to the front of a list of the property
	// "inReplyTo". Invalidates all iterators.
	PrependActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// PrependActivityStreamsInvite prepends a Invite value to the front of a
	// list of the property "inReplyTo". Invalidates all iterators.
	PrependActivityStreamsInvite(v ActivityStreamsInvite)
	// PrependActivityStreamsJoin prepends a Join value to the front of a list
	// of the property "inReplyTo". Invalidates all iterators.
	PrependActivityStreamsJoin(v ActivityStreamsJoin)
	// PrependActivityStreamsLeave prepends a Leave value to the front of a
	// list of the property "inReplyTo". Invalidates all iterators.
	PrependActivityStreamsLeave(v ActivityStreamsLeave)
	// PrependActivityStreamsLike prepends a Like value to the front of a list
	// of the property "inReplyTo". Invalidates all iterators.
	PrependActivityStreamsLike(v ActivityStreamsLike)
	// PrependActivityStreamsLink prepends a Link value to the front of a list
	// of the property "inReplyTo". Invalidates all iterators.
	PrependActivityStreamsLink(v ActivityStreamsLink)
	// PrependActivityStreamsListen prepends a Listen value to the front of a
	// list of the property "inReplyTo". Invalidates all iterators.
	PrependActivityStreamsListen(v ActivityStreamsListen)
	// PrependActivityStreamsMention prepends a Mention value to the front of
	// a list of the property "inReplyTo". Invalidates all iterators.
	PrependActivityStreamsMention(v ActivityStreamsMention)
	// PrependActivityStreamsMove prepends a Move value to the front of a list
	// of the property "inReplyTo". Invalidates all iterators.
	PrependActivityStreamsMove(v ActivityStreamsMove)
	// PrependActivityStreamsNote prepends a Note value to the front of a list
	// of the property "inReplyTo". Invalidates all iterators.
	PrependActivityStreamsNote(v ActivityStreamsNote)
	// PrependActivityStreamsObject prepends a Object value to the front of a
	// list of the property "inReplyTo". Invalidates all iterators.
	PrependActivityStreamsObject(v ActivityStreamsObject)
	// PrependActivityStreamsOffer prepends a Offer value to the front of a
	// list of the property "inReplyTo". Invalidates all iterators.
	PrependActivityStreamsOffer(v ActivityStreamsOffer)
	// PrependActivityStreamsOrderedCollection prepends a OrderedCollection
	// value to the front of a list of the property "inReplyTo".
	// Invalidates all iterators.
	PrependActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// PrependActivityStreamsOrderedCollectionPage prepends a
	// OrderedCollectionPage value to the front of a list of the property
	// "inReplyTo". Invalidates all iterators.
	PrependActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// PrependActivityStreamsOrganization prepends a Organization value to the
	// front of a list of the property "inReplyTo". Invalidates all
	// iterators.
	PrependActivityStreamsOrganization(v ActivityStreamsOrganization)
	// PrependActivityStreamsPage prepends a Page value to the front of a list
	// of the property "inReplyTo". Invalidates all iterators.
	PrependActivityStreamsPage(v ActivityStreamsPage)
	// PrependActivityStreamsPerson prepends a Person value to the front of a
	// list of the property "inReplyTo". Invalidates all iterators.
	PrependActivityStreamsPerson(v ActivityStreamsPerson)
	// PrependActivityStreamsPlace prepends a Place value to the front of a
	// list of the property "inReplyTo". Invalidates all iterators.
	PrependActivityStreamsPlace(v ActivityStreamsPlace)
	// PrependActivityStreamsProfile prepends a Profile value to the front of
	// a list of the property "inReplyTo". Invalidates all iterators.
	PrependActivityStreamsProfile(v ActivityStreamsProfile)
	// PrependActivityStreamsQuestion prepends a Question value to the front
	// of a list of the property "inReplyTo". Invalidates all iterators.
	PrependActivityStreamsQuestion(v ActivityStreamsQuestion)
	// PrependActivityStreamsRead prepends a Read value to the front of a list
	// of the property "inReplyTo". Invalidates all iterators.
	PrependActivityStreamsRead(v ActivityStreamsRead)
	// PrependActivityStreamsReject prepends a Reject value to the front of a
	// list of the property "inReplyTo". Invalidates all iterators.
	PrependActivityStreamsReject(v ActivityStreamsReject)
	// PrependActivityStreamsRelationship prepends a Relationship value to the
	// front of a list of the property "inReplyTo". Invalidates all
	// iterators.
	PrependActivityStreamsRelationship(v ActivityStreamsRelationship)
	// PrependActivityStreamsRemove prepends a Remove value to the front of a
	// list of the property "inReplyTo". Invalidates all iterators.
	PrependActivityStreamsRemove(v ActivityStreamsRemove)
	// PrependActivityStreamsService prepends a Service value to the front of
	// a list of the property "inReplyTo". Invalidates all iterators.
	PrependActivityStreamsService(v ActivityStreamsService)
	// PrependActivityStreamsTentativeAccept prepends a TentativeAccept value
	// to the front of a list of the property "inReplyTo". Invalidates all
	// iterators.
	PrependActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// PrependActivityStreamsTentativeReject prepends a TentativeReject value
	// to the front of a list of the property "inReplyTo". Invalidates all
	// iterators.
	PrependActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// PrependActivityStreamsTombstone prepends a Tombstone value to the front
	// of a list of the property "inReplyTo". Invalidates all iterators.
	PrependActivityStreamsTombstone(v ActivityStreamsTombstone)
	// PrependActivityStreamsTravel prepends a Travel value to the front of a
	// list of the property "inReplyTo". Invalidates all iterators.
	PrependActivityStreamsTravel(v ActivityStreamsTravel)
	// PrependActivityStreamsUndo prepends a Undo value to the front of a list
	// of the property "inReplyTo". Invalidates all iterators.
	PrependActivityStreamsUndo(v ActivityStreamsUndo)
	// PrependActivityStreamsUpdate prepends a Update value to the front of a
	// list of the property "inReplyTo". Invalidates all iterators.
	PrependActivityStreamsUpdate(v ActivityStreamsUpdate)
	// PrependActivityStreamsVideo prepends a Video value to the front of a
	// list of the property "inReplyTo". Invalidates all iterators.
	PrependActivityStreamsVideo(v ActivityStreamsVideo)
	// PrependActivityStreamsView prepends a View value to the front of a list
	// of the property "inReplyTo". Invalidates all iterators.
	PrependActivityStreamsView(v ActivityStreamsView)
	// PrependForgeFedBranch prepends a Branch value to the front of a list of
	// the property "inReplyTo". Invalidates all iterators.
	PrependForgeFedBranch(v ForgeFedBranch)
	// PrependForgeFedCommit prepends a Commit value to the front of a list of
	// the property "inReplyTo". Invalidates all iterators.
	PrependForgeFedCommit(v ForgeFedCommit)
	// PrependForgeFedPush prepends a Push value to the front of a list of the
	// property "inReplyTo". Invalidates all iterators.
	PrependForgeFedPush(v ForgeFedPush)
	// PrependForgeFedRepository prepends a Repository value to the front of a
	// list of the property "inReplyTo". Invalidates all iterators.
	PrependForgeFedRepository(v ForgeFedRepository)
	// PrependForgeFedTicket prepends a Ticket value to the front of a list of
	// the property "inReplyTo". Invalidates all iterators.
	PrependForgeFedTicket(v ForgeFedTicket)
	// PrependForgeFedTicketDependency prepends a TicketDependency value to
	// the front of a list of the property "inReplyTo". Invalidates all
	// iterators.
	PrependForgeFedTicketDependency(v ForgeFedTicketDependency)
	// PrependIRI prepends an IRI value to the front of a list of the property
	// "inReplyTo".
	PrependIRI(v *url.URL)
	// PrependTootEmoji prepends a Emoji value to the front of a list of the
	// property "inReplyTo". Invalidates all iterators.
	PrependTootEmoji(v TootEmoji)
	// PrependTootIdentityProof prepends a IdentityProof value to the front of
	// a list of the property "inReplyTo". Invalidates all iterators.
	PrependTootIdentityProof(v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "inReplyTo". Invalidates all iterators. Returns an
	// error if the type is not a valid one to set for this property.
	PrependType(t Type) error
	// Remove deletes an element at the specified index from a list of the
	// property "inReplyTo", regardless of its type. Panics if the index
	// is out of bounds. Invalidates all iterators.
	Remove(idx int)
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// SetActivityStreamsAccept sets a Accept value to be at the specified
	// index for the property "inReplyTo". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsAccept(idx int, v ActivityStreamsAccept)
	// SetActivityStreamsActivity sets a Activity value to be at the specified
	// index for the property "inReplyTo". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsActivity(idx int, v ActivityStreamsActivity)
	// SetActivityStreamsAdd sets a Add value to be at the specified index for
	// the property "inReplyTo". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsAdd(idx int, v ActivityStreamsAdd)
	// SetActivityStreamsAnnounce sets a Announce value to be at the specified
	// index for the property "inReplyTo". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsAnnounce(idx int, v ActivityStreamsAnnounce)
	// SetActivityStreamsApplication sets a Application value to be at the
	// specified index for the property "inReplyTo". Panics if the index
	// is out of bounds. Invalidates all iterators.
	SetActivityStreamsApplication(idx int, v ActivityStreamsApplication)
	// SetActivityStreamsArrive sets a Arrive value to be at the specified
	// index for the property "inReplyTo". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsArrive(idx int, v ActivityStreamsArrive)
	// SetActivityStreamsArticle sets a Article value to be at the specified
	// index for the property "inReplyTo". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsArticle(idx int, v ActivityStreamsArticle)
	// SetActivityStreamsAudio sets a Audio value to be at the specified index
	// for the property "inReplyTo". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsAudio(idx int, v ActivityStreamsAudio)
	// SetActivityStreamsBlock sets a Block value to be at the specified index
	// for the property "inReplyTo". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsBlock(idx int, v ActivityStreamsBlock)
	// SetActivityStreamsCollection sets a Collection value to be at the
	// specified index for the property "inReplyTo". Panics if the index
	// is out of bounds. Invalidates all iterators.
	SetActivityStreamsCollection(idx int, v ActivityStreamsCollection)
	// SetActivityStreamsCollectionPage sets a CollectionPage value to be at
	// the specified index for the property "inReplyTo". Panics if the
	// index is out of bounds. Invalidates all iterators.
	SetActivityStreamsCollectionPage(idx int, v ActivityStreamsCollectionPage)
	// SetActivityStreamsCreate sets a Create value to be at the specified
	// index for the property "inReplyTo". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsCreate(idx int, v ActivityStreamsCreate)
	// SetActivityStreamsDelete sets a Delete value to be at the specified
	// index for the property "inReplyTo". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsDelete(idx int, v ActivityStreamsDelete)
	// SetActivityStreamsDislike sets a Dislike value to be at the specified
	// index for the property "inReplyTo". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsDislike(idx int, v ActivityStreamsDislike)
	// SetActivityStreamsDocument sets a Document value to be at the specified
	// index for the property "inReplyTo". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsDocument(idx int, v ActivityStreamsDocument)
	// SetActivityStreamsEvent sets a Event value to be at the specified index
	// for the property "inReplyTo". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsEvent(idx int, v ActivityStreamsEvent)
	// SetActivityStreamsFlag sets a Flag value to be at the specified index
	// for the property "inReplyTo". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsFlag(idx int, v ActivityStreamsFlag)
	// SetActivityStreamsFollow sets a Follow value to be at the specified
	// index for the property "inReplyTo". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsFollow(idx int, v ActivityStreamsFollow)
	// SetActivityStreamsGroup sets a Group value to be at the specified index
	// for the property "inReplyTo". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsGroup(idx int, v ActivityStreamsGroup)
	// SetActivityStreamsIgnore sets a Ignore value to be at the specified
	// index for the property "inReplyTo". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsIgnore(idx int, v ActivityStreamsIgnore)
	// SetActivityStreamsImage sets a Image value to be at the specified index
	// for the property "inReplyTo". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsImage(idx int, v ActivityStreamsImage)
	// SetActivityStreamsIntransitiveActivity sets a IntransitiveActivity
	// value to be at the specified index for the property "inReplyTo".
	// Panics if the index is out of bounds. Invalidates all iterators.
	SetActivityStreamsIntransitiveActivity(idx int, v ActivityStreamsIntransitiveActivity)
	// SetActivityStreamsInvite sets a Invite value to be at the specified
	// index for the property "inReplyTo". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsInvite(idx int, v ActivityStreamsInvite)
	// SetActivityStreamsJoin sets a Join value to be at the specified index
	// for the property "inReplyTo". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsJoin(idx int, v ActivityStreamsJoin)
	// SetActivityStreamsLeave sets a Leave value to be at the specified index
	// for the property "inReplyTo". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsLeave(idx int, v ActivityStreamsLeave)
	// SetActivityStreamsLike sets a Like value to be at the specified index
	// for the property "inReplyTo". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsLike(idx int, v ActivityStreamsLike)
	// SetActivityStreamsLink sets a Link value to be at the specified index
	// for the property "inReplyTo". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsLink(idx int, v ActivityStreamsLink)
	// SetActivityStreamsListen sets a Listen value to be at the specified
	// index for the property "inReplyTo". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsListen(idx int, v ActivityStreamsListen)
	// SetActivityStreamsMention sets a Mention value to be at the specified
	// index for the property "inReplyTo". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsMention(idx int, v ActivityStreamsMention)
	// SetActivityStreamsMove sets a Move value to be at the specified index
	// for the property "inReplyTo". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsMove(idx int, v ActivityStreamsMove)
	// SetActivityStreamsNote sets a Note value to be at the specified index
	// for the property "inReplyTo". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsNote(idx int, v ActivityStreamsNote)
	// SetActivityStreamsObject sets a Object value to be at the specified
	// index for the property "inReplyTo". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsObject(idx int, v ActivityStreamsObject)
	// SetActivityStreamsOffer sets a Offer value to be at the specified index
	// for the property "inReplyTo". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsOffer(idx int, v ActivityStreamsOffer)
	// SetActivityStreamsOrderedCollection sets a OrderedCollection value to
	// be at the specified index for the property "inReplyTo". Panics if
	// the index is out of bounds. Invalidates all iterators.
	SetActivityStreamsOrderedCollection(idx int, v ActivityStreamsOrderedCollection)
	// SetActivityStreamsOrderedCollectionPage sets a OrderedCollectionPage
	// value to be at the specified index for the property "inReplyTo".
	// Panics if the index is out of bounds. Invalidates all iterators.
	SetActivityStreamsOrderedCollectionPage(idx int, v ActivityStreamsOrderedCollectionPage)
	// SetActivityStreamsOrganization sets a Organization value to be at the
	// specified index for the property "inReplyTo". Panics if the index
	// is out of bounds. Invalidates all iterators.
	SetActivityStreamsOrganization(idx int, v ActivityStreamsOrganization)
	// SetActivityStreamsPage sets a Page value to be at the specified index
	// for the property "inReplyTo". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsPage(idx int, v ActivityStreamsPage)
	// SetActivityStreamsPerson sets a Person value to be at the specified
	// index for the property "inReplyTo". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsPerson(idx int, v ActivityStreamsPerson)
	// SetActivityStreamsPlace sets a Place value to be at the specified index
	// for the property "inReplyTo". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsPlace(idx int, v ActivityStreamsPlace)
	// SetActivityStreamsProfile sets a Profile value to be at the specified
	// index for the property "inReplyTo". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsProfile(idx int, v ActivityStreamsProfile)
	// SetActivityStreamsQuestion sets a Question value to be at the specified
	// index for the property "inReplyTo". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsQuestion(idx int, v ActivityStreamsQuestion)
	// SetActivityStreamsRead sets a Read value to be at the specified index
	// for the property "inReplyTo". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsRead(idx int, v ActivityStreamsRead)
	// SetActivityStreamsReject sets a Reject value to be at the specified
	// index for the property "inReplyTo". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsReject(idx int, v ActivityStreamsReject)
	// SetActivityStreamsRelationship sets a Relationship value to be at the
	// specified index for the property "inReplyTo". Panics if the index
	// is out of bounds. Invalidates all iterators.
	SetActivityStreamsRelationship(idx int, v ActivityStreamsRelationship)
	// SetActivityStreamsRemove sets a Remove value to be at the specified
	// index for the property "inReplyTo". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsRemove(idx int, v ActivityStreamsRemove)
	// SetActivityStreamsService sets a Service value to be at the specified
	// index for the property "inReplyTo". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsService(idx int, v ActivityStreamsService)
	// SetActivityStreamsTentativeAccept sets a TentativeAccept value to be at
	// the specified index for the property "inReplyTo". Panics if the
	// index is out of bounds. Invalidates all iterators.
	SetActivityStreamsTentativeAccept(idx int, v ActivityStreamsTentativeAccept)
	// SetActivityStreamsTentativeReject sets a TentativeReject value to be at
	// the specified index for the property "inReplyTo". Panics if the
	// index is out of bounds. Invalidates all iterators.
	SetActivityStreamsTentativeReject(idx int, v ActivityStreamsTentativeReject)
	// SetActivityStreamsTombstone sets a Tombstone value to be at the
	// specified index for the property "inReplyTo". Panics if the index
	// is out of bounds. Invalidates all iterators.
	SetActivityStreamsTombstone(idx int, v ActivityStreamsTombstone)
	// SetActivityStreamsTravel sets a Travel value to be at the specified
	// index for the property "inReplyTo". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsTravel(idx int, v ActivityStreamsTravel)
	// SetActivityStreamsUndo sets a Undo value to be at the specified index
	// for the property "inReplyTo". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsUndo(idx int, v ActivityStreamsUndo)
	// SetActivityStreamsUpdate sets a Update value to be at the specified
	// index for the property "inReplyTo". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsUpdate(idx int, v ActivityStreamsUpdate)
	// SetActivityStreamsVideo sets a Video value to be at the specified index
	// for the property "inReplyTo". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsVideo(idx int, v ActivityStreamsVideo)
	// SetActivityStreamsView sets a View value to be at the specified index
	// for the property "inReplyTo". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsView(idx int, v ActivityStreamsView)
	// SetForgeFedBranch sets a Branch value to be at the specified index for
	// the property "inReplyTo". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedBranch(idx int, v ForgeFedBranch)
	// SetForgeFedCommit sets a Commit value to be at the specified index for
	// the property "inReplyTo". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedCommit(idx int, v ForgeFedCommit)
	// SetForgeFedPush sets a Push value to be at the specified index for the
	// property "inReplyTo". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedPush(idx int, v ForgeFedPush)
	// SetForgeFedRepository sets a Repository value to be at the specified
	// index for the property "inReplyTo". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetForgeFedRepository(idx int, v ForgeFedRepository)
	// SetForgeFedTicket sets a Ticket value to be at the specified index for
	// the property "inReplyTo". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedTicket(idx int, v ForgeFedTicket)
	// SetForgeFedTicketDependency sets a TicketDependency value to be at the
	// specified index for the property "inReplyTo". Panics if the index
	// is out of bounds. Invalidates all iterators.
	SetForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
	// SetIRI sets an IRI value to be at the specified index for the property
	// "inReplyTo". Panics if the index is out of bounds.
	SetIRI(idx int, v *url.URL)
	// SetTootEmoji sets a Emoji value to be at the specified index for the
	// property "inReplyTo". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetTootEmoji(idx int, v TootEmoji)
	// SetTootIdentityProof sets a IdentityProof value to be at the specified
	// index for the property "inReplyTo". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetTootIdentityProof(idx int, v TootIdentityProof)
	// SetType sets an arbitrary type value to the specified index of the
	// property "inReplyTo". Invalidates all iterators. Returns an error
	// if the type is not a valid one to set for this property. Panics if
	// the index is out of bounds.
	SetType(idx int, t Type) error
	// Swap swaps the location of values at two indices for the "inReplyTo"
	// property.
	Swap(i, j int)
}

Indicates one or more entities for which this object is considered a response.

Example 83 (https://www.w3.org/TR/activitystreams-vocabulary/#ex83-jsonld):

{
  "content": "This is all there is.",
  "inReplyTo": {
    "content": "What else is there?",
    "summary": "Previous note",
    "type": "Note"
  },
  "summary": "A simple note",
  "type": "Note"
}

Example 84 (https://www.w3.org/TR/activitystreams-vocabulary/#ex84-jsonld):

{
  "content": "This is all there is.",
  "inReplyTo": "http://example.org/posts/1",
  "summary": "A simple note",
  "type": "Note"
}

type ActivityStreamsInReplyToPropertyIterator

type ActivityStreamsInReplyToPropertyIterator interface {
	// GetActivityStreamsAccept returns the value of this property. When
	// IsActivityStreamsAccept returns false, GetActivityStreamsAccept
	// will return an arbitrary value.
	GetActivityStreamsAccept() ActivityStreamsAccept
	// GetActivityStreamsActivity returns the value of this property. When
	// IsActivityStreamsActivity returns false, GetActivityStreamsActivity
	// will return an arbitrary value.
	GetActivityStreamsActivity() ActivityStreamsActivity
	// GetActivityStreamsAdd returns the value of this property. When
	// IsActivityStreamsAdd returns false, GetActivityStreamsAdd will
	// return an arbitrary value.
	GetActivityStreamsAdd() ActivityStreamsAdd
	// GetActivityStreamsAnnounce returns the value of this property. When
	// IsActivityStreamsAnnounce returns false, GetActivityStreamsAnnounce
	// will return an arbitrary value.
	GetActivityStreamsAnnounce() ActivityStreamsAnnounce
	// GetActivityStreamsApplication returns the value of this property. When
	// IsActivityStreamsApplication returns false,
	// GetActivityStreamsApplication will return an arbitrary value.
	GetActivityStreamsApplication() ActivityStreamsApplication
	// GetActivityStreamsArrive returns the value of this property. When
	// IsActivityStreamsArrive returns false, GetActivityStreamsArrive
	// will return an arbitrary value.
	GetActivityStreamsArrive() ActivityStreamsArrive
	// GetActivityStreamsArticle returns the value of this property. When
	// IsActivityStreamsArticle returns false, GetActivityStreamsArticle
	// will return an arbitrary value.
	GetActivityStreamsArticle() ActivityStreamsArticle
	// GetActivityStreamsAudio returns the value of this property. When
	// IsActivityStreamsAudio returns false, GetActivityStreamsAudio will
	// return an arbitrary value.
	GetActivityStreamsAudio() ActivityStreamsAudio
	// GetActivityStreamsBlock returns the value of this property. When
	// IsActivityStreamsBlock returns false, GetActivityStreamsBlock will
	// return an arbitrary value.
	GetActivityStreamsBlock() ActivityStreamsBlock
	// GetActivityStreamsCollection returns the value of this property. When
	// IsActivityStreamsCollection returns false,
	// GetActivityStreamsCollection will return an arbitrary value.
	GetActivityStreamsCollection() ActivityStreamsCollection
	// GetActivityStreamsCollectionPage returns the value of this property.
	// When IsActivityStreamsCollectionPage returns false,
	// GetActivityStreamsCollectionPage will return an arbitrary value.
	GetActivityStreamsCollectionPage() ActivityStreamsCollectionPage
	// GetActivityStreamsCreate returns the value of this property. When
	// IsActivityStreamsCreate returns false, GetActivityStreamsCreate
	// will return an arbitrary value.
	GetActivityStreamsCreate() ActivityStreamsCreate
	// GetActivityStreamsDelete returns the value of this property. When
	// IsActivityStreamsDelete returns false, GetActivityStreamsDelete
	// will return an arbitrary value.
	GetActivityStreamsDelete() ActivityStreamsDelete
	// GetActivityStreamsDislike returns the value of this property. When
	// IsActivityStreamsDislike returns false, GetActivityStreamsDislike
	// will return an arbitrary value.
	GetActivityStreamsDislike() ActivityStreamsDislike
	// GetActivityStreamsDocument returns the value of this property. When
	// IsActivityStreamsDocument returns false, GetActivityStreamsDocument
	// will return an arbitrary value.
	GetActivityStreamsDocument() ActivityStreamsDocument
	// GetActivityStreamsEvent returns the value of this property. When
	// IsActivityStreamsEvent returns false, GetActivityStreamsEvent will
	// return an arbitrary value.
	GetActivityStreamsEvent() ActivityStreamsEvent
	// GetActivityStreamsFlag returns the value of this property. When
	// IsActivityStreamsFlag returns false, GetActivityStreamsFlag will
	// return an arbitrary value.
	GetActivityStreamsFlag() ActivityStreamsFlag
	// GetActivityStreamsFollow returns the value of this property. When
	// IsActivityStreamsFollow returns false, GetActivityStreamsFollow
	// will return an arbitrary value.
	GetActivityStreamsFollow() ActivityStreamsFollow
	// GetActivityStreamsGroup returns the value of this property. When
	// IsActivityStreamsGroup returns false, GetActivityStreamsGroup will
	// return an arbitrary value.
	GetActivityStreamsGroup() ActivityStreamsGroup
	// GetActivityStreamsIgnore returns the value of this property. When
	// IsActivityStreamsIgnore returns false, GetActivityStreamsIgnore
	// will return an arbitrary value.
	GetActivityStreamsIgnore() ActivityStreamsIgnore
	// GetActivityStreamsImage returns the value of this property. When
	// IsActivityStreamsImage returns false, GetActivityStreamsImage will
	// return an arbitrary value.
	GetActivityStreamsImage() ActivityStreamsImage
	// GetActivityStreamsIntransitiveActivity returns the value of this
	// property. When IsActivityStreamsIntransitiveActivity returns false,
	// GetActivityStreamsIntransitiveActivity will return an arbitrary
	// value.
	GetActivityStreamsIntransitiveActivity() ActivityStreamsIntransitiveActivity
	// GetActivityStreamsInvite returns the value of this property. When
	// IsActivityStreamsInvite returns false, GetActivityStreamsInvite
	// will return an arbitrary value.
	GetActivityStreamsInvite() ActivityStreamsInvite
	// GetActivityStreamsJoin returns the value of this property. When
	// IsActivityStreamsJoin returns false, GetActivityStreamsJoin will
	// return an arbitrary value.
	GetActivityStreamsJoin() ActivityStreamsJoin
	// GetActivityStreamsLeave returns the value of this property. When
	// IsActivityStreamsLeave returns false, GetActivityStreamsLeave will
	// return an arbitrary value.
	GetActivityStreamsLeave() ActivityStreamsLeave
	// GetActivityStreamsLike returns the value of this property. When
	// IsActivityStreamsLike returns false, GetActivityStreamsLike will
	// return an arbitrary value.
	GetActivityStreamsLike() ActivityStreamsLike
	// GetActivityStreamsLink returns the value of this property. When
	// IsActivityStreamsLink returns false, GetActivityStreamsLink will
	// return an arbitrary value.
	GetActivityStreamsLink() ActivityStreamsLink
	// GetActivityStreamsListen returns the value of this property. When
	// IsActivityStreamsListen returns false, GetActivityStreamsListen
	// will return an arbitrary value.
	GetActivityStreamsListen() ActivityStreamsListen
	// GetActivityStreamsMention returns the value of this property. When
	// IsActivityStreamsMention returns false, GetActivityStreamsMention
	// will return an arbitrary value.
	GetActivityStreamsMention() ActivityStreamsMention
	// GetActivityStreamsMove returns the value of this property. When
	// IsActivityStreamsMove returns false, GetActivityStreamsMove will
	// return an arbitrary value.
	GetActivityStreamsMove() ActivityStreamsMove
	// GetActivityStreamsNote returns the value of this property. When
	// IsActivityStreamsNote returns false, GetActivityStreamsNote will
	// return an arbitrary value.
	GetActivityStreamsNote() ActivityStreamsNote
	// GetActivityStreamsObject returns the value of this property. When
	// IsActivityStreamsObject returns false, GetActivityStreamsObject
	// will return an arbitrary value.
	GetActivityStreamsObject() ActivityStreamsObject
	// GetActivityStreamsOffer returns the value of this property. When
	// IsActivityStreamsOffer returns false, GetActivityStreamsOffer will
	// return an arbitrary value.
	GetActivityStreamsOffer() ActivityStreamsOffer
	// GetActivityStreamsOrderedCollection returns the value of this property.
	// When IsActivityStreamsOrderedCollection returns false,
	// GetActivityStreamsOrderedCollection will return an arbitrary value.
	GetActivityStreamsOrderedCollection() ActivityStreamsOrderedCollection
	// GetActivityStreamsOrderedCollectionPage returns the value of this
	// property. When IsActivityStreamsOrderedCollectionPage returns
	// false, GetActivityStreamsOrderedCollectionPage will return an
	// arbitrary value.
	GetActivityStreamsOrderedCollectionPage() ActivityStreamsOrderedCollectionPage
	// GetActivityStreamsOrganization returns the value of this property. When
	// IsActivityStreamsOrganization returns false,
	// GetActivityStreamsOrganization will return an arbitrary value.
	GetActivityStreamsOrganization() ActivityStreamsOrganization
	// GetActivityStreamsPage returns the value of this property. When
	// IsActivityStreamsPage returns false, GetActivityStreamsPage will
	// return an arbitrary value.
	GetActivityStreamsPage() ActivityStreamsPage
	// GetActivityStreamsPerson returns the value of this property. When
	// IsActivityStreamsPerson returns false, GetActivityStreamsPerson
	// will return an arbitrary value.
	GetActivityStreamsPerson() ActivityStreamsPerson
	// GetActivityStreamsPlace returns the value of this property. When
	// IsActivityStreamsPlace returns false, GetActivityStreamsPlace will
	// return an arbitrary value.
	GetActivityStreamsPlace() ActivityStreamsPlace
	// GetActivityStreamsProfile returns the value of this property. When
	// IsActivityStreamsProfile returns false, GetActivityStreamsProfile
	// will return an arbitrary value.
	GetActivityStreamsProfile() ActivityStreamsProfile
	// GetActivityStreamsQuestion returns the value of this property. When
	// IsActivityStreamsQuestion returns false, GetActivityStreamsQuestion
	// will return an arbitrary value.
	GetActivityStreamsQuestion() ActivityStreamsQuestion
	// GetActivityStreamsRead returns the value of this property. When
	// IsActivityStreamsRead returns false, GetActivityStreamsRead will
	// return an arbitrary value.
	GetActivityStreamsRead() ActivityStreamsRead
	// GetActivityStreamsReject returns the value of this property. When
	// IsActivityStreamsReject returns false, GetActivityStreamsReject
	// will return an arbitrary value.
	GetActivityStreamsReject() ActivityStreamsReject
	// GetActivityStreamsRelationship returns the value of this property. When
	// IsActivityStreamsRelationship returns false,
	// GetActivityStreamsRelationship will return an arbitrary value.
	GetActivityStreamsRelationship() ActivityStreamsRelationship
	// GetActivityStreamsRemove returns the value of this property. When
	// IsActivityStreamsRemove returns false, GetActivityStreamsRemove
	// will return an arbitrary value.
	GetActivityStreamsRemove() ActivityStreamsRemove
	// GetActivityStreamsService returns the value of this property. When
	// IsActivityStreamsService returns false, GetActivityStreamsService
	// will return an arbitrary value.
	GetActivityStreamsService() ActivityStreamsService
	// GetActivityStreamsTentativeAccept returns the value of this property.
	// When IsActivityStreamsTentativeAccept returns false,
	// GetActivityStreamsTentativeAccept will return an arbitrary value.
	GetActivityStreamsTentativeAccept() ActivityStreamsTentativeAccept
	// GetActivityStreamsTentativeReject returns the value of this property.
	// When IsActivityStreamsTentativeReject returns false,
	// GetActivityStreamsTentativeReject will return an arbitrary value.
	GetActivityStreamsTentativeReject() ActivityStreamsTentativeReject
	// GetActivityStreamsTombstone returns the value of this property. When
	// IsActivityStreamsTombstone returns false,
	// GetActivityStreamsTombstone will return an arbitrary value.
	GetActivityStreamsTombstone() ActivityStreamsTombstone
	// GetActivityStreamsTravel returns the value of this property. When
	// IsActivityStreamsTravel returns false, GetActivityStreamsTravel
	// will return an arbitrary value.
	GetActivityStreamsTravel() ActivityStreamsTravel
	// GetActivityStreamsUndo returns the value of this property. When
	// IsActivityStreamsUndo returns false, GetActivityStreamsUndo will
	// return an arbitrary value.
	GetActivityStreamsUndo() ActivityStreamsUndo
	// GetActivityStreamsUpdate returns the value of this property. When
	// IsActivityStreamsUpdate returns false, GetActivityStreamsUpdate
	// will return an arbitrary value.
	GetActivityStreamsUpdate() ActivityStreamsUpdate
	// GetActivityStreamsVideo returns the value of this property. When
	// IsActivityStreamsVideo returns false, GetActivityStreamsVideo will
	// return an arbitrary value.
	GetActivityStreamsVideo() ActivityStreamsVideo
	// GetActivityStreamsView returns the value of this property. When
	// IsActivityStreamsView returns false, GetActivityStreamsView will
	// return an arbitrary value.
	GetActivityStreamsView() ActivityStreamsView
	// GetForgeFedBranch returns the value of this property. When
	// IsForgeFedBranch returns false, GetForgeFedBranch will return an
	// arbitrary value.
	GetForgeFedBranch() ForgeFedBranch
	// GetForgeFedCommit returns the value of this property. When
	// IsForgeFedCommit returns false, GetForgeFedCommit will return an
	// arbitrary value.
	GetForgeFedCommit() ForgeFedCommit
	// GetForgeFedPush returns the value of this property. When IsForgeFedPush
	// returns false, GetForgeFedPush will return an arbitrary value.
	GetForgeFedPush() ForgeFedPush
	// GetForgeFedRepository returns the value of this property. When
	// IsForgeFedRepository returns false, GetForgeFedRepository will
	// return an arbitrary value.
	GetForgeFedRepository() ForgeFedRepository
	// GetForgeFedTicket returns the value of this property. When
	// IsForgeFedTicket returns false, GetForgeFedTicket will return an
	// arbitrary value.
	GetForgeFedTicket() ForgeFedTicket
	// GetForgeFedTicketDependency returns the value of this property. When
	// IsForgeFedTicketDependency returns false,
	// GetForgeFedTicketDependency will return an arbitrary value.
	GetForgeFedTicketDependency() ForgeFedTicketDependency
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return an arbitrary value.
	GetIRI() *url.URL
	// GetTootEmoji returns the value of this property. When IsTootEmoji
	// returns false, GetTootEmoji will return an arbitrary value.
	GetTootEmoji() TootEmoji
	// GetTootIdentityProof returns the value of this property. When
	// IsTootIdentityProof returns false, GetTootIdentityProof will return
	// an arbitrary value.
	GetTootIdentityProof() TootIdentityProof
	// GetType returns the value in this property as a Type. Returns nil if
	// the value is not an ActivityStreams type, such as an IRI or another
	// value.
	GetType() Type
	// HasAny returns true if any of the different values is set.
	HasAny() bool
	// IsActivityStreamsAccept returns true if this property has a type of
	// "Accept". When true, use the GetActivityStreamsAccept and
	// SetActivityStreamsAccept methods to access and set this property.
	IsActivityStreamsAccept() bool
	// IsActivityStreamsActivity returns true if this property has a type of
	// "Activity". When true, use the GetActivityStreamsActivity and
	// SetActivityStreamsActivity methods to access and set this property.
	IsActivityStreamsActivity() bool
	// IsActivityStreamsAdd returns true if this property has a type of "Add".
	// When true, use the GetActivityStreamsAdd and SetActivityStreamsAdd
	// methods to access and set this property.
	IsActivityStreamsAdd() bool
	// IsActivityStreamsAnnounce returns true if this property has a type of
	// "Announce". When true, use the GetActivityStreamsAnnounce and
	// SetActivityStreamsAnnounce methods to access and set this property.
	IsActivityStreamsAnnounce() bool
	// IsActivityStreamsApplication returns true if this property has a type
	// of "Application". When true, use the GetActivityStreamsApplication
	// and SetActivityStreamsApplication methods to access and set this
	// property.
	IsActivityStreamsApplication() bool
	// IsActivityStreamsArrive returns true if this property has a type of
	// "Arrive". When true, use the GetActivityStreamsArrive and
	// SetActivityStreamsArrive methods to access and set this property.
	IsActivityStreamsArrive() bool
	// IsActivityStreamsArticle returns true if this property has a type of
	// "Article". When true, use the GetActivityStreamsArticle and
	// SetActivityStreamsArticle methods to access and set this property.
	IsActivityStreamsArticle() bool
	// IsActivityStreamsAudio returns true if this property has a type of
	// "Audio". When true, use the GetActivityStreamsAudio and
	// SetActivityStreamsAudio methods to access and set this property.
	IsActivityStreamsAudio() bool
	// IsActivityStreamsBlock returns true if this property has a type of
	// "Block". When true, use the GetActivityStreamsBlock and
	// SetActivityStreamsBlock methods to access and set this property.
	IsActivityStreamsBlock() bool
	// IsActivityStreamsCollection returns true if this property has a type of
	// "Collection". When true, use the GetActivityStreamsCollection and
	// SetActivityStreamsCollection methods to access and set this
	// property.
	IsActivityStreamsCollection() bool
	// IsActivityStreamsCollectionPage returns true if this property has a
	// type of "CollectionPage". When true, use the
	// GetActivityStreamsCollectionPage and
	// SetActivityStreamsCollectionPage methods to access and set this
	// property.
	IsActivityStreamsCollectionPage() bool
	// IsActivityStreamsCreate returns true if this property has a type of
	// "Create". When true, use the GetActivityStreamsCreate and
	// SetActivityStreamsCreate methods to access and set this property.
	IsActivityStreamsCreate() bool
	// IsActivityStreamsDelete returns true if this property has a type of
	// "Delete". When true, use the GetActivityStreamsDelete and
	// SetActivityStreamsDelete methods to access and set this property.
	IsActivityStreamsDelete() bool
	// IsActivityStreamsDislike returns true if this property has a type of
	// "Dislike". When true, use the GetActivityStreamsDislike and
	// SetActivityStreamsDislike methods to access and set this property.
	IsActivityStreamsDislike() bool
	// IsActivityStreamsDocument returns true if this property has a type of
	// "Document". When true, use the GetActivityStreamsDocument and
	// SetActivityStreamsDocument methods to access and set this property.
	IsActivityStreamsDocument() bool
	// IsActivityStreamsEvent returns true if this property has a type of
	// "Event". When true, use the GetActivityStreamsEvent and
	// SetActivityStreamsEvent methods to access and set this property.
	IsActivityStreamsEvent() bool
	// IsActivityStreamsFlag returns true if this property has a type of
	// "Flag". When true, use the GetActivityStreamsFlag and
	// SetActivityStreamsFlag methods to access and set this property.
	IsActivityStreamsFlag() bool
	// IsActivityStreamsFollow returns true if this property has a type of
	// "Follow". When true, use the GetActivityStreamsFollow and
	// SetActivityStreamsFollow methods to access and set this property.
	IsActivityStreamsFollow() bool
	// IsActivityStreamsGroup returns true if this property has a type of
	// "Group". When true, use the GetActivityStreamsGroup and
	// SetActivityStreamsGroup methods to access and set this property.
	IsActivityStreamsGroup() bool
	// IsActivityStreamsIgnore returns true if this property has a type of
	// "Ignore". When true, use the GetActivityStreamsIgnore and
	// SetActivityStreamsIgnore methods to access and set this property.
	IsActivityStreamsIgnore() bool
	// IsActivityStreamsImage returns true if this property has a type of
	// "Image". When true, use the GetActivityStreamsImage and
	// SetActivityStreamsImage methods to access and set this property.
	IsActivityStreamsImage() bool
	// IsActivityStreamsIntransitiveActivity returns true if this property has
	// a type of "IntransitiveActivity". When true, use the
	// GetActivityStreamsIntransitiveActivity and
	// SetActivityStreamsIntransitiveActivity methods to access and set
	// this property.
	IsActivityStreamsIntransitiveActivity() bool
	// IsActivityStreamsInvite returns true if this property has a type of
	// "Invite". When true, use the GetActivityStreamsInvite and
	// SetActivityStreamsInvite methods to access and set this property.
	IsActivityStreamsInvite() bool
	// IsActivityStreamsJoin returns true if this property has a type of
	// "Join". When true, use the GetActivityStreamsJoin and
	// SetActivityStreamsJoin methods to access and set this property.
	IsActivityStreamsJoin() bool
	// IsActivityStreamsLeave returns true if this property has a type of
	// "Leave". When true, use the GetActivityStreamsLeave and
	// SetActivityStreamsLeave methods to access and set this property.
	IsActivityStreamsLeave() bool
	// IsActivityStreamsLike returns true if this property has a type of
	// "Like". When true, use the GetActivityStreamsLike and
	// SetActivityStreamsLike methods to access and set this property.
	IsActivityStreamsLike() bool
	// IsActivityStreamsLink returns true if this property has a type of
	// "Link". When true, use the GetActivityStreamsLink and
	// SetActivityStreamsLink methods to access and set this property.
	IsActivityStreamsLink() bool
	// IsActivityStreamsListen returns true if this property has a type of
	// "Listen". When true, use the GetActivityStreamsListen and
	// SetActivityStreamsListen methods to access and set this property.
	IsActivityStreamsListen() bool
	// IsActivityStreamsMention returns true if this property has a type of
	// "Mention". When true, use the GetActivityStreamsMention and
	// SetActivityStreamsMention methods to access and set this property.
	IsActivityStreamsMention() bool
	// IsActivityStreamsMove returns true if this property has a type of
	// "Move". When true, use the GetActivityStreamsMove and
	// SetActivityStreamsMove methods to access and set this property.
	IsActivityStreamsMove() bool
	// IsActivityStreamsNote returns true if this property has a type of
	// "Note". When true, use the GetActivityStreamsNote and
	// SetActivityStreamsNote methods to access and set this property.
	IsActivityStreamsNote() bool
	// IsActivityStreamsObject returns true if this property has a type of
	// "Object". When true, use the GetActivityStreamsObject and
	// SetActivityStreamsObject methods to access and set this property.
	IsActivityStreamsObject() bool
	// IsActivityStreamsOffer returns true if this property has a type of
	// "Offer". When true, use the GetActivityStreamsOffer and
	// SetActivityStreamsOffer methods to access and set this property.
	IsActivityStreamsOffer() bool
	// IsActivityStreamsOrderedCollection returns true if this property has a
	// type of "OrderedCollection". When true, use the
	// GetActivityStreamsOrderedCollection and
	// SetActivityStreamsOrderedCollection methods to access and set this
	// property.
	IsActivityStreamsOrderedCollection() bool
	// IsActivityStreamsOrderedCollectionPage returns true if this property
	// has a type of "OrderedCollectionPage". When true, use the
	// GetActivityStreamsOrderedCollectionPage and
	// SetActivityStreamsOrderedCollectionPage methods to access and set
	// this property.
	IsActivityStreamsOrderedCollectionPage() bool
	// IsActivityStreamsOrganization returns true if this property has a type
	// of "Organization". When true, use the
	// GetActivityStreamsOrganization and SetActivityStreamsOrganization
	// methods to access and set this property.
	IsActivityStreamsOrganization() bool
	// IsActivityStreamsPage returns true if this property has a type of
	// "Page". When true, use the GetActivityStreamsPage and
	// SetActivityStreamsPage methods to access and set this property.
	IsActivityStreamsPage() bool
	// IsActivityStreamsPerson returns true if this property has a type of
	// "Person". When true, use the GetActivityStreamsPerson and
	// SetActivityStreamsPerson methods to access and set this property.
	IsActivityStreamsPerson() bool
	// IsActivityStreamsPlace returns true if this property has a type of
	// "Place". When true, use the GetActivityStreamsPlace and
	// SetActivityStreamsPlace methods to access and set this property.
	IsActivityStreamsPlace() bool
	// IsActivityStreamsProfile returns true if this property has a type of
	// "Profile". When true, use the GetActivityStreamsProfile and
	// SetActivityStreamsProfile methods to access and set this property.
	IsActivityStreamsProfile() bool
	// IsActivityStreamsQuestion returns true if this property has a type of
	// "Question". When true, use the GetActivityStreamsQuestion and
	// SetActivityStreamsQuestion methods to access and set this property.
	IsActivityStreamsQuestion() bool
	// IsActivityStreamsRead returns true if this property has a type of
	// "Read". When true, use the GetActivityStreamsRead and
	// SetActivityStreamsRead methods to access and set this property.
	IsActivityStreamsRead() bool
	// IsActivityStreamsReject returns true if this property has a type of
	// "Reject". When true, use the GetActivityStreamsReject and
	// SetActivityStreamsReject methods to access and set this property.
	IsActivityStreamsReject() bool
	// IsActivityStreamsRelationship returns true if this property has a type
	// of "Relationship". When true, use the
	// GetActivityStreamsRelationship and SetActivityStreamsRelationship
	// methods to access and set this property.
	IsActivityStreamsRelationship() bool
	// IsActivityStreamsRemove returns true if this property has a type of
	// "Remove". When true, use the GetActivityStreamsRemove and
	// SetActivityStreamsRemove methods to access and set this property.
	IsActivityStreamsRemove() bool
	// IsActivityStreamsService returns true if this property has a type of
	// "Service". When true, use the GetActivityStreamsService and
	// SetActivityStreamsService methods to access and set this property.
	IsActivityStreamsService() bool
	// IsActivityStreamsTentativeAccept returns true if this property has a
	// type of "TentativeAccept". When true, use the
	// GetActivityStreamsTentativeAccept and
	// SetActivityStreamsTentativeAccept methods to access and set this
	// property.
	IsActivityStreamsTentativeAccept() bool
	// IsActivityStreamsTentativeReject returns true if this property has a
	// type of "TentativeReject". When true, use the
	// GetActivityStreamsTentativeReject and
	// SetActivityStreamsTentativeReject methods to access and set this
	// property.
	IsActivityStreamsTentativeReject() bool
	// IsActivityStreamsTombstone returns true if this property has a type of
	// "Tombstone". When true, use the GetActivityStreamsTombstone and
	// SetActivityStreamsTombstone methods to access and set this property.
	IsActivityStreamsTombstone() bool
	// IsActivityStreamsTravel returns true if this property has a type of
	// "Travel". When true, use the GetActivityStreamsTravel and
	// SetActivityStreamsTravel methods to access and set this property.
	IsActivityStreamsTravel() bool
	// IsActivityStreamsUndo returns true if this property has a type of
	// "Undo". When true, use the GetActivityStreamsUndo and
	// SetActivityStreamsUndo methods to access and set this property.
	IsActivityStreamsUndo() bool
	// IsActivityStreamsUpdate returns true if this property has a type of
	// "Update". When true, use the GetActivityStreamsUpdate and
	// SetActivityStreamsUpdate methods to access and set this property.
	IsActivityStreamsUpdate() bool
	// IsActivityStreamsVideo returns true if this property has a type of
	// "Video". When true, use the GetActivityStreamsVideo and
	// SetActivityStreamsVideo methods to access and set this property.
	IsActivityStreamsVideo() bool
	// IsActivityStreamsView returns true if this property has a type of
	// "View". When true, use the GetActivityStreamsView and
	// SetActivityStreamsView methods to access and set this property.
	IsActivityStreamsView() bool
	// IsForgeFedBranch returns true if this property has a type of "Branch".
	// When true, use the GetForgeFedBranch and SetForgeFedBranch methods
	// to access and set this property.
	IsForgeFedBranch() bool
	// IsForgeFedCommit returns true if this property has a type of "Commit".
	// When true, use the GetForgeFedCommit and SetForgeFedCommit methods
	// to access and set this property.
	IsForgeFedCommit() bool
	// IsForgeFedPush returns true if this property has a type of "Push". When
	// true, use the GetForgeFedPush and SetForgeFedPush methods to access
	// and set this property.
	IsForgeFedPush() bool
	// IsForgeFedRepository returns true if this property has a type of
	// "Repository". When true, use the GetForgeFedRepository and
	// SetForgeFedRepository methods to access and set this property.
	IsForgeFedRepository() bool
	// IsForgeFedTicket returns true if this property has a type of "Ticket".
	// When true, use the GetForgeFedTicket and SetForgeFedTicket methods
	// to access and set this property.
	IsForgeFedTicket() bool
	// IsForgeFedTicketDependency returns true if this property has a type of
	// "TicketDependency". When true, use the GetForgeFedTicketDependency
	// and SetForgeFedTicketDependency methods to access and set this
	// property.
	IsForgeFedTicketDependency() bool
	// IsIRI returns true if this property is an IRI. When true, use GetIRI
	// and SetIRI to access and set this property
	IsIRI() bool
	// IsTootEmoji returns true if this property has a type of "Emoji". When
	// true, use the GetTootEmoji and SetTootEmoji methods to access and
	// set this property.
	IsTootEmoji() bool
	// IsTootIdentityProof returns true if this property has a type of
	// "IdentityProof". When true, use the GetTootIdentityProof and
	// SetTootIdentityProof methods to access and set this property.
	IsTootIdentityProof() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsInReplyToPropertyIterator) bool
	// Name returns the name of this property: "ActivityStreamsInReplyTo".
	Name() string
	// Next returns the next iterator, or nil if there is no next iterator.
	Next() ActivityStreamsInReplyToPropertyIterator
	// Prev returns the previous iterator, or nil if there is no previous
	// iterator.
	Prev() ActivityStreamsInReplyToPropertyIterator
	// SetActivityStreamsAccept sets the value of this property. Calling
	// IsActivityStreamsAccept afterwards returns true.
	SetActivityStreamsAccept(v ActivityStreamsAccept)
	// SetActivityStreamsActivity sets the value of this property. Calling
	// IsActivityStreamsActivity afterwards returns true.
	SetActivityStreamsActivity(v ActivityStreamsActivity)
	// SetActivityStreamsAdd sets the value of this property. Calling
	// IsActivityStreamsAdd afterwards returns true.
	SetActivityStreamsAdd(v ActivityStreamsAdd)
	// SetActivityStreamsAnnounce sets the value of this property. Calling
	// IsActivityStreamsAnnounce afterwards returns true.
	SetActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// SetActivityStreamsApplication sets the value of this property. Calling
	// IsActivityStreamsApplication afterwards returns true.
	SetActivityStreamsApplication(v ActivityStreamsApplication)
	// SetActivityStreamsArrive sets the value of this property. Calling
	// IsActivityStreamsArrive afterwards returns true.
	SetActivityStreamsArrive(v ActivityStreamsArrive)
	// SetActivityStreamsArticle sets the value of this property. Calling
	// IsActivityStreamsArticle afterwards returns true.
	SetActivityStreamsArticle(v ActivityStreamsArticle)
	// SetActivityStreamsAudio sets the value of this property. Calling
	// IsActivityStreamsAudio afterwards returns true.
	SetActivityStreamsAudio(v ActivityStreamsAudio)
	// SetActivityStreamsBlock sets the value of this property. Calling
	// IsActivityStreamsBlock afterwards returns true.
	SetActivityStreamsBlock(v ActivityStreamsBlock)
	// SetActivityStreamsCollection sets the value of this property. Calling
	// IsActivityStreamsCollection afterwards returns true.
	SetActivityStreamsCollection(v ActivityStreamsCollection)
	// SetActivityStreamsCollectionPage sets the value of this property.
	// Calling IsActivityStreamsCollectionPage afterwards returns true.
	SetActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// SetActivityStreamsCreate sets the value of this property. Calling
	// IsActivityStreamsCreate afterwards returns true.
	SetActivityStreamsCreate(v ActivityStreamsCreate)
	// SetActivityStreamsDelete sets the value of this property. Calling
	// IsActivityStreamsDelete afterwards returns true.
	SetActivityStreamsDelete(v ActivityStreamsDelete)
	// SetActivityStreamsDislike sets the value of this property. Calling
	// IsActivityStreamsDislike afterwards returns true.
	SetActivityStreamsDislike(v ActivityStreamsDislike)
	// SetActivityStreamsDocument sets the value of this property. Calling
	// IsActivityStreamsDocument afterwards returns true.
	SetActivityStreamsDocument(v ActivityStreamsDocument)
	// SetActivityStreamsEvent sets the value of this property. Calling
	// IsActivityStreamsEvent afterwards returns true.
	SetActivityStreamsEvent(v ActivityStreamsEvent)
	// SetActivityStreamsFlag sets the value of this property. Calling
	// IsActivityStreamsFlag afterwards returns true.
	SetActivityStreamsFlag(v ActivityStreamsFlag)
	// SetActivityStreamsFollow sets the value of this property. Calling
	// IsActivityStreamsFollow afterwards returns true.
	SetActivityStreamsFollow(v ActivityStreamsFollow)
	// SetActivityStreamsGroup sets the value of this property. Calling
	// IsActivityStreamsGroup afterwards returns true.
	SetActivityStreamsGroup(v ActivityStreamsGroup)
	// SetActivityStreamsIgnore sets the value of this property. Calling
	// IsActivityStreamsIgnore afterwards returns true.
	SetActivityStreamsIgnore(v ActivityStreamsIgnore)
	// SetActivityStreamsImage sets the value of this property. Calling
	// IsActivityStreamsImage afterwards returns true.
	SetActivityStreamsImage(v ActivityStreamsImage)
	// SetActivityStreamsIntransitiveActivity sets the value of this property.
	// Calling IsActivityStreamsIntransitiveActivity afterwards returns
	// true.
	SetActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// SetActivityStreamsInvite sets the value of this property. Calling
	// IsActivityStreamsInvite afterwards returns true.
	SetActivityStreamsInvite(v ActivityStreamsInvite)
	// SetActivityStreamsJoin sets the value of this property. Calling
	// IsActivityStreamsJoin afterwards returns true.
	SetActivityStreamsJoin(v ActivityStreamsJoin)
	// SetActivityStreamsLeave sets the value of this property. Calling
	// IsActivityStreamsLeave afterwards returns true.
	SetActivityStreamsLeave(v ActivityStreamsLeave)
	// SetActivityStreamsLike sets the value of this property. Calling
	// IsActivityStreamsLike afterwards returns true.
	SetActivityStreamsLike(v ActivityStreamsLike)
	// SetActivityStreamsLink sets the value of this property. Calling
	// IsActivityStreamsLink afterwards returns true.
	SetActivityStreamsLink(v ActivityStreamsLink)
	// SetActivityStreamsListen sets the value of this property. Calling
	// IsActivityStreamsListen afterwards returns true.
	SetActivityStreamsListen(v ActivityStreamsListen)
	// SetActivityStreamsMention sets the value of this property. Calling
	// IsActivityStreamsMention afterwards returns true.
	SetActivityStreamsMention(v ActivityStreamsMention)
	// SetActivityStreamsMove sets the value of this property. Calling
	// IsActivityStreamsMove afterwards returns true.
	SetActivityStreamsMove(v ActivityStreamsMove)
	// SetActivityStreamsNote sets the value of this property. Calling
	// IsActivityStreamsNote afterwards returns true.
	SetActivityStreamsNote(v ActivityStreamsNote)
	// SetActivityStreamsObject sets the value of this property. Calling
	// IsActivityStreamsObject afterwards returns true.
	SetActivityStreamsObject(v ActivityStreamsObject)
	// SetActivityStreamsOffer sets the value of this property. Calling
	// IsActivityStreamsOffer afterwards returns true.
	SetActivityStreamsOffer(v ActivityStreamsOffer)
	// SetActivityStreamsOrderedCollection sets the value of this property.
	// Calling IsActivityStreamsOrderedCollection afterwards returns true.
	SetActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// SetActivityStreamsOrderedCollectionPage sets the value of this
	// property. Calling IsActivityStreamsOrderedCollectionPage afterwards
	// returns true.
	SetActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// SetActivityStreamsOrganization sets the value of this property. Calling
	// IsActivityStreamsOrganization afterwards returns true.
	SetActivityStreamsOrganization(v ActivityStreamsOrganization)
	// SetActivityStreamsPage sets the value of this property. Calling
	// IsActivityStreamsPage afterwards returns true.
	SetActivityStreamsPage(v ActivityStreamsPage)
	// SetActivityStreamsPerson sets the value of this property. Calling
	// IsActivityStreamsPerson afterwards returns true.
	SetActivityStreamsPerson(v ActivityStreamsPerson)
	// SetActivityStreamsPlace sets the value of this property. Calling
	// IsActivityStreamsPlace afterwards returns true.
	SetActivityStreamsPlace(v ActivityStreamsPlace)
	// SetActivityStreamsProfile sets the value of this property. Calling
	// IsActivityStreamsProfile afterwards returns true.
	SetActivityStreamsProfile(v ActivityStreamsProfile)
	// SetActivityStreamsQuestion sets the value of this property. Calling
	// IsActivityStreamsQuestion afterwards returns true.
	SetActivityStreamsQuestion(v ActivityStreamsQuestion)
	// SetActivityStreamsRead sets the value of this property. Calling
	// IsActivityStreamsRead afterwards returns true.
	SetActivityStreamsRead(v ActivityStreamsRead)
	// SetActivityStreamsReject sets the value of this property. Calling
	// IsActivityStreamsReject afterwards returns true.
	SetActivityStreamsReject(v ActivityStreamsReject)
	// SetActivityStreamsRelationship sets the value of this property. Calling
	// IsActivityStreamsRelationship afterwards returns true.
	SetActivityStreamsRelationship(v ActivityStreamsRelationship)
	// SetActivityStreamsRemove sets the value of this property. Calling
	// IsActivityStreamsRemove afterwards returns true.
	SetActivityStreamsRemove(v ActivityStreamsRemove)
	// SetActivityStreamsService sets the value of this property. Calling
	// IsActivityStreamsService afterwards returns true.
	SetActivityStreamsService(v ActivityStreamsService)
	// SetActivityStreamsTentativeAccept sets the value of this property.
	// Calling IsActivityStreamsTentativeAccept afterwards returns true.
	SetActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// SetActivityStreamsTentativeReject sets the value of this property.
	// Calling IsActivityStreamsTentativeReject afterwards returns true.
	SetActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// SetActivityStreamsTombstone sets the value of this property. Calling
	// IsActivityStreamsTombstone afterwards returns true.
	SetActivityStreamsTombstone(v ActivityStreamsTombstone)
	// SetActivityStreamsTravel sets the value of this property. Calling
	// IsActivityStreamsTravel afterwards returns true.
	SetActivityStreamsTravel(v ActivityStreamsTravel)
	// SetActivityStreamsUndo sets the value of this property. Calling
	// IsActivityStreamsUndo afterwards returns true.
	SetActivityStreamsUndo(v ActivityStreamsUndo)
	// SetActivityStreamsUpdate sets the value of this property. Calling
	// IsActivityStreamsUpdate afterwards returns true.
	SetActivityStreamsUpdate(v ActivityStreamsUpdate)
	// SetActivityStreamsVideo sets the value of this property. Calling
	// IsActivityStreamsVideo afterwards returns true.
	SetActivityStreamsVideo(v ActivityStreamsVideo)
	// SetActivityStreamsView sets the value of this property. Calling
	// IsActivityStreamsView afterwards returns true.
	SetActivityStreamsView(v ActivityStreamsView)
	// SetForgeFedBranch sets the value of this property. Calling
	// IsForgeFedBranch afterwards returns true.
	SetForgeFedBranch(v ForgeFedBranch)
	// SetForgeFedCommit sets the value of this property. Calling
	// IsForgeFedCommit afterwards returns true.
	SetForgeFedCommit(v ForgeFedCommit)
	// SetForgeFedPush sets the value of this property. Calling IsForgeFedPush
	// afterwards returns true.
	SetForgeFedPush(v ForgeFedPush)
	// SetForgeFedRepository sets the value of this property. Calling
	// IsForgeFedRepository afterwards returns true.
	SetForgeFedRepository(v ForgeFedRepository)
	// SetForgeFedTicket sets the value of this property. Calling
	// IsForgeFedTicket afterwards returns true.
	SetForgeFedTicket(v ForgeFedTicket)
	// SetForgeFedTicketDependency sets the value of this property. Calling
	// IsForgeFedTicketDependency afterwards returns true.
	SetForgeFedTicketDependency(v ForgeFedTicketDependency)
	// SetIRI sets the value of this property. Calling IsIRI afterwards
	// returns true.
	SetIRI(v *url.URL)
	// SetTootEmoji sets the value of this property. Calling IsTootEmoji
	// afterwards returns true.
	SetTootEmoji(v TootEmoji)
	// SetTootIdentityProof sets the value of this property. Calling
	// IsTootIdentityProof afterwards returns true.
	SetTootIdentityProof(v TootIdentityProof)
	// SetType attempts to set the property for the arbitrary type. Returns an
	// error if it is not a valid type to set on this property.
	SetType(t Type) error
}

ActivityStreamsInReplyToPropertyIterator represents a single value for the "inReplyTo" property.

type ActivityStreamsInboxProperty

type ActivityStreamsInboxProperty interface {
	// Clear ensures no value of this property is set. Calling HasAny or any
	// of the 'Is' methods afterwards will return false.
	Clear()
	// GetActivityStreamsOrderedCollection returns the value of this property.
	// When IsActivityStreamsOrderedCollection returns false,
	// GetActivityStreamsOrderedCollection will return an arbitrary value.
	GetActivityStreamsOrderedCollection() ActivityStreamsOrderedCollection
	// GetActivityStreamsOrderedCollectionPage returns the value of this
	// property. When IsActivityStreamsOrderedCollectionPage returns
	// false, GetActivityStreamsOrderedCollectionPage will return an
	// arbitrary value.
	GetActivityStreamsOrderedCollectionPage() ActivityStreamsOrderedCollectionPage
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return an arbitrary value.
	GetIRI() *url.URL
	// GetType returns the value in this property as a Type. Returns nil if
	// the value is not an ActivityStreams type, such as an IRI or another
	// value.
	GetType() Type
	// HasAny returns true if any of the different values is set.
	HasAny() bool
	// IsActivityStreamsOrderedCollection returns true if this property has a
	// type of "OrderedCollection". When true, use the
	// GetActivityStreamsOrderedCollection and
	// SetActivityStreamsOrderedCollection methods to access and set this
	// property.
	IsActivityStreamsOrderedCollection() bool
	// IsActivityStreamsOrderedCollectionPage returns true if this property
	// has a type of "OrderedCollectionPage". When true, use the
	// GetActivityStreamsOrderedCollectionPage and
	// SetActivityStreamsOrderedCollectionPage methods to access and set
	// this property.
	IsActivityStreamsOrderedCollectionPage() bool
	// IsIRI returns true if this property is an IRI. When true, use GetIRI
	// and SetIRI to access and set this property
	IsIRI() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsInboxProperty) bool
	// Name returns the name of this property: "inbox".
	Name() string
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// SetActivityStreamsOrderedCollection sets the value of this property.
	// Calling IsActivityStreamsOrderedCollection afterwards returns true.
	SetActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// SetActivityStreamsOrderedCollectionPage sets the value of this
	// property. Calling IsActivityStreamsOrderedCollectionPage afterwards
	// returns true.
	SetActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// SetIRI sets the value of this property. Calling IsIRI afterwards
	// returns true.
	SetIRI(v *url.URL)
	// SetType attempts to set the property for the arbitrary type. Returns an
	// error if it is not a valid type to set on this property.
	SetType(t Type) error
}

A reference to an ActivityStreams OrderedCollection comprised of all the messages received by the actor.

Example 9 (https://www.w3.org/TR/activitypub/#example9):

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "@language": "ja"
    }
  ],
  "followers": "https://kenzoishii.example.com/followers.json",
  "following": "https://kenzoishii.example.com/following.json",
  "icon": [
    "https://kenzoishii.example.com/image/165987aklre4"
  ],
  "id": "https://kenzoishii.example.com/",
  "inbox": "https://kenzoishii.example.com/inbox.json",
  "liked": "https://kenzoishii.example.com/liked.json",
  "name": "石井健蔵",
  "outbox": "https://kenzoishii.example.com/feed.json",
  "preferredUsername": "kenzoishii",
  "summary": "この方はただの例です",
  "type": "Person"
}

type ActivityStreamsInstrumentProperty

type ActivityStreamsInstrumentProperty interface {
	// AppendActivityStreamsAccept appends a Accept value to the back of a
	// list of the property "instrument". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsAccept(v ActivityStreamsAccept)
	// AppendActivityStreamsActivity appends a Activity value to the back of a
	// list of the property "instrument". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsActivity(v ActivityStreamsActivity)
	// AppendActivityStreamsAdd appends a Add value to the back of a list of
	// the property "instrument". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsAdd(v ActivityStreamsAdd)
	// AppendActivityStreamsAnnounce appends a Announce value to the back of a
	// list of the property "instrument". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// AppendActivityStreamsApplication appends a Application value to the
	// back of a list of the property "instrument". Invalidates iterators
	// that are traversing using Prev.
	AppendActivityStreamsApplication(v ActivityStreamsApplication)
	// AppendActivityStreamsArrive appends a Arrive value to the back of a
	// list of the property "instrument". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsArrive(v ActivityStreamsArrive)
	// AppendActivityStreamsArticle appends a Article value to the back of a
	// list of the property "instrument". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsArticle(v ActivityStreamsArticle)
	// AppendActivityStreamsAudio appends a Audio value to the back of a list
	// of the property "instrument". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsAudio(v ActivityStreamsAudio)
	// AppendActivityStreamsBlock appends a Block value to the back of a list
	// of the property "instrument". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsBlock(v ActivityStreamsBlock)
	// AppendActivityStreamsCollection appends a Collection value to the back
	// of a list of the property "instrument". Invalidates iterators that
	// are traversing using Prev.
	AppendActivityStreamsCollection(v ActivityStreamsCollection)
	// AppendActivityStreamsCollectionPage appends a CollectionPage value to
	// the back of a list of the property "instrument". Invalidates
	// iterators that are traversing using Prev.
	AppendActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// AppendActivityStreamsCreate appends a Create value to the back of a
	// list of the property "instrument". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsCreate(v ActivityStreamsCreate)
	// AppendActivityStreamsDelete appends a Delete value to the back of a
	// list of the property "instrument". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDelete(v ActivityStreamsDelete)
	// AppendActivityStreamsDislike appends a Dislike value to the back of a
	// list of the property "instrument". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDislike(v ActivityStreamsDislike)
	// AppendActivityStreamsDocument appends a Document value to the back of a
	// list of the property "instrument". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDocument(v ActivityStreamsDocument)
	// AppendActivityStreamsEvent appends a Event value to the back of a list
	// of the property "instrument". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsEvent(v ActivityStreamsEvent)
	// AppendActivityStreamsFlag appends a Flag value to the back of a list of
	// the property "instrument". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsFlag(v ActivityStreamsFlag)
	// AppendActivityStreamsFollow appends a Follow value to the back of a
	// list of the property "instrument". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsFollow(v ActivityStreamsFollow)
	// AppendActivityStreamsGroup appends a Group value to the back of a list
	// of the property "instrument". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsGroup(v ActivityStreamsGroup)
	// AppendActivityStreamsIgnore appends a Ignore value to the back of a
	// list of the property "instrument". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsIgnore(v ActivityStreamsIgnore)
	// AppendActivityStreamsImage appends a Image value to the back of a list
	// of the property "instrument". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsImage(v ActivityStreamsImage)
	// AppendActivityStreamsIntransitiveActivity appends a
	// IntransitiveActivity value to the back of a list of the property
	// "instrument". Invalidates iterators that are traversing using Prev.
	AppendActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// AppendActivityStreamsInvite appends a Invite value to the back of a
	// list of the property "instrument". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsInvite(v ActivityStreamsInvite)
	// AppendActivityStreamsJoin appends a Join value to the back of a list of
	// the property "instrument". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsJoin(v ActivityStreamsJoin)
	// AppendActivityStreamsLeave appends a Leave value to the back of a list
	// of the property "instrument". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsLeave(v ActivityStreamsLeave)
	// AppendActivityStreamsLike appends a Like value to the back of a list of
	// the property "instrument". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsLike(v ActivityStreamsLike)
	// AppendActivityStreamsLink appends a Link value to the back of a list of
	// the property "instrument". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsLink(v ActivityStreamsLink)
	// AppendActivityStreamsListen appends a Listen value to the back of a
	// list of the property "instrument". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsListen(v ActivityStreamsListen)
	// AppendActivityStreamsMention appends a Mention value to the back of a
	// list of the property "instrument". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsMention(v ActivityStreamsMention)
	// AppendActivityStreamsMove appends a Move value to the back of a list of
	// the property "instrument". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsMove(v ActivityStreamsMove)
	// AppendActivityStreamsNote appends a Note value to the back of a list of
	// the property "instrument". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsNote(v ActivityStreamsNote)
	// AppendActivityStreamsObject appends a Object value to the back of a
	// list of the property "instrument". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsObject(v ActivityStreamsObject)
	// AppendActivityStreamsOffer appends a Offer value to the back of a list
	// of the property "instrument". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsOffer(v ActivityStreamsOffer)
	// AppendActivityStreamsOrderedCollection appends a OrderedCollection
	// value to the back of a list of the property "instrument".
	// Invalidates iterators that are traversing using Prev.
	AppendActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// AppendActivityStreamsOrderedCollectionPage appends a
	// OrderedCollectionPage value to the back of a list of the property
	// "instrument". Invalidates iterators that are traversing using Prev.
	AppendActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// AppendActivityStreamsOrganization appends a Organization value to the
	// back of a list of the property "instrument". Invalidates iterators
	// that are traversing using Prev.
	AppendActivityStreamsOrganization(v ActivityStreamsOrganization)
	// AppendActivityStreamsPage appends a Page value to the back of a list of
	// the property "instrument". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsPage(v ActivityStreamsPage)
	// AppendActivityStreamsPerson appends a Person value to the back of a
	// list of the property "instrument". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsPerson(v ActivityStreamsPerson)
	// AppendActivityStreamsPlace appends a Place value to the back of a list
	// of the property "instrument". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsPlace(v ActivityStreamsPlace)
	// AppendActivityStreamsProfile appends a Profile value to the back of a
	// list of the property "instrument". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsProfile(v ActivityStreamsProfile)
	// AppendActivityStreamsQuestion appends a Question value to the back of a
	// list of the property "instrument". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsQuestion(v ActivityStreamsQuestion)
	// AppendActivityStreamsRead appends a Read value to the back of a list of
	// the property "instrument". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsRead(v ActivityStreamsRead)
	// AppendActivityStreamsReject appends a Reject value to the back of a
	// list of the property "instrument". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsReject(v ActivityStreamsReject)
	// AppendActivityStreamsRelationship appends a Relationship value to the
	// back of a list of the property "instrument". Invalidates iterators
	// that are traversing using Prev.
	AppendActivityStreamsRelationship(v ActivityStreamsRelationship)
	// AppendActivityStreamsRemove appends a Remove value to the back of a
	// list of the property "instrument". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsRemove(v ActivityStreamsRemove)
	// AppendActivityStreamsService appends a Service value to the back of a
	// list of the property "instrument". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsService(v ActivityStreamsService)
	// AppendActivityStreamsTentativeAccept appends a TentativeAccept value to
	// the back of a list of the property "instrument". Invalidates
	// iterators that are traversing using Prev.
	AppendActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// AppendActivityStreamsTentativeReject appends a TentativeReject value to
	// the back of a list of the property "instrument". Invalidates
	// iterators that are traversing using Prev.
	AppendActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// AppendActivityStreamsTombstone appends a Tombstone value to the back of
	// a list of the property "instrument". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsTombstone(v ActivityStreamsTombstone)
	// AppendActivityStreamsTravel appends a Travel value to the back of a
	// list of the property "instrument". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsTravel(v ActivityStreamsTravel)
	// AppendActivityStreamsUndo appends a Undo value to the back of a list of
	// the property "instrument". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsUndo(v ActivityStreamsUndo)
	// AppendActivityStreamsUpdate appends a Update value to the back of a
	// list of the property "instrument". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsUpdate(v ActivityStreamsUpdate)
	// AppendActivityStreamsVideo appends a Video value to the back of a list
	// of the property "instrument". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsVideo(v ActivityStreamsVideo)
	// AppendActivityStreamsView appends a View value to the back of a list of
	// the property "instrument". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsView(v ActivityStreamsView)
	// AppendForgeFedBranch appends a Branch value to the back of a list of
	// the property "instrument". Invalidates iterators that are
	// traversing using Prev.
	AppendForgeFedBranch(v ForgeFedBranch)
	// AppendForgeFedCommit appends a Commit value to the back of a list of
	// the property "instrument". Invalidates iterators that are
	// traversing using Prev.
	AppendForgeFedCommit(v ForgeFedCommit)
	// AppendForgeFedPush appends a Push value to the back of a list of the
	// property "instrument". Invalidates iterators that are traversing
	// using Prev.
	AppendForgeFedPush(v ForgeFedPush)
	// AppendForgeFedRepository appends a Repository value to the back of a
	// list of the property "instrument". Invalidates iterators that are
	// traversing using Prev.
	AppendForgeFedRepository(v ForgeFedRepository)
	// AppendForgeFedTicket appends a Ticket value to the back of a list of
	// the property "instrument". Invalidates iterators that are
	// traversing using Prev.
	AppendForgeFedTicket(v ForgeFedTicket)
	// AppendForgeFedTicketDependency appends a TicketDependency value to the
	// back of a list of the property "instrument". Invalidates iterators
	// that are traversing using Prev.
	AppendForgeFedTicketDependency(v ForgeFedTicketDependency)
	// AppendIRI appends an IRI value to the back of a list of the property
	// "instrument"
	AppendIRI(v *url.URL)
	// AppendTootEmoji appends a Emoji value to the back of a list of the
	// property "instrument". Invalidates iterators that are traversing
	// using Prev.
	AppendTootEmoji(v TootEmoji)
	// AppendTootIdentityProof appends a IdentityProof value to the back of a
	// list of the property "instrument". Invalidates iterators that are
	// traversing using Prev.
	AppendTootIdentityProof(v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "instrument". Invalidates iterators that are
	// traversing using Prev. Returns an error if the type is not a valid
	// one to set for this property.
	AppendType(t Type) error
	// At returns the property value for the specified index. Panics if the
	// index is out of bounds.
	At(index int) ActivityStreamsInstrumentPropertyIterator
	// Begin returns the first iterator, or nil if empty. Can be used with the
	// iterator's Next method and this property's End method to iterate
	// from front to back through all values.
	Begin() ActivityStreamsInstrumentPropertyIterator
	// Empty returns returns true if there are no elements.
	Empty() bool
	// End returns beyond-the-last iterator, which is nil. Can be used with
	// the iterator's Next method and this property's Begin method to
	// iterate from front to back through all values.
	End() ActivityStreamsInstrumentPropertyIterator
	// InsertActivityStreamsAccept inserts a Accept value at the specified
	// index for a property "instrument". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAccept(idx int, v ActivityStreamsAccept)
	// InsertActivityStreamsActivity inserts a Activity value at the specified
	// index for a property "instrument". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsActivity(idx int, v ActivityStreamsActivity)
	// InsertActivityStreamsAdd inserts a Add value at the specified index for
	// a property "instrument". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAdd(idx int, v ActivityStreamsAdd)
	// InsertActivityStreamsAnnounce inserts a Announce value at the specified
	// index for a property "instrument". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAnnounce(idx int, v ActivityStreamsAnnounce)
	// InsertActivityStreamsApplication inserts a Application value at the
	// specified index for a property "instrument". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsApplication(idx int, v ActivityStreamsApplication)
	// InsertActivityStreamsArrive inserts a Arrive value at the specified
	// index for a property "instrument". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsArrive(idx int, v ActivityStreamsArrive)
	// InsertActivityStreamsArticle inserts a Article value at the specified
	// index for a property "instrument". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsArticle(idx int, v ActivityStreamsArticle)
	// InsertActivityStreamsAudio inserts a Audio value at the specified index
	// for a property "instrument". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAudio(idx int, v ActivityStreamsAudio)
	// InsertActivityStreamsBlock inserts a Block value at the specified index
	// for a property "instrument". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsBlock(idx int, v ActivityStreamsBlock)
	// InsertActivityStreamsCollection inserts a Collection value at the
	// specified index for a property "instrument". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsCollection(idx int, v ActivityStreamsCollection)
	// InsertActivityStreamsCollectionPage inserts a CollectionPage value at
	// the specified index for a property "instrument". Existing elements
	// at that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsCollectionPage(idx int, v ActivityStreamsCollectionPage)
	// InsertActivityStreamsCreate inserts a Create value at the specified
	// index for a property "instrument". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsCreate(idx int, v ActivityStreamsCreate)
	// InsertActivityStreamsDelete inserts a Delete value at the specified
	// index for a property "instrument". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDelete(idx int, v ActivityStreamsDelete)
	// InsertActivityStreamsDislike inserts a Dislike value at the specified
	// index for a property "instrument". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDislike(idx int, v ActivityStreamsDislike)
	// InsertActivityStreamsDocument inserts a Document value at the specified
	// index for a property "instrument". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDocument(idx int, v ActivityStreamsDocument)
	// InsertActivityStreamsEvent inserts a Event value at the specified index
	// for a property "instrument". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsEvent(idx int, v ActivityStreamsEvent)
	// InsertActivityStreamsFlag inserts a Flag value at the specified index
	// for a property "instrument". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsFlag(idx int, v ActivityStreamsFlag)
	// InsertActivityStreamsFollow inserts a Follow value at the specified
	// index for a property "instrument". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsFollow(idx int, v ActivityStreamsFollow)
	// InsertActivityStreamsGroup inserts a Group value at the specified index
	// for a property "instrument". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsGroup(idx int, v ActivityStreamsGroup)
	// InsertActivityStreamsIgnore inserts a Ignore value at the specified
	// index for a property "instrument". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsIgnore(idx int, v ActivityStreamsIgnore)
	// InsertActivityStreamsImage inserts a Image value at the specified index
	// for a property "instrument". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsImage(idx int, v ActivityStreamsImage)
	// InsertActivityStreamsIntransitiveActivity inserts a
	// IntransitiveActivity value at the specified index for a property
	// "instrument". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertActivityStreamsIntransitiveActivity(idx int, v ActivityStreamsIntransitiveActivity)
	// InsertActivityStreamsInvite inserts a Invite value at the specified
	// index for a property "instrument". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsInvite(idx int, v ActivityStreamsInvite)
	// InsertActivityStreamsJoin inserts a Join value at the specified index
	// for a property "instrument". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsJoin(idx int, v ActivityStreamsJoin)
	// InsertActivityStreamsLeave inserts a Leave value at the specified index
	// for a property "instrument". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsLeave(idx int, v ActivityStreamsLeave)
	// InsertActivityStreamsLike inserts a Like value at the specified index
	// for a property "instrument". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsLike(idx int, v ActivityStreamsLike)
	// InsertActivityStreamsLink inserts a Link value at the specified index
	// for a property "instrument". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsLink(idx int, v ActivityStreamsLink)
	// InsertActivityStreamsListen inserts a Listen value at the specified
	// index for a property "instrument". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsListen(idx int, v ActivityStreamsListen)
	// InsertActivityStreamsMention inserts a Mention value at the specified
	// index for a property "instrument". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsMention(idx int, v ActivityStreamsMention)
	// InsertActivityStreamsMove inserts a Move value at the specified index
	// for a property "instrument". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsMove(idx int, v ActivityStreamsMove)
	// InsertActivityStreamsNote inserts a Note value at the specified index
	// for a property "instrument". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsNote(idx int, v ActivityStreamsNote)
	// InsertActivityStreamsObject inserts a Object value at the specified
	// index for a property "instrument". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsObject(idx int, v ActivityStreamsObject)
	// InsertActivityStreamsOffer inserts a Offer value at the specified index
	// for a property "instrument". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsOffer(idx int, v ActivityStreamsOffer)
	// InsertActivityStreamsOrderedCollection inserts a OrderedCollection
	// value at the specified index for a property "instrument". Existing
	// elements at that index and higher are shifted back once.
	// Invalidates all iterators.
	InsertActivityStreamsOrderedCollection(idx int, v ActivityStreamsOrderedCollection)
	// InsertActivityStreamsOrderedCollectionPage inserts a
	// OrderedCollectionPage value at the specified index for a property
	// "instrument". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertActivityStreamsOrderedCollectionPage(idx int, v ActivityStreamsOrderedCollectionPage)
	// InsertActivityStreamsOrganization inserts a Organization value at the
	// specified index for a property "instrument". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsOrganization(idx int, v ActivityStreamsOrganization)
	// InsertActivityStreamsPage inserts a Page value at the specified index
	// for a property "instrument". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsPage(idx int, v ActivityStreamsPage)
	// InsertActivityStreamsPerson inserts a Person value at the specified
	// index for a property "instrument". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsPerson(idx int, v ActivityStreamsPerson)
	// InsertActivityStreamsPlace inserts a Place value at the specified index
	// for a property "instrument". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsPlace(idx int, v ActivityStreamsPlace)
	// InsertActivityStreamsProfile inserts a Profile value at the specified
	// index for a property "instrument". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsProfile(idx int, v ActivityStreamsProfile)
	// InsertActivityStreamsQuestion inserts a Question value at the specified
	// index for a property "instrument". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsQuestion(idx int, v ActivityStreamsQuestion)
	// InsertActivityStreamsRead inserts a Read value at the specified index
	// for a property "instrument". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsRead(idx int, v ActivityStreamsRead)
	// InsertActivityStreamsReject inserts a Reject value at the specified
	// index for a property "instrument". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsReject(idx int, v ActivityStreamsReject)
	// InsertActivityStreamsRelationship inserts a Relationship value at the
	// specified index for a property "instrument". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsRelationship(idx int, v ActivityStreamsRelationship)
	// InsertActivityStreamsRemove inserts a Remove value at the specified
	// index for a property "instrument". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsRemove(idx int, v ActivityStreamsRemove)
	// InsertActivityStreamsService inserts a Service value at the specified
	// index for a property "instrument". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsService(idx int, v ActivityStreamsService)
	// InsertActivityStreamsTentativeAccept inserts a TentativeAccept value at
	// the specified index for a property "instrument". Existing elements
	// at that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsTentativeAccept(idx int, v ActivityStreamsTentativeAccept)
	// InsertActivityStreamsTentativeReject inserts a TentativeReject value at
	// the specified index for a property "instrument". Existing elements
	// at that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsTentativeReject(idx int, v ActivityStreamsTentativeReject)
	// InsertActivityStreamsTombstone inserts a Tombstone value at the
	// specified index for a property "instrument". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsTombstone(idx int, v ActivityStreamsTombstone)
	// InsertActivityStreamsTravel inserts a Travel value at the specified
	// index for a property "instrument". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsTravel(idx int, v ActivityStreamsTravel)
	// InsertActivityStreamsUndo inserts a Undo value at the specified index
	// for a property "instrument". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsUndo(idx int, v ActivityStreamsUndo)
	// InsertActivityStreamsUpdate inserts a Update value at the specified
	// index for a property "instrument". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsUpdate(idx int, v ActivityStreamsUpdate)
	// InsertActivityStreamsVideo inserts a Video value at the specified index
	// for a property "instrument". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsVideo(idx int, v ActivityStreamsVideo)
	// InsertActivityStreamsView inserts a View value at the specified index
	// for a property "instrument". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsView(idx int, v ActivityStreamsView)
	// InsertForgeFedBranch inserts a Branch value at the specified index for
	// a property "instrument". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertForgeFedBranch(idx int, v ForgeFedBranch)
	// InsertForgeFedCommit inserts a Commit value at the specified index for
	// a property "instrument". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertForgeFedCommit(idx int, v ForgeFedCommit)
	// InsertForgeFedPush inserts a Push value at the specified index for a
	// property "instrument". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertForgeFedPush(idx int, v ForgeFedPush)
	// InsertForgeFedRepository inserts a Repository value at the specified
	// index for a property "instrument". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertForgeFedRepository(idx int, v ForgeFedRepository)
	// InsertForgeFedTicket inserts a Ticket value at the specified index for
	// a property "instrument". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertForgeFedTicket(idx int, v ForgeFedTicket)
	// InsertForgeFedTicketDependency inserts a TicketDependency value at the
	// specified index for a property "instrument". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
	// Insert inserts an IRI value at the specified index for a property
	// "instrument". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertIRI(idx int, v *url.URL)
	// InsertTootEmoji inserts a Emoji value at the specified index for a
	// property "instrument". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertTootEmoji(idx int, v TootEmoji)
	// InsertTootIdentityProof inserts a IdentityProof value at the specified
	// index for a property "instrument". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertTootIdentityProof(idx int, v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "instrument". Invalidates all iterators. Returns an
	// error if the type is not a valid one to set for this property.
	InsertType(idx int, t Type) error
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API method specifically needed only for alternate
	// implementations for go-fed. Applications should not use this
	// method. Panics if the index is out of bounds.
	KindIndex(idx int) int
	// Len returns the number of values that exist for the "instrument"
	// property.
	Len() (length int)
	// Less computes whether another property is less than this one. Mixing
	// types results in a consistent but arbitrary ordering
	Less(i, j int) bool
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsInstrumentProperty) bool
	// Name returns the name of this property ("instrument") with any alias.
	Name() string
	// PrependActivityStreamsAccept prepends a Accept value to the front of a
	// list of the property "instrument". Invalidates all iterators.
	PrependActivityStreamsAccept(v ActivityStreamsAccept)
	// PrependActivityStreamsActivity prepends a Activity value to the front
	// of a list of the property "instrument". Invalidates all iterators.
	PrependActivityStreamsActivity(v ActivityStreamsActivity)
	// PrependActivityStreamsAdd prepends a Add value to the front of a list
	// of the property "instrument". Invalidates all iterators.
	PrependActivityStreamsAdd(v ActivityStreamsAdd)
	// PrependActivityStreamsAnnounce prepends a Announce value to the front
	// of a list of the property "instrument". Invalidates all iterators.
	PrependActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// PrependActivityStreamsApplication prepends a Application value to the
	// front of a list of the property "instrument". Invalidates all
	// iterators.
	PrependActivityStreamsApplication(v ActivityStreamsApplication)
	// PrependActivityStreamsArrive prepends a Arrive value to the front of a
	// list of the property "instrument". Invalidates all iterators.
	PrependActivityStreamsArrive(v ActivityStreamsArrive)
	// PrependActivityStreamsArticle prepends a Article value to the front of
	// a list of the property "instrument". Invalidates all iterators.
	PrependActivityStreamsArticle(v ActivityStreamsArticle)
	// PrependActivityStreamsAudio prepends a Audio value to the front of a
	// list of the property "instrument". Invalidates all iterators.
	PrependActivityStreamsAudio(v ActivityStreamsAudio)
	// PrependActivityStreamsBlock prepends a Block value to the front of a
	// list of the property "instrument". Invalidates all iterators.
	PrependActivityStreamsBlock(v ActivityStreamsBlock)
	// PrependActivityStreamsCollection prepends a Collection value to the
	// front of a list of the property "instrument". Invalidates all
	// iterators.
	PrependActivityStreamsCollection(v ActivityStreamsCollection)
	// PrependActivityStreamsCollectionPage prepends a CollectionPage value to
	// the front of a list of the property "instrument". Invalidates all
	// iterators.
	PrependActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// PrependActivityStreamsCreate prepends a Create value to the front of a
	// list of the property "instrument". Invalidates all iterators.
	PrependActivityStreamsCreate(v ActivityStreamsCreate)
	// PrependActivityStreamsDelete prepends a Delete value to the front of a
	// list of the property "instrument". Invalidates all iterators.
	PrependActivityStreamsDelete(v ActivityStreamsDelete)
	// PrependActivityStreamsDislike prepends a Dislike value to the front of
	// a list of the property "instrument". Invalidates all iterators.
	PrependActivityStreamsDislike(v ActivityStreamsDislike)
	// PrependActivityStreamsDocument prepends a Document value to the front
	// of a list of the property "instrument". Invalidates all iterators.
	PrependActivityStreamsDocument(v ActivityStreamsDocument)
	// PrependActivityStreamsEvent prepends a Event value to the front of a
	// list of the property "instrument". Invalidates all iterators.
	PrependActivityStreamsEvent(v ActivityStreamsEvent)
	// PrependActivityStreamsFlag prepends a Flag value to the front of a list
	// of the property "instrument". Invalidates all iterators.
	PrependActivityStreamsFlag(v ActivityStreamsFlag)
	// PrependActivityStreamsFollow prepends a Follow value to the front of a
	// list of the property "instrument". Invalidates all iterators.
	PrependActivityStreamsFollow(v ActivityStreamsFollow)
	// PrependActivityStreamsGroup prepends a Group value to the front of a
	// list of the property "instrument". Invalidates all iterators.
	PrependActivityStreamsGroup(v ActivityStreamsGroup)
	// PrependActivityStreamsIgnore prepends a Ignore value to the front of a
	// list of the property "instrument". Invalidates all iterators.
	PrependActivityStreamsIgnore(v ActivityStreamsIgnore)
	// PrependActivityStreamsImage prepends a Image value to the front of a
	// list of the property "instrument". Invalidates all iterators.
	PrependActivityStreamsImage(v ActivityStreamsImage)
	// PrependActivityStreamsIntransitiveActivity prepends a
	// IntransitiveActivity value to the front of a list of the property
	// "instrument". Invalidates all iterators.
	PrependActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// PrependActivityStreamsInvite prepends a Invite value to the front of a
	// list of the property "instrument". Invalidates all iterators.
	PrependActivityStreamsInvite(v ActivityStreamsInvite)
	// PrependActivityStreamsJoin prepends a Join value to the front of a list
	// of the property "instrument". Invalidates all iterators.
	PrependActivityStreamsJoin(v ActivityStreamsJoin)
	// PrependActivityStreamsLeave prepends a Leave value to the front of a
	// list of the property "instrument". Invalidates all iterators.
	PrependActivityStreamsLeave(v ActivityStreamsLeave)
	// PrependActivityStreamsLike prepends a Like value to the front of a list
	// of the property "instrument". Invalidates all iterators.
	PrependActivityStreamsLike(v ActivityStreamsLike)
	// PrependActivityStreamsLink prepends a Link value to the front of a list
	// of the property "instrument". Invalidates all iterators.
	PrependActivityStreamsLink(v ActivityStreamsLink)
	// PrependActivityStreamsListen prepends a Listen value to the front of a
	// list of the property "instrument". Invalidates all iterators.
	PrependActivityStreamsListen(v ActivityStreamsListen)
	// PrependActivityStreamsMention prepends a Mention value to the front of
	// a list of the property "instrument". Invalidates all iterators.
	PrependActivityStreamsMention(v ActivityStreamsMention)
	// PrependActivityStreamsMove prepends a Move value to the front of a list
	// of the property "instrument". Invalidates all iterators.
	PrependActivityStreamsMove(v ActivityStreamsMove)
	// PrependActivityStreamsNote prepends a Note value to the front of a list
	// of the property "instrument". Invalidates all iterators.
	PrependActivityStreamsNote(v ActivityStreamsNote)
	// PrependActivityStreamsObject prepends a Object value to the front of a
	// list of the property "instrument". Invalidates all iterators.
	PrependActivityStreamsObject(v ActivityStreamsObject)
	// PrependActivityStreamsOffer prepends a Offer value to the front of a
	// list of the property "instrument". Invalidates all iterators.
	PrependActivityStreamsOffer(v ActivityStreamsOffer)
	// PrependActivityStreamsOrderedCollection prepends a OrderedCollection
	// value to the front of a list of the property "instrument".
	// Invalidates all iterators.
	PrependActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// PrependActivityStreamsOrderedCollectionPage prepends a
	// OrderedCollectionPage value to the front of a list of the property
	// "instrument". Invalidates all iterators.
	PrependActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// PrependActivityStreamsOrganization prepends a Organization value to the
	// front of a list of the property "instrument". Invalidates all
	// iterators.
	PrependActivityStreamsOrganization(v ActivityStreamsOrganization)
	// PrependActivityStreamsPage prepends a Page value to the front of a list
	// of the property "instrument". Invalidates all iterators.
	PrependActivityStreamsPage(v ActivityStreamsPage)
	// PrependActivityStreamsPerson prepends a Person value to the front of a
	// list of the property "instrument". Invalidates all iterators.
	PrependActivityStreamsPerson(v ActivityStreamsPerson)
	// PrependActivityStreamsPlace prepends a Place value to the front of a
	// list of the property "instrument". Invalidates all iterators.
	PrependActivityStreamsPlace(v ActivityStreamsPlace)
	// PrependActivityStreamsProfile prepends a Profile value to the front of
	// a list of the property "instrument". Invalidates all iterators.
	PrependActivityStreamsProfile(v ActivityStreamsProfile)
	// PrependActivityStreamsQuestion prepends a Question value to the front
	// of a list of the property "instrument". Invalidates all iterators.
	PrependActivityStreamsQuestion(v ActivityStreamsQuestion)
	// PrependActivityStreamsRead prepends a Read value to the front of a list
	// of the property "instrument". Invalidates all iterators.
	PrependActivityStreamsRead(v ActivityStreamsRead)
	// PrependActivityStreamsReject prepends a Reject value to the front of a
	// list of the property "instrument". Invalidates all iterators.
	PrependActivityStreamsReject(v ActivityStreamsReject)
	// PrependActivityStreamsRelationship prepends a Relationship value to the
	// front of a list of the property "instrument". Invalidates all
	// iterators.
	PrependActivityStreamsRelationship(v ActivityStreamsRelationship)
	// PrependActivityStreamsRemove prepends a Remove value to the front of a
	// list of the property "instrument". Invalidates all iterators.
	PrependActivityStreamsRemove(v ActivityStreamsRemove)
	// PrependActivityStreamsService prepends a Service value to the front of
	// a list of the property "instrument". Invalidates all iterators.
	PrependActivityStreamsService(v ActivityStreamsService)
	// PrependActivityStreamsTentativeAccept prepends a TentativeAccept value
	// to the front of a list of the property "instrument". Invalidates
	// all iterators.
	PrependActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// PrependActivityStreamsTentativeReject prepends a TentativeReject value
	// to the front of a list of the property "instrument". Invalidates
	// all iterators.
	PrependActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// PrependActivityStreamsTombstone prepends a Tombstone value to the front
	// of a list of the property "instrument". Invalidates all iterators.
	PrependActivityStreamsTombstone(v ActivityStreamsTombstone)
	// PrependActivityStreamsTravel prepends a Travel value to the front of a
	// list of the property "instrument". Invalidates all iterators.
	PrependActivityStreamsTravel(v ActivityStreamsTravel)
	// PrependActivityStreamsUndo prepends a Undo value to the front of a list
	// of the property "instrument". Invalidates all iterators.
	PrependActivityStreamsUndo(v ActivityStreamsUndo)
	// PrependActivityStreamsUpdate prepends a Update value to the front of a
	// list of the property "instrument". Invalidates all iterators.
	PrependActivityStreamsUpdate(v ActivityStreamsUpdate)
	// PrependActivityStreamsVideo prepends a Video value to the front of a
	// list of the property "instrument". Invalidates all iterators.
	PrependActivityStreamsVideo(v ActivityStreamsVideo)
	// PrependActivityStreamsView prepends a View value to the front of a list
	// of the property "instrument". Invalidates all iterators.
	PrependActivityStreamsView(v ActivityStreamsView)
	// PrependForgeFedBranch prepends a Branch value to the front of a list of
	// the property "instrument". Invalidates all iterators.
	PrependForgeFedBranch(v ForgeFedBranch)
	// PrependForgeFedCommit prepends a Commit value to the front of a list of
	// the property "instrument". Invalidates all iterators.
	PrependForgeFedCommit(v ForgeFedCommit)
	// PrependForgeFedPush prepends a Push value to the front of a list of the
	// property "instrument". Invalidates all iterators.
	PrependForgeFedPush(v ForgeFedPush)
	// PrependForgeFedRepository prepends a Repository value to the front of a
	// list of the property "instrument". Invalidates all iterators.
	PrependForgeFedRepository(v ForgeFedRepository)
	// PrependForgeFedTicket prepends a Ticket value to the front of a list of
	// the property "instrument". Invalidates all iterators.
	PrependForgeFedTicket(v ForgeFedTicket)
	// PrependForgeFedTicketDependency prepends a TicketDependency value to
	// the front of a list of the property "instrument". Invalidates all
	// iterators.
	PrependForgeFedTicketDependency(v ForgeFedTicketDependency)
	// PrependIRI prepends an IRI value to the front of a list of the property
	// "instrument".
	PrependIRI(v *url.URL)
	// PrependTootEmoji prepends a Emoji value to the front of a list of the
	// property "instrument". Invalidates all iterators.
	PrependTootEmoji(v TootEmoji)
	// PrependTootIdentityProof prepends a IdentityProof value to the front of
	// a list of the property "instrument". Invalidates all iterators.
	PrependTootIdentityProof(v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "instrument". Invalidates all iterators. Returns an
	// error if the type is not a valid one to set for this property.
	PrependType(t Type) error
	// Remove deletes an element at the specified index from a list of the
	// property "instrument", regardless of its type. Panics if the index
	// is out of bounds. Invalidates all iterators.
	Remove(idx int)
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// SetActivityStreamsAccept sets a Accept value to be at the specified
	// index for the property "instrument". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsAccept(idx int, v ActivityStreamsAccept)
	// SetActivityStreamsActivity sets a Activity value to be at the specified
	// index for the property "instrument". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsActivity(idx int, v ActivityStreamsActivity)
	// SetActivityStreamsAdd sets a Add value to be at the specified index for
	// the property "instrument". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsAdd(idx int, v ActivityStreamsAdd)
	// SetActivityStreamsAnnounce sets a Announce value to be at the specified
	// index for the property "instrument". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsAnnounce(idx int, v ActivityStreamsAnnounce)
	// SetActivityStreamsApplication sets a Application value to be at the
	// specified index for the property "instrument". Panics if the index
	// is out of bounds. Invalidates all iterators.
	SetActivityStreamsApplication(idx int, v ActivityStreamsApplication)
	// SetActivityStreamsArrive sets a Arrive value to be at the specified
	// index for the property "instrument". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsArrive(idx int, v ActivityStreamsArrive)
	// SetActivityStreamsArticle sets a Article value to be at the specified
	// index for the property "instrument". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsArticle(idx int, v ActivityStreamsArticle)
	// SetActivityStreamsAudio sets a Audio value to be at the specified index
	// for the property "instrument". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsAudio(idx int, v ActivityStreamsAudio)
	// SetActivityStreamsBlock sets a Block value to be at the specified index
	// for the property "instrument". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsBlock(idx int, v ActivityStreamsBlock)
	// SetActivityStreamsCollection sets a Collection value to be at the
	// specified index for the property "instrument". Panics if the index
	// is out of bounds. Invalidates all iterators.
	SetActivityStreamsCollection(idx int, v ActivityStreamsCollection)
	// SetActivityStreamsCollectionPage sets a CollectionPage value to be at
	// the specified index for the property "instrument". Panics if the
	// index is out of bounds. Invalidates all iterators.
	SetActivityStreamsCollectionPage(idx int, v ActivityStreamsCollectionPage)
	// SetActivityStreamsCreate sets a Create value to be at the specified
	// index for the property "instrument". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsCreate(idx int, v ActivityStreamsCreate)
	// SetActivityStreamsDelete sets a Delete value to be at the specified
	// index for the property "instrument". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsDelete(idx int, v ActivityStreamsDelete)
	// SetActivityStreamsDislike sets a Dislike value to be at the specified
	// index for the property "instrument". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsDislike(idx int, v ActivityStreamsDislike)
	// SetActivityStreamsDocument sets a Document value to be at the specified
	// index for the property "instrument". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsDocument(idx int, v ActivityStreamsDocument)
	// SetActivityStreamsEvent sets a Event value to be at the specified index
	// for the property "instrument". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsEvent(idx int, v ActivityStreamsEvent)
	// SetActivityStreamsFlag sets a Flag value to be at the specified index
	// for the property "instrument". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsFlag(idx int, v ActivityStreamsFlag)
	// SetActivityStreamsFollow sets a Follow value to be at the specified
	// index for the property "instrument". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsFollow(idx int, v ActivityStreamsFollow)
	// SetActivityStreamsGroup sets a Group value to be at the specified index
	// for the property "instrument". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsGroup(idx int, v ActivityStreamsGroup)
	// SetActivityStreamsIgnore sets a Ignore value to be at the specified
	// index for the property "instrument". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsIgnore(idx int, v ActivityStreamsIgnore)
	// SetActivityStreamsImage sets a Image value to be at the specified index
	// for the property "instrument". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsImage(idx int, v ActivityStreamsImage)
	// SetActivityStreamsIntransitiveActivity sets a IntransitiveActivity
	// value to be at the specified index for the property "instrument".
	// Panics if the index is out of bounds. Invalidates all iterators.
	SetActivityStreamsIntransitiveActivity(idx int, v ActivityStreamsIntransitiveActivity)
	// SetActivityStreamsInvite sets a Invite value to be at the specified
	// index for the property "instrument". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsInvite(idx int, v ActivityStreamsInvite)
	// SetActivityStreamsJoin sets a Join value to be at the specified index
	// for the property "instrument". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsJoin(idx int, v ActivityStreamsJoin)
	// SetActivityStreamsLeave sets a Leave value to be at the specified index
	// for the property "instrument". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsLeave(idx int, v ActivityStreamsLeave)
	// SetActivityStreamsLike sets a Like value to be at the specified index
	// for the property "instrument". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsLike(idx int, v ActivityStreamsLike)
	// SetActivityStreamsLink sets a Link value to be at the specified index
	// for the property "instrument". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsLink(idx int, v ActivityStreamsLink)
	// SetActivityStreamsListen sets a Listen value to be at the specified
	// index for the property "instrument". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsListen(idx int, v ActivityStreamsListen)
	// SetActivityStreamsMention sets a Mention value to be at the specified
	// index for the property "instrument". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsMention(idx int, v ActivityStreamsMention)
	// SetActivityStreamsMove sets a Move value to be at the specified index
	// for the property "instrument". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsMove(idx int, v ActivityStreamsMove)
	// SetActivityStreamsNote sets a Note value to be at the specified index
	// for the property "instrument". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsNote(idx int, v ActivityStreamsNote)
	// SetActivityStreamsObject sets a Object value to be at the specified
	// index for the property "instrument". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsObject(idx int, v ActivityStreamsObject)
	// SetActivityStreamsOffer sets a Offer value to be at the specified index
	// for the property "instrument". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsOffer(idx int, v ActivityStreamsOffer)
	// SetActivityStreamsOrderedCollection sets a OrderedCollection value to
	// be at the specified index for the property "instrument". Panics if
	// the index is out of bounds. Invalidates all iterators.
	SetActivityStreamsOrderedCollection(idx int, v ActivityStreamsOrderedCollection)
	// SetActivityStreamsOrderedCollectionPage sets a OrderedCollectionPage
	// value to be at the specified index for the property "instrument".
	// Panics if the index is out of bounds. Invalidates all iterators.
	SetActivityStreamsOrderedCollectionPage(idx int, v ActivityStreamsOrderedCollectionPage)
	// SetActivityStreamsOrganization sets a Organization value to be at the
	// specified index for the property "instrument". Panics if the index
	// is out of bounds. Invalidates all iterators.
	SetActivityStreamsOrganization(idx int, v ActivityStreamsOrganization)
	// SetActivityStreamsPage sets a Page value to be at the specified index
	// for the property "instrument". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsPage(idx int, v ActivityStreamsPage)
	// SetActivityStreamsPerson sets a Person value to be at the specified
	// index for the property "instrument". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsPerson(idx int, v ActivityStreamsPerson)
	// SetActivityStreamsPlace sets a Place value to be at the specified index
	// for the property "instrument". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsPlace(idx int, v ActivityStreamsPlace)
	// SetActivityStreamsProfile sets a Profile value to be at the specified
	// index for the property "instrument". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsProfile(idx int, v ActivityStreamsProfile)
	// SetActivityStreamsQuestion sets a Question value to be at the specified
	// index for the property "instrument". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsQuestion(idx int, v ActivityStreamsQuestion)
	// SetActivityStreamsRead sets a Read value to be at the specified index
	// for the property "instrument". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsRead(idx int, v ActivityStreamsRead)
	// SetActivityStreamsReject sets a Reject value to be at the specified
	// index for the property "instrument". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsReject(idx int, v ActivityStreamsReject)
	// SetActivityStreamsRelationship sets a Relationship value to be at the
	// specified index for the property "instrument". Panics if the index
	// is out of bounds. Invalidates all iterators.
	SetActivityStreamsRelationship(idx int, v ActivityStreamsRelationship)
	// SetActivityStreamsRemove sets a Remove value to be at the specified
	// index for the property "instrument". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsRemove(idx int, v ActivityStreamsRemove)
	// SetActivityStreamsService sets a Service value to be at the specified
	// index for the property "instrument". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsService(idx int, v ActivityStreamsService)
	// SetActivityStreamsTentativeAccept sets a TentativeAccept value to be at
	// the specified index for the property "instrument". Panics if the
	// index is out of bounds. Invalidates all iterators.
	SetActivityStreamsTentativeAccept(idx int, v ActivityStreamsTentativeAccept)
	// SetActivityStreamsTentativeReject sets a TentativeReject value to be at
	// the specified index for the property "instrument". Panics if the
	// index is out of bounds. Invalidates all iterators.
	SetActivityStreamsTentativeReject(idx int, v ActivityStreamsTentativeReject)
	// SetActivityStreamsTombstone sets a Tombstone value to be at the
	// specified index for the property "instrument". Panics if the index
	// is out of bounds. Invalidates all iterators.
	SetActivityStreamsTombstone(idx int, v ActivityStreamsTombstone)
	// SetActivityStreamsTravel sets a Travel value to be at the specified
	// index for the property "instrument". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsTravel(idx int, v ActivityStreamsTravel)
	// SetActivityStreamsUndo sets a Undo value to be at the specified index
	// for the property "instrument". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsUndo(idx int, v ActivityStreamsUndo)
	// SetActivityStreamsUpdate sets a Update value to be at the specified
	// index for the property "instrument". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsUpdate(idx int, v ActivityStreamsUpdate)
	// SetActivityStreamsVideo sets a Video value to be at the specified index
	// for the property "instrument". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsVideo(idx int, v ActivityStreamsVideo)
	// SetActivityStreamsView sets a View value to be at the specified index
	// for the property "instrument". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsView(idx int, v ActivityStreamsView)
	// SetForgeFedBranch sets a Branch value to be at the specified index for
	// the property "instrument". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedBranch(idx int, v ForgeFedBranch)
	// SetForgeFedCommit sets a Commit value to be at the specified index for
	// the property "instrument". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedCommit(idx int, v ForgeFedCommit)
	// SetForgeFedPush sets a Push value to be at the specified index for the
	// property "instrument". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedPush(idx int, v ForgeFedPush)
	// SetForgeFedRepository sets a Repository value to be at the specified
	// index for the property "instrument". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetForgeFedRepository(idx int, v ForgeFedRepository)
	// SetForgeFedTicket sets a Ticket value to be at the specified index for
	// the property "instrument". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedTicket(idx int, v ForgeFedTicket)
	// SetForgeFedTicketDependency sets a TicketDependency value to be at the
	// specified index for the property "instrument". Panics if the index
	// is out of bounds. Invalidates all iterators.
	SetForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
	// SetIRI sets an IRI value to be at the specified index for the property
	// "instrument". Panics if the index is out of bounds.
	SetIRI(idx int, v *url.URL)
	// SetTootEmoji sets a Emoji value to be at the specified index for the
	// property "instrument". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetTootEmoji(idx int, v TootEmoji)
	// SetTootIdentityProof sets a IdentityProof value to be at the specified
	// index for the property "instrument". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetTootIdentityProof(idx int, v TootIdentityProof)
	// SetType sets an arbitrary type value to the specified index of the
	// property "instrument". Invalidates all iterators. Returns an error
	// if the type is not a valid one to set for this property. Panics if
	// the index is out of bounds.
	SetType(idx int, t Type) error
	// Swap swaps the location of values at two indices for the "instrument"
	// property.
	Swap(i, j int)
}

Identifies one or more objects used (or to be used) in the completion of an Activity.

Example 85 (https://www.w3.org/TR/activitystreams-vocabulary/#ex101-jsonld):

{
  "actor": {
    "name": "Sally",
    "type": "Person"
  },
  "instrument": {
    "name": "Acme Music Service",
    "type": "Service"
  },
  "object": "http://example.org/foo.mp3",
  "summary": "Sally listened to a piece of music on the Acme Music

Service",

  "type": "Listen"
}

type ActivityStreamsInstrumentPropertyIterator

type ActivityStreamsInstrumentPropertyIterator interface {
	// GetActivityStreamsAccept returns the value of this property. When
	// IsActivityStreamsAccept returns false, GetActivityStreamsAccept
	// will return an arbitrary value.
	GetActivityStreamsAccept() ActivityStreamsAccept
	// GetActivityStreamsActivity returns the value of this property. When
	// IsActivityStreamsActivity returns false, GetActivityStreamsActivity
	// will return an arbitrary value.
	GetActivityStreamsActivity() ActivityStreamsActivity
	// GetActivityStreamsAdd returns the value of this property. When
	// IsActivityStreamsAdd returns false, GetActivityStreamsAdd will
	// return an arbitrary value.
	GetActivityStreamsAdd() ActivityStreamsAdd
	// GetActivityStreamsAnnounce returns the value of this property. When
	// IsActivityStreamsAnnounce returns false, GetActivityStreamsAnnounce
	// will return an arbitrary value.
	GetActivityStreamsAnnounce() ActivityStreamsAnnounce
	// GetActivityStreamsApplication returns the value of this property. When
	// IsActivityStreamsApplication returns false,
	// GetActivityStreamsApplication will return an arbitrary value.
	GetActivityStreamsApplication() ActivityStreamsApplication
	// GetActivityStreamsArrive returns the value of this property. When
	// IsActivityStreamsArrive returns false, GetActivityStreamsArrive
	// will return an arbitrary value.
	GetActivityStreamsArrive() ActivityStreamsArrive
	// GetActivityStreamsArticle returns the value of this property. When
	// IsActivityStreamsArticle returns false, GetActivityStreamsArticle
	// will return an arbitrary value.
	GetActivityStreamsArticle() ActivityStreamsArticle
	// GetActivityStreamsAudio returns the value of this property. When
	// IsActivityStreamsAudio returns false, GetActivityStreamsAudio will
	// return an arbitrary value.
	GetActivityStreamsAudio() ActivityStreamsAudio
	// GetActivityStreamsBlock returns the value of this property. When
	// IsActivityStreamsBlock returns false, GetActivityStreamsBlock will
	// return an arbitrary value.
	GetActivityStreamsBlock() ActivityStreamsBlock
	// GetActivityStreamsCollection returns the value of this property. When
	// IsActivityStreamsCollection returns false,
	// GetActivityStreamsCollection will return an arbitrary value.
	GetActivityStreamsCollection() ActivityStreamsCollection
	// GetActivityStreamsCollectionPage returns the value of this property.
	// When IsActivityStreamsCollectionPage returns false,
	// GetActivityStreamsCollectionPage will return an arbitrary value.
	GetActivityStreamsCollectionPage() ActivityStreamsCollectionPage
	// GetActivityStreamsCreate returns the value of this property. When
	// IsActivityStreamsCreate returns false, GetActivityStreamsCreate
	// will return an arbitrary value.
	GetActivityStreamsCreate() ActivityStreamsCreate
	// GetActivityStreamsDelete returns the value of this property. When
	// IsActivityStreamsDelete returns false, GetActivityStreamsDelete
	// will return an arbitrary value.
	GetActivityStreamsDelete() ActivityStreamsDelete
	// GetActivityStreamsDislike returns the value of this property. When
	// IsActivityStreamsDislike returns false, GetActivityStreamsDislike
	// will return an arbitrary value.
	GetActivityStreamsDislike() ActivityStreamsDislike
	// GetActivityStreamsDocument returns the value of this property. When
	// IsActivityStreamsDocument returns false, GetActivityStreamsDocument
	// will return an arbitrary value.
	GetActivityStreamsDocument() ActivityStreamsDocument
	// GetActivityStreamsEvent returns the value of this property. When
	// IsActivityStreamsEvent returns false, GetActivityStreamsEvent will
	// return an arbitrary value.
	GetActivityStreamsEvent() ActivityStreamsEvent
	// GetActivityStreamsFlag returns the value of this property. When
	// IsActivityStreamsFlag returns false, GetActivityStreamsFlag will
	// return an arbitrary value.
	GetActivityStreamsFlag() ActivityStreamsFlag
	// GetActivityStreamsFollow returns the value of this property. When
	// IsActivityStreamsFollow returns false, GetActivityStreamsFollow
	// will return an arbitrary value.
	GetActivityStreamsFollow() ActivityStreamsFollow
	// GetActivityStreamsGroup returns the value of this property. When
	// IsActivityStreamsGroup returns false, GetActivityStreamsGroup will
	// return an arbitrary value.
	GetActivityStreamsGroup() ActivityStreamsGroup
	// GetActivityStreamsIgnore returns the value of this property. When
	// IsActivityStreamsIgnore returns false, GetActivityStreamsIgnore
	// will return an arbitrary value.
	GetActivityStreamsIgnore() ActivityStreamsIgnore
	// GetActivityStreamsImage returns the value of this property. When
	// IsActivityStreamsImage returns false, GetActivityStreamsImage will
	// return an arbitrary value.
	GetActivityStreamsImage() ActivityStreamsImage
	// GetActivityStreamsIntransitiveActivity returns the value of this
	// property. When IsActivityStreamsIntransitiveActivity returns false,
	// GetActivityStreamsIntransitiveActivity will return an arbitrary
	// value.
	GetActivityStreamsIntransitiveActivity() ActivityStreamsIntransitiveActivity
	// GetActivityStreamsInvite returns the value of this property. When
	// IsActivityStreamsInvite returns false, GetActivityStreamsInvite
	// will return an arbitrary value.
	GetActivityStreamsInvite() ActivityStreamsInvite
	// GetActivityStreamsJoin returns the value of this property. When
	// IsActivityStreamsJoin returns false, GetActivityStreamsJoin will
	// return an arbitrary value.
	GetActivityStreamsJoin() ActivityStreamsJoin
	// GetActivityStreamsLeave returns the value of this property. When
	// IsActivityStreamsLeave returns false, GetActivityStreamsLeave will
	// return an arbitrary value.
	GetActivityStreamsLeave() ActivityStreamsLeave
	// GetActivityStreamsLike returns the value of this property. When
	// IsActivityStreamsLike returns false, GetActivityStreamsLike will
	// return an arbitrary value.
	GetActivityStreamsLike() ActivityStreamsLike
	// GetActivityStreamsLink returns the value of this property. When
	// IsActivityStreamsLink returns false, GetActivityStreamsLink will
	// return an arbitrary value.
	GetActivityStreamsLink() ActivityStreamsLink
	// GetActivityStreamsListen returns the value of this property. When
	// IsActivityStreamsListen returns false, GetActivityStreamsListen
	// will return an arbitrary value.
	GetActivityStreamsListen() ActivityStreamsListen
	// GetActivityStreamsMention returns the value of this property. When
	// IsActivityStreamsMention returns false, GetActivityStreamsMention
	// will return an arbitrary value.
	GetActivityStreamsMention() ActivityStreamsMention
	// GetActivityStreamsMove returns the value of this property. When
	// IsActivityStreamsMove returns false, GetActivityStreamsMove will
	// return an arbitrary value.
	GetActivityStreamsMove() ActivityStreamsMove
	// GetActivityStreamsNote returns the value of this property. When
	// IsActivityStreamsNote returns false, GetActivityStreamsNote will
	// return an arbitrary value.
	GetActivityStreamsNote() ActivityStreamsNote
	// GetActivityStreamsObject returns the value of this property. When
	// IsActivityStreamsObject returns false, GetActivityStreamsObject
	// will return an arbitrary value.
	GetActivityStreamsObject() ActivityStreamsObject
	// GetActivityStreamsOffer returns the value of this property. When
	// IsActivityStreamsOffer returns false, GetActivityStreamsOffer will
	// return an arbitrary value.
	GetActivityStreamsOffer() ActivityStreamsOffer
	// GetActivityStreamsOrderedCollection returns the value of this property.
	// When IsActivityStreamsOrderedCollection returns false,
	// GetActivityStreamsOrderedCollection will return an arbitrary value.
	GetActivityStreamsOrderedCollection() ActivityStreamsOrderedCollection
	// GetActivityStreamsOrderedCollectionPage returns the value of this
	// property. When IsActivityStreamsOrderedCollectionPage returns
	// false, GetActivityStreamsOrderedCollectionPage will return an
	// arbitrary value.
	GetActivityStreamsOrderedCollectionPage() ActivityStreamsOrderedCollectionPage
	// GetActivityStreamsOrganization returns the value of this property. When
	// IsActivityStreamsOrganization returns false,
	// GetActivityStreamsOrganization will return an arbitrary value.
	GetActivityStreamsOrganization() ActivityStreamsOrganization
	// GetActivityStreamsPage returns the value of this property. When
	// IsActivityStreamsPage returns false, GetActivityStreamsPage will
	// return an arbitrary value.
	GetActivityStreamsPage() ActivityStreamsPage
	// GetActivityStreamsPerson returns the value of this property. When
	// IsActivityStreamsPerson returns false, GetActivityStreamsPerson
	// will return an arbitrary value.
	GetActivityStreamsPerson() ActivityStreamsPerson
	// GetActivityStreamsPlace returns the value of this property. When
	// IsActivityStreamsPlace returns false, GetActivityStreamsPlace will
	// return an arbitrary value.
	GetActivityStreamsPlace() ActivityStreamsPlace
	// GetActivityStreamsProfile returns the value of this property. When
	// IsActivityStreamsProfile returns false, GetActivityStreamsProfile
	// will return an arbitrary value.
	GetActivityStreamsProfile() ActivityStreamsProfile
	// GetActivityStreamsQuestion returns the value of this property. When
	// IsActivityStreamsQuestion returns false, GetActivityStreamsQuestion
	// will return an arbitrary value.
	GetActivityStreamsQuestion() ActivityStreamsQuestion
	// GetActivityStreamsRead returns the value of this property. When
	// IsActivityStreamsRead returns false, GetActivityStreamsRead will
	// return an arbitrary value.
	GetActivityStreamsRead() ActivityStreamsRead
	// GetActivityStreamsReject returns the value of this property. When
	// IsActivityStreamsReject returns false, GetActivityStreamsReject
	// will return an arbitrary value.
	GetActivityStreamsReject() ActivityStreamsReject
	// GetActivityStreamsRelationship returns the value of this property. When
	// IsActivityStreamsRelationship returns false,
	// GetActivityStreamsRelationship will return an arbitrary value.
	GetActivityStreamsRelationship() ActivityStreamsRelationship
	// GetActivityStreamsRemove returns the value of this property. When
	// IsActivityStreamsRemove returns false, GetActivityStreamsRemove
	// will return an arbitrary value.
	GetActivityStreamsRemove() ActivityStreamsRemove
	// GetActivityStreamsService returns the value of this property. When
	// IsActivityStreamsService returns false, GetActivityStreamsService
	// will return an arbitrary value.
	GetActivityStreamsService() ActivityStreamsService
	// GetActivityStreamsTentativeAccept returns the value of this property.
	// When IsActivityStreamsTentativeAccept returns false,
	// GetActivityStreamsTentativeAccept will return an arbitrary value.
	GetActivityStreamsTentativeAccept() ActivityStreamsTentativeAccept
	// GetActivityStreamsTentativeReject returns the value of this property.
	// When IsActivityStreamsTentativeReject returns false,
	// GetActivityStreamsTentativeReject will return an arbitrary value.
	GetActivityStreamsTentativeReject() ActivityStreamsTentativeReject
	// GetActivityStreamsTombstone returns the value of this property. When
	// IsActivityStreamsTombstone returns false,
	// GetActivityStreamsTombstone will return an arbitrary value.
	GetActivityStreamsTombstone() ActivityStreamsTombstone
	// GetActivityStreamsTravel returns the value of this property. When
	// IsActivityStreamsTravel returns false, GetActivityStreamsTravel
	// will return an arbitrary value.
	GetActivityStreamsTravel() ActivityStreamsTravel
	// GetActivityStreamsUndo returns the value of this property. When
	// IsActivityStreamsUndo returns false, GetActivityStreamsUndo will
	// return an arbitrary value.
	GetActivityStreamsUndo() ActivityStreamsUndo
	// GetActivityStreamsUpdate returns the value of this property. When
	// IsActivityStreamsUpdate returns false, GetActivityStreamsUpdate
	// will return an arbitrary value.
	GetActivityStreamsUpdate() ActivityStreamsUpdate
	// GetActivityStreamsVideo returns the value of this property. When
	// IsActivityStreamsVideo returns false, GetActivityStreamsVideo will
	// return an arbitrary value.
	GetActivityStreamsVideo() ActivityStreamsVideo
	// GetActivityStreamsView returns the value of this property. When
	// IsActivityStreamsView returns false, GetActivityStreamsView will
	// return an arbitrary value.
	GetActivityStreamsView() ActivityStreamsView
	// GetForgeFedBranch returns the value of this property. When
	// IsForgeFedBranch returns false, GetForgeFedBranch will return an
	// arbitrary value.
	GetForgeFedBranch() ForgeFedBranch
	// GetForgeFedCommit returns the value of this property. When
	// IsForgeFedCommit returns false, GetForgeFedCommit will return an
	// arbitrary value.
	GetForgeFedCommit() ForgeFedCommit
	// GetForgeFedPush returns the value of this property. When IsForgeFedPush
	// returns false, GetForgeFedPush will return an arbitrary value.
	GetForgeFedPush() ForgeFedPush
	// GetForgeFedRepository returns the value of this property. When
	// IsForgeFedRepository returns false, GetForgeFedRepository will
	// return an arbitrary value.
	GetForgeFedRepository() ForgeFedRepository
	// GetForgeFedTicket returns the value of this property. When
	// IsForgeFedTicket returns false, GetForgeFedTicket will return an
	// arbitrary value.
	GetForgeFedTicket() ForgeFedTicket
	// GetForgeFedTicketDependency returns the value of this property. When
	// IsForgeFedTicketDependency returns false,
	// GetForgeFedTicketDependency will return an arbitrary value.
	GetForgeFedTicketDependency() ForgeFedTicketDependency
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return an arbitrary value.
	GetIRI() *url.URL
	// GetTootEmoji returns the value of this property. When IsTootEmoji
	// returns false, GetTootEmoji will return an arbitrary value.
	GetTootEmoji() TootEmoji
	// GetTootIdentityProof returns the value of this property. When
	// IsTootIdentityProof returns false, GetTootIdentityProof will return
	// an arbitrary value.
	GetTootIdentityProof() TootIdentityProof
	// GetType returns the value in this property as a Type. Returns nil if
	// the value is not an ActivityStreams type, such as an IRI or another
	// value.
	GetType() Type
	// HasAny returns true if any of the different values is set.
	HasAny() bool
	// IsActivityStreamsAccept returns true if this property has a type of
	// "Accept". When true, use the GetActivityStreamsAccept and
	// SetActivityStreamsAccept methods to access and set this property.
	IsActivityStreamsAccept() bool
	// IsActivityStreamsActivity returns true if this property has a type of
	// "Activity". When true, use the GetActivityStreamsActivity and
	// SetActivityStreamsActivity methods to access and set this property.
	IsActivityStreamsActivity() bool
	// IsActivityStreamsAdd returns true if this property has a type of "Add".
	// When true, use the GetActivityStreamsAdd and SetActivityStreamsAdd
	// methods to access and set this property.
	IsActivityStreamsAdd() bool
	// IsActivityStreamsAnnounce returns true if this property has a type of
	// "Announce". When true, use the GetActivityStreamsAnnounce and
	// SetActivityStreamsAnnounce methods to access and set this property.
	IsActivityStreamsAnnounce() bool
	// IsActivityStreamsApplication returns true if this property has a type
	// of "Application". When true, use the GetActivityStreamsApplication
	// and SetActivityStreamsApplication methods to access and set this
	// property.
	IsActivityStreamsApplication() bool
	// IsActivityStreamsArrive returns true if this property has a type of
	// "Arrive". When true, use the GetActivityStreamsArrive and
	// SetActivityStreamsArrive methods to access and set this property.
	IsActivityStreamsArrive() bool
	// IsActivityStreamsArticle returns true if this property has a type of
	// "Article". When true, use the GetActivityStreamsArticle and
	// SetActivityStreamsArticle methods to access and set this property.
	IsActivityStreamsArticle() bool
	// IsActivityStreamsAudio returns true if this property has a type of
	// "Audio". When true, use the GetActivityStreamsAudio and
	// SetActivityStreamsAudio methods to access and set this property.
	IsActivityStreamsAudio() bool
	// IsActivityStreamsBlock returns true if this property has a type of
	// "Block". When true, use the GetActivityStreamsBlock and
	// SetActivityStreamsBlock methods to access and set this property.
	IsActivityStreamsBlock() bool
	// IsActivityStreamsCollection returns true if this property has a type of
	// "Collection". When true, use the GetActivityStreamsCollection and
	// SetActivityStreamsCollection methods to access and set this
	// property.
	IsActivityStreamsCollection() bool
	// IsActivityStreamsCollectionPage returns true if this property has a
	// type of "CollectionPage". When true, use the
	// GetActivityStreamsCollectionPage and
	// SetActivityStreamsCollectionPage methods to access and set this
	// property.
	IsActivityStreamsCollectionPage() bool
	// IsActivityStreamsCreate returns true if this property has a type of
	// "Create". When true, use the GetActivityStreamsCreate and
	// SetActivityStreamsCreate methods to access and set this property.
	IsActivityStreamsCreate() bool
	// IsActivityStreamsDelete returns true if this property has a type of
	// "Delete". When true, use the GetActivityStreamsDelete and
	// SetActivityStreamsDelete methods to access and set this property.
	IsActivityStreamsDelete() bool
	// IsActivityStreamsDislike returns true if this property has a type of
	// "Dislike". When true, use the GetActivityStreamsDislike and
	// SetActivityStreamsDislike methods to access and set this property.
	IsActivityStreamsDislike() bool
	// IsActivityStreamsDocument returns true if this property has a type of
	// "Document". When true, use the GetActivityStreamsDocument and
	// SetActivityStreamsDocument methods to access and set this property.
	IsActivityStreamsDocument() bool
	// IsActivityStreamsEvent returns true if this property has a type of
	// "Event". When true, use the GetActivityStreamsEvent and
	// SetActivityStreamsEvent methods to access and set this property.
	IsActivityStreamsEvent() bool
	// IsActivityStreamsFlag returns true if this property has a type of
	// "Flag". When true, use the GetActivityStreamsFlag and
	// SetActivityStreamsFlag methods to access and set this property.
	IsActivityStreamsFlag() bool
	// IsActivityStreamsFollow returns true if this property has a type of
	// "Follow". When true, use the GetActivityStreamsFollow and
	// SetActivityStreamsFollow methods to access and set this property.
	IsActivityStreamsFollow() bool
	// IsActivityStreamsGroup returns true if this property has a type of
	// "Group". When true, use the GetActivityStreamsGroup and
	// SetActivityStreamsGroup methods to access and set this property.
	IsActivityStreamsGroup() bool
	// IsActivityStreamsIgnore returns true if this property has a type of
	// "Ignore". When true, use the GetActivityStreamsIgnore and
	// SetActivityStreamsIgnore methods to access and set this property.
	IsActivityStreamsIgnore() bool
	// IsActivityStreamsImage returns true if this property has a type of
	// "Image". When true, use the GetActivityStreamsImage and
	// SetActivityStreamsImage methods to access and set this property.
	IsActivityStreamsImage() bool
	// IsActivityStreamsIntransitiveActivity returns true if this property has
	// a type of "IntransitiveActivity". When true, use the
	// GetActivityStreamsIntransitiveActivity and
	// SetActivityStreamsIntransitiveActivity methods to access and set
	// this property.
	IsActivityStreamsIntransitiveActivity() bool
	// IsActivityStreamsInvite returns true if this property has a type of
	// "Invite". When true, use the GetActivityStreamsInvite and
	// SetActivityStreamsInvite methods to access and set this property.
	IsActivityStreamsInvite() bool
	// IsActivityStreamsJoin returns true if this property has a type of
	// "Join". When true, use the GetActivityStreamsJoin and
	// SetActivityStreamsJoin methods to access and set this property.
	IsActivityStreamsJoin() bool
	// IsActivityStreamsLeave returns true if this property has a type of
	// "Leave". When true, use the GetActivityStreamsLeave and
	// SetActivityStreamsLeave methods to access and set this property.
	IsActivityStreamsLeave() bool
	// IsActivityStreamsLike returns true if this property has a type of
	// "Like". When true, use the GetActivityStreamsLike and
	// SetActivityStreamsLike methods to access and set this property.
	IsActivityStreamsLike() bool
	// IsActivityStreamsLink returns true if this property has a type of
	// "Link". When true, use the GetActivityStreamsLink and
	// SetActivityStreamsLink methods to access and set this property.
	IsActivityStreamsLink() bool
	// IsActivityStreamsListen returns true if this property has a type of
	// "Listen". When true, use the GetActivityStreamsListen and
	// SetActivityStreamsListen methods to access and set this property.
	IsActivityStreamsListen() bool
	// IsActivityStreamsMention returns true if this property has a type of
	// "Mention". When true, use the GetActivityStreamsMention and
	// SetActivityStreamsMention methods to access and set this property.
	IsActivityStreamsMention() bool
	// IsActivityStreamsMove returns true if this property has a type of
	// "Move". When true, use the GetActivityStreamsMove and
	// SetActivityStreamsMove methods to access and set this property.
	IsActivityStreamsMove() bool
	// IsActivityStreamsNote returns true if this property has a type of
	// "Note". When true, use the GetActivityStreamsNote and
	// SetActivityStreamsNote methods to access and set this property.
	IsActivityStreamsNote() bool
	// IsActivityStreamsObject returns true if this property has a type of
	// "Object". When true, use the GetActivityStreamsObject and
	// SetActivityStreamsObject methods to access and set this property.
	IsActivityStreamsObject() bool
	// IsActivityStreamsOffer returns true if this property has a type of
	// "Offer". When true, use the GetActivityStreamsOffer and
	// SetActivityStreamsOffer methods to access and set this property.
	IsActivityStreamsOffer() bool
	// IsActivityStreamsOrderedCollection returns true if this property has a
	// type of "OrderedCollection". When true, use the
	// GetActivityStreamsOrderedCollection and
	// SetActivityStreamsOrderedCollection methods to access and set this
	// property.
	IsActivityStreamsOrderedCollection() bool
	// IsActivityStreamsOrderedCollectionPage returns true if this property
	// has a type of "OrderedCollectionPage". When true, use the
	// GetActivityStreamsOrderedCollectionPage and
	// SetActivityStreamsOrderedCollectionPage methods to access and set
	// this property.
	IsActivityStreamsOrderedCollectionPage() bool
	// IsActivityStreamsOrganization returns true if this property has a type
	// of "Organization". When true, use the
	// GetActivityStreamsOrganization and SetActivityStreamsOrganization
	// methods to access and set this property.
	IsActivityStreamsOrganization() bool
	// IsActivityStreamsPage returns true if this property has a type of
	// "Page". When true, use the GetActivityStreamsPage and
	// SetActivityStreamsPage methods to access and set this property.
	IsActivityStreamsPage() bool
	// IsActivityStreamsPerson returns true if this property has a type of
	// "Person". When true, use the GetActivityStreamsPerson and
	// SetActivityStreamsPerson methods to access and set this property.
	IsActivityStreamsPerson() bool
	// IsActivityStreamsPlace returns true if this property has a type of
	// "Place". When true, use the GetActivityStreamsPlace and
	// SetActivityStreamsPlace methods to access and set this property.
	IsActivityStreamsPlace() bool
	// IsActivityStreamsProfile returns true if this property has a type of
	// "Profile". When true, use the GetActivityStreamsProfile and
	// SetActivityStreamsProfile methods to access and set this property.
	IsActivityStreamsProfile() bool
	// IsActivityStreamsQuestion returns true if this property has a type of
	// "Question". When true, use the GetActivityStreamsQuestion and
	// SetActivityStreamsQuestion methods to access and set this property.
	IsActivityStreamsQuestion() bool
	// IsActivityStreamsRead returns true if this property has a type of
	// "Read". When true, use the GetActivityStreamsRead and
	// SetActivityStreamsRead methods to access and set this property.
	IsActivityStreamsRead() bool
	// IsActivityStreamsReject returns true if this property has a type of
	// "Reject". When true, use the GetActivityStreamsReject and
	// SetActivityStreamsReject methods to access and set this property.
	IsActivityStreamsReject() bool
	// IsActivityStreamsRelationship returns true if this property has a type
	// of "Relationship". When true, use the
	// GetActivityStreamsRelationship and SetActivityStreamsRelationship
	// methods to access and set this property.
	IsActivityStreamsRelationship() bool
	// IsActivityStreamsRemove returns true if this property has a type of
	// "Remove". When true, use the GetActivityStreamsRemove and
	// SetActivityStreamsRemove methods to access and set this property.
	IsActivityStreamsRemove() bool
	// IsActivityStreamsService returns true if this property has a type of
	// "Service". When true, use the GetActivityStreamsService and
	// SetActivityStreamsService methods to access and set this property.
	IsActivityStreamsService() bool
	// IsActivityStreamsTentativeAccept returns true if this property has a
	// type of "TentativeAccept". When true, use the
	// GetActivityStreamsTentativeAccept and
	// SetActivityStreamsTentativeAccept methods to access and set this
	// property.
	IsActivityStreamsTentativeAccept() bool
	// IsActivityStreamsTentativeReject returns true if this property has a
	// type of "TentativeReject". When true, use the
	// GetActivityStreamsTentativeReject and
	// SetActivityStreamsTentativeReject methods to access and set this
	// property.
	IsActivityStreamsTentativeReject() bool
	// IsActivityStreamsTombstone returns true if this property has a type of
	// "Tombstone". When true, use the GetActivityStreamsTombstone and
	// SetActivityStreamsTombstone methods to access and set this property.
	IsActivityStreamsTombstone() bool
	// IsActivityStreamsTravel returns true if this property has a type of
	// "Travel". When true, use the GetActivityStreamsTravel and
	// SetActivityStreamsTravel methods to access and set this property.
	IsActivityStreamsTravel() bool
	// IsActivityStreamsUndo returns true if this property has a type of
	// "Undo". When true, use the GetActivityStreamsUndo and
	// SetActivityStreamsUndo methods to access and set this property.
	IsActivityStreamsUndo() bool
	// IsActivityStreamsUpdate returns true if this property has a type of
	// "Update". When true, use the GetActivityStreamsUpdate and
	// SetActivityStreamsUpdate methods to access and set this property.
	IsActivityStreamsUpdate() bool
	// IsActivityStreamsVideo returns true if this property has a type of
	// "Video". When true, use the GetActivityStreamsVideo and
	// SetActivityStreamsVideo methods to access and set this property.
	IsActivityStreamsVideo() bool
	// IsActivityStreamsView returns true if this property has a type of
	// "View". When true, use the GetActivityStreamsView and
	// SetActivityStreamsView methods to access and set this property.
	IsActivityStreamsView() bool
	// IsForgeFedBranch returns true if this property has a type of "Branch".
	// When true, use the GetForgeFedBranch and SetForgeFedBranch methods
	// to access and set this property.
	IsForgeFedBranch() bool
	// IsForgeFedCommit returns true if this property has a type of "Commit".
	// When true, use the GetForgeFedCommit and SetForgeFedCommit methods
	// to access and set this property.
	IsForgeFedCommit() bool
	// IsForgeFedPush returns true if this property has a type of "Push". When
	// true, use the GetForgeFedPush and SetForgeFedPush methods to access
	// and set this property.
	IsForgeFedPush() bool
	// IsForgeFedRepository returns true if this property has a type of
	// "Repository". When true, use the GetForgeFedRepository and
	// SetForgeFedRepository methods to access and set this property.
	IsForgeFedRepository() bool
	// IsForgeFedTicket returns true if this property has a type of "Ticket".
	// When true, use the GetForgeFedTicket and SetForgeFedTicket methods
	// to access and set this property.
	IsForgeFedTicket() bool
	// IsForgeFedTicketDependency returns true if this property has a type of
	// "TicketDependency". When true, use the GetForgeFedTicketDependency
	// and SetForgeFedTicketDependency methods to access and set this
	// property.
	IsForgeFedTicketDependency() bool
	// IsIRI returns true if this property is an IRI. When true, use GetIRI
	// and SetIRI to access and set this property
	IsIRI() bool
	// IsTootEmoji returns true if this property has a type of "Emoji". When
	// true, use the GetTootEmoji and SetTootEmoji methods to access and
	// set this property.
	IsTootEmoji() bool
	// IsTootIdentityProof returns true if this property has a type of
	// "IdentityProof". When true, use the GetTootIdentityProof and
	// SetTootIdentityProof methods to access and set this property.
	IsTootIdentityProof() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsInstrumentPropertyIterator) bool
	// Name returns the name of this property: "ActivityStreamsInstrument".
	Name() string
	// Next returns the next iterator, or nil if there is no next iterator.
	Next() ActivityStreamsInstrumentPropertyIterator
	// Prev returns the previous iterator, or nil if there is no previous
	// iterator.
	Prev() ActivityStreamsInstrumentPropertyIterator
	// SetActivityStreamsAccept sets the value of this property. Calling
	// IsActivityStreamsAccept afterwards returns true.
	SetActivityStreamsAccept(v ActivityStreamsAccept)
	// SetActivityStreamsActivity sets the value of this property. Calling
	// IsActivityStreamsActivity afterwards returns true.
	SetActivityStreamsActivity(v ActivityStreamsActivity)
	// SetActivityStreamsAdd sets the value of this property. Calling
	// IsActivityStreamsAdd afterwards returns true.
	SetActivityStreamsAdd(v ActivityStreamsAdd)
	// SetActivityStreamsAnnounce sets the value of this property. Calling
	// IsActivityStreamsAnnounce afterwards returns true.
	SetActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// SetActivityStreamsApplication sets the value of this property. Calling
	// IsActivityStreamsApplication afterwards returns true.
	SetActivityStreamsApplication(v ActivityStreamsApplication)
	// SetActivityStreamsArrive sets the value of this property. Calling
	// IsActivityStreamsArrive afterwards returns true.
	SetActivityStreamsArrive(v ActivityStreamsArrive)
	// SetActivityStreamsArticle sets the value of this property. Calling
	// IsActivityStreamsArticle afterwards returns true.
	SetActivityStreamsArticle(v ActivityStreamsArticle)
	// SetActivityStreamsAudio sets the value of this property. Calling
	// IsActivityStreamsAudio afterwards returns true.
	SetActivityStreamsAudio(v ActivityStreamsAudio)
	// SetActivityStreamsBlock sets the value of this property. Calling
	// IsActivityStreamsBlock afterwards returns true.
	SetActivityStreamsBlock(v ActivityStreamsBlock)
	// SetActivityStreamsCollection sets the value of this property. Calling
	// IsActivityStreamsCollection afterwards returns true.
	SetActivityStreamsCollection(v ActivityStreamsCollection)
	// SetActivityStreamsCollectionPage sets the value of this property.
	// Calling IsActivityStreamsCollectionPage afterwards returns true.
	SetActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// SetActivityStreamsCreate sets the value of this property. Calling
	// IsActivityStreamsCreate afterwards returns true.
	SetActivityStreamsCreate(v ActivityStreamsCreate)
	// SetActivityStreamsDelete sets the value of this property. Calling
	// IsActivityStreamsDelete afterwards returns true.
	SetActivityStreamsDelete(v ActivityStreamsDelete)
	// SetActivityStreamsDislike sets the value of this property. Calling
	// IsActivityStreamsDislike afterwards returns true.
	SetActivityStreamsDislike(v ActivityStreamsDislike)
	// SetActivityStreamsDocument sets the value of this property. Calling
	// IsActivityStreamsDocument afterwards returns true.
	SetActivityStreamsDocument(v ActivityStreamsDocument)
	// SetActivityStreamsEvent sets the value of this property. Calling
	// IsActivityStreamsEvent afterwards returns true.
	SetActivityStreamsEvent(v ActivityStreamsEvent)
	// SetActivityStreamsFlag sets the value of this property. Calling
	// IsActivityStreamsFlag afterwards returns true.
	SetActivityStreamsFlag(v ActivityStreamsFlag)
	// SetActivityStreamsFollow sets the value of this property. Calling
	// IsActivityStreamsFollow afterwards returns true.
	SetActivityStreamsFollow(v ActivityStreamsFollow)
	// SetActivityStreamsGroup sets the value of this property. Calling
	// IsActivityStreamsGroup afterwards returns true.
	SetActivityStreamsGroup(v ActivityStreamsGroup)
	// SetActivityStreamsIgnore sets the value of this property. Calling
	// IsActivityStreamsIgnore afterwards returns true.
	SetActivityStreamsIgnore(v ActivityStreamsIgnore)
	// SetActivityStreamsImage sets the value of this property. Calling
	// IsActivityStreamsImage afterwards returns true.
	SetActivityStreamsImage(v ActivityStreamsImage)
	// SetActivityStreamsIntransitiveActivity sets the value of this property.
	// Calling IsActivityStreamsIntransitiveActivity afterwards returns
	// true.
	SetActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// SetActivityStreamsInvite sets the value of this property. Calling
	// IsActivityStreamsInvite afterwards returns true.
	SetActivityStreamsInvite(v ActivityStreamsInvite)
	// SetActivityStreamsJoin sets the value of this property. Calling
	// IsActivityStreamsJoin afterwards returns true.
	SetActivityStreamsJoin(v ActivityStreamsJoin)
	// SetActivityStreamsLeave sets the value of this property. Calling
	// IsActivityStreamsLeave afterwards returns true.
	SetActivityStreamsLeave(v ActivityStreamsLeave)
	// SetActivityStreamsLike sets the value of this property. Calling
	// IsActivityStreamsLike afterwards returns true.
	SetActivityStreamsLike(v ActivityStreamsLike)
	// SetActivityStreamsLink sets the value of this property. Calling
	// IsActivityStreamsLink afterwards returns true.
	SetActivityStreamsLink(v ActivityStreamsLink)
	// SetActivityStreamsListen sets the value of this property. Calling
	// IsActivityStreamsListen afterwards returns true.
	SetActivityStreamsListen(v ActivityStreamsListen)
	// SetActivityStreamsMention sets the value of this property. Calling
	// IsActivityStreamsMention afterwards returns true.
	SetActivityStreamsMention(v ActivityStreamsMention)
	// SetActivityStreamsMove sets the value of this property. Calling
	// IsActivityStreamsMove afterwards returns true.
	SetActivityStreamsMove(v ActivityStreamsMove)
	// SetActivityStreamsNote sets the value of this property. Calling
	// IsActivityStreamsNote afterwards returns true.
	SetActivityStreamsNote(v ActivityStreamsNote)
	// SetActivityStreamsObject sets the value of this property. Calling
	// IsActivityStreamsObject afterwards returns true.
	SetActivityStreamsObject(v ActivityStreamsObject)
	// SetActivityStreamsOffer sets the value of this property. Calling
	// IsActivityStreamsOffer afterwards returns true.
	SetActivityStreamsOffer(v ActivityStreamsOffer)
	// SetActivityStreamsOrderedCollection sets the value of this property.
	// Calling IsActivityStreamsOrderedCollection afterwards returns true.
	SetActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// SetActivityStreamsOrderedCollectionPage sets the value of this
	// property. Calling IsActivityStreamsOrderedCollectionPage afterwards
	// returns true.
	SetActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// SetActivityStreamsOrganization sets the value of this property. Calling
	// IsActivityStreamsOrganization afterwards returns true.
	SetActivityStreamsOrganization(v ActivityStreamsOrganization)
	// SetActivityStreamsPage sets the value of this property. Calling
	// IsActivityStreamsPage afterwards returns true.
	SetActivityStreamsPage(v ActivityStreamsPage)
	// SetActivityStreamsPerson sets the value of this property. Calling
	// IsActivityStreamsPerson afterwards returns true.
	SetActivityStreamsPerson(v ActivityStreamsPerson)
	// SetActivityStreamsPlace sets the value of this property. Calling
	// IsActivityStreamsPlace afterwards returns true.
	SetActivityStreamsPlace(v ActivityStreamsPlace)
	// SetActivityStreamsProfile sets the value of this property. Calling
	// IsActivityStreamsProfile afterwards returns true.
	SetActivityStreamsProfile(v ActivityStreamsProfile)
	// SetActivityStreamsQuestion sets the value of this property. Calling
	// IsActivityStreamsQuestion afterwards returns true.
	SetActivityStreamsQuestion(v ActivityStreamsQuestion)
	// SetActivityStreamsRead sets the value of this property. Calling
	// IsActivityStreamsRead afterwards returns true.
	SetActivityStreamsRead(v ActivityStreamsRead)
	// SetActivityStreamsReject sets the value of this property. Calling
	// IsActivityStreamsReject afterwards returns true.
	SetActivityStreamsReject(v ActivityStreamsReject)
	// SetActivityStreamsRelationship sets the value of this property. Calling
	// IsActivityStreamsRelationship afterwards returns true.
	SetActivityStreamsRelationship(v ActivityStreamsRelationship)
	// SetActivityStreamsRemove sets the value of this property. Calling
	// IsActivityStreamsRemove afterwards returns true.
	SetActivityStreamsRemove(v ActivityStreamsRemove)
	// SetActivityStreamsService sets the value of this property. Calling
	// IsActivityStreamsService afterwards returns true.
	SetActivityStreamsService(v ActivityStreamsService)
	// SetActivityStreamsTentativeAccept sets the value of this property.
	// Calling IsActivityStreamsTentativeAccept afterwards returns true.
	SetActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// SetActivityStreamsTentativeReject sets the value of this property.
	// Calling IsActivityStreamsTentativeReject afterwards returns true.
	SetActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// SetActivityStreamsTombstone sets the value of this property. Calling
	// IsActivityStreamsTombstone afterwards returns true.
	SetActivityStreamsTombstone(v ActivityStreamsTombstone)
	// SetActivityStreamsTravel sets the value of this property. Calling
	// IsActivityStreamsTravel afterwards returns true.
	SetActivityStreamsTravel(v ActivityStreamsTravel)
	// SetActivityStreamsUndo sets the value of this property. Calling
	// IsActivityStreamsUndo afterwards returns true.
	SetActivityStreamsUndo(v ActivityStreamsUndo)
	// SetActivityStreamsUpdate sets the value of this property. Calling
	// IsActivityStreamsUpdate afterwards returns true.
	SetActivityStreamsUpdate(v ActivityStreamsUpdate)
	// SetActivityStreamsVideo sets the value of this property. Calling
	// IsActivityStreamsVideo afterwards returns true.
	SetActivityStreamsVideo(v ActivityStreamsVideo)
	// SetActivityStreamsView sets the value of this property. Calling
	// IsActivityStreamsView afterwards returns true.
	SetActivityStreamsView(v ActivityStreamsView)
	// SetForgeFedBranch sets the value of this property. Calling
	// IsForgeFedBranch afterwards returns true.
	SetForgeFedBranch(v ForgeFedBranch)
	// SetForgeFedCommit sets the value of this property. Calling
	// IsForgeFedCommit afterwards returns true.
	SetForgeFedCommit(v ForgeFedCommit)
	// SetForgeFedPush sets the value of this property. Calling IsForgeFedPush
	// afterwards returns true.
	SetForgeFedPush(v ForgeFedPush)
	// SetForgeFedRepository sets the value of this property. Calling
	// IsForgeFedRepository afterwards returns true.
	SetForgeFedRepository(v ForgeFedRepository)
	// SetForgeFedTicket sets the value of this property. Calling
	// IsForgeFedTicket afterwards returns true.
	SetForgeFedTicket(v ForgeFedTicket)
	// SetForgeFedTicketDependency sets the value of this property. Calling
	// IsForgeFedTicketDependency afterwards returns true.
	SetForgeFedTicketDependency(v ForgeFedTicketDependency)
	// SetIRI sets the value of this property. Calling IsIRI afterwards
	// returns true.
	SetIRI(v *url.URL)
	// SetTootEmoji sets the value of this property. Calling IsTootEmoji
	// afterwards returns true.
	SetTootEmoji(v TootEmoji)
	// SetTootIdentityProof sets the value of this property. Calling
	// IsTootIdentityProof afterwards returns true.
	SetTootIdentityProof(v TootIdentityProof)
	// SetType attempts to set the property for the arbitrary type. Returns an
	// error if it is not a valid type to set on this property.
	SetType(t Type) error
}

ActivityStreamsInstrumentPropertyIterator represents a single value for the "instrument" property.

type ActivityStreamsIntransitiveActivity

type ActivityStreamsIntransitiveActivity interface {
	// GetActivityStreamsActor returns the "actor" property if it exists, and
	// nil otherwise.
	GetActivityStreamsActor() ActivityStreamsActorProperty
	// GetActivityStreamsAltitude returns the "altitude" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAltitude() ActivityStreamsAltitudeProperty
	// GetActivityStreamsAttachment returns the "attachment" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAttachment() ActivityStreamsAttachmentProperty
	// GetActivityStreamsAttributedTo returns the "attributedTo" property if
	// it exists, and nil otherwise.
	GetActivityStreamsAttributedTo() ActivityStreamsAttributedToProperty
	// GetActivityStreamsAudience returns the "audience" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAudience() ActivityStreamsAudienceProperty
	// GetActivityStreamsBcc returns the "bcc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBcc() ActivityStreamsBccProperty
	// GetActivityStreamsBto returns the "bto" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBto() ActivityStreamsBtoProperty
	// GetActivityStreamsCc returns the "cc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsCc() ActivityStreamsCcProperty
	// GetActivityStreamsContent returns the "content" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContent() ActivityStreamsContentProperty
	// GetActivityStreamsContext returns the "context" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContext() ActivityStreamsContextProperty
	// GetActivityStreamsDuration returns the "duration" property if it
	// exists, and nil otherwise.
	GetActivityStreamsDuration() ActivityStreamsDurationProperty
	// GetActivityStreamsEndTime returns the "endTime" property if it exists,
	// and nil otherwise.
	GetActivityStreamsEndTime() ActivityStreamsEndTimeProperty
	// GetActivityStreamsGenerator returns the "generator" property if it
	// exists, and nil otherwise.
	GetActivityStreamsGenerator() ActivityStreamsGeneratorProperty
	// GetActivityStreamsIcon returns the "icon" property if it exists, and
	// nil otherwise.
	GetActivityStreamsIcon() ActivityStreamsIconProperty
	// GetActivityStreamsImage returns the "image" property if it exists, and
	// nil otherwise.
	GetActivityStreamsImage() ActivityStreamsImageProperty
	// GetActivityStreamsInReplyTo returns the "inReplyTo" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInReplyTo() ActivityStreamsInReplyToProperty
	// GetActivityStreamsInstrument returns the "instrument" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInstrument() ActivityStreamsInstrumentProperty
	// GetActivityStreamsLikes returns the "likes" property if it exists, and
	// nil otherwise.
	GetActivityStreamsLikes() ActivityStreamsLikesProperty
	// GetActivityStreamsLocation returns the "location" property if it
	// exists, and nil otherwise.
	GetActivityStreamsLocation() ActivityStreamsLocationProperty
	// GetActivityStreamsMediaType returns the "mediaType" property if it
	// exists, and nil otherwise.
	GetActivityStreamsMediaType() ActivityStreamsMediaTypeProperty
	// GetActivityStreamsName returns the "name" property if it exists, and
	// nil otherwise.
	GetActivityStreamsName() ActivityStreamsNameProperty
	// GetActivityStreamsOrigin returns the "origin" property if it exists,
	// and nil otherwise.
	GetActivityStreamsOrigin() ActivityStreamsOriginProperty
	// GetActivityStreamsPreview returns the "preview" property if it exists,
	// and nil otherwise.
	GetActivityStreamsPreview() ActivityStreamsPreviewProperty
	// GetActivityStreamsPublished returns the "published" property if it
	// exists, and nil otherwise.
	GetActivityStreamsPublished() ActivityStreamsPublishedProperty
	// GetActivityStreamsReplies returns the "replies" property if it exists,
	// and nil otherwise.
	GetActivityStreamsReplies() ActivityStreamsRepliesProperty
	// GetActivityStreamsResult returns the "result" property if it exists,
	// and nil otherwise.
	GetActivityStreamsResult() ActivityStreamsResultProperty
	// GetActivityStreamsShares returns the "shares" property if it exists,
	// and nil otherwise.
	GetActivityStreamsShares() ActivityStreamsSharesProperty
	// GetActivityStreamsSource returns the "source" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSource() ActivityStreamsSourceProperty
	// GetActivityStreamsStartTime returns the "startTime" property if it
	// exists, and nil otherwise.
	GetActivityStreamsStartTime() ActivityStreamsStartTimeProperty
	// GetActivityStreamsSummary returns the "summary" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSummary() ActivityStreamsSummaryProperty
	// GetActivityStreamsTag returns the "tag" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTag() ActivityStreamsTagProperty
	// GetActivityStreamsTarget returns the "target" property if it exists,
	// and nil otherwise.
	GetActivityStreamsTarget() ActivityStreamsTargetProperty
	// GetActivityStreamsTo returns the "to" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTo() ActivityStreamsToProperty
	// GetActivityStreamsUpdated returns the "updated" property if it exists,
	// and nil otherwise.
	GetActivityStreamsUpdated() ActivityStreamsUpdatedProperty
	// GetActivityStreamsUrl returns the "url" property if it exists, and nil
	// otherwise.
	GetActivityStreamsUrl() ActivityStreamsUrlProperty
	// GetForgeFedTeam returns the "team" property if it exists, and nil
	// otherwise.
	GetForgeFedTeam() ForgeFedTeamProperty
	// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
	// it exists, and nil otherwise.
	GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
	// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
	// it exists, and nil otherwise.
	GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
	// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
	GetJSONLDId() JSONLDIdProperty
	// GetJSONLDType returns the "type" property if it exists, and nil
	// otherwise.
	GetJSONLDType() JSONLDTypeProperty
	// GetTypeName returns the name of this type.
	GetTypeName() string
	// GetUnknownProperties returns the unknown properties for the
	// IntransitiveActivity type. Note that this should not be used by app
	// developers. It is only used to help determine which implementation
	// is LessThan the other. Developers who are creating a different
	// implementation of this type's interface can use this method in
	// their LessThan implementation, but routine ActivityPub applications
	// should not use this to bypass the code generation tool.
	GetUnknownProperties() map[string]interface{}
	// IsExtending returns true if the IntransitiveActivity type extends from
	// the other type.
	IsExtending(other Type) bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this type and the specific properties that are set. The value
	// in the map is the alias used to import the type and its properties.
	JSONLDContext() map[string]string
	// LessThan computes if this IntransitiveActivity is lesser, with an
	// arbitrary but stable determination.
	LessThan(o ActivityStreamsIntransitiveActivity) bool
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format.
	Serialize() (map[string]interface{}, error)
	// SetActivityStreamsActor sets the "actor" property.
	SetActivityStreamsActor(i ActivityStreamsActorProperty)
	// SetActivityStreamsAltitude sets the "altitude" property.
	SetActivityStreamsAltitude(i ActivityStreamsAltitudeProperty)
	// SetActivityStreamsAttachment sets the "attachment" property.
	SetActivityStreamsAttachment(i ActivityStreamsAttachmentProperty)
	// SetActivityStreamsAttributedTo sets the "attributedTo" property.
	SetActivityStreamsAttributedTo(i ActivityStreamsAttributedToProperty)
	// SetActivityStreamsAudience sets the "audience" property.
	SetActivityStreamsAudience(i ActivityStreamsAudienceProperty)
	// SetActivityStreamsBcc sets the "bcc" property.
	SetActivityStreamsBcc(i ActivityStreamsBccProperty)
	// SetActivityStreamsBto sets the "bto" property.
	SetActivityStreamsBto(i ActivityStreamsBtoProperty)
	// SetActivityStreamsCc sets the "cc" property.
	SetActivityStreamsCc(i ActivityStreamsCcProperty)
	// SetActivityStreamsContent sets the "content" property.
	SetActivityStreamsContent(i ActivityStreamsContentProperty)
	// SetActivityStreamsContext sets the "context" property.
	SetActivityStreamsContext(i ActivityStreamsContextProperty)
	// SetActivityStreamsDuration sets the "duration" property.
	SetActivityStreamsDuration(i ActivityStreamsDurationProperty)
	// SetActivityStreamsEndTime sets the "endTime" property.
	SetActivityStreamsEndTime(i ActivityStreamsEndTimeProperty)
	// SetActivityStreamsGenerator sets the "generator" property.
	SetActivityStreamsGenerator(i ActivityStreamsGeneratorProperty)
	// SetActivityStreamsIcon sets the "icon" property.
	SetActivityStreamsIcon(i ActivityStreamsIconProperty)
	// SetActivityStreamsImage sets the "image" property.
	SetActivityStreamsImage(i ActivityStreamsImageProperty)
	// SetActivityStreamsInReplyTo sets the "inReplyTo" property.
	SetActivityStreamsInReplyTo(i ActivityStreamsInReplyToProperty)
	// SetActivityStreamsInstrument sets the "instrument" property.
	SetActivityStreamsInstrument(i ActivityStreamsInstrumentProperty)
	// SetActivityStreamsLikes sets the "likes" property.
	SetActivityStreamsLikes(i ActivityStreamsLikesProperty)
	// SetActivityStreamsLocation sets the "location" property.
	SetActivityStreamsLocation(i ActivityStreamsLocationProperty)
	// SetActivityStreamsMediaType sets the "mediaType" property.
	SetActivityStreamsMediaType(i ActivityStreamsMediaTypeProperty)
	// SetActivityStreamsName sets the "name" property.
	SetActivityStreamsName(i ActivityStreamsNameProperty)
	// SetActivityStreamsOrigin sets the "origin" property.
	SetActivityStreamsOrigin(i ActivityStreamsOriginProperty)
	// SetActivityStreamsPreview sets the "preview" property.
	SetActivityStreamsPreview(i ActivityStreamsPreviewProperty)
	// SetActivityStreamsPublished sets the "published" property.
	SetActivityStreamsPublished(i ActivityStreamsPublishedProperty)
	// SetActivityStreamsReplies sets the "replies" property.
	SetActivityStreamsReplies(i ActivityStreamsRepliesProperty)
	// SetActivityStreamsResult sets the "result" property.
	SetActivityStreamsResult(i ActivityStreamsResultProperty)
	// SetActivityStreamsShares sets the "shares" property.
	SetActivityStreamsShares(i ActivityStreamsSharesProperty)
	// SetActivityStreamsSource sets the "source" property.
	SetActivityStreamsSource(i ActivityStreamsSourceProperty)
	// SetActivityStreamsStartTime sets the "startTime" property.
	SetActivityStreamsStartTime(i ActivityStreamsStartTimeProperty)
	// SetActivityStreamsSummary sets the "summary" property.
	SetActivityStreamsSummary(i ActivityStreamsSummaryProperty)
	// SetActivityStreamsTag sets the "tag" property.
	SetActivityStreamsTag(i ActivityStreamsTagProperty)
	// SetActivityStreamsTarget sets the "target" property.
	SetActivityStreamsTarget(i ActivityStreamsTargetProperty)
	// SetActivityStreamsTo sets the "to" property.
	SetActivityStreamsTo(i ActivityStreamsToProperty)
	// SetActivityStreamsUpdated sets the "updated" property.
	SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
	// SetActivityStreamsUrl sets the "url" property.
	SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
	// SetForgeFedTeam sets the "team" property.
	SetForgeFedTeam(i ForgeFedTeamProperty)
	// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
	SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
	// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
	SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
	// SetJSONLDId sets the "id" property.
	SetJSONLDId(i JSONLDIdProperty)
	// SetJSONLDType sets the "type" property.
	SetJSONLDType(i JSONLDTypeProperty)
	// VocabularyURI returns the vocabulary's URI as a string.
	VocabularyURI() string
}

Instances of IntransitiveActivity are a subtype of Activity representing intransitive actions. The object property is therefore inappropriate for these activities.

Example 4 (https://www.w3.org/TR/activitystreams-vocabulary/#ex182-jsonld):

{
  "actor": {
    "name": "Sally",
    "type": "Person"
  },
  "summary": "Sally went to work",
  "target": {
    "name": "Work",
    "type": "Place"
  },
  "type": "Travel"
}

type ActivityStreamsInvite

type ActivityStreamsInvite interface {
	// GetActivityStreamsActor returns the "actor" property if it exists, and
	// nil otherwise.
	GetActivityStreamsActor() ActivityStreamsActorProperty
	// GetActivityStreamsAltitude returns the "altitude" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAltitude() ActivityStreamsAltitudeProperty
	// GetActivityStreamsAttachment returns the "attachment" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAttachment() ActivityStreamsAttachmentProperty
	// GetActivityStreamsAttributedTo returns the "attributedTo" property if
	// it exists, and nil otherwise.
	GetActivityStreamsAttributedTo() ActivityStreamsAttributedToProperty
	// GetActivityStreamsAudience returns the "audience" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAudience() ActivityStreamsAudienceProperty
	// GetActivityStreamsBcc returns the "bcc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBcc() ActivityStreamsBccProperty
	// GetActivityStreamsBto returns the "bto" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBto() ActivityStreamsBtoProperty
	// GetActivityStreamsCc returns the "cc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsCc() ActivityStreamsCcProperty
	// GetActivityStreamsContent returns the "content" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContent() ActivityStreamsContentProperty
	// GetActivityStreamsContext returns the "context" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContext() ActivityStreamsContextProperty
	// GetActivityStreamsDuration returns the "duration" property if it
	// exists, and nil otherwise.
	GetActivityStreamsDuration() ActivityStreamsDurationProperty
	// GetActivityStreamsEndTime returns the "endTime" property if it exists,
	// and nil otherwise.
	GetActivityStreamsEndTime() ActivityStreamsEndTimeProperty
	// GetActivityStreamsGenerator returns the "generator" property if it
	// exists, and nil otherwise.
	GetActivityStreamsGenerator() ActivityStreamsGeneratorProperty
	// GetActivityStreamsIcon returns the "icon" property if it exists, and
	// nil otherwise.
	GetActivityStreamsIcon() ActivityStreamsIconProperty
	// GetActivityStreamsImage returns the "image" property if it exists, and
	// nil otherwise.
	GetActivityStreamsImage() ActivityStreamsImageProperty
	// GetActivityStreamsInReplyTo returns the "inReplyTo" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInReplyTo() ActivityStreamsInReplyToProperty
	// GetActivityStreamsInstrument returns the "instrument" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInstrument() ActivityStreamsInstrumentProperty
	// GetActivityStreamsLikes returns the "likes" property if it exists, and
	// nil otherwise.
	GetActivityStreamsLikes() ActivityStreamsLikesProperty
	// GetActivityStreamsLocation returns the "location" property if it
	// exists, and nil otherwise.
	GetActivityStreamsLocation() ActivityStreamsLocationProperty
	// GetActivityStreamsMediaType returns the "mediaType" property if it
	// exists, and nil otherwise.
	GetActivityStreamsMediaType() ActivityStreamsMediaTypeProperty
	// GetActivityStreamsName returns the "name" property if it exists, and
	// nil otherwise.
	GetActivityStreamsName() ActivityStreamsNameProperty
	// GetActivityStreamsObject returns the "object" property if it exists,
	// and nil otherwise.
	GetActivityStreamsObject() ActivityStreamsObjectProperty
	// GetActivityStreamsOrigin returns the "origin" property if it exists,
	// and nil otherwise.
	GetActivityStreamsOrigin() ActivityStreamsOriginProperty
	// GetActivityStreamsPreview returns the "preview" property if it exists,
	// and nil otherwise.
	GetActivityStreamsPreview() ActivityStreamsPreviewProperty
	// GetActivityStreamsPublished returns the "published" property if it
	// exists, and nil otherwise.
	GetActivityStreamsPublished() ActivityStreamsPublishedProperty
	// GetActivityStreamsReplies returns the "replies" property if it exists,
	// and nil otherwise.
	GetActivityStreamsReplies() ActivityStreamsRepliesProperty
	// GetActivityStreamsResult returns the "result" property if it exists,
	// and nil otherwise.
	GetActivityStreamsResult() ActivityStreamsResultProperty
	// GetActivityStreamsShares returns the "shares" property if it exists,
	// and nil otherwise.
	GetActivityStreamsShares() ActivityStreamsSharesProperty
	// GetActivityStreamsSource returns the "source" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSource() ActivityStreamsSourceProperty
	// GetActivityStreamsStartTime returns the "startTime" property if it
	// exists, and nil otherwise.
	GetActivityStreamsStartTime() ActivityStreamsStartTimeProperty
	// GetActivityStreamsSummary returns the "summary" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSummary() ActivityStreamsSummaryProperty
	// GetActivityStreamsTag returns the "tag" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTag() ActivityStreamsTagProperty
	// GetActivityStreamsTarget returns the "target" property if it exists,
	// and nil otherwise.
	GetActivityStreamsTarget() ActivityStreamsTargetProperty
	// GetActivityStreamsTo returns the "to" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTo() ActivityStreamsToProperty
	// GetActivityStreamsUpdated returns the "updated" property if it exists,
	// and nil otherwise.
	GetActivityStreamsUpdated() ActivityStreamsUpdatedProperty
	// GetActivityStreamsUrl returns the "url" property if it exists, and nil
	// otherwise.
	GetActivityStreamsUrl() ActivityStreamsUrlProperty
	// GetForgeFedTeam returns the "team" property if it exists, and nil
	// otherwise.
	GetForgeFedTeam() ForgeFedTeamProperty
	// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
	// it exists, and nil otherwise.
	GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
	// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
	// it exists, and nil otherwise.
	GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
	// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
	GetJSONLDId() JSONLDIdProperty
	// GetJSONLDType returns the "type" property if it exists, and nil
	// otherwise.
	GetJSONLDType() JSONLDTypeProperty
	// GetTypeName returns the name of this type.
	GetTypeName() string
	// GetUnknownProperties returns the unknown properties for the Invite
	// type. Note that this should not be used by app developers. It is
	// only used to help determine which implementation is LessThan the
	// other. Developers who are creating a different implementation of
	// this type's interface can use this method in their LessThan
	// implementation, but routine ActivityPub applications should not use
	// this to bypass the code generation tool.
	GetUnknownProperties() map[string]interface{}
	// IsExtending returns true if the Invite type extends from the other type.
	IsExtending(other Type) bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this type and the specific properties that are set. The value
	// in the map is the alias used to import the type and its properties.
	JSONLDContext() map[string]string
	// LessThan computes if this Invite is lesser, with an arbitrary but
	// stable determination.
	LessThan(o ActivityStreamsInvite) bool
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format.
	Serialize() (map[string]interface{}, error)
	// SetActivityStreamsActor sets the "actor" property.
	SetActivityStreamsActor(i ActivityStreamsActorProperty)
	// SetActivityStreamsAltitude sets the "altitude" property.
	SetActivityStreamsAltitude(i ActivityStreamsAltitudeProperty)
	// SetActivityStreamsAttachment sets the "attachment" property.
	SetActivityStreamsAttachment(i ActivityStreamsAttachmentProperty)
	// SetActivityStreamsAttributedTo sets the "attributedTo" property.
	SetActivityStreamsAttributedTo(i ActivityStreamsAttributedToProperty)
	// SetActivityStreamsAudience sets the "audience" property.
	SetActivityStreamsAudience(i ActivityStreamsAudienceProperty)
	// SetActivityStreamsBcc sets the "bcc" property.
	SetActivityStreamsBcc(i ActivityStreamsBccProperty)
	// SetActivityStreamsBto sets the "bto" property.
	SetActivityStreamsBto(i ActivityStreamsBtoProperty)
	// SetActivityStreamsCc sets the "cc" property.
	SetActivityStreamsCc(i ActivityStreamsCcProperty)
	// SetActivityStreamsContent sets the "content" property.
	SetActivityStreamsContent(i ActivityStreamsContentProperty)
	// SetActivityStreamsContext sets the "context" property.
	SetActivityStreamsContext(i ActivityStreamsContextProperty)
	// SetActivityStreamsDuration sets the "duration" property.
	SetActivityStreamsDuration(i ActivityStreamsDurationProperty)
	// SetActivityStreamsEndTime sets the "endTime" property.
	SetActivityStreamsEndTime(i ActivityStreamsEndTimeProperty)
	// SetActivityStreamsGenerator sets the "generator" property.
	SetActivityStreamsGenerator(i ActivityStreamsGeneratorProperty)
	// SetActivityStreamsIcon sets the "icon" property.
	SetActivityStreamsIcon(i ActivityStreamsIconProperty)
	// SetActivityStreamsImage sets the "image" property.
	SetActivityStreamsImage(i ActivityStreamsImageProperty)
	// SetActivityStreamsInReplyTo sets the "inReplyTo" property.
	SetActivityStreamsInReplyTo(i ActivityStreamsInReplyToProperty)
	// SetActivityStreamsInstrument sets the "instrument" property.
	SetActivityStreamsInstrument(i ActivityStreamsInstrumentProperty)
	// SetActivityStreamsLikes sets the "likes" property.
	SetActivityStreamsLikes(i ActivityStreamsLikesProperty)
	// SetActivityStreamsLocation sets the "location" property.
	SetActivityStreamsLocation(i ActivityStreamsLocationProperty)
	// SetActivityStreamsMediaType sets the "mediaType" property.
	SetActivityStreamsMediaType(i ActivityStreamsMediaTypeProperty)
	// SetActivityStreamsName sets the "name" property.
	SetActivityStreamsName(i ActivityStreamsNameProperty)
	// SetActivityStreamsObject sets the "object" property.
	SetActivityStreamsObject(i ActivityStreamsObjectProperty)
	// SetActivityStreamsOrigin sets the "origin" property.
	SetActivityStreamsOrigin(i ActivityStreamsOriginProperty)
	// SetActivityStreamsPreview sets the "preview" property.
	SetActivityStreamsPreview(i ActivityStreamsPreviewProperty)
	// SetActivityStreamsPublished sets the "published" property.
	SetActivityStreamsPublished(i ActivityStreamsPublishedProperty)
	// SetActivityStreamsReplies sets the "replies" property.
	SetActivityStreamsReplies(i ActivityStreamsRepliesProperty)
	// SetActivityStreamsResult sets the "result" property.
	SetActivityStreamsResult(i ActivityStreamsResultProperty)
	// SetActivityStreamsShares sets the "shares" property.
	SetActivityStreamsShares(i ActivityStreamsSharesProperty)
	// SetActivityStreamsSource sets the "source" property.
	SetActivityStreamsSource(i ActivityStreamsSourceProperty)
	// SetActivityStreamsStartTime sets the "startTime" property.
	SetActivityStreamsStartTime(i ActivityStreamsStartTimeProperty)
	// SetActivityStreamsSummary sets the "summary" property.
	SetActivityStreamsSummary(i ActivityStreamsSummaryProperty)
	// SetActivityStreamsTag sets the "tag" property.
	SetActivityStreamsTag(i ActivityStreamsTagProperty)
	// SetActivityStreamsTarget sets the "target" property.
	SetActivityStreamsTarget(i ActivityStreamsTargetProperty)
	// SetActivityStreamsTo sets the "to" property.
	SetActivityStreamsTo(i ActivityStreamsToProperty)
	// SetActivityStreamsUpdated sets the "updated" property.
	SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
	// SetActivityStreamsUrl sets the "url" property.
	SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
	// SetForgeFedTeam sets the "team" property.
	SetForgeFedTeam(i ForgeFedTeamProperty)
	// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
	SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
	// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
	SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
	// SetJSONLDId sets the "id" property.
	SetJSONLDId(i JSONLDIdProperty)
	// SetJSONLDType sets the "type" property.
	SetJSONLDType(i JSONLDTypeProperty)
	// VocabularyURI returns the vocabulary's URI as a string.
	VocabularyURI() string
}

A specialization of Offer in which the actor is extending an invitation for the object to the target.

Example 24 (https://www.w3.org/TR/activitystreams-vocabulary/#ex24-jsonld):

{
  "actor": {
    "name": "Sally",
    "type": "Person"
  },
  "object": {
    "name": "A Party",
    "type": "Event"
  },
  "summary": "Sally invited John and Lisa to a party",
  "target": [
    {
      "name": "John",
      "type": "Person"
    },
    {
      "name": "Lisa",
      "type": "Person"
    }
  ],
  "type": "Invite"
}

type ActivityStreamsItemsProperty

type ActivityStreamsItemsProperty interface {
	// AppendActivityStreamsAccept appends a Accept value to the back of a
	// list of the property "items". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsAccept(v ActivityStreamsAccept)
	// AppendActivityStreamsActivity appends a Activity value to the back of a
	// list of the property "items". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsActivity(v ActivityStreamsActivity)
	// AppendActivityStreamsAdd appends a Add value to the back of a list of
	// the property "items". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsAdd(v ActivityStreamsAdd)
	// AppendActivityStreamsAnnounce appends a Announce value to the back of a
	// list of the property "items". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// AppendActivityStreamsApplication appends a Application value to the
	// back of a list of the property "items". Invalidates iterators that
	// are traversing using Prev.
	AppendActivityStreamsApplication(v ActivityStreamsApplication)
	// AppendActivityStreamsArrive appends a Arrive value to the back of a
	// list of the property "items". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsArrive(v ActivityStreamsArrive)
	// AppendActivityStreamsArticle appends a Article value to the back of a
	// list of the property "items". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsArticle(v ActivityStreamsArticle)
	// AppendActivityStreamsAudio appends a Audio value to the back of a list
	// of the property "items". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsAudio(v ActivityStreamsAudio)
	// AppendActivityStreamsBlock appends a Block value to the back of a list
	// of the property "items". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsBlock(v ActivityStreamsBlock)
	// AppendActivityStreamsCollection appends a Collection value to the back
	// of a list of the property "items". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsCollection(v ActivityStreamsCollection)
	// AppendActivityStreamsCollectionPage appends a CollectionPage value to
	// the back of a list of the property "items". Invalidates iterators
	// that are traversing using Prev.
	AppendActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// AppendActivityStreamsCreate appends a Create value to the back of a
	// list of the property "items". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsCreate(v ActivityStreamsCreate)
	// AppendActivityStreamsDelete appends a Delete value to the back of a
	// list of the property "items". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDelete(v ActivityStreamsDelete)
	// AppendActivityStreamsDislike appends a Dislike value to the back of a
	// list of the property "items". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDislike(v ActivityStreamsDislike)
	// AppendActivityStreamsDocument appends a Document value to the back of a
	// list of the property "items". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDocument(v ActivityStreamsDocument)
	// AppendActivityStreamsEvent appends a Event value to the back of a list
	// of the property "items". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsEvent(v ActivityStreamsEvent)
	// AppendActivityStreamsFlag appends a Flag value to the back of a list of
	// the property "items". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsFlag(v ActivityStreamsFlag)
	// AppendActivityStreamsFollow appends a Follow value to the back of a
	// list of the property "items". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsFollow(v ActivityStreamsFollow)
	// AppendActivityStreamsGroup appends a Group value to the back of a list
	// of the property "items". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsGroup(v ActivityStreamsGroup)
	// AppendActivityStreamsIgnore appends a Ignore value to the back of a
	// list of the property "items". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsIgnore(v ActivityStreamsIgnore)
	// AppendActivityStreamsImage appends a Image value to the back of a list
	// of the property "items". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsImage(v ActivityStreamsImage)
	// AppendActivityStreamsIntransitiveActivity appends a
	// IntransitiveActivity value to the back of a list of the property
	// "items". Invalidates iterators that are traversing using Prev.
	AppendActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// AppendActivityStreamsInvite appends a Invite value to the back of a
	// list of the property "items". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsInvite(v ActivityStreamsInvite)
	// AppendActivityStreamsJoin appends a Join value to the back of a list of
	// the property "items". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsJoin(v ActivityStreamsJoin)
	// AppendActivityStreamsLeave appends a Leave value to the back of a list
	// of the property "items". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsLeave(v ActivityStreamsLeave)
	// AppendActivityStreamsLike appends a Like value to the back of a list of
	// the property "items". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsLike(v ActivityStreamsLike)
	// AppendActivityStreamsLink appends a Link value to the back of a list of
	// the property "items". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsLink(v ActivityStreamsLink)
	// AppendActivityStreamsListen appends a Listen value to the back of a
	// list of the property "items". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsListen(v ActivityStreamsListen)
	// AppendActivityStreamsMention appends a Mention value to the back of a
	// list of the property "items". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsMention(v ActivityStreamsMention)
	// AppendActivityStreamsMove appends a Move value to the back of a list of
	// the property "items". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsMove(v ActivityStreamsMove)
	// AppendActivityStreamsNote appends a Note value to the back of a list of
	// the property "items". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsNote(v ActivityStreamsNote)
	// AppendActivityStreamsObject appends a Object value to the back of a
	// list of the property "items". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsObject(v ActivityStreamsObject)
	// AppendActivityStreamsOffer appends a Offer value to the back of a list
	// of the property "items". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsOffer(v ActivityStreamsOffer)
	// AppendActivityStreamsOrderedCollection appends a OrderedCollection
	// value to the back of a list of the property "items". Invalidates
	// iterators that are traversing using Prev.
	AppendActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// AppendActivityStreamsOrderedCollectionPage appends a
	// OrderedCollectionPage value to the back of a list of the property
	// "items". Invalidates iterators that are traversing using Prev.
	AppendActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// AppendActivityStreamsOrganization appends a Organization value to the
	// back of a list of the property "items". Invalidates iterators that
	// are traversing using Prev.
	AppendActivityStreamsOrganization(v ActivityStreamsOrganization)
	// AppendActivityStreamsPage appends a Page value to the back of a list of
	// the property "items". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsPage(v ActivityStreamsPage)
	// AppendActivityStreamsPerson appends a Person value to the back of a
	// list of the property "items". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsPerson(v ActivityStreamsPerson)
	// AppendActivityStreamsPlace appends a Place value to the back of a list
	// of the property "items". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsPlace(v ActivityStreamsPlace)
	// AppendActivityStreamsProfile appends a Profile value to the back of a
	// list of the property "items". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsProfile(v ActivityStreamsProfile)
	// AppendActivityStreamsQuestion appends a Question value to the back of a
	// list of the property "items". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsQuestion(v ActivityStreamsQuestion)
	// AppendActivityStreamsRead appends a Read value to the back of a list of
	// the property "items". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsRead(v ActivityStreamsRead)
	// AppendActivityStreamsReject appends a Reject value to the back of a
	// list of the property "items". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsReject(v ActivityStreamsReject)
	// AppendActivityStreamsRelationship appends a Relationship value to the
	// back of a list of the property "items". Invalidates iterators that
	// are traversing using Prev.
	AppendActivityStreamsRelationship(v ActivityStreamsRelationship)
	// AppendActivityStreamsRemove appends a Remove value to the back of a
	// list of the property "items". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsRemove(v ActivityStreamsRemove)
	// AppendActivityStreamsService appends a Service value to the back of a
	// list of the property "items". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsService(v ActivityStreamsService)
	// AppendActivityStreamsTentativeAccept appends a TentativeAccept value to
	// the back of a list of the property "items". Invalidates iterators
	// that are traversing using Prev.
	AppendActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// AppendActivityStreamsTentativeReject appends a TentativeReject value to
	// the back of a list of the property "items". Invalidates iterators
	// that are traversing using Prev.
	AppendActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// AppendActivityStreamsTombstone appends a Tombstone value to the back of
	// a list of the property "items". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsTombstone(v ActivityStreamsTombstone)
	// AppendActivityStreamsTravel appends a Travel value to the back of a
	// list of the property "items". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsTravel(v ActivityStreamsTravel)
	// AppendActivityStreamsUndo appends a Undo value to the back of a list of
	// the property "items". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsUndo(v ActivityStreamsUndo)
	// AppendActivityStreamsUpdate appends a Update value to the back of a
	// list of the property "items". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsUpdate(v ActivityStreamsUpdate)
	// AppendActivityStreamsVideo appends a Video value to the back of a list
	// of the property "items". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsVideo(v ActivityStreamsVideo)
	// AppendActivityStreamsView appends a View value to the back of a list of
	// the property "items". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsView(v ActivityStreamsView)
	// AppendForgeFedBranch appends a Branch value to the back of a list of
	// the property "items". Invalidates iterators that are traversing
	// using Prev.
	AppendForgeFedBranch(v ForgeFedBranch)
	// AppendForgeFedCommit appends a Commit value to the back of a list of
	// the property "items". Invalidates iterators that are traversing
	// using Prev.
	AppendForgeFedCommit(v ForgeFedCommit)
	// AppendForgeFedPush appends a Push value to the back of a list of the
	// property "items". Invalidates iterators that are traversing using
	// Prev.
	AppendForgeFedPush(v ForgeFedPush)
	// AppendForgeFedRepository appends a Repository value to the back of a
	// list of the property "items". Invalidates iterators that are
	// traversing using Prev.
	AppendForgeFedRepository(v ForgeFedRepository)
	// AppendForgeFedTicket appends a Ticket value to the back of a list of
	// the property "items". Invalidates iterators that are traversing
	// using Prev.
	AppendForgeFedTicket(v ForgeFedTicket)
	// AppendForgeFedTicketDependency appends a TicketDependency value to the
	// back of a list of the property "items". Invalidates iterators that
	// are traversing using Prev.
	AppendForgeFedTicketDependency(v ForgeFedTicketDependency)
	// AppendIRI appends an IRI value to the back of a list of the property
	// "items"
	AppendIRI(v *url.URL)
	// AppendTootEmoji appends a Emoji value to the back of a list of the
	// property "items". Invalidates iterators that are traversing using
	// Prev.
	AppendTootEmoji(v TootEmoji)
	// AppendTootIdentityProof appends a IdentityProof value to the back of a
	// list of the property "items". Invalidates iterators that are
	// traversing using Prev.
	AppendTootIdentityProof(v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "items". Invalidates iterators that are traversing
	// using Prev. Returns an error if the type is not a valid one to set
	// for this property.
	AppendType(t Type) error
	// At returns the property value for the specified index. Panics if the
	// index is out of bounds.
	At(index int) ActivityStreamsItemsPropertyIterator
	// Begin returns the first iterator, or nil if empty. Can be used with the
	// iterator's Next method and this property's End method to iterate
	// from front to back through all values.
	Begin() ActivityStreamsItemsPropertyIterator
	// Empty returns returns true if there are no elements.
	Empty() bool
	// End returns beyond-the-last iterator, which is nil. Can be used with
	// the iterator's Next method and this property's Begin method to
	// iterate from front to back through all values.
	End() ActivityStreamsItemsPropertyIterator
	// InsertActivityStreamsAccept inserts a Accept value at the specified
	// index for a property "items". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAccept(idx int, v ActivityStreamsAccept)
	// InsertActivityStreamsActivity inserts a Activity value at the specified
	// index for a property "items". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsActivity(idx int, v ActivityStreamsActivity)
	// InsertActivityStreamsAdd inserts a Add value at the specified index for
	// a property "items". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertActivityStreamsAdd(idx int, v ActivityStreamsAdd)
	// InsertActivityStreamsAnnounce inserts a Announce value at the specified
	// index for a property "items". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAnnounce(idx int, v ActivityStreamsAnnounce)
	// InsertActivityStreamsApplication inserts a Application value at the
	// specified index for a property "items". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsApplication(idx int, v ActivityStreamsApplication)
	// InsertActivityStreamsArrive inserts a Arrive value at the specified
	// index for a property "items". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsArrive(idx int, v ActivityStreamsArrive)
	// InsertActivityStreamsArticle inserts a Article value at the specified
	// index for a property "items". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsArticle(idx int, v ActivityStreamsArticle)
	// InsertActivityStreamsAudio inserts a Audio value at the specified index
	// for a property "items". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAudio(idx int, v ActivityStreamsAudio)
	// InsertActivityStreamsBlock inserts a Block value at the specified index
	// for a property "items". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsBlock(idx int, v ActivityStreamsBlock)
	// InsertActivityStreamsCollection inserts a Collection value at the
	// specified index for a property "items". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsCollection(idx int, v ActivityStreamsCollection)
	// InsertActivityStreamsCollectionPage inserts a CollectionPage value at
	// the specified index for a property "items". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsCollectionPage(idx int, v ActivityStreamsCollectionPage)
	// InsertActivityStreamsCreate inserts a Create value at the specified
	// index for a property "items". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsCreate(idx int, v ActivityStreamsCreate)
	// InsertActivityStreamsDelete inserts a Delete value at the specified
	// index for a property "items". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDelete(idx int, v ActivityStreamsDelete)
	// InsertActivityStreamsDislike inserts a Dislike value at the specified
	// index for a property "items". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDislike(idx int, v ActivityStreamsDislike)
	// InsertActivityStreamsDocument inserts a Document value at the specified
	// index for a property "items". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDocument(idx int, v ActivityStreamsDocument)
	// InsertActivityStreamsEvent inserts a Event value at the specified index
	// for a property "items". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsEvent(idx int, v ActivityStreamsEvent)
	// InsertActivityStreamsFlag inserts a Flag value at the specified index
	// for a property "items". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsFlag(idx int, v ActivityStreamsFlag)
	// InsertActivityStreamsFollow inserts a Follow value at the specified
	// index for a property "items". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsFollow(idx int, v ActivityStreamsFollow)
	// InsertActivityStreamsGroup inserts a Group value at the specified index
	// for a property "items". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsGroup(idx int, v ActivityStreamsGroup)
	// InsertActivityStreamsIgnore inserts a Ignore value at the specified
	// index for a property "items". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsIgnore(idx int, v ActivityStreamsIgnore)
	// InsertActivityStreamsImage inserts a Image value at the specified index
	// for a property "items". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsImage(idx int, v ActivityStreamsImage)
	// InsertActivityStreamsIntransitiveActivity inserts a
	// IntransitiveActivity value at the specified index for a property
	// "items". Existing elements at that index and higher are shifted
	// back once. Invalidates all iterators.
	InsertActivityStreamsIntransitiveActivity(idx int, v ActivityStreamsIntransitiveActivity)
	// InsertActivityStreamsInvite inserts a Invite value at the specified
	// index for a property "items". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsInvite(idx int, v ActivityStreamsInvite)
	// InsertActivityStreamsJoin inserts a Join value at the specified index
	// for a property "items". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsJoin(idx int, v ActivityStreamsJoin)
	// InsertActivityStreamsLeave inserts a Leave value at the specified index
	// for a property "items". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsLeave(idx int, v ActivityStreamsLeave)
	// InsertActivityStreamsLike inserts a Like value at the specified index
	// for a property "items". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsLike(idx int, v ActivityStreamsLike)
	// InsertActivityStreamsLink inserts a Link value at the specified index
	// for a property "items". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsLink(idx int, v ActivityStreamsLink)
	// InsertActivityStreamsListen inserts a Listen value at the specified
	// index for a property "items". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsListen(idx int, v ActivityStreamsListen)
	// InsertActivityStreamsMention inserts a Mention value at the specified
	// index for a property "items". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsMention(idx int, v ActivityStreamsMention)
	// InsertActivityStreamsMove inserts a Move value at the specified index
	// for a property "items". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsMove(idx int, v ActivityStreamsMove)
	// InsertActivityStreamsNote inserts a Note value at the specified index
	// for a property "items". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsNote(idx int, v ActivityStreamsNote)
	// InsertActivityStreamsObject inserts a Object value at the specified
	// index for a property "items". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsObject(idx int, v ActivityStreamsObject)
	// InsertActivityStreamsOffer inserts a Offer value at the specified index
	// for a property "items". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsOffer(idx int, v ActivityStreamsOffer)
	// InsertActivityStreamsOrderedCollection inserts a OrderedCollection
	// value at the specified index for a property "items". Existing
	// elements at that index and higher are shifted back once.
	// Invalidates all iterators.
	InsertActivityStreamsOrderedCollection(idx int, v ActivityStreamsOrderedCollection)
	// InsertActivityStreamsOrderedCollectionPage inserts a
	// OrderedCollectionPage value at the specified index for a property
	// "items". Existing elements at that index and higher are shifted
	// back once. Invalidates all iterators.
	InsertActivityStreamsOrderedCollectionPage(idx int, v ActivityStreamsOrderedCollectionPage)
	// InsertActivityStreamsOrganization inserts a Organization value at the
	// specified index for a property "items". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsOrganization(idx int, v ActivityStreamsOrganization)
	// InsertActivityStreamsPage inserts a Page value at the specified index
	// for a property "items". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsPage(idx int, v ActivityStreamsPage)
	// InsertActivityStreamsPerson inserts a Person value at the specified
	// index for a property "items". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsPerson(idx int, v ActivityStreamsPerson)
	// InsertActivityStreamsPlace inserts a Place value at the specified index
	// for a property "items". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsPlace(idx int, v ActivityStreamsPlace)
	// InsertActivityStreamsProfile inserts a Profile value at the specified
	// index for a property "items". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsProfile(idx int, v ActivityStreamsProfile)
	// InsertActivityStreamsQuestion inserts a Question value at the specified
	// index for a property "items". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsQuestion(idx int, v ActivityStreamsQuestion)
	// InsertActivityStreamsRead inserts a Read value at the specified index
	// for a property "items". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsRead(idx int, v ActivityStreamsRead)
	// InsertActivityStreamsReject inserts a Reject value at the specified
	// index for a property "items". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsReject(idx int, v ActivityStreamsReject)
	// InsertActivityStreamsRelationship inserts a Relationship value at the
	// specified index for a property "items". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsRelationship(idx int, v ActivityStreamsRelationship)
	// InsertActivityStreamsRemove inserts a Remove value at the specified
	// index for a property "items". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsRemove(idx int, v ActivityStreamsRemove)
	// InsertActivityStreamsService inserts a Service value at the specified
	// index for a property "items". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsService(idx int, v ActivityStreamsService)
	// InsertActivityStreamsTentativeAccept inserts a TentativeAccept value at
	// the specified index for a property "items". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsTentativeAccept(idx int, v ActivityStreamsTentativeAccept)
	// InsertActivityStreamsTentativeReject inserts a TentativeReject value at
	// the specified index for a property "items". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsTentativeReject(idx int, v ActivityStreamsTentativeReject)
	// InsertActivityStreamsTombstone inserts a Tombstone value at the
	// specified index for a property "items". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsTombstone(idx int, v ActivityStreamsTombstone)
	// InsertActivityStreamsTravel inserts a Travel value at the specified
	// index for a property "items". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsTravel(idx int, v ActivityStreamsTravel)
	// InsertActivityStreamsUndo inserts a Undo value at the specified index
	// for a property "items". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsUndo(idx int, v ActivityStreamsUndo)
	// InsertActivityStreamsUpdate inserts a Update value at the specified
	// index for a property "items". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsUpdate(idx int, v ActivityStreamsUpdate)
	// InsertActivityStreamsVideo inserts a Video value at the specified index
	// for a property "items". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsVideo(idx int, v ActivityStreamsVideo)
	// InsertActivityStreamsView inserts a View value at the specified index
	// for a property "items". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsView(idx int, v ActivityStreamsView)
	// InsertForgeFedBranch inserts a Branch value at the specified index for
	// a property "items". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertForgeFedBranch(idx int, v ForgeFedBranch)
	// InsertForgeFedCommit inserts a Commit value at the specified index for
	// a property "items". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertForgeFedCommit(idx int, v ForgeFedCommit)
	// InsertForgeFedPush inserts a Push value at the specified index for a
	// property "items". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertForgeFedPush(idx int, v ForgeFedPush)
	// InsertForgeFedRepository inserts a Repository value at the specified
	// index for a property "items". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertForgeFedRepository(idx int, v ForgeFedRepository)
	// InsertForgeFedTicket inserts a Ticket value at the specified index for
	// a property "items". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertForgeFedTicket(idx int, v ForgeFedTicket)
	// InsertForgeFedTicketDependency inserts a TicketDependency value at the
	// specified index for a property "items". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
	// Insert inserts an IRI value at the specified index for a property
	// "items". Existing elements at that index and higher are shifted
	// back once. Invalidates all iterators.
	InsertIRI(idx int, v *url.URL)
	// InsertTootEmoji inserts a Emoji value at the specified index for a
	// property "items". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertTootEmoji(idx int, v TootEmoji)
	// InsertTootIdentityProof inserts a IdentityProof value at the specified
	// index for a property "items". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertTootIdentityProof(idx int, v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "items". Invalidates all iterators. Returns an error
	// if the type is not a valid one to set for this property.
	InsertType(idx int, t Type) error
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API method specifically needed only for alternate
	// implementations for go-fed. Applications should not use this
	// method. Panics if the index is out of bounds.
	KindIndex(idx int) int
	// Len returns the number of values that exist for the "items" property.
	Len() (length int)
	// Less computes whether another property is less than this one. Mixing
	// types results in a consistent but arbitrary ordering
	Less(i, j int) bool
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsItemsProperty) bool
	// Name returns the name of this property ("items") with any alias.
	Name() string
	// PrependActivityStreamsAccept prepends a Accept value to the front of a
	// list of the property "items". Invalidates all iterators.
	PrependActivityStreamsAccept(v ActivityStreamsAccept)
	// PrependActivityStreamsActivity prepends a Activity value to the front
	// of a list of the property "items". Invalidates all iterators.
	PrependActivityStreamsActivity(v ActivityStreamsActivity)
	// PrependActivityStreamsAdd prepends a Add value to the front of a list
	// of the property "items". Invalidates all iterators.
	PrependActivityStreamsAdd(v ActivityStreamsAdd)
	// PrependActivityStreamsAnnounce prepends a Announce value to the front
	// of a list of the property "items". Invalidates all iterators.
	PrependActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// PrependActivityStreamsApplication prepends a Application value to the
	// front of a list of the property "items". Invalidates all iterators.
	PrependActivityStreamsApplication(v ActivityStreamsApplication)
	// PrependActivityStreamsArrive prepends a Arrive value to the front of a
	// list of the property "items". Invalidates all iterators.
	PrependActivityStreamsArrive(v ActivityStreamsArrive)
	// PrependActivityStreamsArticle prepends a Article value to the front of
	// a list of the property "items". Invalidates all iterators.
	PrependActivityStreamsArticle(v ActivityStreamsArticle)
	// PrependActivityStreamsAudio prepends a Audio value to the front of a
	// list of the property "items". Invalidates all iterators.
	PrependActivityStreamsAudio(v ActivityStreamsAudio)
	// PrependActivityStreamsBlock prepends a Block value to the front of a
	// list of the property "items". Invalidates all iterators.
	PrependActivityStreamsBlock(v ActivityStreamsBlock)
	// PrependActivityStreamsCollection prepends a Collection value to the
	// front of a list of the property "items". Invalidates all iterators.
	PrependActivityStreamsCollection(v ActivityStreamsCollection)
	// PrependActivityStreamsCollectionPage prepends a CollectionPage value to
	// the front of a list of the property "items". Invalidates all
	// iterators.
	PrependActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// PrependActivityStreamsCreate prepends a Create value to the front of a
	// list of the property "items". Invalidates all iterators.
	PrependActivityStreamsCreate(v ActivityStreamsCreate)
	// PrependActivityStreamsDelete prepends a Delete value to the front of a
	// list of the property "items". Invalidates all iterators.
	PrependActivityStreamsDelete(v ActivityStreamsDelete)
	// PrependActivityStreamsDislike prepends a Dislike value to the front of
	// a list of the property "items". Invalidates all iterators.
	PrependActivityStreamsDislike(v ActivityStreamsDislike)
	// PrependActivityStreamsDocument prepends a Document value to the front
	// of a list of the property "items". Invalidates all iterators.
	PrependActivityStreamsDocument(v ActivityStreamsDocument)
	// PrependActivityStreamsEvent prepends a Event value to the front of a
	// list of the property "items". Invalidates all iterators.
	PrependActivityStreamsEvent(v ActivityStreamsEvent)
	// PrependActivityStreamsFlag prepends a Flag value to the front of a list
	// of the property "items". Invalidates all iterators.
	PrependActivityStreamsFlag(v ActivityStreamsFlag)
	// PrependActivityStreamsFollow prepends a Follow value to the front of a
	// list of the property "items". Invalidates all iterators.
	PrependActivityStreamsFollow(v ActivityStreamsFollow)
	// PrependActivityStreamsGroup prepends a Group value to the front of a
	// list of the property "items". Invalidates all iterators.
	PrependActivityStreamsGroup(v ActivityStreamsGroup)
	// PrependActivityStreamsIgnore prepends a Ignore value to the front of a
	// list of the property "items". Invalidates all iterators.
	PrependActivityStreamsIgnore(v ActivityStreamsIgnore)
	// PrependActivityStreamsImage prepends a Image value to the front of a
	// list of the property "items". Invalidates all iterators.
	PrependActivityStreamsImage(v ActivityStreamsImage)
	// PrependActivityStreamsIntransitiveActivity prepends a
	// IntransitiveActivity value to the front of a list of the property
	// "items". Invalidates all iterators.
	PrependActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// PrependActivityStreamsInvite prepends a Invite value to the front of a
	// list of the property "items". Invalidates all iterators.
	PrependActivityStreamsInvite(v ActivityStreamsInvite)
	// PrependActivityStreamsJoin prepends a Join value to the front of a list
	// of the property "items". Invalidates all iterators.
	PrependActivityStreamsJoin(v ActivityStreamsJoin)
	// PrependActivityStreamsLeave prepends a Leave value to the front of a
	// list of the property "items". Invalidates all iterators.
	PrependActivityStreamsLeave(v ActivityStreamsLeave)
	// PrependActivityStreamsLike prepends a Like value to the front of a list
	// of the property "items". Invalidates all iterators.
	PrependActivityStreamsLike(v ActivityStreamsLike)
	// PrependActivityStreamsLink prepends a Link value to the front of a list
	// of the property "items". Invalidates all iterators.
	PrependActivityStreamsLink(v ActivityStreamsLink)
	// PrependActivityStreamsListen prepends a Listen value to the front of a
	// list of the property "items". Invalidates all iterators.
	PrependActivityStreamsListen(v ActivityStreamsListen)
	// PrependActivityStreamsMention prepends a Mention value to the front of
	// a list of the property "items". Invalidates all iterators.
	PrependActivityStreamsMention(v ActivityStreamsMention)
	// PrependActivityStreamsMove prepends a Move value to the front of a list
	// of the property "items". Invalidates all iterators.
	PrependActivityStreamsMove(v ActivityStreamsMove)
	// PrependActivityStreamsNote prepends a Note value to the front of a list
	// of the property "items". Invalidates all iterators.
	PrependActivityStreamsNote(v ActivityStreamsNote)
	// PrependActivityStreamsObject prepends a Object value to the front of a
	// list of the property "items". Invalidates all iterators.
	PrependActivityStreamsObject(v ActivityStreamsObject)
	// PrependActivityStreamsOffer prepends a Offer value to the front of a
	// list of the property "items". Invalidates all iterators.
	PrependActivityStreamsOffer(v ActivityStreamsOffer)
	// PrependActivityStreamsOrderedCollection prepends a OrderedCollection
	// value to the front of a list of the property "items". Invalidates
	// all iterators.
	PrependActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// PrependActivityStreamsOrderedCollectionPage prepends a
	// OrderedCollectionPage value to the front of a list of the property
	// "items". Invalidates all iterators.
	PrependActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// PrependActivityStreamsOrganization prepends a Organization value to the
	// front of a list of the property "items". Invalidates all iterators.
	PrependActivityStreamsOrganization(v ActivityStreamsOrganization)
	// PrependActivityStreamsPage prepends a Page value to the front of a list
	// of the property "items". Invalidates all iterators.
	PrependActivityStreamsPage(v ActivityStreamsPage)
	// PrependActivityStreamsPerson prepends a Person value to the front of a
	// list of the property "items". Invalidates all iterators.
	PrependActivityStreamsPerson(v ActivityStreamsPerson)
	// PrependActivityStreamsPlace prepends a Place value to the front of a
	// list of the property "items". Invalidates all iterators.
	PrependActivityStreamsPlace(v ActivityStreamsPlace)
	// PrependActivityStreamsProfile prepends a Profile value to the front of
	// a list of the property "items". Invalidates all iterators.
	PrependActivityStreamsProfile(v ActivityStreamsProfile)
	// PrependActivityStreamsQuestion prepends a Question value to the front
	// of a list of the property "items". Invalidates all iterators.
	PrependActivityStreamsQuestion(v ActivityStreamsQuestion)
	// PrependActivityStreamsRead prepends a Read value to the front of a list
	// of the property "items". Invalidates all iterators.
	PrependActivityStreamsRead(v ActivityStreamsRead)
	// PrependActivityStreamsReject prepends a Reject value to the front of a
	// list of the property "items". Invalidates all iterators.
	PrependActivityStreamsReject(v ActivityStreamsReject)
	// PrependActivityStreamsRelationship prepends a Relationship value to the
	// front of a list of the property "items". Invalidates all iterators.
	PrependActivityStreamsRelationship(v ActivityStreamsRelationship)
	// PrependActivityStreamsRemove prepends a Remove value to the front of a
	// list of the property "items". Invalidates all iterators.
	PrependActivityStreamsRemove(v ActivityStreamsRemove)
	// PrependActivityStreamsService prepends a Service value to the front of
	// a list of the property "items". Invalidates all iterators.
	PrependActivityStreamsService(v ActivityStreamsService)
	// PrependActivityStreamsTentativeAccept prepends a TentativeAccept value
	// to the front of a list of the property "items". Invalidates all
	// iterators.
	PrependActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// PrependActivityStreamsTentativeReject prepends a TentativeReject value
	// to the front of a list of the property "items". Invalidates all
	// iterators.
	PrependActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// PrependActivityStreamsTombstone prepends a Tombstone value to the front
	// of a list of the property "items". Invalidates all iterators.
	PrependActivityStreamsTombstone(v ActivityStreamsTombstone)
	// PrependActivityStreamsTravel prepends a Travel value to the front of a
	// list of the property "items". Invalidates all iterators.
	PrependActivityStreamsTravel(v ActivityStreamsTravel)
	// PrependActivityStreamsUndo prepends a Undo value to the front of a list
	// of the property "items". Invalidates all iterators.
	PrependActivityStreamsUndo(v ActivityStreamsUndo)
	// PrependActivityStreamsUpdate prepends a Update value to the front of a
	// list of the property "items". Invalidates all iterators.
	PrependActivityStreamsUpdate(v ActivityStreamsUpdate)
	// PrependActivityStreamsVideo prepends a Video value to the front of a
	// list of the property "items". Invalidates all iterators.
	PrependActivityStreamsVideo(v ActivityStreamsVideo)
	// PrependActivityStreamsView prepends a View value to the front of a list
	// of the property "items". Invalidates all iterators.
	PrependActivityStreamsView(v ActivityStreamsView)
	// PrependForgeFedBranch prepends a Branch value to the front of a list of
	// the property "items". Invalidates all iterators.
	PrependForgeFedBranch(v ForgeFedBranch)
	// PrependForgeFedCommit prepends a Commit value to the front of a list of
	// the property "items". Invalidates all iterators.
	PrependForgeFedCommit(v ForgeFedCommit)
	// PrependForgeFedPush prepends a Push value to the front of a list of the
	// property "items". Invalidates all iterators.
	PrependForgeFedPush(v ForgeFedPush)
	// PrependForgeFedRepository prepends a Repository value to the front of a
	// list of the property "items". Invalidates all iterators.
	PrependForgeFedRepository(v ForgeFedRepository)
	// PrependForgeFedTicket prepends a Ticket value to the front of a list of
	// the property "items". Invalidates all iterators.
	PrependForgeFedTicket(v ForgeFedTicket)
	// PrependForgeFedTicketDependency prepends a TicketDependency value to
	// the front of a list of the property "items". Invalidates all
	// iterators.
	PrependForgeFedTicketDependency(v ForgeFedTicketDependency)
	// PrependIRI prepends an IRI value to the front of a list of the property
	// "items".
	PrependIRI(v *url.URL)
	// PrependTootEmoji prepends a Emoji value to the front of a list of the
	// property "items". Invalidates all iterators.
	PrependTootEmoji(v TootEmoji)
	// PrependTootIdentityProof prepends a IdentityProof value to the front of
	// a list of the property "items". Invalidates all iterators.
	PrependTootIdentityProof(v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "items". Invalidates all iterators. Returns an error
	// if the type is not a valid one to set for this property.
	PrependType(t Type) error
	// Remove deletes an element at the specified index from a list of the
	// property "items", regardless of its type. Panics if the index is
	// out of bounds. Invalidates all iterators.
	Remove(idx int)
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// SetActivityStreamsAccept sets a Accept value to be at the specified
	// index for the property "items". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsAccept(idx int, v ActivityStreamsAccept)
	// SetActivityStreamsActivity sets a Activity value to be at the specified
	// index for the property "items". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsActivity(idx int, v ActivityStreamsActivity)
	// SetActivityStreamsAdd sets a Add value to be at the specified index for
	// the property "items". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsAdd(idx int, v ActivityStreamsAdd)
	// SetActivityStreamsAnnounce sets a Announce value to be at the specified
	// index for the property "items". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsAnnounce(idx int, v ActivityStreamsAnnounce)
	// SetActivityStreamsApplication sets a Application value to be at the
	// specified index for the property "items". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsApplication(idx int, v ActivityStreamsApplication)
	// SetActivityStreamsArrive sets a Arrive value to be at the specified
	// index for the property "items". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsArrive(idx int, v ActivityStreamsArrive)
	// SetActivityStreamsArticle sets a Article value to be at the specified
	// index for the property "items". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsArticle(idx int, v ActivityStreamsArticle)
	// SetActivityStreamsAudio sets a Audio value to be at the specified index
	// for the property "items". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsAudio(idx int, v ActivityStreamsAudio)
	// SetActivityStreamsBlock sets a Block value to be at the specified index
	// for the property "items". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsBlock(idx int, v ActivityStreamsBlock)
	// SetActivityStreamsCollection sets a Collection value to be at the
	// specified index for the property "items". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsCollection(idx int, v ActivityStreamsCollection)
	// SetActivityStreamsCollectionPage sets a CollectionPage value to be at
	// the specified index for the property "items". Panics if the index
	// is out of bounds. Invalidates all iterators.
	SetActivityStreamsCollectionPage(idx int, v ActivityStreamsCollectionPage)
	// SetActivityStreamsCreate sets a Create value to be at the specified
	// index for the property "items". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsCreate(idx int, v ActivityStreamsCreate)
	// SetActivityStreamsDelete sets a Delete value to be at the specified
	// index for the property "items". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsDelete(idx int, v ActivityStreamsDelete)
	// SetActivityStreamsDislike sets a Dislike value to be at the specified
	// index for the property "items". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsDislike(idx int, v ActivityStreamsDislike)
	// SetActivityStreamsDocument sets a Document value to be at the specified
	// index for the property "items". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsDocument(idx int, v ActivityStreamsDocument)
	// SetActivityStreamsEvent sets a Event value to be at the specified index
	// for the property "items". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsEvent(idx int, v ActivityStreamsEvent)
	// SetActivityStreamsFlag sets a Flag value to be at the specified index
	// for the property "items". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsFlag(idx int, v ActivityStreamsFlag)
	// SetActivityStreamsFollow sets a Follow value to be at the specified
	// index for the property "items". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsFollow(idx int, v ActivityStreamsFollow)
	// SetActivityStreamsGroup sets a Group value to be at the specified index
	// for the property "items". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsGroup(idx int, v ActivityStreamsGroup)
	// SetActivityStreamsIgnore sets a Ignore value to be at the specified
	// index for the property "items". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsIgnore(idx int, v ActivityStreamsIgnore)
	// SetActivityStreamsImage sets a Image value to be at the specified index
	// for the property "items". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsImage(idx int, v ActivityStreamsImage)
	// SetActivityStreamsIntransitiveActivity sets a IntransitiveActivity
	// value to be at the specified index for the property "items". Panics
	// if the index is out of bounds. Invalidates all iterators.
	SetActivityStreamsIntransitiveActivity(idx int, v ActivityStreamsIntransitiveActivity)
	// SetActivityStreamsInvite sets a Invite value to be at the specified
	// index for the property "items". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsInvite(idx int, v ActivityStreamsInvite)
	// SetActivityStreamsJoin sets a Join value to be at the specified index
	// for the property "items". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsJoin(idx int, v ActivityStreamsJoin)
	// SetActivityStreamsLeave sets a Leave value to be at the specified index
	// for the property "items". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsLeave(idx int, v ActivityStreamsLeave)
	// SetActivityStreamsLike sets a Like value to be at the specified index
	// for the property "items". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsLike(idx int, v ActivityStreamsLike)
	// SetActivityStreamsLink sets a Link value to be at the specified index
	// for the property "items". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsLink(idx int, v ActivityStreamsLink)
	// SetActivityStreamsListen sets a Listen value to be at the specified
	// index for the property "items". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsListen(idx int, v ActivityStreamsListen)
	// SetActivityStreamsMention sets a Mention value to be at the specified
	// index for the property "items". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsMention(idx int, v ActivityStreamsMention)
	// SetActivityStreamsMove sets a Move value to be at the specified index
	// for the property "items". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsMove(idx int, v ActivityStreamsMove)
	// SetActivityStreamsNote sets a Note value to be at the specified index
	// for the property "items". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsNote(idx int, v ActivityStreamsNote)
	// SetActivityStreamsObject sets a Object value to be at the specified
	// index for the property "items". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsObject(idx int, v ActivityStreamsObject)
	// SetActivityStreamsOffer sets a Offer value to be at the specified index
	// for the property "items". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsOffer(idx int, v ActivityStreamsOffer)
	// SetActivityStreamsOrderedCollection sets a OrderedCollection value to
	// be at the specified index for the property "items". Panics if the
	// index is out of bounds. Invalidates all iterators.
	SetActivityStreamsOrderedCollection(idx int, v ActivityStreamsOrderedCollection)
	// SetActivityStreamsOrderedCollectionPage sets a OrderedCollectionPage
	// value to be at the specified index for the property "items". Panics
	// if the index is out of bounds. Invalidates all iterators.
	SetActivityStreamsOrderedCollectionPage(idx int, v ActivityStreamsOrderedCollectionPage)
	// SetActivityStreamsOrganization sets a Organization value to be at the
	// specified index for the property "items". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsOrganization(idx int, v ActivityStreamsOrganization)
	// SetActivityStreamsPage sets a Page value to be at the specified index
	// for the property "items". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsPage(idx int, v ActivityStreamsPage)
	// SetActivityStreamsPerson sets a Person value to be at the specified
	// index for the property "items". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsPerson(idx int, v ActivityStreamsPerson)
	// SetActivityStreamsPlace sets a Place value to be at the specified index
	// for the property "items". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsPlace(idx int, v ActivityStreamsPlace)
	// SetActivityStreamsProfile sets a Profile value to be at the specified
	// index for the property "items". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsProfile(idx int, v ActivityStreamsProfile)
	// SetActivityStreamsQuestion sets a Question value to be at the specified
	// index for the property "items". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsQuestion(idx int, v ActivityStreamsQuestion)
	// SetActivityStreamsRead sets a Read value to be at the specified index
	// for the property "items". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsRead(idx int, v ActivityStreamsRead)
	// SetActivityStreamsReject sets a Reject value to be at the specified
	// index for the property "items". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsReject(idx int, v ActivityStreamsReject)
	// SetActivityStreamsRelationship sets a Relationship value to be at the
	// specified index for the property "items". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsRelationship(idx int, v ActivityStreamsRelationship)
	// SetActivityStreamsRemove sets a Remove value to be at the specified
	// index for the property "items". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsRemove(idx int, v ActivityStreamsRemove)
	// SetActivityStreamsService sets a Service value to be at the specified
	// index for the property "items". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsService(idx int, v ActivityStreamsService)
	// SetActivityStreamsTentativeAccept sets a TentativeAccept value to be at
	// the specified index for the property "items". Panics if the index
	// is out of bounds. Invalidates all iterators.
	SetActivityStreamsTentativeAccept(idx int, v ActivityStreamsTentativeAccept)
	// SetActivityStreamsTentativeReject sets a TentativeReject value to be at
	// the specified index for the property "items". Panics if the index
	// is out of bounds. Invalidates all iterators.
	SetActivityStreamsTentativeReject(idx int, v ActivityStreamsTentativeReject)
	// SetActivityStreamsTombstone sets a Tombstone value to be at the
	// specified index for the property "items". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsTombstone(idx int, v ActivityStreamsTombstone)
	// SetActivityStreamsTravel sets a Travel value to be at the specified
	// index for the property "items". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsTravel(idx int, v ActivityStreamsTravel)
	// SetActivityStreamsUndo sets a Undo value to be at the specified index
	// for the property "items". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsUndo(idx int, v ActivityStreamsUndo)
	// SetActivityStreamsUpdate sets a Update value to be at the specified
	// index for the property "items". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsUpdate(idx int, v ActivityStreamsUpdate)
	// SetActivityStreamsVideo sets a Video value to be at the specified index
	// for the property "items". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsVideo(idx int, v ActivityStreamsVideo)
	// SetActivityStreamsView sets a View value to be at the specified index
	// for the property "items". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsView(idx int, v ActivityStreamsView)
	// SetForgeFedBranch sets a Branch value to be at the specified index for
	// the property "items". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedBranch(idx int, v ForgeFedBranch)
	// SetForgeFedCommit sets a Commit value to be at the specified index for
	// the property "items". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedCommit(idx int, v ForgeFedCommit)
	// SetForgeFedPush sets a Push value to be at the specified index for the
	// property "items". Panics if the index is out of bounds. Invalidates
	// all iterators.
	SetForgeFedPush(idx int, v ForgeFedPush)
	// SetForgeFedRepository sets a Repository value to be at the specified
	// index for the property "items". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetForgeFedRepository(idx int, v ForgeFedRepository)
	// SetForgeFedTicket sets a Ticket value to be at the specified index for
	// the property "items". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedTicket(idx int, v ForgeFedTicket)
	// SetForgeFedTicketDependency sets a TicketDependency value to be at the
	// specified index for the property "items". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
	// SetIRI sets an IRI value to be at the specified index for the property
	// "items". Panics if the index is out of bounds.
	SetIRI(idx int, v *url.URL)
	// SetTootEmoji sets a Emoji value to be at the specified index for the
	// property "items". Panics if the index is out of bounds. Invalidates
	// all iterators.
	SetTootEmoji(idx int, v TootEmoji)
	// SetTootIdentityProof sets a IdentityProof value to be at the specified
	// index for the property "items". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetTootIdentityProof(idx int, v TootIdentityProof)
	// SetType sets an arbitrary type value to the specified index of the
	// property "items". Invalidates all iterators. Returns an error if
	// the type is not a valid one to set for this property. Panics if the
	// index is out of bounds.
	SetType(idx int, t Type) error
	// Swap swaps the location of values at two indices for the "items"
	// property.
	Swap(i, j int)
}

Identifies the items contained in a collection. The items might be ordered or unordered.

Example 89 (https://www.w3.org/TR/activitystreams-vocabulary/#ex91-jsonld):

{
  "items": [
    {
      "name": "Reminder for Going-Away Party",
      "type": "Note"
    },
    {
      "name": "Meeting 2016-11-17",
      "type": "Note"
    }
  ],
  "summary": "Sally's notes",
  "totalItems": 2,
  "type": "Collection"
}

type ActivityStreamsItemsPropertyIterator

type ActivityStreamsItemsPropertyIterator interface {
	// GetActivityStreamsAccept returns the value of this property. When
	// IsActivityStreamsAccept returns false, GetActivityStreamsAccept
	// will return an arbitrary value.
	GetActivityStreamsAccept() ActivityStreamsAccept
	// GetActivityStreamsActivity returns the value of this property. When
	// IsActivityStreamsActivity returns false, GetActivityStreamsActivity
	// will return an arbitrary value.
	GetActivityStreamsActivity() ActivityStreamsActivity
	// GetActivityStreamsAdd returns the value of this property. When
	// IsActivityStreamsAdd returns false, GetActivityStreamsAdd will
	// return an arbitrary value.
	GetActivityStreamsAdd() ActivityStreamsAdd
	// GetActivityStreamsAnnounce returns the value of this property. When
	// IsActivityStreamsAnnounce returns false, GetActivityStreamsAnnounce
	// will return an arbitrary value.
	GetActivityStreamsAnnounce() ActivityStreamsAnnounce
	// GetActivityStreamsApplication returns the value of this property. When
	// IsActivityStreamsApplication returns false,
	// GetActivityStreamsApplication will return an arbitrary value.
	GetActivityStreamsApplication() ActivityStreamsApplication
	// GetActivityStreamsArrive returns the value of this property. When
	// IsActivityStreamsArrive returns false, GetActivityStreamsArrive
	// will return an arbitrary value.
	GetActivityStreamsArrive() ActivityStreamsArrive
	// GetActivityStreamsArticle returns the value of this property. When
	// IsActivityStreamsArticle returns false, GetActivityStreamsArticle
	// will return an arbitrary value.
	GetActivityStreamsArticle() ActivityStreamsArticle
	// GetActivityStreamsAudio returns the value of this property. When
	// IsActivityStreamsAudio returns false, GetActivityStreamsAudio will
	// return an arbitrary value.
	GetActivityStreamsAudio() ActivityStreamsAudio
	// GetActivityStreamsBlock returns the value of this property. When
	// IsActivityStreamsBlock returns false, GetActivityStreamsBlock will
	// return an arbitrary value.
	GetActivityStreamsBlock() ActivityStreamsBlock
	// GetActivityStreamsCollection returns the value of this property. When
	// IsActivityStreamsCollection returns false,
	// GetActivityStreamsCollection will return an arbitrary value.
	GetActivityStreamsCollection() ActivityStreamsCollection
	// GetActivityStreamsCollectionPage returns the value of this property.
	// When IsActivityStreamsCollectionPage returns false,
	// GetActivityStreamsCollectionPage will return an arbitrary value.
	GetActivityStreamsCollectionPage() ActivityStreamsCollectionPage
	// GetActivityStreamsCreate returns the value of this property. When
	// IsActivityStreamsCreate returns false, GetActivityStreamsCreate
	// will return an arbitrary value.
	GetActivityStreamsCreate() ActivityStreamsCreate
	// GetActivityStreamsDelete returns the value of this property. When
	// IsActivityStreamsDelete returns false, GetActivityStreamsDelete
	// will return an arbitrary value.
	GetActivityStreamsDelete() ActivityStreamsDelete
	// GetActivityStreamsDislike returns the value of this property. When
	// IsActivityStreamsDislike returns false, GetActivityStreamsDislike
	// will return an arbitrary value.
	GetActivityStreamsDislike() ActivityStreamsDislike
	// GetActivityStreamsDocument returns the value of this property. When
	// IsActivityStreamsDocument returns false, GetActivityStreamsDocument
	// will return an arbitrary value.
	GetActivityStreamsDocument() ActivityStreamsDocument
	// GetActivityStreamsEvent returns the value of this property. When
	// IsActivityStreamsEvent returns false, GetActivityStreamsEvent will
	// return an arbitrary value.
	GetActivityStreamsEvent() ActivityStreamsEvent
	// GetActivityStreamsFlag returns the value of this property. When
	// IsActivityStreamsFlag returns false, GetActivityStreamsFlag will
	// return an arbitrary value.
	GetActivityStreamsFlag() ActivityStreamsFlag
	// GetActivityStreamsFollow returns the value of this property. When
	// IsActivityStreamsFollow returns false, GetActivityStreamsFollow
	// will return an arbitrary value.
	GetActivityStreamsFollow() ActivityStreamsFollow
	// GetActivityStreamsGroup returns the value of this property. When
	// IsActivityStreamsGroup returns false, GetActivityStreamsGroup will
	// return an arbitrary value.
	GetActivityStreamsGroup() ActivityStreamsGroup
	// GetActivityStreamsIgnore returns the value of this property. When
	// IsActivityStreamsIgnore returns false, GetActivityStreamsIgnore
	// will return an arbitrary value.
	GetActivityStreamsIgnore() ActivityStreamsIgnore
	// GetActivityStreamsImage returns the value of this property. When
	// IsActivityStreamsImage returns false, GetActivityStreamsImage will
	// return an arbitrary value.
	GetActivityStreamsImage() ActivityStreamsImage
	// GetActivityStreamsIntransitiveActivity returns the value of this
	// property. When IsActivityStreamsIntransitiveActivity returns false,
	// GetActivityStreamsIntransitiveActivity will return an arbitrary
	// value.
	GetActivityStreamsIntransitiveActivity() ActivityStreamsIntransitiveActivity
	// GetActivityStreamsInvite returns the value of this property. When
	// IsActivityStreamsInvite returns false, GetActivityStreamsInvite
	// will return an arbitrary value.
	GetActivityStreamsInvite() ActivityStreamsInvite
	// GetActivityStreamsJoin returns the value of this property. When
	// IsActivityStreamsJoin returns false, GetActivityStreamsJoin will
	// return an arbitrary value.
	GetActivityStreamsJoin() ActivityStreamsJoin
	// GetActivityStreamsLeave returns the value of this property. When
	// IsActivityStreamsLeave returns false, GetActivityStreamsLeave will
	// return an arbitrary value.
	GetActivityStreamsLeave() ActivityStreamsLeave
	// GetActivityStreamsLike returns the value of this property. When
	// IsActivityStreamsLike returns false, GetActivityStreamsLike will
	// return an arbitrary value.
	GetActivityStreamsLike() ActivityStreamsLike
	// GetActivityStreamsLink returns the value of this property. When
	// IsActivityStreamsLink returns false, GetActivityStreamsLink will
	// return an arbitrary value.
	GetActivityStreamsLink() ActivityStreamsLink
	// GetActivityStreamsListen returns the value of this property. When
	// IsActivityStreamsListen returns false, GetActivityStreamsListen
	// will return an arbitrary value.
	GetActivityStreamsListen() ActivityStreamsListen
	// GetActivityStreamsMention returns the value of this property. When
	// IsActivityStreamsMention returns false, GetActivityStreamsMention
	// will return an arbitrary value.
	GetActivityStreamsMention() ActivityStreamsMention
	// GetActivityStreamsMove returns the value of this property. When
	// IsActivityStreamsMove returns false, GetActivityStreamsMove will
	// return an arbitrary value.
	GetActivityStreamsMove() ActivityStreamsMove
	// GetActivityStreamsNote returns the value of this property. When
	// IsActivityStreamsNote returns false, GetActivityStreamsNote will
	// return an arbitrary value.
	GetActivityStreamsNote() ActivityStreamsNote
	// GetActivityStreamsObject returns the value of this property. When
	// IsActivityStreamsObject returns false, GetActivityStreamsObject
	// will return an arbitrary value.
	GetActivityStreamsObject() ActivityStreamsObject
	// GetActivityStreamsOffer returns the value of this property. When
	// IsActivityStreamsOffer returns false, GetActivityStreamsOffer will
	// return an arbitrary value.
	GetActivityStreamsOffer() ActivityStreamsOffer
	// GetActivityStreamsOrderedCollection returns the value of this property.
	// When IsActivityStreamsOrderedCollection returns false,
	// GetActivityStreamsOrderedCollection will return an arbitrary value.
	GetActivityStreamsOrderedCollection() ActivityStreamsOrderedCollection
	// GetActivityStreamsOrderedCollectionPage returns the value of this
	// property. When IsActivityStreamsOrderedCollectionPage returns
	// false, GetActivityStreamsOrderedCollectionPage will return an
	// arbitrary value.
	GetActivityStreamsOrderedCollectionPage() ActivityStreamsOrderedCollectionPage
	// GetActivityStreamsOrganization returns the value of this property. When
	// IsActivityStreamsOrganization returns false,
	// GetActivityStreamsOrganization will return an arbitrary value.
	GetActivityStreamsOrganization() ActivityStreamsOrganization
	// GetActivityStreamsPage returns the value of this property. When
	// IsActivityStreamsPage returns false, GetActivityStreamsPage will
	// return an arbitrary value.
	GetActivityStreamsPage() ActivityStreamsPage
	// GetActivityStreamsPerson returns the value of this property. When
	// IsActivityStreamsPerson returns false, GetActivityStreamsPerson
	// will return an arbitrary value.
	GetActivityStreamsPerson() ActivityStreamsPerson
	// GetActivityStreamsPlace returns the value of this property. When
	// IsActivityStreamsPlace returns false, GetActivityStreamsPlace will
	// return an arbitrary value.
	GetActivityStreamsPlace() ActivityStreamsPlace
	// GetActivityStreamsProfile returns the value of this property. When
	// IsActivityStreamsProfile returns false, GetActivityStreamsProfile
	// will return an arbitrary value.
	GetActivityStreamsProfile() ActivityStreamsProfile
	// GetActivityStreamsQuestion returns the value of this property. When
	// IsActivityStreamsQuestion returns false, GetActivityStreamsQuestion
	// will return an arbitrary value.
	GetActivityStreamsQuestion() ActivityStreamsQuestion
	// GetActivityStreamsRead returns the value of this property. When
	// IsActivityStreamsRead returns false, GetActivityStreamsRead will
	// return an arbitrary value.
	GetActivityStreamsRead() ActivityStreamsRead
	// GetActivityStreamsReject returns the value of this property. When
	// IsActivityStreamsReject returns false, GetActivityStreamsReject
	// will return an arbitrary value.
	GetActivityStreamsReject() ActivityStreamsReject
	// GetActivityStreamsRelationship returns the value of this property. When
	// IsActivityStreamsRelationship returns false,
	// GetActivityStreamsRelationship will return an arbitrary value.
	GetActivityStreamsRelationship() ActivityStreamsRelationship
	// GetActivityStreamsRemove returns the value of this property. When
	// IsActivityStreamsRemove returns false, GetActivityStreamsRemove
	// will return an arbitrary value.
	GetActivityStreamsRemove() ActivityStreamsRemove
	// GetActivityStreamsService returns the value of this property. When
	// IsActivityStreamsService returns false, GetActivityStreamsService
	// will return an arbitrary value.
	GetActivityStreamsService() ActivityStreamsService
	// GetActivityStreamsTentativeAccept returns the value of this property.
	// When IsActivityStreamsTentativeAccept returns false,
	// GetActivityStreamsTentativeAccept will return an arbitrary value.
	GetActivityStreamsTentativeAccept() ActivityStreamsTentativeAccept
	// GetActivityStreamsTentativeReject returns the value of this property.
	// When IsActivityStreamsTentativeReject returns false,
	// GetActivityStreamsTentativeReject will return an arbitrary value.
	GetActivityStreamsTentativeReject() ActivityStreamsTentativeReject
	// GetActivityStreamsTombstone returns the value of this property. When
	// IsActivityStreamsTombstone returns false,
	// GetActivityStreamsTombstone will return an arbitrary value.
	GetActivityStreamsTombstone() ActivityStreamsTombstone
	// GetActivityStreamsTravel returns the value of this property. When
	// IsActivityStreamsTravel returns false, GetActivityStreamsTravel
	// will return an arbitrary value.
	GetActivityStreamsTravel() ActivityStreamsTravel
	// GetActivityStreamsUndo returns the value of this property. When
	// IsActivityStreamsUndo returns false, GetActivityStreamsUndo will
	// return an arbitrary value.
	GetActivityStreamsUndo() ActivityStreamsUndo
	// GetActivityStreamsUpdate returns the value of this property. When
	// IsActivityStreamsUpdate returns false, GetActivityStreamsUpdate
	// will return an arbitrary value.
	GetActivityStreamsUpdate() ActivityStreamsUpdate
	// GetActivityStreamsVideo returns the value of this property. When
	// IsActivityStreamsVideo returns false, GetActivityStreamsVideo will
	// return an arbitrary value.
	GetActivityStreamsVideo() ActivityStreamsVideo
	// GetActivityStreamsView returns the value of this property. When
	// IsActivityStreamsView returns false, GetActivityStreamsView will
	// return an arbitrary value.
	GetActivityStreamsView() ActivityStreamsView
	// GetForgeFedBranch returns the value of this property. When
	// IsForgeFedBranch returns false, GetForgeFedBranch will return an
	// arbitrary value.
	GetForgeFedBranch() ForgeFedBranch
	// GetForgeFedCommit returns the value of this property. When
	// IsForgeFedCommit returns false, GetForgeFedCommit will return an
	// arbitrary value.
	GetForgeFedCommit() ForgeFedCommit
	// GetForgeFedPush returns the value of this property. When IsForgeFedPush
	// returns false, GetForgeFedPush will return an arbitrary value.
	GetForgeFedPush() ForgeFedPush
	// GetForgeFedRepository returns the value of this property. When
	// IsForgeFedRepository returns false, GetForgeFedRepository will
	// return an arbitrary value.
	GetForgeFedRepository() ForgeFedRepository
	// GetForgeFedTicket returns the value of this property. When
	// IsForgeFedTicket returns false, GetForgeFedTicket will return an
	// arbitrary value.
	GetForgeFedTicket() ForgeFedTicket
	// GetForgeFedTicketDependency returns the value of this property. When
	// IsForgeFedTicketDependency returns false,
	// GetForgeFedTicketDependency will return an arbitrary value.
	GetForgeFedTicketDependency() ForgeFedTicketDependency
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return an arbitrary value.
	GetIRI() *url.URL
	// GetTootEmoji returns the value of this property. When IsTootEmoji
	// returns false, GetTootEmoji will return an arbitrary value.
	GetTootEmoji() TootEmoji
	// GetTootIdentityProof returns the value of this property. When
	// IsTootIdentityProof returns false, GetTootIdentityProof will return
	// an arbitrary value.
	GetTootIdentityProof() TootIdentityProof
	// GetType returns the value in this property as a Type. Returns nil if
	// the value is not an ActivityStreams type, such as an IRI or another
	// value.
	GetType() Type
	// HasAny returns true if any of the different values is set.
	HasAny() bool
	// IsActivityStreamsAccept returns true if this property has a type of
	// "Accept". When true, use the GetActivityStreamsAccept and
	// SetActivityStreamsAccept methods to access and set this property.
	IsActivityStreamsAccept() bool
	// IsActivityStreamsActivity returns true if this property has a type of
	// "Activity". When true, use the GetActivityStreamsActivity and
	// SetActivityStreamsActivity methods to access and set this property.
	IsActivityStreamsActivity() bool
	// IsActivityStreamsAdd returns true if this property has a type of "Add".
	// When true, use the GetActivityStreamsAdd and SetActivityStreamsAdd
	// methods to access and set this property.
	IsActivityStreamsAdd() bool
	// IsActivityStreamsAnnounce returns true if this property has a type of
	// "Announce". When true, use the GetActivityStreamsAnnounce and
	// SetActivityStreamsAnnounce methods to access and set this property.
	IsActivityStreamsAnnounce() bool
	// IsActivityStreamsApplication returns true if this property has a type
	// of "Application". When true, use the GetActivityStreamsApplication
	// and SetActivityStreamsApplication methods to access and set this
	// property.
	IsActivityStreamsApplication() bool
	// IsActivityStreamsArrive returns true if this property has a type of
	// "Arrive". When true, use the GetActivityStreamsArrive and
	// SetActivityStreamsArrive methods to access and set this property.
	IsActivityStreamsArrive() bool
	// IsActivityStreamsArticle returns true if this property has a type of
	// "Article". When true, use the GetActivityStreamsArticle and
	// SetActivityStreamsArticle methods to access and set this property.
	IsActivityStreamsArticle() bool
	// IsActivityStreamsAudio returns true if this property has a type of
	// "Audio". When true, use the GetActivityStreamsAudio and
	// SetActivityStreamsAudio methods to access and set this property.
	IsActivityStreamsAudio() bool
	// IsActivityStreamsBlock returns true if this property has a type of
	// "Block". When true, use the GetActivityStreamsBlock and
	// SetActivityStreamsBlock methods to access and set this property.
	IsActivityStreamsBlock() bool
	// IsActivityStreamsCollection returns true if this property has a type of
	// "Collection". When true, use the GetActivityStreamsCollection and
	// SetActivityStreamsCollection methods to access and set this
	// property.
	IsActivityStreamsCollection() bool
	// IsActivityStreamsCollectionPage returns true if this property has a
	// type of "CollectionPage". When true, use the
	// GetActivityStreamsCollectionPage and
	// SetActivityStreamsCollectionPage methods to access and set this
	// property.
	IsActivityStreamsCollectionPage() bool
	// IsActivityStreamsCreate returns true if this property has a type of
	// "Create". When true, use the GetActivityStreamsCreate and
	// SetActivityStreamsCreate methods to access and set this property.
	IsActivityStreamsCreate() bool
	// IsActivityStreamsDelete returns true if this property has a type of
	// "Delete". When true, use the GetActivityStreamsDelete and
	// SetActivityStreamsDelete methods to access and set this property.
	IsActivityStreamsDelete() bool
	// IsActivityStreamsDislike returns true if this property has a type of
	// "Dislike". When true, use the GetActivityStreamsDislike and
	// SetActivityStreamsDislike methods to access and set this property.
	IsActivityStreamsDislike() bool
	// IsActivityStreamsDocument returns true if this property has a type of
	// "Document". When true, use the GetActivityStreamsDocument and
	// SetActivityStreamsDocument methods to access and set this property.
	IsActivityStreamsDocument() bool
	// IsActivityStreamsEvent returns true if this property has a type of
	// "Event". When true, use the GetActivityStreamsEvent and
	// SetActivityStreamsEvent methods to access and set this property.
	IsActivityStreamsEvent() bool
	// IsActivityStreamsFlag returns true if this property has a type of
	// "Flag". When true, use the GetActivityStreamsFlag and
	// SetActivityStreamsFlag methods to access and set this property.
	IsActivityStreamsFlag() bool
	// IsActivityStreamsFollow returns true if this property has a type of
	// "Follow". When true, use the GetActivityStreamsFollow and
	// SetActivityStreamsFollow methods to access and set this property.
	IsActivityStreamsFollow() bool
	// IsActivityStreamsGroup returns true if this property has a type of
	// "Group". When true, use the GetActivityStreamsGroup and
	// SetActivityStreamsGroup methods to access and set this property.
	IsActivityStreamsGroup() bool
	// IsActivityStreamsIgnore returns true if this property has a type of
	// "Ignore". When true, use the GetActivityStreamsIgnore and
	// SetActivityStreamsIgnore methods to access and set this property.
	IsActivityStreamsIgnore() bool
	// IsActivityStreamsImage returns true if this property has a type of
	// "Image". When true, use the GetActivityStreamsImage and
	// SetActivityStreamsImage methods to access and set this property.
	IsActivityStreamsImage() bool
	// IsActivityStreamsIntransitiveActivity returns true if this property has
	// a type of "IntransitiveActivity". When true, use the
	// GetActivityStreamsIntransitiveActivity and
	// SetActivityStreamsIntransitiveActivity methods to access and set
	// this property.
	IsActivityStreamsIntransitiveActivity() bool
	// IsActivityStreamsInvite returns true if this property has a type of
	// "Invite". When true, use the GetActivityStreamsInvite and
	// SetActivityStreamsInvite methods to access and set this property.
	IsActivityStreamsInvite() bool
	// IsActivityStreamsJoin returns true if this property has a type of
	// "Join". When true, use the GetActivityStreamsJoin and
	// SetActivityStreamsJoin methods to access and set this property.
	IsActivityStreamsJoin() bool
	// IsActivityStreamsLeave returns true if this property has a type of
	// "Leave". When true, use the GetActivityStreamsLeave and
	// SetActivityStreamsLeave methods to access and set this property.
	IsActivityStreamsLeave() bool
	// IsActivityStreamsLike returns true if this property has a type of
	// "Like". When true, use the GetActivityStreamsLike and
	// SetActivityStreamsLike methods to access and set this property.
	IsActivityStreamsLike() bool
	// IsActivityStreamsLink returns true if this property has a type of
	// "Link". When true, use the GetActivityStreamsLink and
	// SetActivityStreamsLink methods to access and set this property.
	IsActivityStreamsLink() bool
	// IsActivityStreamsListen returns true if this property has a type of
	// "Listen". When true, use the GetActivityStreamsListen and
	// SetActivityStreamsListen methods to access and set this property.
	IsActivityStreamsListen() bool
	// IsActivityStreamsMention returns true if this property has a type of
	// "Mention". When true, use the GetActivityStreamsMention and
	// SetActivityStreamsMention methods to access and set this property.
	IsActivityStreamsMention() bool
	// IsActivityStreamsMove returns true if this property has a type of
	// "Move". When true, use the GetActivityStreamsMove and
	// SetActivityStreamsMove methods to access and set this property.
	IsActivityStreamsMove() bool
	// IsActivityStreamsNote returns true if this property has a type of
	// "Note". When true, use the GetActivityStreamsNote and
	// SetActivityStreamsNote methods to access and set this property.
	IsActivityStreamsNote() bool
	// IsActivityStreamsObject returns true if this property has a type of
	// "Object". When true, use the GetActivityStreamsObject and
	// SetActivityStreamsObject methods to access and set this property.
	IsActivityStreamsObject() bool
	// IsActivityStreamsOffer returns true if this property has a type of
	// "Offer". When true, use the GetActivityStreamsOffer and
	// SetActivityStreamsOffer methods to access and set this property.
	IsActivityStreamsOffer() bool
	// IsActivityStreamsOrderedCollection returns true if this property has a
	// type of "OrderedCollection". When true, use the
	// GetActivityStreamsOrderedCollection and
	// SetActivityStreamsOrderedCollection methods to access and set this
	// property.
	IsActivityStreamsOrderedCollection() bool
	// IsActivityStreamsOrderedCollectionPage returns true if this property
	// has a type of "OrderedCollectionPage". When true, use the
	// GetActivityStreamsOrderedCollectionPage and
	// SetActivityStreamsOrderedCollectionPage methods to access and set
	// this property.
	IsActivityStreamsOrderedCollectionPage() bool
	// IsActivityStreamsOrganization returns true if this property has a type
	// of "Organization". When true, use the
	// GetActivityStreamsOrganization and SetActivityStreamsOrganization
	// methods to access and set this property.
	IsActivityStreamsOrganization() bool
	// IsActivityStreamsPage returns true if this property has a type of
	// "Page". When true, use the GetActivityStreamsPage and
	// SetActivityStreamsPage methods to access and set this property.
	IsActivityStreamsPage() bool
	// IsActivityStreamsPerson returns true if this property has a type of
	// "Person". When true, use the GetActivityStreamsPerson and
	// SetActivityStreamsPerson methods to access and set this property.
	IsActivityStreamsPerson() bool
	// IsActivityStreamsPlace returns true if this property has a type of
	// "Place". When true, use the GetActivityStreamsPlace and
	// SetActivityStreamsPlace methods to access and set this property.
	IsActivityStreamsPlace() bool
	// IsActivityStreamsProfile returns true if this property has a type of
	// "Profile". When true, use the GetActivityStreamsProfile and
	// SetActivityStreamsProfile methods to access and set this property.
	IsActivityStreamsProfile() bool
	// IsActivityStreamsQuestion returns true if this property has a type of
	// "Question". When true, use the GetActivityStreamsQuestion and
	// SetActivityStreamsQuestion methods to access and set this property.
	IsActivityStreamsQuestion() bool
	// IsActivityStreamsRead returns true if this property has a type of
	// "Read". When true, use the GetActivityStreamsRead and
	// SetActivityStreamsRead methods to access and set this property.
	IsActivityStreamsRead() bool
	// IsActivityStreamsReject returns true if this property has a type of
	// "Reject". When true, use the GetActivityStreamsReject and
	// SetActivityStreamsReject methods to access and set this property.
	IsActivityStreamsReject() bool
	// IsActivityStreamsRelationship returns true if this property has a type
	// of "Relationship". When true, use the
	// GetActivityStreamsRelationship and SetActivityStreamsRelationship
	// methods to access and set this property.
	IsActivityStreamsRelationship() bool
	// IsActivityStreamsRemove returns true if this property has a type of
	// "Remove". When true, use the GetActivityStreamsRemove and
	// SetActivityStreamsRemove methods to access and set this property.
	IsActivityStreamsRemove() bool
	// IsActivityStreamsService returns true if this property has a type of
	// "Service". When true, use the GetActivityStreamsService and
	// SetActivityStreamsService methods to access and set this property.
	IsActivityStreamsService() bool
	// IsActivityStreamsTentativeAccept returns true if this property has a
	// type of "TentativeAccept". When true, use the
	// GetActivityStreamsTentativeAccept and
	// SetActivityStreamsTentativeAccept methods to access and set this
	// property.
	IsActivityStreamsTentativeAccept() bool
	// IsActivityStreamsTentativeReject returns true if this property has a
	// type of "TentativeReject". When true, use the
	// GetActivityStreamsTentativeReject and
	// SetActivityStreamsTentativeReject methods to access and set this
	// property.
	IsActivityStreamsTentativeReject() bool
	// IsActivityStreamsTombstone returns true if this property has a type of
	// "Tombstone". When true, use the GetActivityStreamsTombstone and
	// SetActivityStreamsTombstone methods to access and set this property.
	IsActivityStreamsTombstone() bool
	// IsActivityStreamsTravel returns true if this property has a type of
	// "Travel". When true, use the GetActivityStreamsTravel and
	// SetActivityStreamsTravel methods to access and set this property.
	IsActivityStreamsTravel() bool
	// IsActivityStreamsUndo returns true if this property has a type of
	// "Undo". When true, use the GetActivityStreamsUndo and
	// SetActivityStreamsUndo methods to access and set this property.
	IsActivityStreamsUndo() bool
	// IsActivityStreamsUpdate returns true if this property has a type of
	// "Update". When true, use the GetActivityStreamsUpdate and
	// SetActivityStreamsUpdate methods to access and set this property.
	IsActivityStreamsUpdate() bool
	// IsActivityStreamsVideo returns true if this property has a type of
	// "Video". When true, use the GetActivityStreamsVideo and
	// SetActivityStreamsVideo methods to access and set this property.
	IsActivityStreamsVideo() bool
	// IsActivityStreamsView returns true if this property has a type of
	// "View". When true, use the GetActivityStreamsView and
	// SetActivityStreamsView methods to access and set this property.
	IsActivityStreamsView() bool
	// IsForgeFedBranch returns true if this property has a type of "Branch".
	// When true, use the GetForgeFedBranch and SetForgeFedBranch methods
	// to access and set this property.
	IsForgeFedBranch() bool
	// IsForgeFedCommit returns true if this property has a type of "Commit".
	// When true, use the GetForgeFedCommit and SetForgeFedCommit methods
	// to access and set this property.
	IsForgeFedCommit() bool
	// IsForgeFedPush returns true if this property has a type of "Push". When
	// true, use the GetForgeFedPush and SetForgeFedPush methods to access
	// and set this property.
	IsForgeFedPush() bool
	// IsForgeFedRepository returns true if this property has a type of
	// "Repository". When true, use the GetForgeFedRepository and
	// SetForgeFedRepository methods to access and set this property.
	IsForgeFedRepository() bool
	// IsForgeFedTicket returns true if this property has a type of "Ticket".
	// When true, use the GetForgeFedTicket and SetForgeFedTicket methods
	// to access and set this property.
	IsForgeFedTicket() bool
	// IsForgeFedTicketDependency returns true if this property has a type of
	// "TicketDependency". When true, use the GetForgeFedTicketDependency
	// and SetForgeFedTicketDependency methods to access and set this
	// property.
	IsForgeFedTicketDependency() bool
	// IsIRI returns true if this property is an IRI. When true, use GetIRI
	// and SetIRI to access and set this property
	IsIRI() bool
	// IsTootEmoji returns true if this property has a type of "Emoji". When
	// true, use the GetTootEmoji and SetTootEmoji methods to access and
	// set this property.
	IsTootEmoji() bool
	// IsTootIdentityProof returns true if this property has a type of
	// "IdentityProof". When true, use the GetTootIdentityProof and
	// SetTootIdentityProof methods to access and set this property.
	IsTootIdentityProof() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsItemsPropertyIterator) bool
	// Name returns the name of this property: "ActivityStreamsItems".
	Name() string
	// Next returns the next iterator, or nil if there is no next iterator.
	Next() ActivityStreamsItemsPropertyIterator
	// Prev returns the previous iterator, or nil if there is no previous
	// iterator.
	Prev() ActivityStreamsItemsPropertyIterator
	// SetActivityStreamsAccept sets the value of this property. Calling
	// IsActivityStreamsAccept afterwards returns true.
	SetActivityStreamsAccept(v ActivityStreamsAccept)
	// SetActivityStreamsActivity sets the value of this property. Calling
	// IsActivityStreamsActivity afterwards returns true.
	SetActivityStreamsActivity(v ActivityStreamsActivity)
	// SetActivityStreamsAdd sets the value of this property. Calling
	// IsActivityStreamsAdd afterwards returns true.
	SetActivityStreamsAdd(v ActivityStreamsAdd)
	// SetActivityStreamsAnnounce sets the value of this property. Calling
	// IsActivityStreamsAnnounce afterwards returns true.
	SetActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// SetActivityStreamsApplication sets the value of this property. Calling
	// IsActivityStreamsApplication afterwards returns true.
	SetActivityStreamsApplication(v ActivityStreamsApplication)
	// SetActivityStreamsArrive sets the value of this property. Calling
	// IsActivityStreamsArrive afterwards returns true.
	SetActivityStreamsArrive(v ActivityStreamsArrive)
	// SetActivityStreamsArticle sets the value of this property. Calling
	// IsActivityStreamsArticle afterwards returns true.
	SetActivityStreamsArticle(v ActivityStreamsArticle)
	// SetActivityStreamsAudio sets the value of this property. Calling
	// IsActivityStreamsAudio afterwards returns true.
	SetActivityStreamsAudio(v ActivityStreamsAudio)
	// SetActivityStreamsBlock sets the value of this property. Calling
	// IsActivityStreamsBlock afterwards returns true.
	SetActivityStreamsBlock(v ActivityStreamsBlock)
	// SetActivityStreamsCollection sets the value of this property. Calling
	// IsActivityStreamsCollection afterwards returns true.
	SetActivityStreamsCollection(v ActivityStreamsCollection)
	// SetActivityStreamsCollectionPage sets the value of this property.
	// Calling IsActivityStreamsCollectionPage afterwards returns true.
	SetActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// SetActivityStreamsCreate sets the value of this property. Calling
	// IsActivityStreamsCreate afterwards returns true.
	SetActivityStreamsCreate(v ActivityStreamsCreate)
	// SetActivityStreamsDelete sets the value of this property. Calling
	// IsActivityStreamsDelete afterwards returns true.
	SetActivityStreamsDelete(v ActivityStreamsDelete)
	// SetActivityStreamsDislike sets the value of this property. Calling
	// IsActivityStreamsDislike afterwards returns true.
	SetActivityStreamsDislike(v ActivityStreamsDislike)
	// SetActivityStreamsDocument sets the value of this property. Calling
	// IsActivityStreamsDocument afterwards returns true.
	SetActivityStreamsDocument(v ActivityStreamsDocument)
	// SetActivityStreamsEvent sets the value of this property. Calling
	// IsActivityStreamsEvent afterwards returns true.
	SetActivityStreamsEvent(v ActivityStreamsEvent)
	// SetActivityStreamsFlag sets the value of this property. Calling
	// IsActivityStreamsFlag afterwards returns true.
	SetActivityStreamsFlag(v ActivityStreamsFlag)
	// SetActivityStreamsFollow sets the value of this property. Calling
	// IsActivityStreamsFollow afterwards returns true.
	SetActivityStreamsFollow(v ActivityStreamsFollow)
	// SetActivityStreamsGroup sets the value of this property. Calling
	// IsActivityStreamsGroup afterwards returns true.
	SetActivityStreamsGroup(v ActivityStreamsGroup)
	// SetActivityStreamsIgnore sets the value of this property. Calling
	// IsActivityStreamsIgnore afterwards returns true.
	SetActivityStreamsIgnore(v ActivityStreamsIgnore)
	// SetActivityStreamsImage sets the value of this property. Calling
	// IsActivityStreamsImage afterwards returns true.
	SetActivityStreamsImage(v ActivityStreamsImage)
	// SetActivityStreamsIntransitiveActivity sets the value of this property.
	// Calling IsActivityStreamsIntransitiveActivity afterwards returns
	// true.
	SetActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// SetActivityStreamsInvite sets the value of this property. Calling
	// IsActivityStreamsInvite afterwards returns true.
	SetActivityStreamsInvite(v ActivityStreamsInvite)
	// SetActivityStreamsJoin sets the value of this property. Calling
	// IsActivityStreamsJoin afterwards returns true.
	SetActivityStreamsJoin(v ActivityStreamsJoin)
	// SetActivityStreamsLeave sets the value of this property. Calling
	// IsActivityStreamsLeave afterwards returns true.
	SetActivityStreamsLeave(v ActivityStreamsLeave)
	// SetActivityStreamsLike sets the value of this property. Calling
	// IsActivityStreamsLike afterwards returns true.
	SetActivityStreamsLike(v ActivityStreamsLike)
	// SetActivityStreamsLink sets the value of this property. Calling
	// IsActivityStreamsLink afterwards returns true.
	SetActivityStreamsLink(v ActivityStreamsLink)
	// SetActivityStreamsListen sets the value of this property. Calling
	// IsActivityStreamsListen afterwards returns true.
	SetActivityStreamsListen(v ActivityStreamsListen)
	// SetActivityStreamsMention sets the value of this property. Calling
	// IsActivityStreamsMention afterwards returns true.
	SetActivityStreamsMention(v ActivityStreamsMention)
	// SetActivityStreamsMove sets the value of this property. Calling
	// IsActivityStreamsMove afterwards returns true.
	SetActivityStreamsMove(v ActivityStreamsMove)
	// SetActivityStreamsNote sets the value of this property. Calling
	// IsActivityStreamsNote afterwards returns true.
	SetActivityStreamsNote(v ActivityStreamsNote)
	// SetActivityStreamsObject sets the value of this property. Calling
	// IsActivityStreamsObject afterwards returns true.
	SetActivityStreamsObject(v ActivityStreamsObject)
	// SetActivityStreamsOffer sets the value of this property. Calling
	// IsActivityStreamsOffer afterwards returns true.
	SetActivityStreamsOffer(v ActivityStreamsOffer)
	// SetActivityStreamsOrderedCollection sets the value of this property.
	// Calling IsActivityStreamsOrderedCollection afterwards returns true.
	SetActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// SetActivityStreamsOrderedCollectionPage sets the value of this
	// property. Calling IsActivityStreamsOrderedCollectionPage afterwards
	// returns true.
	SetActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// SetActivityStreamsOrganization sets the value of this property. Calling
	// IsActivityStreamsOrganization afterwards returns true.
	SetActivityStreamsOrganization(v ActivityStreamsOrganization)
	// SetActivityStreamsPage sets the value of this property. Calling
	// IsActivityStreamsPage afterwards returns true.
	SetActivityStreamsPage(v ActivityStreamsPage)
	// SetActivityStreamsPerson sets the value of this property. Calling
	// IsActivityStreamsPerson afterwards returns true.
	SetActivityStreamsPerson(v ActivityStreamsPerson)
	// SetActivityStreamsPlace sets the value of this property. Calling
	// IsActivityStreamsPlace afterwards returns true.
	SetActivityStreamsPlace(v ActivityStreamsPlace)
	// SetActivityStreamsProfile sets the value of this property. Calling
	// IsActivityStreamsProfile afterwards returns true.
	SetActivityStreamsProfile(v ActivityStreamsProfile)
	// SetActivityStreamsQuestion sets the value of this property. Calling
	// IsActivityStreamsQuestion afterwards returns true.
	SetActivityStreamsQuestion(v ActivityStreamsQuestion)
	// SetActivityStreamsRead sets the value of this property. Calling
	// IsActivityStreamsRead afterwards returns true.
	SetActivityStreamsRead(v ActivityStreamsRead)
	// SetActivityStreamsReject sets the value of this property. Calling
	// IsActivityStreamsReject afterwards returns true.
	SetActivityStreamsReject(v ActivityStreamsReject)
	// SetActivityStreamsRelationship sets the value of this property. Calling
	// IsActivityStreamsRelationship afterwards returns true.
	SetActivityStreamsRelationship(v ActivityStreamsRelationship)
	// SetActivityStreamsRemove sets the value of this property. Calling
	// IsActivityStreamsRemove afterwards returns true.
	SetActivityStreamsRemove(v ActivityStreamsRemove)
	// SetActivityStreamsService sets the value of this property. Calling
	// IsActivityStreamsService afterwards returns true.
	SetActivityStreamsService(v ActivityStreamsService)
	// SetActivityStreamsTentativeAccept sets the value of this property.
	// Calling IsActivityStreamsTentativeAccept afterwards returns true.
	SetActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// SetActivityStreamsTentativeReject sets the value of this property.
	// Calling IsActivityStreamsTentativeReject afterwards returns true.
	SetActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// SetActivityStreamsTombstone sets the value of this property. Calling
	// IsActivityStreamsTombstone afterwards returns true.
	SetActivityStreamsTombstone(v ActivityStreamsTombstone)
	// SetActivityStreamsTravel sets the value of this property. Calling
	// IsActivityStreamsTravel afterwards returns true.
	SetActivityStreamsTravel(v ActivityStreamsTravel)
	// SetActivityStreamsUndo sets the value of this property. Calling
	// IsActivityStreamsUndo afterwards returns true.
	SetActivityStreamsUndo(v ActivityStreamsUndo)
	// SetActivityStreamsUpdate sets the value of this property. Calling
	// IsActivityStreamsUpdate afterwards returns true.
	SetActivityStreamsUpdate(v ActivityStreamsUpdate)
	// SetActivityStreamsVideo sets the value of this property. Calling
	// IsActivityStreamsVideo afterwards returns true.
	SetActivityStreamsVideo(v ActivityStreamsVideo)
	// SetActivityStreamsView sets the value of this property. Calling
	// IsActivityStreamsView afterwards returns true.
	SetActivityStreamsView(v ActivityStreamsView)
	// SetForgeFedBranch sets the value of this property. Calling
	// IsForgeFedBranch afterwards returns true.
	SetForgeFedBranch(v ForgeFedBranch)
	// SetForgeFedCommit sets the value of this property. Calling
	// IsForgeFedCommit afterwards returns true.
	SetForgeFedCommit(v ForgeFedCommit)
	// SetForgeFedPush sets the value of this property. Calling IsForgeFedPush
	// afterwards returns true.
	SetForgeFedPush(v ForgeFedPush)
	// SetForgeFedRepository sets the value of this property. Calling
	// IsForgeFedRepository afterwards returns true.
	SetForgeFedRepository(v ForgeFedRepository)
	// SetForgeFedTicket sets the value of this property. Calling
	// IsForgeFedTicket afterwards returns true.
	SetForgeFedTicket(v ForgeFedTicket)
	// SetForgeFedTicketDependency sets the value of this property. Calling
	// IsForgeFedTicketDependency afterwards returns true.
	SetForgeFedTicketDependency(v ForgeFedTicketDependency)
	// SetIRI sets the value of this property. Calling IsIRI afterwards
	// returns true.
	SetIRI(v *url.URL)
	// SetTootEmoji sets the value of this property. Calling IsTootEmoji
	// afterwards returns true.
	SetTootEmoji(v TootEmoji)
	// SetTootIdentityProof sets the value of this property. Calling
	// IsTootIdentityProof afterwards returns true.
	SetTootIdentityProof(v TootIdentityProof)
	// SetType attempts to set the property for the arbitrary type. Returns an
	// error if it is not a valid type to set on this property.
	SetType(t Type) error
}

ActivityStreamsItemsPropertyIterator represents a single value for the "items" property.

type ActivityStreamsJoin

type ActivityStreamsJoin interface {
	// GetActivityStreamsActor returns the "actor" property if it exists, and
	// nil otherwise.
	GetActivityStreamsActor() ActivityStreamsActorProperty
	// GetActivityStreamsAltitude returns the "altitude" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAltitude() ActivityStreamsAltitudeProperty
	// GetActivityStreamsAttachment returns the "attachment" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAttachment() ActivityStreamsAttachmentProperty
	// GetActivityStreamsAttributedTo returns the "attributedTo" property if
	// it exists, and nil otherwise.
	GetActivityStreamsAttributedTo() ActivityStreamsAttributedToProperty
	// GetActivityStreamsAudience returns the "audience" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAudience() ActivityStreamsAudienceProperty
	// GetActivityStreamsBcc returns the "bcc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBcc() ActivityStreamsBccProperty
	// GetActivityStreamsBto returns the "bto" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBto() ActivityStreamsBtoProperty
	// GetActivityStreamsCc returns the "cc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsCc() ActivityStreamsCcProperty
	// GetActivityStreamsContent returns the "content" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContent() ActivityStreamsContentProperty
	// GetActivityStreamsContext returns the "context" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContext() ActivityStreamsContextProperty
	// GetActivityStreamsDuration returns the "duration" property if it
	// exists, and nil otherwise.
	GetActivityStreamsDuration() ActivityStreamsDurationProperty
	// GetActivityStreamsEndTime returns the "endTime" property if it exists,
	// and nil otherwise.
	GetActivityStreamsEndTime() ActivityStreamsEndTimeProperty
	// GetActivityStreamsGenerator returns the "generator" property if it
	// exists, and nil otherwise.
	GetActivityStreamsGenerator() ActivityStreamsGeneratorProperty
	// GetActivityStreamsIcon returns the "icon" property if it exists, and
	// nil otherwise.
	GetActivityStreamsIcon() ActivityStreamsIconProperty
	// GetActivityStreamsImage returns the "image" property if it exists, and
	// nil otherwise.
	GetActivityStreamsImage() ActivityStreamsImageProperty
	// GetActivityStreamsInReplyTo returns the "inReplyTo" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInReplyTo() ActivityStreamsInReplyToProperty
	// GetActivityStreamsInstrument returns the "instrument" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInstrument() ActivityStreamsInstrumentProperty
	// GetActivityStreamsLikes returns the "likes" property if it exists, and
	// nil otherwise.
	GetActivityStreamsLikes() ActivityStreamsLikesProperty
	// GetActivityStreamsLocation returns the "location" property if it
	// exists, and nil otherwise.
	GetActivityStreamsLocation() ActivityStreamsLocationProperty
	// GetActivityStreamsMediaType returns the "mediaType" property if it
	// exists, and nil otherwise.
	GetActivityStreamsMediaType() ActivityStreamsMediaTypeProperty
	// GetActivityStreamsName returns the "name" property if it exists, and
	// nil otherwise.
	GetActivityStreamsName() ActivityStreamsNameProperty
	// GetActivityStreamsObject returns the "object" property if it exists,
	// and nil otherwise.
	GetActivityStreamsObject() ActivityStreamsObjectProperty
	// GetActivityStreamsOrigin returns the "origin" property if it exists,
	// and nil otherwise.
	GetActivityStreamsOrigin() ActivityStreamsOriginProperty
	// GetActivityStreamsPreview returns the "preview" property if it exists,
	// and nil otherwise.
	GetActivityStreamsPreview() ActivityStreamsPreviewProperty
	// GetActivityStreamsPublished returns the "published" property if it
	// exists, and nil otherwise.
	GetActivityStreamsPublished() ActivityStreamsPublishedProperty
	// GetActivityStreamsReplies returns the "replies" property if it exists,
	// and nil otherwise.
	GetActivityStreamsReplies() ActivityStreamsRepliesProperty
	// GetActivityStreamsResult returns the "result" property if it exists,
	// and nil otherwise.
	GetActivityStreamsResult() ActivityStreamsResultProperty
	// GetActivityStreamsShares returns the "shares" property if it exists,
	// and nil otherwise.
	GetActivityStreamsShares() ActivityStreamsSharesProperty
	// GetActivityStreamsSource returns the "source" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSource() ActivityStreamsSourceProperty
	// GetActivityStreamsStartTime returns the "startTime" property if it
	// exists, and nil otherwise.
	GetActivityStreamsStartTime() ActivityStreamsStartTimeProperty
	// GetActivityStreamsSummary returns the "summary" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSummary() ActivityStreamsSummaryProperty
	// GetActivityStreamsTag returns the "tag" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTag() ActivityStreamsTagProperty
	// GetActivityStreamsTarget returns the "target" property if it exists,
	// and nil otherwise.
	GetActivityStreamsTarget() ActivityStreamsTargetProperty
	// GetActivityStreamsTo returns the "to" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTo() ActivityStreamsToProperty
	// GetActivityStreamsUpdated returns the "updated" property if it exists,
	// and nil otherwise.
	GetActivityStreamsUpdated() ActivityStreamsUpdatedProperty
	// GetActivityStreamsUrl returns the "url" property if it exists, and nil
	// otherwise.
	GetActivityStreamsUrl() ActivityStreamsUrlProperty
	// GetForgeFedTeam returns the "team" property if it exists, and nil
	// otherwise.
	GetForgeFedTeam() ForgeFedTeamProperty
	// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
	// it exists, and nil otherwise.
	GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
	// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
	// it exists, and nil otherwise.
	GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
	// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
	GetJSONLDId() JSONLDIdProperty
	// GetJSONLDType returns the "type" property if it exists, and nil
	// otherwise.
	GetJSONLDType() JSONLDTypeProperty
	// GetTypeName returns the name of this type.
	GetTypeName() string
	// GetUnknownProperties returns the unknown properties for the Join type.
	// Note that this should not be used by app developers. It is only
	// used to help determine which implementation is LessThan the other.
	// Developers who are creating a different implementation of this
	// type's interface can use this method in their LessThan
	// implementation, but routine ActivityPub applications should not use
	// this to bypass the code generation tool.
	GetUnknownProperties() map[string]interface{}
	// IsExtending returns true if the Join type extends from the other type.
	IsExtending(other Type) bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this type and the specific properties that are set. The value
	// in the map is the alias used to import the type and its properties.
	JSONLDContext() map[string]string
	// LessThan computes if this Join is lesser, with an arbitrary but stable
	// determination.
	LessThan(o ActivityStreamsJoin) bool
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format.
	Serialize() (map[string]interface{}, error)
	// SetActivityStreamsActor sets the "actor" property.
	SetActivityStreamsActor(i ActivityStreamsActorProperty)
	// SetActivityStreamsAltitude sets the "altitude" property.
	SetActivityStreamsAltitude(i ActivityStreamsAltitudeProperty)
	// SetActivityStreamsAttachment sets the "attachment" property.
	SetActivityStreamsAttachment(i ActivityStreamsAttachmentProperty)
	// SetActivityStreamsAttributedTo sets the "attributedTo" property.
	SetActivityStreamsAttributedTo(i ActivityStreamsAttributedToProperty)
	// SetActivityStreamsAudience sets the "audience" property.
	SetActivityStreamsAudience(i ActivityStreamsAudienceProperty)
	// SetActivityStreamsBcc sets the "bcc" property.
	SetActivityStreamsBcc(i ActivityStreamsBccProperty)
	// SetActivityStreamsBto sets the "bto" property.
	SetActivityStreamsBto(i ActivityStreamsBtoProperty)
	// SetActivityStreamsCc sets the "cc" property.
	SetActivityStreamsCc(i ActivityStreamsCcProperty)
	// SetActivityStreamsContent sets the "content" property.
	SetActivityStreamsContent(i ActivityStreamsContentProperty)
	// SetActivityStreamsContext sets the "context" property.
	SetActivityStreamsContext(i ActivityStreamsContextProperty)
	// SetActivityStreamsDuration sets the "duration" property.
	SetActivityStreamsDuration(i ActivityStreamsDurationProperty)
	// SetActivityStreamsEndTime sets the "endTime" property.
	SetActivityStreamsEndTime(i ActivityStreamsEndTimeProperty)
	// SetActivityStreamsGenerator sets the "generator" property.
	SetActivityStreamsGenerator(i ActivityStreamsGeneratorProperty)
	// SetActivityStreamsIcon sets the "icon" property.
	SetActivityStreamsIcon(i ActivityStreamsIconProperty)
	// SetActivityStreamsImage sets the "image" property.
	SetActivityStreamsImage(i ActivityStreamsImageProperty)
	// SetActivityStreamsInReplyTo sets the "inReplyTo" property.
	SetActivityStreamsInReplyTo(i ActivityStreamsInReplyToProperty)
	// SetActivityStreamsInstrument sets the "instrument" property.
	SetActivityStreamsInstrument(i ActivityStreamsInstrumentProperty)
	// SetActivityStreamsLikes sets the "likes" property.
	SetActivityStreamsLikes(i ActivityStreamsLikesProperty)
	// SetActivityStreamsLocation sets the "location" property.
	SetActivityStreamsLocation(i ActivityStreamsLocationProperty)
	// SetActivityStreamsMediaType sets the "mediaType" property.
	SetActivityStreamsMediaType(i ActivityStreamsMediaTypeProperty)
	// SetActivityStreamsName sets the "name" property.
	SetActivityStreamsName(i ActivityStreamsNameProperty)
	// SetActivityStreamsObject sets the "object" property.
	SetActivityStreamsObject(i ActivityStreamsObjectProperty)
	// SetActivityStreamsOrigin sets the "origin" property.
	SetActivityStreamsOrigin(i ActivityStreamsOriginProperty)
	// SetActivityStreamsPreview sets the "preview" property.
	SetActivityStreamsPreview(i ActivityStreamsPreviewProperty)
	// SetActivityStreamsPublished sets the "published" property.
	SetActivityStreamsPublished(i ActivityStreamsPublishedProperty)
	// SetActivityStreamsReplies sets the "replies" property.
	SetActivityStreamsReplies(i ActivityStreamsRepliesProperty)
	// SetActivityStreamsResult sets the "result" property.
	SetActivityStreamsResult(i ActivityStreamsResultProperty)
	// SetActivityStreamsShares sets the "shares" property.
	SetActivityStreamsShares(i ActivityStreamsSharesProperty)
	// SetActivityStreamsSource sets the "source" property.
	SetActivityStreamsSource(i ActivityStreamsSourceProperty)
	// SetActivityStreamsStartTime sets the "startTime" property.
	SetActivityStreamsStartTime(i ActivityStreamsStartTimeProperty)
	// SetActivityStreamsSummary sets the "summary" property.
	SetActivityStreamsSummary(i ActivityStreamsSummaryProperty)
	// SetActivityStreamsTag sets the "tag" property.
	SetActivityStreamsTag(i ActivityStreamsTagProperty)
	// SetActivityStreamsTarget sets the "target" property.
	SetActivityStreamsTarget(i ActivityStreamsTargetProperty)
	// SetActivityStreamsTo sets the "to" property.
	SetActivityStreamsTo(i ActivityStreamsToProperty)
	// SetActivityStreamsUpdated sets the "updated" property.
	SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
	// SetActivityStreamsUrl sets the "url" property.
	SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
	// SetForgeFedTeam sets the "team" property.
	SetForgeFedTeam(i ForgeFedTeamProperty)
	// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
	SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
	// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
	SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
	// SetJSONLDId sets the "id" property.
	SetJSONLDId(i JSONLDIdProperty)
	// SetJSONLDType sets the "type" property.
	SetJSONLDType(i JSONLDTypeProperty)
	// VocabularyURI returns the vocabulary's URI as a string.
	VocabularyURI() string
}

Indicates that the actor has joined the object. The target and origin typically have no defined meaning.

Example 19 (https://www.w3.org/TR/activitystreams-vocabulary/#ex17-jsonld):

{
  "actor": {
    "name": "Sally",
    "type": "Person"
  },
  "object": {
    "name": "A Simple Group",
    "type": "Group"
  },
  "summary": "Sally joined a group",
  "type": "Join"
}

type ActivityStreamsLastProperty

type ActivityStreamsLastProperty interface {
	// Clear ensures no value of this property is set. Calling HasAny or any
	// of the 'Is' methods afterwards will return false.
	Clear()
	// GetActivityStreamsCollectionPage returns the value of this property.
	// When IsActivityStreamsCollectionPage returns false,
	// GetActivityStreamsCollectionPage will return an arbitrary value.
	GetActivityStreamsCollectionPage() ActivityStreamsCollectionPage
	// GetActivityStreamsLink returns the value of this property. When
	// IsActivityStreamsLink returns false, GetActivityStreamsLink will
	// return an arbitrary value.
	GetActivityStreamsLink() ActivityStreamsLink
	// GetActivityStreamsMention returns the value of this property. When
	// IsActivityStreamsMention returns false, GetActivityStreamsMention
	// will return an arbitrary value.
	GetActivityStreamsMention() ActivityStreamsMention
	// GetActivityStreamsOrderedCollectionPage returns the value of this
	// property. When IsActivityStreamsOrderedCollectionPage returns
	// false, GetActivityStreamsOrderedCollectionPage will return an
	// arbitrary value.
	GetActivityStreamsOrderedCollectionPage() ActivityStreamsOrderedCollectionPage
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return an arbitrary value.
	GetIRI() *url.URL
	// GetType returns the value in this property as a Type. Returns nil if
	// the value is not an ActivityStreams type, such as an IRI or another
	// value.
	GetType() Type
	// HasAny returns true if any of the different values is set.
	HasAny() bool
	// IsActivityStreamsCollectionPage returns true if this property has a
	// type of "CollectionPage". When true, use the
	// GetActivityStreamsCollectionPage and
	// SetActivityStreamsCollectionPage methods to access and set this
	// property.
	IsActivityStreamsCollectionPage() bool
	// IsActivityStreamsLink returns true if this property has a type of
	// "Link". When true, use the GetActivityStreamsLink and
	// SetActivityStreamsLink methods to access and set this property.
	IsActivityStreamsLink() bool
	// IsActivityStreamsMention returns true if this property has a type of
	// "Mention". When true, use the GetActivityStreamsMention and
	// SetActivityStreamsMention methods to access and set this property.
	IsActivityStreamsMention() bool
	// IsActivityStreamsOrderedCollectionPage returns true if this property
	// has a type of "OrderedCollectionPage". When true, use the
	// GetActivityStreamsOrderedCollectionPage and
	// SetActivityStreamsOrderedCollectionPage methods to access and set
	// this property.
	IsActivityStreamsOrderedCollectionPage() bool
	// IsIRI returns true if this property is an IRI. When true, use GetIRI
	// and SetIRI to access and set this property
	IsIRI() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsLastProperty) bool
	// Name returns the name of this property: "last".
	Name() string
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// SetActivityStreamsCollectionPage sets the value of this property.
	// Calling IsActivityStreamsCollectionPage afterwards returns true.
	SetActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// SetActivityStreamsLink sets the value of this property. Calling
	// IsActivityStreamsLink afterwards returns true.
	SetActivityStreamsLink(v ActivityStreamsLink)
	// SetActivityStreamsMention sets the value of this property. Calling
	// IsActivityStreamsMention afterwards returns true.
	SetActivityStreamsMention(v ActivityStreamsMention)
	// SetActivityStreamsOrderedCollectionPage sets the value of this
	// property. Calling IsActivityStreamsOrderedCollectionPage afterwards
	// returns true.
	SetActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// SetIRI sets the value of this property. Calling IsIRI afterwards
	// returns true.
	SetIRI(v *url.URL)
	// SetType attempts to set the property for the arbitrary type. Returns an
	// error if it is not a valid type to set on this property.
	SetType(t Type) error
}

In a paged Collection, indicates the furthest proceeding page of the collection.

Example 86 (https://www.w3.org/TR/activitystreams-vocabulary/#ex87-jsonld):

{
  "last": "http://example.org/collection?page=1",
  "summary": "A collection",
  "totalItems": 3,
  "type": "Collection"
}

Example 87 (https://www.w3.org/TR/activitystreams-vocabulary/#ex88-jsonld):

{
  "last": {
    "summary": "Last Page",
    "type": "owl:Class",
    "url": "http://example.org/collection?page=1"
  },
  "summary": "A collection",
  "totalItems": 5,
  "type": "Collection"
}

type ActivityStreamsLatitudeProperty

type ActivityStreamsLatitudeProperty interface {
	// Clear ensures no value of this property is set. Calling
	// IsXMLSchemaFloat afterwards will return false.
	Clear()
	// Get returns the value of this property. When IsXMLSchemaFloat returns
	// false, Get will return any arbitrary value.
	Get() float64
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return any arbitrary value.
	GetIRI() *url.URL
	// HasAny returns true if the value or IRI is set.
	HasAny() bool
	// IsIRI returns true if this property is an IRI.
	IsIRI() bool
	// IsXMLSchemaFloat returns true if this property is set and not an IRI.
	IsXMLSchemaFloat() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsLatitudeProperty) bool
	// Name returns the name of this property: "latitude".
	Name() string
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// Set sets the value of this property. Calling IsXMLSchemaFloat
	// afterwards will return true.
	Set(v float64)
	// SetIRI sets the value of this property. Calling IsIRI afterwards will
	// return true.
	SetIRI(v *url.URL)
}

The latitude of a place

Example 124 (https://www.w3.org/TR/activitystreams-vocabulary/#ex140-jsonld):

{
  "latitude": 36.75,
  "longitude": 119.7667,
  "name": "Fresno Area",
  "radius": 15,
  "type": "Place",
  "units": "miles"
}

type ActivityStreamsLeave

type ActivityStreamsLeave interface {
	// GetActivityStreamsActor returns the "actor" property if it exists, and
	// nil otherwise.
	GetActivityStreamsActor() ActivityStreamsActorProperty
	// GetActivityStreamsAltitude returns the "altitude" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAltitude() ActivityStreamsAltitudeProperty
	// GetActivityStreamsAttachment returns the "attachment" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAttachment() ActivityStreamsAttachmentProperty
	// GetActivityStreamsAttributedTo returns the "attributedTo" property if
	// it exists, and nil otherwise.
	GetActivityStreamsAttributedTo() ActivityStreamsAttributedToProperty
	// GetActivityStreamsAudience returns the "audience" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAudience() ActivityStreamsAudienceProperty
	// GetActivityStreamsBcc returns the "bcc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBcc() ActivityStreamsBccProperty
	// GetActivityStreamsBto returns the "bto" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBto() ActivityStreamsBtoProperty
	// GetActivityStreamsCc returns the "cc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsCc() ActivityStreamsCcProperty
	// GetActivityStreamsContent returns the "content" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContent() ActivityStreamsContentProperty
	// GetActivityStreamsContext returns the "context" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContext() ActivityStreamsContextProperty
	// GetActivityStreamsDuration returns the "duration" property if it
	// exists, and nil otherwise.
	GetActivityStreamsDuration() ActivityStreamsDurationProperty
	// GetActivityStreamsEndTime returns the "endTime" property if it exists,
	// and nil otherwise.
	GetActivityStreamsEndTime() ActivityStreamsEndTimeProperty
	// GetActivityStreamsGenerator returns the "generator" property if it
	// exists, and nil otherwise.
	GetActivityStreamsGenerator() ActivityStreamsGeneratorProperty
	// GetActivityStreamsIcon returns the "icon" property if it exists, and
	// nil otherwise.
	GetActivityStreamsIcon() ActivityStreamsIconProperty
	// GetActivityStreamsImage returns the "image" property if it exists, and
	// nil otherwise.
	GetActivityStreamsImage() ActivityStreamsImageProperty
	// GetActivityStreamsInReplyTo returns the "inReplyTo" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInReplyTo() ActivityStreamsInReplyToProperty
	// GetActivityStreamsInstrument returns the "instrument" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInstrument() ActivityStreamsInstrumentProperty
	// GetActivityStreamsLikes returns the "likes" property if it exists, and
	// nil otherwise.
	GetActivityStreamsLikes() ActivityStreamsLikesProperty
	// GetActivityStreamsLocation returns the "location" property if it
	// exists, and nil otherwise.
	GetActivityStreamsLocation() ActivityStreamsLocationProperty
	// GetActivityStreamsMediaType returns the "mediaType" property if it
	// exists, and nil otherwise.
	GetActivityStreamsMediaType() ActivityStreamsMediaTypeProperty
	// GetActivityStreamsName returns the "name" property if it exists, and
	// nil otherwise.
	GetActivityStreamsName() ActivityStreamsNameProperty
	// GetActivityStreamsObject returns the "object" property if it exists,
	// and nil otherwise.
	GetActivityStreamsObject() ActivityStreamsObjectProperty
	// GetActivityStreamsOrigin returns the "origin" property if it exists,
	// and nil otherwise.
	GetActivityStreamsOrigin() ActivityStreamsOriginProperty
	// GetActivityStreamsPreview returns the "preview" property if it exists,
	// and nil otherwise.
	GetActivityStreamsPreview() ActivityStreamsPreviewProperty
	// GetActivityStreamsPublished returns the "published" property if it
	// exists, and nil otherwise.
	GetActivityStreamsPublished() ActivityStreamsPublishedProperty
	// GetActivityStreamsReplies returns the "replies" property if it exists,
	// and nil otherwise.
	GetActivityStreamsReplies() ActivityStreamsRepliesProperty
	// GetActivityStreamsResult returns the "result" property if it exists,
	// and nil otherwise.
	GetActivityStreamsResult() ActivityStreamsResultProperty
	// GetActivityStreamsShares returns the "shares" property if it exists,
	// and nil otherwise.
	GetActivityStreamsShares() ActivityStreamsSharesProperty
	// GetActivityStreamsSource returns the "source" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSource() ActivityStreamsSourceProperty
	// GetActivityStreamsStartTime returns the "startTime" property if it
	// exists, and nil otherwise.
	GetActivityStreamsStartTime() ActivityStreamsStartTimeProperty
	// GetActivityStreamsSummary returns the "summary" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSummary() ActivityStreamsSummaryProperty
	// GetActivityStreamsTag returns the "tag" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTag() ActivityStreamsTagProperty
	// GetActivityStreamsTarget returns the "target" property if it exists,
	// and nil otherwise.
	GetActivityStreamsTarget() ActivityStreamsTargetProperty
	// GetActivityStreamsTo returns the "to" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTo() ActivityStreamsToProperty
	// GetActivityStreamsUpdated returns the "updated" property if it exists,
	// and nil otherwise.
	GetActivityStreamsUpdated() ActivityStreamsUpdatedProperty
	// GetActivityStreamsUrl returns the "url" property if it exists, and nil
	// otherwise.
	GetActivityStreamsUrl() ActivityStreamsUrlProperty
	// GetForgeFedTeam returns the "team" property if it exists, and nil
	// otherwise.
	GetForgeFedTeam() ForgeFedTeamProperty
	// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
	// it exists, and nil otherwise.
	GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
	// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
	// it exists, and nil otherwise.
	GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
	// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
	GetJSONLDId() JSONLDIdProperty
	// GetJSONLDType returns the "type" property if it exists, and nil
	// otherwise.
	GetJSONLDType() JSONLDTypeProperty
	// GetTypeName returns the name of this type.
	GetTypeName() string
	// GetUnknownProperties returns the unknown properties for the Leave type.
	// Note that this should not be used by app developers. It is only
	// used to help determine which implementation is LessThan the other.
	// Developers who are creating a different implementation of this
	// type's interface can use this method in their LessThan
	// implementation, but routine ActivityPub applications should not use
	// this to bypass the code generation tool.
	GetUnknownProperties() map[string]interface{}
	// IsExtending returns true if the Leave type extends from the other type.
	IsExtending(other Type) bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this type and the specific properties that are set. The value
	// in the map is the alias used to import the type and its properties.
	JSONLDContext() map[string]string
	// LessThan computes if this Leave is lesser, with an arbitrary but stable
	// determination.
	LessThan(o ActivityStreamsLeave) bool
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format.
	Serialize() (map[string]interface{}, error)
	// SetActivityStreamsActor sets the "actor" property.
	SetActivityStreamsActor(i ActivityStreamsActorProperty)
	// SetActivityStreamsAltitude sets the "altitude" property.
	SetActivityStreamsAltitude(i ActivityStreamsAltitudeProperty)
	// SetActivityStreamsAttachment sets the "attachment" property.
	SetActivityStreamsAttachment(i ActivityStreamsAttachmentProperty)
	// SetActivityStreamsAttributedTo sets the "attributedTo" property.
	SetActivityStreamsAttributedTo(i ActivityStreamsAttributedToProperty)
	// SetActivityStreamsAudience sets the "audience" property.
	SetActivityStreamsAudience(i ActivityStreamsAudienceProperty)
	// SetActivityStreamsBcc sets the "bcc" property.
	SetActivityStreamsBcc(i ActivityStreamsBccProperty)
	// SetActivityStreamsBto sets the "bto" property.
	SetActivityStreamsBto(i ActivityStreamsBtoProperty)
	// SetActivityStreamsCc sets the "cc" property.
	SetActivityStreamsCc(i ActivityStreamsCcProperty)
	// SetActivityStreamsContent sets the "content" property.
	SetActivityStreamsContent(i ActivityStreamsContentProperty)
	// SetActivityStreamsContext sets the "context" property.
	SetActivityStreamsContext(i ActivityStreamsContextProperty)
	// SetActivityStreamsDuration sets the "duration" property.
	SetActivityStreamsDuration(i ActivityStreamsDurationProperty)
	// SetActivityStreamsEndTime sets the "endTime" property.
	SetActivityStreamsEndTime(i ActivityStreamsEndTimeProperty)
	// SetActivityStreamsGenerator sets the "generator" property.
	SetActivityStreamsGenerator(i ActivityStreamsGeneratorProperty)
	// SetActivityStreamsIcon sets the "icon" property.
	SetActivityStreamsIcon(i ActivityStreamsIconProperty)
	// SetActivityStreamsImage sets the "image" property.
	SetActivityStreamsImage(i ActivityStreamsImageProperty)
	// SetActivityStreamsInReplyTo sets the "inReplyTo" property.
	SetActivityStreamsInReplyTo(i ActivityStreamsInReplyToProperty)
	// SetActivityStreamsInstrument sets the "instrument" property.
	SetActivityStreamsInstrument(i ActivityStreamsInstrumentProperty)
	// SetActivityStreamsLikes sets the "likes" property.
	SetActivityStreamsLikes(i ActivityStreamsLikesProperty)
	// SetActivityStreamsLocation sets the "location" property.
	SetActivityStreamsLocation(i ActivityStreamsLocationProperty)
	// SetActivityStreamsMediaType sets the "mediaType" property.
	SetActivityStreamsMediaType(i ActivityStreamsMediaTypeProperty)
	// SetActivityStreamsName sets the "name" property.
	SetActivityStreamsName(i ActivityStreamsNameProperty)
	// SetActivityStreamsObject sets the "object" property.
	SetActivityStreamsObject(i ActivityStreamsObjectProperty)
	// SetActivityStreamsOrigin sets the "origin" property.
	SetActivityStreamsOrigin(i ActivityStreamsOriginProperty)
	// SetActivityStreamsPreview sets the "preview" property.
	SetActivityStreamsPreview(i ActivityStreamsPreviewProperty)
	// SetActivityStreamsPublished sets the "published" property.
	SetActivityStreamsPublished(i ActivityStreamsPublishedProperty)
	// SetActivityStreamsReplies sets the "replies" property.
	SetActivityStreamsReplies(i ActivityStreamsRepliesProperty)
	// SetActivityStreamsResult sets the "result" property.
	SetActivityStreamsResult(i ActivityStreamsResultProperty)
	// SetActivityStreamsShares sets the "shares" property.
	SetActivityStreamsShares(i ActivityStreamsSharesProperty)
	// SetActivityStreamsSource sets the "source" property.
	SetActivityStreamsSource(i ActivityStreamsSourceProperty)
	// SetActivityStreamsStartTime sets the "startTime" property.
	SetActivityStreamsStartTime(i ActivityStreamsStartTimeProperty)
	// SetActivityStreamsSummary sets the "summary" property.
	SetActivityStreamsSummary(i ActivityStreamsSummaryProperty)
	// SetActivityStreamsTag sets the "tag" property.
	SetActivityStreamsTag(i ActivityStreamsTagProperty)
	// SetActivityStreamsTarget sets the "target" property.
	SetActivityStreamsTarget(i ActivityStreamsTargetProperty)
	// SetActivityStreamsTo sets the "to" property.
	SetActivityStreamsTo(i ActivityStreamsToProperty)
	// SetActivityStreamsUpdated sets the "updated" property.
	SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
	// SetActivityStreamsUrl sets the "url" property.
	SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
	// SetForgeFedTeam sets the "team" property.
	SetForgeFedTeam(i ForgeFedTeamProperty)
	// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
	SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
	// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
	SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
	// SetJSONLDId sets the "id" property.
	SetJSONLDId(i JSONLDIdProperty)
	// SetJSONLDType sets the "type" property.
	SetJSONLDType(i JSONLDTypeProperty)
	// VocabularyURI returns the vocabulary's URI as a string.
	VocabularyURI() string
}

Indicates that the actor has left the object. The target and origin typically have no meaning.

Example 20 (https://www.w3.org/TR/activitystreams-vocabulary/#ex18-jsonld):

{
  "actor": {
    "name": "Sally",
    "type": "Person"
  },
  "object": {
    "name": "Work",
    "type": "Place"
  },
  "summary": "Sally left work",
  "type": "Leave"
}

Example 21 (https://www.w3.org/TR/activitystreams-vocabulary/#ex19-jsonld):

{
  "actor": {
    "name": "Sally",
    "type": "Person"
  },
  "object": {
    "name": "A Simple Group",
    "type": "Group"
  },
  "summary": "Sally left a group",
  "type": "Leave"
}

type ActivityStreamsLike

type ActivityStreamsLike interface {
	// GetActivityStreamsActor returns the "actor" property if it exists, and
	// nil otherwise.
	GetActivityStreamsActor() ActivityStreamsActorProperty
	// GetActivityStreamsAltitude returns the "altitude" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAltitude() ActivityStreamsAltitudeProperty
	// GetActivityStreamsAttachment returns the "attachment" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAttachment() ActivityStreamsAttachmentProperty
	// GetActivityStreamsAttributedTo returns the "attributedTo" property if
	// it exists, and nil otherwise.
	GetActivityStreamsAttributedTo() ActivityStreamsAttributedToProperty
	// GetActivityStreamsAudience returns the "audience" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAudience() ActivityStreamsAudienceProperty
	// GetActivityStreamsBcc returns the "bcc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBcc() ActivityStreamsBccProperty
	// GetActivityStreamsBto returns the "bto" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBto() ActivityStreamsBtoProperty
	// GetActivityStreamsCc returns the "cc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsCc() ActivityStreamsCcProperty
	// GetActivityStreamsContent returns the "content" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContent() ActivityStreamsContentProperty
	// GetActivityStreamsContext returns the "context" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContext() ActivityStreamsContextProperty
	// GetActivityStreamsDuration returns the "duration" property if it
	// exists, and nil otherwise.
	GetActivityStreamsDuration() ActivityStreamsDurationProperty
	// GetActivityStreamsEndTime returns the "endTime" property if it exists,
	// and nil otherwise.
	GetActivityStreamsEndTime() ActivityStreamsEndTimeProperty
	// GetActivityStreamsGenerator returns the "generator" property if it
	// exists, and nil otherwise.
	GetActivityStreamsGenerator() ActivityStreamsGeneratorProperty
	// GetActivityStreamsIcon returns the "icon" property if it exists, and
	// nil otherwise.
	GetActivityStreamsIcon() ActivityStreamsIconProperty
	// GetActivityStreamsImage returns the "image" property if it exists, and
	// nil otherwise.
	GetActivityStreamsImage() ActivityStreamsImageProperty
	// GetActivityStreamsInReplyTo returns the "inReplyTo" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInReplyTo() ActivityStreamsInReplyToProperty
	// GetActivityStreamsInstrument returns the "instrument" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInstrument() ActivityStreamsInstrumentProperty
	// GetActivityStreamsLikes returns the "likes" property if it exists, and
	// nil otherwise.
	GetActivityStreamsLikes() ActivityStreamsLikesProperty
	// GetActivityStreamsLocation returns the "location" property if it
	// exists, and nil otherwise.
	GetActivityStreamsLocation() ActivityStreamsLocationProperty
	// GetActivityStreamsMediaType returns the "mediaType" property if it
	// exists, and nil otherwise.
	GetActivityStreamsMediaType() ActivityStreamsMediaTypeProperty
	// GetActivityStreamsName returns the "name" property if it exists, and
	// nil otherwise.
	GetActivityStreamsName() ActivityStreamsNameProperty
	// GetActivityStreamsObject returns the "object" property if it exists,
	// and nil otherwise.
	GetActivityStreamsObject() ActivityStreamsObjectProperty
	// GetActivityStreamsOrigin returns the "origin" property if it exists,
	// and nil otherwise.
	GetActivityStreamsOrigin() ActivityStreamsOriginProperty
	// GetActivityStreamsPreview returns the "preview" property if it exists,
	// and nil otherwise.
	GetActivityStreamsPreview() ActivityStreamsPreviewProperty
	// GetActivityStreamsPublished returns the "published" property if it
	// exists, and nil otherwise.
	GetActivityStreamsPublished() ActivityStreamsPublishedProperty
	// GetActivityStreamsReplies returns the "replies" property if it exists,
	// and nil otherwise.
	GetActivityStreamsReplies() ActivityStreamsRepliesProperty
	// GetActivityStreamsResult returns the "result" property if it exists,
	// and nil otherwise.
	GetActivityStreamsResult() ActivityStreamsResultProperty
	// GetActivityStreamsShares returns the "shares" property if it exists,
	// and nil otherwise.
	GetActivityStreamsShares() ActivityStreamsSharesProperty
	// GetActivityStreamsSource returns the "source" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSource() ActivityStreamsSourceProperty
	// GetActivityStreamsStartTime returns the "startTime" property if it
	// exists, and nil otherwise.
	GetActivityStreamsStartTime() ActivityStreamsStartTimeProperty
	// GetActivityStreamsSummary returns the "summary" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSummary() ActivityStreamsSummaryProperty
	// GetActivityStreamsTag returns the "tag" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTag() ActivityStreamsTagProperty
	// GetActivityStreamsTarget returns the "target" property if it exists,
	// and nil otherwise.
	GetActivityStreamsTarget() ActivityStreamsTargetProperty
	// GetActivityStreamsTo returns the "to" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTo() ActivityStreamsToProperty
	// GetActivityStreamsUpdated returns the "updated" property if it exists,
	// and nil otherwise.
	GetActivityStreamsUpdated() ActivityStreamsUpdatedProperty
	// GetActivityStreamsUrl returns the "url" property if it exists, and nil
	// otherwise.
	GetActivityStreamsUrl() ActivityStreamsUrlProperty
	// GetForgeFedTeam returns the "team" property if it exists, and nil
	// otherwise.
	GetForgeFedTeam() ForgeFedTeamProperty
	// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
	// it exists, and nil otherwise.
	GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
	// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
	// it exists, and nil otherwise.
	GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
	// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
	GetJSONLDId() JSONLDIdProperty
	// GetJSONLDType returns the "type" property if it exists, and nil
	// otherwise.
	GetJSONLDType() JSONLDTypeProperty
	// GetTypeName returns the name of this type.
	GetTypeName() string
	// GetUnknownProperties returns the unknown properties for the Like type.
	// Note that this should not be used by app developers. It is only
	// used to help determine which implementation is LessThan the other.
	// Developers who are creating a different implementation of this
	// type's interface can use this method in their LessThan
	// implementation, but routine ActivityPub applications should not use
	// this to bypass the code generation tool.
	GetUnknownProperties() map[string]interface{}
	// IsExtending returns true if the Like type extends from the other type.
	IsExtending(other Type) bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this type and the specific properties that are set. The value
	// in the map is the alias used to import the type and its properties.
	JSONLDContext() map[string]string
	// LessThan computes if this Like is lesser, with an arbitrary but stable
	// determination.
	LessThan(o ActivityStreamsLike) bool
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format.
	Serialize() (map[string]interface{}, error)
	// SetActivityStreamsActor sets the "actor" property.
	SetActivityStreamsActor(i ActivityStreamsActorProperty)
	// SetActivityStreamsAltitude sets the "altitude" property.
	SetActivityStreamsAltitude(i ActivityStreamsAltitudeProperty)
	// SetActivityStreamsAttachment sets the "attachment" property.
	SetActivityStreamsAttachment(i ActivityStreamsAttachmentProperty)
	// SetActivityStreamsAttributedTo sets the "attributedTo" property.
	SetActivityStreamsAttributedTo(i ActivityStreamsAttributedToProperty)
	// SetActivityStreamsAudience sets the "audience" property.
	SetActivityStreamsAudience(i ActivityStreamsAudienceProperty)
	// SetActivityStreamsBcc sets the "bcc" property.
	SetActivityStreamsBcc(i ActivityStreamsBccProperty)
	// SetActivityStreamsBto sets the "bto" property.
	SetActivityStreamsBto(i ActivityStreamsBtoProperty)
	// SetActivityStreamsCc sets the "cc" property.
	SetActivityStreamsCc(i ActivityStreamsCcProperty)
	// SetActivityStreamsContent sets the "content" property.
	SetActivityStreamsContent(i ActivityStreamsContentProperty)
	// SetActivityStreamsContext sets the "context" property.
	SetActivityStreamsContext(i ActivityStreamsContextProperty)
	// SetActivityStreamsDuration sets the "duration" property.
	SetActivityStreamsDuration(i ActivityStreamsDurationProperty)
	// SetActivityStreamsEndTime sets the "endTime" property.
	SetActivityStreamsEndTime(i ActivityStreamsEndTimeProperty)
	// SetActivityStreamsGenerator sets the "generator" property.
	SetActivityStreamsGenerator(i ActivityStreamsGeneratorProperty)
	// SetActivityStreamsIcon sets the "icon" property.
	SetActivityStreamsIcon(i ActivityStreamsIconProperty)
	// SetActivityStreamsImage sets the "image" property.
	SetActivityStreamsImage(i ActivityStreamsImageProperty)
	// SetActivityStreamsInReplyTo sets the "inReplyTo" property.
	SetActivityStreamsInReplyTo(i ActivityStreamsInReplyToProperty)
	// SetActivityStreamsInstrument sets the "instrument" property.
	SetActivityStreamsInstrument(i ActivityStreamsInstrumentProperty)
	// SetActivityStreamsLikes sets the "likes" property.
	SetActivityStreamsLikes(i ActivityStreamsLikesProperty)
	// SetActivityStreamsLocation sets the "location" property.
	SetActivityStreamsLocation(i ActivityStreamsLocationProperty)
	// SetActivityStreamsMediaType sets the "mediaType" property.
	SetActivityStreamsMediaType(i ActivityStreamsMediaTypeProperty)
	// SetActivityStreamsName sets the "name" property.
	SetActivityStreamsName(i ActivityStreamsNameProperty)
	// SetActivityStreamsObject sets the "object" property.
	SetActivityStreamsObject(i ActivityStreamsObjectProperty)
	// SetActivityStreamsOrigin sets the "origin" property.
	SetActivityStreamsOrigin(i ActivityStreamsOriginProperty)
	// SetActivityStreamsPreview sets the "preview" property.
	SetActivityStreamsPreview(i ActivityStreamsPreviewProperty)
	// SetActivityStreamsPublished sets the "published" property.
	SetActivityStreamsPublished(i ActivityStreamsPublishedProperty)
	// SetActivityStreamsReplies sets the "replies" property.
	SetActivityStreamsReplies(i ActivityStreamsRepliesProperty)
	// SetActivityStreamsResult sets the "result" property.
	SetActivityStreamsResult(i ActivityStreamsResultProperty)
	// SetActivityStreamsShares sets the "shares" property.
	SetActivityStreamsShares(i ActivityStreamsSharesProperty)
	// SetActivityStreamsSource sets the "source" property.
	SetActivityStreamsSource(i ActivityStreamsSourceProperty)
	// SetActivityStreamsStartTime sets the "startTime" property.
	SetActivityStreamsStartTime(i ActivityStreamsStartTimeProperty)
	// SetActivityStreamsSummary sets the "summary" property.
	SetActivityStreamsSummary(i ActivityStreamsSummaryProperty)
	// SetActivityStreamsTag sets the "tag" property.
	SetActivityStreamsTag(i ActivityStreamsTagProperty)
	// SetActivityStreamsTarget sets the "target" property.
	SetActivityStreamsTarget(i ActivityStreamsTargetProperty)
	// SetActivityStreamsTo sets the "to" property.
	SetActivityStreamsTo(i ActivityStreamsToProperty)
	// SetActivityStreamsUpdated sets the "updated" property.
	SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
	// SetActivityStreamsUrl sets the "url" property.
	SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
	// SetForgeFedTeam sets the "team" property.
	SetForgeFedTeam(i ForgeFedTeamProperty)
	// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
	SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
	// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
	SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
	// SetJSONLDId sets the "id" property.
	SetJSONLDId(i JSONLDIdProperty)
	// SetJSONLDType sets the "type" property.
	SetJSONLDType(i JSONLDTypeProperty)
	// VocabularyURI returns the vocabulary's URI as a string.
	VocabularyURI() string
}

Indicates that the actor likes, recommends or endorses the object. The target and origin typically have no defined meaning.

Example 22 (https://www.w3.org/TR/activitystreams-vocabulary/#ex20-jsonld):

{
  "actor": {
    "name": "Sally",
    "type": "Person"
  },
  "object": "http://example.org/notes/1",
  "summary": "Sally liked a note",
  "type": "Like"
}

type ActivityStreamsLikedProperty

type ActivityStreamsLikedProperty interface {
	// Clear ensures no value of this property is set. Calling HasAny or any
	// of the 'Is' methods afterwards will return false.
	Clear()
	// GetActivityStreamsCollection returns the value of this property. When
	// IsActivityStreamsCollection returns false,
	// GetActivityStreamsCollection will return an arbitrary value.
	GetActivityStreamsCollection() ActivityStreamsCollection
	// GetActivityStreamsCollectionPage returns the value of this property.
	// When IsActivityStreamsCollectionPage returns false,
	// GetActivityStreamsCollectionPage will return an arbitrary value.
	GetActivityStreamsCollectionPage() ActivityStreamsCollectionPage
	// GetActivityStreamsOrderedCollection returns the value of this property.
	// When IsActivityStreamsOrderedCollection returns false,
	// GetActivityStreamsOrderedCollection will return an arbitrary value.
	GetActivityStreamsOrderedCollection() ActivityStreamsOrderedCollection
	// GetActivityStreamsOrderedCollectionPage returns the value of this
	// property. When IsActivityStreamsOrderedCollectionPage returns
	// false, GetActivityStreamsOrderedCollectionPage will return an
	// arbitrary value.
	GetActivityStreamsOrderedCollectionPage() ActivityStreamsOrderedCollectionPage
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return an arbitrary value.
	GetIRI() *url.URL
	// GetType returns the value in this property as a Type. Returns nil if
	// the value is not an ActivityStreams type, such as an IRI or another
	// value.
	GetType() Type
	// HasAny returns true if any of the different values is set.
	HasAny() bool
	// IsActivityStreamsCollection returns true if this property has a type of
	// "Collection". When true, use the GetActivityStreamsCollection and
	// SetActivityStreamsCollection methods to access and set this
	// property.
	IsActivityStreamsCollection() bool
	// IsActivityStreamsCollectionPage returns true if this property has a
	// type of "CollectionPage". When true, use the
	// GetActivityStreamsCollectionPage and
	// SetActivityStreamsCollectionPage methods to access and set this
	// property.
	IsActivityStreamsCollectionPage() bool
	// IsActivityStreamsOrderedCollection returns true if this property has a
	// type of "OrderedCollection". When true, use the
	// GetActivityStreamsOrderedCollection and
	// SetActivityStreamsOrderedCollection methods to access and set this
	// property.
	IsActivityStreamsOrderedCollection() bool
	// IsActivityStreamsOrderedCollectionPage returns true if this property
	// has a type of "OrderedCollectionPage". When true, use the
	// GetActivityStreamsOrderedCollectionPage and
	// SetActivityStreamsOrderedCollectionPage methods to access and set
	// this property.
	IsActivityStreamsOrderedCollectionPage() bool
	// IsIRI returns true if this property is an IRI. When true, use GetIRI
	// and SetIRI to access and set this property
	IsIRI() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsLikedProperty) bool
	// Name returns the name of this property: "liked".
	Name() string
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// SetActivityStreamsCollection sets the value of this property. Calling
	// IsActivityStreamsCollection afterwards returns true.
	SetActivityStreamsCollection(v ActivityStreamsCollection)
	// SetActivityStreamsCollectionPage sets the value of this property.
	// Calling IsActivityStreamsCollectionPage afterwards returns true.
	SetActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// SetActivityStreamsOrderedCollection sets the value of this property.
	// Calling IsActivityStreamsOrderedCollection afterwards returns true.
	SetActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// SetActivityStreamsOrderedCollectionPage sets the value of this
	// property. Calling IsActivityStreamsOrderedCollectionPage afterwards
	// returns true.
	SetActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// SetIRI sets the value of this property. Calling IsIRI afterwards
	// returns true.
	SetIRI(v *url.URL)
	// SetType attempts to set the property for the arbitrary type. Returns an
	// error if it is not a valid type to set on this property.
	SetType(t Type) error
}

A link to an ActivityStreams collection of objects this actor has liked

Example 9 (https://www.w3.org/TR/activitypub/#example9):

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "@language": "ja"
    }
  ],
  "followers": "https://kenzoishii.example.com/followers.json",
  "following": "https://kenzoishii.example.com/following.json",
  "icon": [
    "https://kenzoishii.example.com/image/165987aklre4"
  ],
  "id": "https://kenzoishii.example.com/",
  "inbox": "https://kenzoishii.example.com/inbox.json",
  "liked": "https://kenzoishii.example.com/liked.json",
  "name": "石井健蔵",
  "outbox": "https://kenzoishii.example.com/feed.json",
  "preferredUsername": "kenzoishii",
  "summary": "この方はただの例です",
  "type": "Person"
}

type ActivityStreamsLikesProperty

type ActivityStreamsLikesProperty interface {
	// Clear ensures no value of this property is set. Calling HasAny or any
	// of the 'Is' methods afterwards will return false.
	Clear()
	// GetActivityStreamsCollection returns the value of this property. When
	// IsActivityStreamsCollection returns false,
	// GetActivityStreamsCollection will return an arbitrary value.
	GetActivityStreamsCollection() ActivityStreamsCollection
	// GetActivityStreamsCollectionPage returns the value of this property.
	// When IsActivityStreamsCollectionPage returns false,
	// GetActivityStreamsCollectionPage will return an arbitrary value.
	GetActivityStreamsCollectionPage() ActivityStreamsCollectionPage
	// GetActivityStreamsOrderedCollection returns the value of this property.
	// When IsActivityStreamsOrderedCollection returns false,
	// GetActivityStreamsOrderedCollection will return an arbitrary value.
	GetActivityStreamsOrderedCollection() ActivityStreamsOrderedCollection
	// GetActivityStreamsOrderedCollectionPage returns the value of this
	// property. When IsActivityStreamsOrderedCollectionPage returns
	// false, GetActivityStreamsOrderedCollectionPage will return an
	// arbitrary value.
	GetActivityStreamsOrderedCollectionPage() ActivityStreamsOrderedCollectionPage
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return an arbitrary value.
	GetIRI() *url.URL
	// GetType returns the value in this property as a Type. Returns nil if
	// the value is not an ActivityStreams type, such as an IRI or another
	// value.
	GetType() Type
	// HasAny returns true if any of the different values is set.
	HasAny() bool
	// IsActivityStreamsCollection returns true if this property has a type of
	// "Collection". When true, use the GetActivityStreamsCollection and
	// SetActivityStreamsCollection methods to access and set this
	// property.
	IsActivityStreamsCollection() bool
	// IsActivityStreamsCollectionPage returns true if this property has a
	// type of "CollectionPage". When true, use the
	// GetActivityStreamsCollectionPage and
	// SetActivityStreamsCollectionPage methods to access and set this
	// property.
	IsActivityStreamsCollectionPage() bool
	// IsActivityStreamsOrderedCollection returns true if this property has a
	// type of "OrderedCollection". When true, use the
	// GetActivityStreamsOrderedCollection and
	// SetActivityStreamsOrderedCollection methods to access and set this
	// property.
	IsActivityStreamsOrderedCollection() bool
	// IsActivityStreamsOrderedCollectionPage returns true if this property
	// has a type of "OrderedCollectionPage". When true, use the
	// GetActivityStreamsOrderedCollectionPage and
	// SetActivityStreamsOrderedCollectionPage methods to access and set
	// this property.
	IsActivityStreamsOrderedCollectionPage() bool
	// IsIRI returns true if this property is an IRI. When true, use GetIRI
	// and SetIRI to access and set this property
	IsIRI() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsLikesProperty) bool
	// Name returns the name of this property: "likes".
	Name() string
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// SetActivityStreamsCollection sets the value of this property. Calling
	// IsActivityStreamsCollection afterwards returns true.
	SetActivityStreamsCollection(v ActivityStreamsCollection)
	// SetActivityStreamsCollectionPage sets the value of this property.
	// Calling IsActivityStreamsCollectionPage afterwards returns true.
	SetActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// SetActivityStreamsOrderedCollection sets the value of this property.
	// Calling IsActivityStreamsOrderedCollection afterwards returns true.
	SetActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// SetActivityStreamsOrderedCollectionPage sets the value of this
	// property. Calling IsActivityStreamsOrderedCollectionPage afterwards
	// returns true.
	SetActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// SetIRI sets the value of this property. Calling IsIRI afterwards
	// returns true.
	SetIRI(v *url.URL)
	// SetType attempts to set the property for the arbitrary type. Returns an
	// error if it is not a valid type to set on this property.
	SetType(t Type) error
}

This is a list of all Like activities with this object as the object property

type ActivityStreamsLink interface {
	// GetActivityStreamsAttributedTo returns the "attributedTo" property if
	// it exists, and nil otherwise.
	GetActivityStreamsAttributedTo() ActivityStreamsAttributedToProperty
	// GetActivityStreamsHeight returns the "height" property if it exists,
	// and nil otherwise.
	GetActivityStreamsHeight() ActivityStreamsHeightProperty
	// GetActivityStreamsHref returns the "href" property if it exists, and
	// nil otherwise.
	GetActivityStreamsHref() ActivityStreamsHrefProperty
	// GetActivityStreamsHreflang returns the "hreflang" property if it
	// exists, and nil otherwise.
	GetActivityStreamsHreflang() ActivityStreamsHreflangProperty
	// GetActivityStreamsMediaType returns the "mediaType" property if it
	// exists, and nil otherwise.
	GetActivityStreamsMediaType() ActivityStreamsMediaTypeProperty
	// GetActivityStreamsName returns the "name" property if it exists, and
	// nil otherwise.
	GetActivityStreamsName() ActivityStreamsNameProperty
	// GetActivityStreamsPreview returns the "preview" property if it exists,
	// and nil otherwise.
	GetActivityStreamsPreview() ActivityStreamsPreviewProperty
	// GetActivityStreamsRel returns the "rel" property if it exists, and nil
	// otherwise.
	GetActivityStreamsRel() ActivityStreamsRelProperty
	// GetActivityStreamsSummary returns the "summary" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSummary() ActivityStreamsSummaryProperty
	// GetActivityStreamsWidth returns the "width" property if it exists, and
	// nil otherwise.
	GetActivityStreamsWidth() ActivityStreamsWidthProperty
	// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
	GetJSONLDId() JSONLDIdProperty
	// GetJSONLDType returns the "type" property if it exists, and nil
	// otherwise.
	GetJSONLDType() JSONLDTypeProperty
	// GetTypeName returns the name of this type.
	GetTypeName() string
	// GetUnknownProperties returns the unknown properties for the Link type.
	// Note that this should not be used by app developers. It is only
	// used to help determine which implementation is LessThan the other.
	// Developers who are creating a different implementation of this
	// type's interface can use this method in their LessThan
	// implementation, but routine ActivityPub applications should not use
	// this to bypass the code generation tool.
	GetUnknownProperties() map[string]interface{}
	// IsExtending returns true if the Link type extends from the other type.
	IsExtending(other Type) bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this type and the specific properties that are set. The value
	// in the map is the alias used to import the type and its properties.
	JSONLDContext() map[string]string
	// LessThan computes if this Link is lesser, with an arbitrary but stable
	// determination.
	LessThan(o ActivityStreamsLink) bool
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format.
	Serialize() (map[string]interface{}, error)
	// SetActivityStreamsAttributedTo sets the "attributedTo" property.
	SetActivityStreamsAttributedTo(i ActivityStreamsAttributedToProperty)
	// SetActivityStreamsHeight sets the "height" property.
	SetActivityStreamsHeight(i ActivityStreamsHeightProperty)
	// SetActivityStreamsHref sets the "href" property.
	SetActivityStreamsHref(i ActivityStreamsHrefProperty)
	// SetActivityStreamsHreflang sets the "hreflang" property.
	SetActivityStreamsHreflang(i ActivityStreamsHreflangProperty)
	// SetActivityStreamsMediaType sets the "mediaType" property.
	SetActivityStreamsMediaType(i ActivityStreamsMediaTypeProperty)
	// SetActivityStreamsName sets the "name" property.
	SetActivityStreamsName(i ActivityStreamsNameProperty)
	// SetActivityStreamsPreview sets the "preview" property.
	SetActivityStreamsPreview(i ActivityStreamsPreviewProperty)
	// SetActivityStreamsRel sets the "rel" property.
	SetActivityStreamsRel(i ActivityStreamsRelProperty)
	// SetActivityStreamsSummary sets the "summary" property.
	SetActivityStreamsSummary(i ActivityStreamsSummaryProperty)
	// SetActivityStreamsWidth sets the "width" property.
	SetActivityStreamsWidth(i ActivityStreamsWidthProperty)
	// SetJSONLDId sets the "id" property.
	SetJSONLDId(i JSONLDIdProperty)
	// SetJSONLDType sets the "type" property.
	SetJSONLDType(i JSONLDTypeProperty)
	// VocabularyURI returns the vocabulary's URI as a string.
	VocabularyURI() string
}

A Link is an indirect, qualified reference to a resource identified by a URL. The fundamental model for links is established by [RFC5988]. Many of the properties defined by the Activity Vocabulary allow values that are either instances of Object or Link. When a Link is used, it establishes a qualified relation connecting the subject (the containing object) to the resource identified by the href. Properties of the Link are properties of the reference as opposed to properties of the resource.

Example 2 (https://www.w3.org/TR/activitystreams-vocabulary/#ex2-jsonld):

{
  "hreflang": "en",
  "mediaType": "text/html",
  "name": "An example link",
  "type": "Link",
  "url": "http://example.org/abc"
}

type ActivityStreamsListen

type ActivityStreamsListen interface {
	// GetActivityStreamsActor returns the "actor" property if it exists, and
	// nil otherwise.
	GetActivityStreamsActor() ActivityStreamsActorProperty
	// GetActivityStreamsAltitude returns the "altitude" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAltitude() ActivityStreamsAltitudeProperty
	// GetActivityStreamsAttachment returns the "attachment" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAttachment() ActivityStreamsAttachmentProperty
	// GetActivityStreamsAttributedTo returns the "attributedTo" property if
	// it exists, and nil otherwise.
	GetActivityStreamsAttributedTo() ActivityStreamsAttributedToProperty
	// GetActivityStreamsAudience returns the "audience" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAudience() ActivityStreamsAudienceProperty
	// GetActivityStreamsBcc returns the "bcc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBcc() ActivityStreamsBccProperty
	// GetActivityStreamsBto returns the "bto" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBto() ActivityStreamsBtoProperty
	// GetActivityStreamsCc returns the "cc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsCc() ActivityStreamsCcProperty
	// GetActivityStreamsContent returns the "content" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContent() ActivityStreamsContentProperty
	// GetActivityStreamsContext returns the "context" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContext() ActivityStreamsContextProperty
	// GetActivityStreamsDuration returns the "duration" property if it
	// exists, and nil otherwise.
	GetActivityStreamsDuration() ActivityStreamsDurationProperty
	// GetActivityStreamsEndTime returns the "endTime" property if it exists,
	// and nil otherwise.
	GetActivityStreamsEndTime() ActivityStreamsEndTimeProperty
	// GetActivityStreamsGenerator returns the "generator" property if it
	// exists, and nil otherwise.
	GetActivityStreamsGenerator() ActivityStreamsGeneratorProperty
	// GetActivityStreamsIcon returns the "icon" property if it exists, and
	// nil otherwise.
	GetActivityStreamsIcon() ActivityStreamsIconProperty
	// GetActivityStreamsImage returns the "image" property if it exists, and
	// nil otherwise.
	GetActivityStreamsImage() ActivityStreamsImageProperty
	// GetActivityStreamsInReplyTo returns the "inReplyTo" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInReplyTo() ActivityStreamsInReplyToProperty
	// GetActivityStreamsInstrument returns the "instrument" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInstrument() ActivityStreamsInstrumentProperty
	// GetActivityStreamsLikes returns the "likes" property if it exists, and
	// nil otherwise.
	GetActivityStreamsLikes() ActivityStreamsLikesProperty
	// GetActivityStreamsLocation returns the "location" property if it
	// exists, and nil otherwise.
	GetActivityStreamsLocation() ActivityStreamsLocationProperty
	// GetActivityStreamsMediaType returns the "mediaType" property if it
	// exists, and nil otherwise.
	GetActivityStreamsMediaType() ActivityStreamsMediaTypeProperty
	// GetActivityStreamsName returns the "name" property if it exists, and
	// nil otherwise.
	GetActivityStreamsName() ActivityStreamsNameProperty
	// GetActivityStreamsObject returns the "object" property if it exists,
	// and nil otherwise.
	GetActivityStreamsObject() ActivityStreamsObjectProperty
	// GetActivityStreamsOrigin returns the "origin" property if it exists,
	// and nil otherwise.
	GetActivityStreamsOrigin() ActivityStreamsOriginProperty
	// GetActivityStreamsPreview returns the "preview" property if it exists,
	// and nil otherwise.
	GetActivityStreamsPreview() ActivityStreamsPreviewProperty
	// GetActivityStreamsPublished returns the "published" property if it
	// exists, and nil otherwise.
	GetActivityStreamsPublished() ActivityStreamsPublishedProperty
	// GetActivityStreamsReplies returns the "replies" property if it exists,
	// and nil otherwise.
	GetActivityStreamsReplies() ActivityStreamsRepliesProperty
	// GetActivityStreamsResult returns the "result" property if it exists,
	// and nil otherwise.
	GetActivityStreamsResult() ActivityStreamsResultProperty
	// GetActivityStreamsShares returns the "shares" property if it exists,
	// and nil otherwise.
	GetActivityStreamsShares() ActivityStreamsSharesProperty
	// GetActivityStreamsSource returns the "source" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSource() ActivityStreamsSourceProperty
	// GetActivityStreamsStartTime returns the "startTime" property if it
	// exists, and nil otherwise.
	GetActivityStreamsStartTime() ActivityStreamsStartTimeProperty
	// GetActivityStreamsSummary returns the "summary" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSummary() ActivityStreamsSummaryProperty
	// GetActivityStreamsTag returns the "tag" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTag() ActivityStreamsTagProperty
	// GetActivityStreamsTarget returns the "target" property if it exists,
	// and nil otherwise.
	GetActivityStreamsTarget() ActivityStreamsTargetProperty
	// GetActivityStreamsTo returns the "to" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTo() ActivityStreamsToProperty
	// GetActivityStreamsUpdated returns the "updated" property if it exists,
	// and nil otherwise.
	GetActivityStreamsUpdated() ActivityStreamsUpdatedProperty
	// GetActivityStreamsUrl returns the "url" property if it exists, and nil
	// otherwise.
	GetActivityStreamsUrl() ActivityStreamsUrlProperty
	// GetForgeFedTeam returns the "team" property if it exists, and nil
	// otherwise.
	GetForgeFedTeam() ForgeFedTeamProperty
	// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
	// it exists, and nil otherwise.
	GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
	// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
	// it exists, and nil otherwise.
	GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
	// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
	GetJSONLDId() JSONLDIdProperty
	// GetJSONLDType returns the "type" property if it exists, and nil
	// otherwise.
	GetJSONLDType() JSONLDTypeProperty
	// GetTypeName returns the name of this type.
	GetTypeName() string
	// GetUnknownProperties returns the unknown properties for the Listen
	// type. Note that this should not be used by app developers. It is
	// only used to help determine which implementation is LessThan the
	// other. Developers who are creating a different implementation of
	// this type's interface can use this method in their LessThan
	// implementation, but routine ActivityPub applications should not use
	// this to bypass the code generation tool.
	GetUnknownProperties() map[string]interface{}
	// IsExtending returns true if the Listen type extends from the other type.
	IsExtending(other Type) bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this type and the specific properties that are set. The value
	// in the map is the alias used to import the type and its properties.
	JSONLDContext() map[string]string
	// LessThan computes if this Listen is lesser, with an arbitrary but
	// stable determination.
	LessThan(o ActivityStreamsListen) bool
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format.
	Serialize() (map[string]interface{}, error)
	// SetActivityStreamsActor sets the "actor" property.
	SetActivityStreamsActor(i ActivityStreamsActorProperty)
	// SetActivityStreamsAltitude sets the "altitude" property.
	SetActivityStreamsAltitude(i ActivityStreamsAltitudeProperty)
	// SetActivityStreamsAttachment sets the "attachment" property.
	SetActivityStreamsAttachment(i ActivityStreamsAttachmentProperty)
	// SetActivityStreamsAttributedTo sets the "attributedTo" property.
	SetActivityStreamsAttributedTo(i ActivityStreamsAttributedToProperty)
	// SetActivityStreamsAudience sets the "audience" property.
	SetActivityStreamsAudience(i ActivityStreamsAudienceProperty)
	// SetActivityStreamsBcc sets the "bcc" property.
	SetActivityStreamsBcc(i ActivityStreamsBccProperty)
	// SetActivityStreamsBto sets the "bto" property.
	SetActivityStreamsBto(i ActivityStreamsBtoProperty)
	// SetActivityStreamsCc sets the "cc" property.
	SetActivityStreamsCc(i ActivityStreamsCcProperty)
	// SetActivityStreamsContent sets the "content" property.
	SetActivityStreamsContent(i ActivityStreamsContentProperty)
	// SetActivityStreamsContext sets the "context" property.
	SetActivityStreamsContext(i ActivityStreamsContextProperty)
	// SetActivityStreamsDuration sets the "duration" property.
	SetActivityStreamsDuration(i ActivityStreamsDurationProperty)
	// SetActivityStreamsEndTime sets the "endTime" property.
	SetActivityStreamsEndTime(i ActivityStreamsEndTimeProperty)
	// SetActivityStreamsGenerator sets the "generator" property.
	SetActivityStreamsGenerator(i ActivityStreamsGeneratorProperty)
	// SetActivityStreamsIcon sets the "icon" property.
	SetActivityStreamsIcon(i ActivityStreamsIconProperty)
	// SetActivityStreamsImage sets the "image" property.
	SetActivityStreamsImage(i ActivityStreamsImageProperty)
	// SetActivityStreamsInReplyTo sets the "inReplyTo" property.
	SetActivityStreamsInReplyTo(i ActivityStreamsInReplyToProperty)
	// SetActivityStreamsInstrument sets the "instrument" property.
	SetActivityStreamsInstrument(i ActivityStreamsInstrumentProperty)
	// SetActivityStreamsLikes sets the "likes" property.
	SetActivityStreamsLikes(i ActivityStreamsLikesProperty)
	// SetActivityStreamsLocation sets the "location" property.
	SetActivityStreamsLocation(i ActivityStreamsLocationProperty)
	// SetActivityStreamsMediaType sets the "mediaType" property.
	SetActivityStreamsMediaType(i ActivityStreamsMediaTypeProperty)
	// SetActivityStreamsName sets the "name" property.
	SetActivityStreamsName(i ActivityStreamsNameProperty)
	// SetActivityStreamsObject sets the "object" property.
	SetActivityStreamsObject(i ActivityStreamsObjectProperty)
	// SetActivityStreamsOrigin sets the "origin" property.
	SetActivityStreamsOrigin(i ActivityStreamsOriginProperty)
	// SetActivityStreamsPreview sets the "preview" property.
	SetActivityStreamsPreview(i ActivityStreamsPreviewProperty)
	// SetActivityStreamsPublished sets the "published" property.
	SetActivityStreamsPublished(i ActivityStreamsPublishedProperty)
	// SetActivityStreamsReplies sets the "replies" property.
	SetActivityStreamsReplies(i ActivityStreamsRepliesProperty)
	// SetActivityStreamsResult sets the "result" property.
	SetActivityStreamsResult(i ActivityStreamsResultProperty)
	// SetActivityStreamsShares sets the "shares" property.
	SetActivityStreamsShares(i ActivityStreamsSharesProperty)
	// SetActivityStreamsSource sets the "source" property.
	SetActivityStreamsSource(i ActivityStreamsSourceProperty)
	// SetActivityStreamsStartTime sets the "startTime" property.
	SetActivityStreamsStartTime(i ActivityStreamsStartTimeProperty)
	// SetActivityStreamsSummary sets the "summary" property.
	SetActivityStreamsSummary(i ActivityStreamsSummaryProperty)
	// SetActivityStreamsTag sets the "tag" property.
	SetActivityStreamsTag(i ActivityStreamsTagProperty)
	// SetActivityStreamsTarget sets the "target" property.
	SetActivityStreamsTarget(i ActivityStreamsTargetProperty)
	// SetActivityStreamsTo sets the "to" property.
	SetActivityStreamsTo(i ActivityStreamsToProperty)
	// SetActivityStreamsUpdated sets the "updated" property.
	SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
	// SetActivityStreamsUrl sets the "url" property.
	SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
	// SetForgeFedTeam sets the "team" property.
	SetForgeFedTeam(i ForgeFedTeamProperty)
	// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
	SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
	// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
	SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
	// SetJSONLDId sets the "id" property.
	SetJSONLDId(i JSONLDIdProperty)
	// SetJSONLDType sets the "type" property.
	SetJSONLDType(i JSONLDTypeProperty)
	// VocabularyURI returns the vocabulary's URI as a string.
	VocabularyURI() string
}

Indicates that the actor has listened to the object.

Example 32 (https://www.w3.org/TR/activitystreams-vocabulary/#ex163-jsonld):

{
  "actor": {
    "name": "Sally",
    "type": "Person"
  },
  "object": "http://example.org/music.mp3",
  "summary": "Sally listened to a piece of music",
  "type": "Listen"
}

type ActivityStreamsLocationProperty

type ActivityStreamsLocationProperty interface {
	// AppendActivityStreamsAccept appends a Accept value to the back of a
	// list of the property "location". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsAccept(v ActivityStreamsAccept)
	// AppendActivityStreamsActivity appends a Activity value to the back of a
	// list of the property "location". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsActivity(v ActivityStreamsActivity)
	// AppendActivityStreamsAdd appends a Add value to the back of a list of
	// the property "location". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsAdd(v ActivityStreamsAdd)
	// AppendActivityStreamsAnnounce appends a Announce value to the back of a
	// list of the property "location". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// AppendActivityStreamsApplication appends a Application value to the
	// back of a list of the property "location". Invalidates iterators
	// that are traversing using Prev.
	AppendActivityStreamsApplication(v ActivityStreamsApplication)
	// AppendActivityStreamsArrive appends a Arrive value to the back of a
	// list of the property "location". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsArrive(v ActivityStreamsArrive)
	// AppendActivityStreamsArticle appends a Article value to the back of a
	// list of the property "location". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsArticle(v ActivityStreamsArticle)
	// AppendActivityStreamsAudio appends a Audio value to the back of a list
	// of the property "location". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsAudio(v ActivityStreamsAudio)
	// AppendActivityStreamsBlock appends a Block value to the back of a list
	// of the property "location". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsBlock(v ActivityStreamsBlock)
	// AppendActivityStreamsCollection appends a Collection value to the back
	// of a list of the property "location". Invalidates iterators that
	// are traversing using Prev.
	AppendActivityStreamsCollection(v ActivityStreamsCollection)
	// AppendActivityStreamsCollectionPage appends a CollectionPage value to
	// the back of a list of the property "location". Invalidates
	// iterators that are traversing using Prev.
	AppendActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// AppendActivityStreamsCreate appends a Create value to the back of a
	// list of the property "location". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsCreate(v ActivityStreamsCreate)
	// AppendActivityStreamsDelete appends a Delete value to the back of a
	// list of the property "location". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDelete(v ActivityStreamsDelete)
	// AppendActivityStreamsDislike appends a Dislike value to the back of a
	// list of the property "location". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDislike(v ActivityStreamsDislike)
	// AppendActivityStreamsDocument appends a Document value to the back of a
	// list of the property "location". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDocument(v ActivityStreamsDocument)
	// AppendActivityStreamsEvent appends a Event value to the back of a list
	// of the property "location". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsEvent(v ActivityStreamsEvent)
	// AppendActivityStreamsFlag appends a Flag value to the back of a list of
	// the property "location". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsFlag(v ActivityStreamsFlag)
	// AppendActivityStreamsFollow appends a Follow value to the back of a
	// list of the property "location". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsFollow(v ActivityStreamsFollow)
	// AppendActivityStreamsGroup appends a Group value to the back of a list
	// of the property "location". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsGroup(v ActivityStreamsGroup)
	// AppendActivityStreamsIgnore appends a Ignore value to the back of a
	// list of the property "location". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsIgnore(v ActivityStreamsIgnore)
	// AppendActivityStreamsImage appends a Image value to the back of a list
	// of the property "location". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsImage(v ActivityStreamsImage)
	// AppendActivityStreamsIntransitiveActivity appends a
	// IntransitiveActivity value to the back of a list of the property
	// "location". Invalidates iterators that are traversing using Prev.
	AppendActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// AppendActivityStreamsInvite appends a Invite value to the back of a
	// list of the property "location". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsInvite(v ActivityStreamsInvite)
	// AppendActivityStreamsJoin appends a Join value to the back of a list of
	// the property "location". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsJoin(v ActivityStreamsJoin)
	// AppendActivityStreamsLeave appends a Leave value to the back of a list
	// of the property "location". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsLeave(v ActivityStreamsLeave)
	// AppendActivityStreamsLike appends a Like value to the back of a list of
	// the property "location". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsLike(v ActivityStreamsLike)
	// AppendActivityStreamsLink appends a Link value to the back of a list of
	// the property "location". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsLink(v ActivityStreamsLink)
	// AppendActivityStreamsListen appends a Listen value to the back of a
	// list of the property "location". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsListen(v ActivityStreamsListen)
	// AppendActivityStreamsMention appends a Mention value to the back of a
	// list of the property "location". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsMention(v ActivityStreamsMention)
	// AppendActivityStreamsMove appends a Move value to the back of a list of
	// the property "location". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsMove(v ActivityStreamsMove)
	// AppendActivityStreamsNote appends a Note value to the back of a list of
	// the property "location". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsNote(v ActivityStreamsNote)
	// AppendActivityStreamsObject appends a Object value to the back of a
	// list of the property "location". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsObject(v ActivityStreamsObject)
	// AppendActivityStreamsOffer appends a Offer value to the back of a list
	// of the property "location". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsOffer(v ActivityStreamsOffer)
	// AppendActivityStreamsOrderedCollection appends a OrderedCollection
	// value to the back of a list of the property "location". Invalidates
	// iterators that are traversing using Prev.
	AppendActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// AppendActivityStreamsOrderedCollectionPage appends a
	// OrderedCollectionPage value to the back of a list of the property
	// "location". Invalidates iterators that are traversing using Prev.
	AppendActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// AppendActivityStreamsOrganization appends a Organization value to the
	// back of a list of the property "location". Invalidates iterators
	// that are traversing using Prev.
	AppendActivityStreamsOrganization(v ActivityStreamsOrganization)
	// AppendActivityStreamsPage appends a Page value to the back of a list of
	// the property "location". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsPage(v ActivityStreamsPage)
	// AppendActivityStreamsPerson appends a Person value to the back of a
	// list of the property "location". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsPerson(v ActivityStreamsPerson)
	// AppendActivityStreamsPlace appends a Place value to the back of a list
	// of the property "location". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsPlace(v ActivityStreamsPlace)
	// AppendActivityStreamsProfile appends a Profile value to the back of a
	// list of the property "location". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsProfile(v ActivityStreamsProfile)
	// AppendActivityStreamsQuestion appends a Question value to the back of a
	// list of the property "location". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsQuestion(v ActivityStreamsQuestion)
	// AppendActivityStreamsRead appends a Read value to the back of a list of
	// the property "location". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsRead(v ActivityStreamsRead)
	// AppendActivityStreamsReject appends a Reject value to the back of a
	// list of the property "location". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsReject(v ActivityStreamsReject)
	// AppendActivityStreamsRelationship appends a Relationship value to the
	// back of a list of the property "location". Invalidates iterators
	// that are traversing using Prev.
	AppendActivityStreamsRelationship(v ActivityStreamsRelationship)
	// AppendActivityStreamsRemove appends a Remove value to the back of a
	// list of the property "location". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsRemove(v ActivityStreamsRemove)
	// AppendActivityStreamsService appends a Service value to the back of a
	// list of the property "location". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsService(v ActivityStreamsService)
	// AppendActivityStreamsTentativeAccept appends a TentativeAccept value to
	// the back of a list of the property "location". Invalidates
	// iterators that are traversing using Prev.
	AppendActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// AppendActivityStreamsTentativeReject appends a TentativeReject value to
	// the back of a list of the property "location". Invalidates
	// iterators that are traversing using Prev.
	AppendActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// AppendActivityStreamsTombstone appends a Tombstone value to the back of
	// a list of the property "location". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsTombstone(v ActivityStreamsTombstone)
	// AppendActivityStreamsTravel appends a Travel value to the back of a
	// list of the property "location". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsTravel(v ActivityStreamsTravel)
	// AppendActivityStreamsUndo appends a Undo value to the back of a list of
	// the property "location". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsUndo(v ActivityStreamsUndo)
	// AppendActivityStreamsUpdate appends a Update value to the back of a
	// list of the property "location". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsUpdate(v ActivityStreamsUpdate)
	// AppendActivityStreamsVideo appends a Video value to the back of a list
	// of the property "location". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsVideo(v ActivityStreamsVideo)
	// AppendActivityStreamsView appends a View value to the back of a list of
	// the property "location". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsView(v ActivityStreamsView)
	// AppendForgeFedBranch appends a Branch value to the back of a list of
	// the property "location". Invalidates iterators that are traversing
	// using Prev.
	AppendForgeFedBranch(v ForgeFedBranch)
	// AppendForgeFedCommit appends a Commit value to the back of a list of
	// the property "location". Invalidates iterators that are traversing
	// using Prev.
	AppendForgeFedCommit(v ForgeFedCommit)
	// AppendForgeFedPush appends a Push value to the back of a list of the
	// property "location". Invalidates iterators that are traversing
	// using Prev.
	AppendForgeFedPush(v ForgeFedPush)
	// AppendForgeFedRepository appends a Repository value to the back of a
	// list of the property "location". Invalidates iterators that are
	// traversing using Prev.
	AppendForgeFedRepository(v ForgeFedRepository)
	// AppendForgeFedTicket appends a Ticket value to the back of a list of
	// the property "location". Invalidates iterators that are traversing
	// using Prev.
	AppendForgeFedTicket(v ForgeFedTicket)
	// AppendForgeFedTicketDependency appends a TicketDependency value to the
	// back of a list of the property "location". Invalidates iterators
	// that are traversing using Prev.
	AppendForgeFedTicketDependency(v ForgeFedTicketDependency)
	// AppendIRI appends an IRI value to the back of a list of the property
	// "location"
	AppendIRI(v *url.URL)
	// AppendTootEmoji appends a Emoji value to the back of a list of the
	// property "location". Invalidates iterators that are traversing
	// using Prev.
	AppendTootEmoji(v TootEmoji)
	// AppendTootIdentityProof appends a IdentityProof value to the back of a
	// list of the property "location". Invalidates iterators that are
	// traversing using Prev.
	AppendTootIdentityProof(v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "location". Invalidates iterators that are traversing
	// using Prev. Returns an error if the type is not a valid one to set
	// for this property.
	AppendType(t Type) error
	// At returns the property value for the specified index. Panics if the
	// index is out of bounds.
	At(index int) ActivityStreamsLocationPropertyIterator
	// Begin returns the first iterator, or nil if empty. Can be used with the
	// iterator's Next method and this property's End method to iterate
	// from front to back through all values.
	Begin() ActivityStreamsLocationPropertyIterator
	// Empty returns returns true if there are no elements.
	Empty() bool
	// End returns beyond-the-last iterator, which is nil. Can be used with
	// the iterator's Next method and this property's Begin method to
	// iterate from front to back through all values.
	End() ActivityStreamsLocationPropertyIterator
	// InsertActivityStreamsAccept inserts a Accept value at the specified
	// index for a property "location". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAccept(idx int, v ActivityStreamsAccept)
	// InsertActivityStreamsActivity inserts a Activity value at the specified
	// index for a property "location". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsActivity(idx int, v ActivityStreamsActivity)
	// InsertActivityStreamsAdd inserts a Add value at the specified index for
	// a property "location". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAdd(idx int, v ActivityStreamsAdd)
	// InsertActivityStreamsAnnounce inserts a Announce value at the specified
	// index for a property "location". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAnnounce(idx int, v ActivityStreamsAnnounce)
	// InsertActivityStreamsApplication inserts a Application value at the
	// specified index for a property "location". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsApplication(idx int, v ActivityStreamsApplication)
	// InsertActivityStreamsArrive inserts a Arrive value at the specified
	// index for a property "location". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsArrive(idx int, v ActivityStreamsArrive)
	// InsertActivityStreamsArticle inserts a Article value at the specified
	// index for a property "location". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsArticle(idx int, v ActivityStreamsArticle)
	// InsertActivityStreamsAudio inserts a Audio value at the specified index
	// for a property "location". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAudio(idx int, v ActivityStreamsAudio)
	// InsertActivityStreamsBlock inserts a Block value at the specified index
	// for a property "location". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsBlock(idx int, v ActivityStreamsBlock)
	// InsertActivityStreamsCollection inserts a Collection value at the
	// specified index for a property "location". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsCollection(idx int, v ActivityStreamsCollection)
	// InsertActivityStreamsCollectionPage inserts a CollectionPage value at
	// the specified index for a property "location". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsCollectionPage(idx int, v ActivityStreamsCollectionPage)
	// InsertActivityStreamsCreate inserts a Create value at the specified
	// index for a property "location". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsCreate(idx int, v ActivityStreamsCreate)
	// InsertActivityStreamsDelete inserts a Delete value at the specified
	// index for a property "location". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDelete(idx int, v ActivityStreamsDelete)
	// InsertActivityStreamsDislike inserts a Dislike value at the specified
	// index for a property "location". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDislike(idx int, v ActivityStreamsDislike)
	// InsertActivityStreamsDocument inserts a Document value at the specified
	// index for a property "location". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDocument(idx int, v ActivityStreamsDocument)
	// InsertActivityStreamsEvent inserts a Event value at the specified index
	// for a property "location". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsEvent(idx int, v ActivityStreamsEvent)
	// InsertActivityStreamsFlag inserts a Flag value at the specified index
	// for a property "location". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsFlag(idx int, v ActivityStreamsFlag)
	// InsertActivityStreamsFollow inserts a Follow value at the specified
	// index for a property "location". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsFollow(idx int, v ActivityStreamsFollow)
	// InsertActivityStreamsGroup inserts a Group value at the specified index
	// for a property "location". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsGroup(idx int, v ActivityStreamsGroup)
	// InsertActivityStreamsIgnore inserts a Ignore value at the specified
	// index for a property "location". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsIgnore(idx int, v ActivityStreamsIgnore)
	// InsertActivityStreamsImage inserts a Image value at the specified index
	// for a property "location". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsImage(idx int, v ActivityStreamsImage)
	// InsertActivityStreamsIntransitiveActivity inserts a
	// IntransitiveActivity value at the specified index for a property
	// "location". Existing elements at that index and higher are shifted
	// back once. Invalidates all iterators.
	InsertActivityStreamsIntransitiveActivity(idx int, v ActivityStreamsIntransitiveActivity)
	// InsertActivityStreamsInvite inserts a Invite value at the specified
	// index for a property "location". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsInvite(idx int, v ActivityStreamsInvite)
	// InsertActivityStreamsJoin inserts a Join value at the specified index
	// for a property "location". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsJoin(idx int, v ActivityStreamsJoin)
	// InsertActivityStreamsLeave inserts a Leave value at the specified index
	// for a property "location". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsLeave(idx int, v ActivityStreamsLeave)
	// InsertActivityStreamsLike inserts a Like value at the specified index
	// for a property "location". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsLike(idx int, v ActivityStreamsLike)
	// InsertActivityStreamsLink inserts a Link value at the specified index
	// for a property "location". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsLink(idx int, v ActivityStreamsLink)
	// InsertActivityStreamsListen inserts a Listen value at the specified
	// index for a property "location". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsListen(idx int, v ActivityStreamsListen)
	// InsertActivityStreamsMention inserts a Mention value at the specified
	// index for a property "location". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsMention(idx int, v ActivityStreamsMention)
	// InsertActivityStreamsMove inserts a Move value at the specified index
	// for a property "location". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsMove(idx int, v ActivityStreamsMove)
	// InsertActivityStreamsNote inserts a Note value at the specified index
	// for a property "location". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsNote(idx int, v ActivityStreamsNote)
	// InsertActivityStreamsObject inserts a Object value at the specified
	// index for a property "location". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsObject(idx int, v ActivityStreamsObject)
	// InsertActivityStreamsOffer inserts a Offer value at the specified index
	// for a property "location". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsOffer(idx int, v ActivityStreamsOffer)
	// InsertActivityStreamsOrderedCollection inserts a OrderedCollection
	// value at the specified index for a property "location". Existing
	// elements at that index and higher are shifted back once.
	// Invalidates all iterators.
	InsertActivityStreamsOrderedCollection(idx int, v ActivityStreamsOrderedCollection)
	// InsertActivityStreamsOrderedCollectionPage inserts a
	// OrderedCollectionPage value at the specified index for a property
	// "location". Existing elements at that index and higher are shifted
	// back once. Invalidates all iterators.
	InsertActivityStreamsOrderedCollectionPage(idx int, v ActivityStreamsOrderedCollectionPage)
	// InsertActivityStreamsOrganization inserts a Organization value at the
	// specified index for a property "location". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsOrganization(idx int, v ActivityStreamsOrganization)
	// InsertActivityStreamsPage inserts a Page value at the specified index
	// for a property "location". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsPage(idx int, v ActivityStreamsPage)
	// InsertActivityStreamsPerson inserts a Person value at the specified
	// index for a property "location". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsPerson(idx int, v ActivityStreamsPerson)
	// InsertActivityStreamsPlace inserts a Place value at the specified index
	// for a property "location". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsPlace(idx int, v ActivityStreamsPlace)
	// InsertActivityStreamsProfile inserts a Profile value at the specified
	// index for a property "location". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsProfile(idx int, v ActivityStreamsProfile)
	// InsertActivityStreamsQuestion inserts a Question value at the specified
	// index for a property "location". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsQuestion(idx int, v ActivityStreamsQuestion)
	// InsertActivityStreamsRead inserts a Read value at the specified index
	// for a property "location". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsRead(idx int, v ActivityStreamsRead)
	// InsertActivityStreamsReject inserts a Reject value at the specified
	// index for a property "location". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsReject(idx int, v ActivityStreamsReject)
	// InsertActivityStreamsRelationship inserts a Relationship value at the
	// specified index for a property "location". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsRelationship(idx int, v ActivityStreamsRelationship)
	// InsertActivityStreamsRemove inserts a Remove value at the specified
	// index for a property "location". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsRemove(idx int, v ActivityStreamsRemove)
	// InsertActivityStreamsService inserts a Service value at the specified
	// index for a property "location". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsService(idx int, v ActivityStreamsService)
	// InsertActivityStreamsTentativeAccept inserts a TentativeAccept value at
	// the specified index for a property "location". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsTentativeAccept(idx int, v ActivityStreamsTentativeAccept)
	// InsertActivityStreamsTentativeReject inserts a TentativeReject value at
	// the specified index for a property "location". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsTentativeReject(idx int, v ActivityStreamsTentativeReject)
	// InsertActivityStreamsTombstone inserts a Tombstone value at the
	// specified index for a property "location". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsTombstone(idx int, v ActivityStreamsTombstone)
	// InsertActivityStreamsTravel inserts a Travel value at the specified
	// index for a property "location". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsTravel(idx int, v ActivityStreamsTravel)
	// InsertActivityStreamsUndo inserts a Undo value at the specified index
	// for a property "location". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsUndo(idx int, v ActivityStreamsUndo)
	// InsertActivityStreamsUpdate inserts a Update value at the specified
	// index for a property "location". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsUpdate(idx int, v ActivityStreamsUpdate)
	// InsertActivityStreamsVideo inserts a Video value at the specified index
	// for a property "location". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsVideo(idx int, v ActivityStreamsVideo)
	// InsertActivityStreamsView inserts a View value at the specified index
	// for a property "location". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsView(idx int, v ActivityStreamsView)
	// InsertForgeFedBranch inserts a Branch value at the specified index for
	// a property "location". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertForgeFedBranch(idx int, v ForgeFedBranch)
	// InsertForgeFedCommit inserts a Commit value at the specified index for
	// a property "location". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertForgeFedCommit(idx int, v ForgeFedCommit)
	// InsertForgeFedPush inserts a Push value at the specified index for a
	// property "location". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertForgeFedPush(idx int, v ForgeFedPush)
	// InsertForgeFedRepository inserts a Repository value at the specified
	// index for a property "location". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertForgeFedRepository(idx int, v ForgeFedRepository)
	// InsertForgeFedTicket inserts a Ticket value at the specified index for
	// a property "location". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertForgeFedTicket(idx int, v ForgeFedTicket)
	// InsertForgeFedTicketDependency inserts a TicketDependency value at the
	// specified index for a property "location". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
	// Insert inserts an IRI value at the specified index for a property
	// "location". Existing elements at that index and higher are shifted
	// back once. Invalidates all iterators.
	InsertIRI(idx int, v *url.URL)
	// InsertTootEmoji inserts a Emoji value at the specified index for a
	// property "location". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertTootEmoji(idx int, v TootEmoji)
	// InsertTootIdentityProof inserts a IdentityProof value at the specified
	// index for a property "location". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertTootIdentityProof(idx int, v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "location". Invalidates all iterators. Returns an
	// error if the type is not a valid one to set for this property.
	InsertType(idx int, t Type) error
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API method specifically needed only for alternate
	// implementations for go-fed. Applications should not use this
	// method. Panics if the index is out of bounds.
	KindIndex(idx int) int
	// Len returns the number of values that exist for the "location" property.
	Len() (length int)
	// Less computes whether another property is less than this one. Mixing
	// types results in a consistent but arbitrary ordering
	Less(i, j int) bool
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsLocationProperty) bool
	// Name returns the name of this property ("location") with any alias.
	Name() string
	// PrependActivityStreamsAccept prepends a Accept value to the front of a
	// list of the property "location". Invalidates all iterators.
	PrependActivityStreamsAccept(v ActivityStreamsAccept)
	// PrependActivityStreamsActivity prepends a Activity value to the front
	// of a list of the property "location". Invalidates all iterators.
	PrependActivityStreamsActivity(v ActivityStreamsActivity)
	// PrependActivityStreamsAdd prepends a Add value to the front of a list
	// of the property "location". Invalidates all iterators.
	PrependActivityStreamsAdd(v ActivityStreamsAdd)
	// PrependActivityStreamsAnnounce prepends a Announce value to the front
	// of a list of the property "location". Invalidates all iterators.
	PrependActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// PrependActivityStreamsApplication prepends a Application value to the
	// front of a list of the property "location". Invalidates all
	// iterators.
	PrependActivityStreamsApplication(v ActivityStreamsApplication)
	// PrependActivityStreamsArrive prepends a Arrive value to the front of a
	// list of the property "location". Invalidates all iterators.
	PrependActivityStreamsArrive(v ActivityStreamsArrive)
	// PrependActivityStreamsArticle prepends a Article value to the front of
	// a list of the property "location". Invalidates all iterators.
	PrependActivityStreamsArticle(v ActivityStreamsArticle)
	// PrependActivityStreamsAudio prepends a Audio value to the front of a
	// list of the property "location". Invalidates all iterators.
	PrependActivityStreamsAudio(v ActivityStreamsAudio)
	// PrependActivityStreamsBlock prepends a Block value to the front of a
	// list of the property "location". Invalidates all iterators.
	PrependActivityStreamsBlock(v ActivityStreamsBlock)
	// PrependActivityStreamsCollection prepends a Collection value to the
	// front of a list of the property "location". Invalidates all
	// iterators.
	PrependActivityStreamsCollection(v ActivityStreamsCollection)
	// PrependActivityStreamsCollectionPage prepends a CollectionPage value to
	// the front of a list of the property "location". Invalidates all
	// iterators.
	PrependActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// PrependActivityStreamsCreate prepends a Create value to the front of a
	// list of the property "location". Invalidates all iterators.
	PrependActivityStreamsCreate(v ActivityStreamsCreate)
	// PrependActivityStreamsDelete prepends a Delete value to the front of a
	// list of the property "location". Invalidates all iterators.
	PrependActivityStreamsDelete(v ActivityStreamsDelete)
	// PrependActivityStreamsDislike prepends a Dislike value to the front of
	// a list of the property "location". Invalidates all iterators.
	PrependActivityStreamsDislike(v ActivityStreamsDislike)
	// PrependActivityStreamsDocument prepends a Document value to the front
	// of a list of the property "location". Invalidates all iterators.
	PrependActivityStreamsDocument(v ActivityStreamsDocument)
	// PrependActivityStreamsEvent prepends a Event value to the front of a
	// list of the property "location". Invalidates all iterators.
	PrependActivityStreamsEvent(v ActivityStreamsEvent)
	// PrependActivityStreamsFlag prepends a Flag value to the front of a list
	// of the property "location". Invalidates all iterators.
	PrependActivityStreamsFlag(v ActivityStreamsFlag)
	// PrependActivityStreamsFollow prepends a Follow value to the front of a
	// list of the property "location". Invalidates all iterators.
	PrependActivityStreamsFollow(v ActivityStreamsFollow)
	// PrependActivityStreamsGroup prepends a Group value to the front of a
	// list of the property "location". Invalidates all iterators.
	PrependActivityStreamsGroup(v ActivityStreamsGroup)
	// PrependActivityStreamsIgnore prepends a Ignore value to the front of a
	// list of the property "location". Invalidates all iterators.
	PrependActivityStreamsIgnore(v ActivityStreamsIgnore)
	// PrependActivityStreamsImage prepends a Image value to the front of a
	// list of the property "location". Invalidates all iterators.
	PrependActivityStreamsImage(v ActivityStreamsImage)
	// PrependActivityStreamsIntransitiveActivity prepends a
	// IntransitiveActivity value to the front of a list of the property
	// "location". Invalidates all iterators.
	PrependActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// PrependActivityStreamsInvite prepends a Invite value to the front of a
	// list of the property "location". Invalidates all iterators.
	PrependActivityStreamsInvite(v ActivityStreamsInvite)
	// PrependActivityStreamsJoin prepends a Join value to the front of a list
	// of the property "location". Invalidates all iterators.
	PrependActivityStreamsJoin(v ActivityStreamsJoin)
	// PrependActivityStreamsLeave prepends a Leave value to the front of a
	// list of the property "location". Invalidates all iterators.
	PrependActivityStreamsLeave(v ActivityStreamsLeave)
	// PrependActivityStreamsLike prepends a Like value to the front of a list
	// of the property "location". Invalidates all iterators.
	PrependActivityStreamsLike(v ActivityStreamsLike)
	// PrependActivityStreamsLink prepends a Link value to the front of a list
	// of the property "location". Invalidates all iterators.
	PrependActivityStreamsLink(v ActivityStreamsLink)
	// PrependActivityStreamsListen prepends a Listen value to the front of a
	// list of the property "location". Invalidates all iterators.
	PrependActivityStreamsListen(v ActivityStreamsListen)
	// PrependActivityStreamsMention prepends a Mention value to the front of
	// a list of the property "location". Invalidates all iterators.
	PrependActivityStreamsMention(v ActivityStreamsMention)
	// PrependActivityStreamsMove prepends a Move value to the front of a list
	// of the property "location". Invalidates all iterators.
	PrependActivityStreamsMove(v ActivityStreamsMove)
	// PrependActivityStreamsNote prepends a Note value to the front of a list
	// of the property "location". Invalidates all iterators.
	PrependActivityStreamsNote(v ActivityStreamsNote)
	// PrependActivityStreamsObject prepends a Object value to the front of a
	// list of the property "location". Invalidates all iterators.
	PrependActivityStreamsObject(v ActivityStreamsObject)
	// PrependActivityStreamsOffer prepends a Offer value to the front of a
	// list of the property "location". Invalidates all iterators.
	PrependActivityStreamsOffer(v ActivityStreamsOffer)
	// PrependActivityStreamsOrderedCollection prepends a OrderedCollection
	// value to the front of a list of the property "location".
	// Invalidates all iterators.
	PrependActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// PrependActivityStreamsOrderedCollectionPage prepends a
	// OrderedCollectionPage value to the front of a list of the property
	// "location". Invalidates all iterators.
	PrependActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// PrependActivityStreamsOrganization prepends a Organization value to the
	// front of a list of the property "location". Invalidates all
	// iterators.
	PrependActivityStreamsOrganization(v ActivityStreamsOrganization)
	// PrependActivityStreamsPage prepends a Page value to the front of a list
	// of the property "location". Invalidates all iterators.
	PrependActivityStreamsPage(v ActivityStreamsPage)
	// PrependActivityStreamsPerson prepends a Person value to the front of a
	// list of the property "location". Invalidates all iterators.
	PrependActivityStreamsPerson(v ActivityStreamsPerson)
	// PrependActivityStreamsPlace prepends a Place value to the front of a
	// list of the property "location". Invalidates all iterators.
	PrependActivityStreamsPlace(v ActivityStreamsPlace)
	// PrependActivityStreamsProfile prepends a Profile value to the front of
	// a list of the property "location". Invalidates all iterators.
	PrependActivityStreamsProfile(v ActivityStreamsProfile)
	// PrependActivityStreamsQuestion prepends a Question value to the front
	// of a list of the property "location". Invalidates all iterators.
	PrependActivityStreamsQuestion(v ActivityStreamsQuestion)
	// PrependActivityStreamsRead prepends a Read value to the front of a list
	// of the property "location". Invalidates all iterators.
	PrependActivityStreamsRead(v ActivityStreamsRead)
	// PrependActivityStreamsReject prepends a Reject value to the front of a
	// list of the property "location". Invalidates all iterators.
	PrependActivityStreamsReject(v ActivityStreamsReject)
	// PrependActivityStreamsRelationship prepends a Relationship value to the
	// front of a list of the property "location". Invalidates all
	// iterators.
	PrependActivityStreamsRelationship(v ActivityStreamsRelationship)
	// PrependActivityStreamsRemove prepends a Remove value to the front of a
	// list of the property "location". Invalidates all iterators.
	PrependActivityStreamsRemove(v ActivityStreamsRemove)
	// PrependActivityStreamsService prepends a Service value to the front of
	// a list of the property "location". Invalidates all iterators.
	PrependActivityStreamsService(v ActivityStreamsService)
	// PrependActivityStreamsTentativeAccept prepends a TentativeAccept value
	// to the front of a list of the property "location". Invalidates all
	// iterators.
	PrependActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// PrependActivityStreamsTentativeReject prepends a TentativeReject value
	// to the front of a list of the property "location". Invalidates all
	// iterators.
	PrependActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// PrependActivityStreamsTombstone prepends a Tombstone value to the front
	// of a list of the property "location". Invalidates all iterators.
	PrependActivityStreamsTombstone(v ActivityStreamsTombstone)
	// PrependActivityStreamsTravel prepends a Travel value to the front of a
	// list of the property "location". Invalidates all iterators.
	PrependActivityStreamsTravel(v ActivityStreamsTravel)
	// PrependActivityStreamsUndo prepends a Undo value to the front of a list
	// of the property "location". Invalidates all iterators.
	PrependActivityStreamsUndo(v ActivityStreamsUndo)
	// PrependActivityStreamsUpdate prepends a Update value to the front of a
	// list of the property "location". Invalidates all iterators.
	PrependActivityStreamsUpdate(v ActivityStreamsUpdate)
	// PrependActivityStreamsVideo prepends a Video value to the front of a
	// list of the property "location". Invalidates all iterators.
	PrependActivityStreamsVideo(v ActivityStreamsVideo)
	// PrependActivityStreamsView prepends a View value to the front of a list
	// of the property "location". Invalidates all iterators.
	PrependActivityStreamsView(v ActivityStreamsView)
	// PrependForgeFedBranch prepends a Branch value to the front of a list of
	// the property "location". Invalidates all iterators.
	PrependForgeFedBranch(v ForgeFedBranch)
	// PrependForgeFedCommit prepends a Commit value to the front of a list of
	// the property "location". Invalidates all iterators.
	PrependForgeFedCommit(v ForgeFedCommit)
	// PrependForgeFedPush prepends a Push value to the front of a list of the
	// property "location". Invalidates all iterators.
	PrependForgeFedPush(v ForgeFedPush)
	// PrependForgeFedRepository prepends a Repository value to the front of a
	// list of the property "location". Invalidates all iterators.
	PrependForgeFedRepository(v ForgeFedRepository)
	// PrependForgeFedTicket prepends a Ticket value to the front of a list of
	// the property "location". Invalidates all iterators.
	PrependForgeFedTicket(v ForgeFedTicket)
	// PrependForgeFedTicketDependency prepends a TicketDependency value to
	// the front of a list of the property "location". Invalidates all
	// iterators.
	PrependForgeFedTicketDependency(v ForgeFedTicketDependency)
	// PrependIRI prepends an IRI value to the front of a list of the property
	// "location".
	PrependIRI(v *url.URL)
	// PrependTootEmoji prepends a Emoji value to the front of a list of the
	// property "location". Invalidates all iterators.
	PrependTootEmoji(v TootEmoji)
	// PrependTootIdentityProof prepends a IdentityProof value to the front of
	// a list of the property "location". Invalidates all iterators.
	PrependTootIdentityProof(v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "location". Invalidates all iterators. Returns an
	// error if the type is not a valid one to set for this property.
	PrependType(t Type) error
	// Remove deletes an element at the specified index from a list of the
	// property "location", regardless of its type. Panics if the index is
	// out of bounds. Invalidates all iterators.
	Remove(idx int)
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// SetActivityStreamsAccept sets a Accept value to be at the specified
	// index for the property "location". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsAccept(idx int, v ActivityStreamsAccept)
	// SetActivityStreamsActivity sets a Activity value to be at the specified
	// index for the property "location". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsActivity(idx int, v ActivityStreamsActivity)
	// SetActivityStreamsAdd sets a Add value to be at the specified index for
	// the property "location". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsAdd(idx int, v ActivityStreamsAdd)
	// SetActivityStreamsAnnounce sets a Announce value to be at the specified
	// index for the property "location". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsAnnounce(idx int, v ActivityStreamsAnnounce)
	// SetActivityStreamsApplication sets a Application value to be at the
	// specified index for the property "location". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsApplication(idx int, v ActivityStreamsApplication)
	// SetActivityStreamsArrive sets a Arrive value to be at the specified
	// index for the property "location". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsArrive(idx int, v ActivityStreamsArrive)
	// SetActivityStreamsArticle sets a Article value to be at the specified
	// index for the property "location". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsArticle(idx int, v ActivityStreamsArticle)
	// SetActivityStreamsAudio sets a Audio value to be at the specified index
	// for the property "location". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsAudio(idx int, v ActivityStreamsAudio)
	// SetActivityStreamsBlock sets a Block value to be at the specified index
	// for the property "location". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsBlock(idx int, v ActivityStreamsBlock)
	// SetActivityStreamsCollection sets a Collection value to be at the
	// specified index for the property "location". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsCollection(idx int, v ActivityStreamsCollection)
	// SetActivityStreamsCollectionPage sets a CollectionPage value to be at
	// the specified index for the property "location". Panics if the
	// index is out of bounds. Invalidates all iterators.
	SetActivityStreamsCollectionPage(idx int, v ActivityStreamsCollectionPage)
	// SetActivityStreamsCreate sets a Create value to be at the specified
	// index for the property "location". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsCreate(idx int, v ActivityStreamsCreate)
	// SetActivityStreamsDelete sets a Delete value to be at the specified
	// index for the property "location". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsDelete(idx int, v ActivityStreamsDelete)
	// SetActivityStreamsDislike sets a Dislike value to be at the specified
	// index for the property "location". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsDislike(idx int, v ActivityStreamsDislike)
	// SetActivityStreamsDocument sets a Document value to be at the specified
	// index for the property "location". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsDocument(idx int, v ActivityStreamsDocument)
	// SetActivityStreamsEvent sets a Event value to be at the specified index
	// for the property "location". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsEvent(idx int, v ActivityStreamsEvent)
	// SetActivityStreamsFlag sets a Flag value to be at the specified index
	// for the property "location". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsFlag(idx int, v ActivityStreamsFlag)
	// SetActivityStreamsFollow sets a Follow value to be at the specified
	// index for the property "location". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsFollow(idx int, v ActivityStreamsFollow)
	// SetActivityStreamsGroup sets a Group value to be at the specified index
	// for the property "location". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsGroup(idx int, v ActivityStreamsGroup)
	// SetActivityStreamsIgnore sets a Ignore value to be at the specified
	// index for the property "location". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsIgnore(idx int, v ActivityStreamsIgnore)
	// SetActivityStreamsImage sets a Image value to be at the specified index
	// for the property "location". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsImage(idx int, v ActivityStreamsImage)
	// SetActivityStreamsIntransitiveActivity sets a IntransitiveActivity
	// value to be at the specified index for the property "location".
	// Panics if the index is out of bounds. Invalidates all iterators.
	SetActivityStreamsIntransitiveActivity(idx int, v ActivityStreamsIntransitiveActivity)
	// SetActivityStreamsInvite sets a Invite value to be at the specified
	// index for the property "location". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsInvite(idx int, v ActivityStreamsInvite)
	// SetActivityStreamsJoin sets a Join value to be at the specified index
	// for the property "location". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsJoin(idx int, v ActivityStreamsJoin)
	// SetActivityStreamsLeave sets a Leave value to be at the specified index
	// for the property "location". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsLeave(idx int, v ActivityStreamsLeave)
	// SetActivityStreamsLike sets a Like value to be at the specified index
	// for the property "location". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsLike(idx int, v ActivityStreamsLike)
	// SetActivityStreamsLink sets a Link value to be at the specified index
	// for the property "location". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsLink(idx int, v ActivityStreamsLink)
	// SetActivityStreamsListen sets a Listen value to be at the specified
	// index for the property "location". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsListen(idx int, v ActivityStreamsListen)
	// SetActivityStreamsMention sets a Mention value to be at the specified
	// index for the property "location". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsMention(idx int, v ActivityStreamsMention)
	// SetActivityStreamsMove sets a Move value to be at the specified index
	// for the property "location". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsMove(idx int, v ActivityStreamsMove)
	// SetActivityStreamsNote sets a Note value to be at the specified index
	// for the property "location". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsNote(idx int, v ActivityStreamsNote)
	// SetActivityStreamsObject sets a Object value to be at the specified
	// index for the property "location". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsObject(idx int, v ActivityStreamsObject)
	// SetActivityStreamsOffer sets a Offer value to be at the specified index
	// for the property "location". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsOffer(idx int, v ActivityStreamsOffer)
	// SetActivityStreamsOrderedCollection sets a OrderedCollection value to
	// be at the specified index for the property "location". Panics if
	// the index is out of bounds. Invalidates all iterators.
	SetActivityStreamsOrderedCollection(idx int, v ActivityStreamsOrderedCollection)
	// SetActivityStreamsOrderedCollectionPage sets a OrderedCollectionPage
	// value to be at the specified index for the property "location".
	// Panics if the index is out of bounds. Invalidates all iterators.
	SetActivityStreamsOrderedCollectionPage(idx int, v ActivityStreamsOrderedCollectionPage)
	// SetActivityStreamsOrganization sets a Organization value to be at the
	// specified index for the property "location". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsOrganization(idx int, v ActivityStreamsOrganization)
	// SetActivityStreamsPage sets a Page value to be at the specified index
	// for the property "location". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsPage(idx int, v ActivityStreamsPage)
	// SetActivityStreamsPerson sets a Person value to be at the specified
	// index for the property "location". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsPerson(idx int, v ActivityStreamsPerson)
	// SetActivityStreamsPlace sets a Place value to be at the specified index
	// for the property "location". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsPlace(idx int, v ActivityStreamsPlace)
	// SetActivityStreamsProfile sets a Profile value to be at the specified
	// index for the property "location". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsProfile(idx int, v ActivityStreamsProfile)
	// SetActivityStreamsQuestion sets a Question value to be at the specified
	// index for the property "location". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsQuestion(idx int, v ActivityStreamsQuestion)
	// SetActivityStreamsRead sets a Read value to be at the specified index
	// for the property "location". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsRead(idx int, v ActivityStreamsRead)
	// SetActivityStreamsReject sets a Reject value to be at the specified
	// index for the property "location". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsReject(idx int, v ActivityStreamsReject)
	// SetActivityStreamsRelationship sets a Relationship value to be at the
	// specified index for the property "location". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsRelationship(idx int, v ActivityStreamsRelationship)
	// SetActivityStreamsRemove sets a Remove value to be at the specified
	// index for the property "location". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsRemove(idx int, v ActivityStreamsRemove)
	// SetActivityStreamsService sets a Service value to be at the specified
	// index for the property "location". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsService(idx int, v ActivityStreamsService)
	// SetActivityStreamsTentativeAccept sets a TentativeAccept value to be at
	// the specified index for the property "location". Panics if the
	// index is out of bounds. Invalidates all iterators.
	SetActivityStreamsTentativeAccept(idx int, v ActivityStreamsTentativeAccept)
	// SetActivityStreamsTentativeReject sets a TentativeReject value to be at
	// the specified index for the property "location". Panics if the
	// index is out of bounds. Invalidates all iterators.
	SetActivityStreamsTentativeReject(idx int, v ActivityStreamsTentativeReject)
	// SetActivityStreamsTombstone sets a Tombstone value to be at the
	// specified index for the property "location". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsTombstone(idx int, v ActivityStreamsTombstone)
	// SetActivityStreamsTravel sets a Travel value to be at the specified
	// index for the property "location". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsTravel(idx int, v ActivityStreamsTravel)
	// SetActivityStreamsUndo sets a Undo value to be at the specified index
	// for the property "location". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsUndo(idx int, v ActivityStreamsUndo)
	// SetActivityStreamsUpdate sets a Update value to be at the specified
	// index for the property "location". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsUpdate(idx int, v ActivityStreamsUpdate)
	// SetActivityStreamsVideo sets a Video value to be at the specified index
	// for the property "location". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsVideo(idx int, v ActivityStreamsVideo)
	// SetActivityStreamsView sets a View value to be at the specified index
	// for the property "location". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsView(idx int, v ActivityStreamsView)
	// SetForgeFedBranch sets a Branch value to be at the specified index for
	// the property "location". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedBranch(idx int, v ForgeFedBranch)
	// SetForgeFedCommit sets a Commit value to be at the specified index for
	// the property "location". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedCommit(idx int, v ForgeFedCommit)
	// SetForgeFedPush sets a Push value to be at the specified index for the
	// property "location". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedPush(idx int, v ForgeFedPush)
	// SetForgeFedRepository sets a Repository value to be at the specified
	// index for the property "location". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetForgeFedRepository(idx int, v ForgeFedRepository)
	// SetForgeFedTicket sets a Ticket value to be at the specified index for
	// the property "location". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedTicket(idx int, v ForgeFedTicket)
	// SetForgeFedTicketDependency sets a TicketDependency value to be at the
	// specified index for the property "location". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
	// SetIRI sets an IRI value to be at the specified index for the property
	// "location". Panics if the index is out of bounds.
	SetIRI(idx int, v *url.URL)
	// SetTootEmoji sets a Emoji value to be at the specified index for the
	// property "location". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetTootEmoji(idx int, v TootEmoji)
	// SetTootIdentityProof sets a IdentityProof value to be at the specified
	// index for the property "location". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetTootIdentityProof(idx int, v TootIdentityProof)
	// SetType sets an arbitrary type value to the specified index of the
	// property "location". Invalidates all iterators. Returns an error if
	// the type is not a valid one to set for this property. Panics if the
	// index is out of bounds.
	SetType(idx int, t Type) error
	// Swap swaps the location of values at two indices for the "location"
	// property.
	Swap(i, j int)
}

Indicates one or more physical or logical locations associated with the object.

Example 88 (https://www.w3.org/TR/activitystreams-vocabulary/#ex89-jsonld):

{
  "location": {
    "altitude": 90,
    "latitude": 56.78,
    "longitude": 12.34,
    "name": "Over the Arabian Sea, east of Socotra Island Nature

Sanctuary",

    "type": "Place",
    "units": "m"
  },
  "name": "Sally",
  "type": "Person"
}

type ActivityStreamsLocationPropertyIterator

type ActivityStreamsLocationPropertyIterator interface {
	// GetActivityStreamsAccept returns the value of this property. When
	// IsActivityStreamsAccept returns false, GetActivityStreamsAccept
	// will return an arbitrary value.
	GetActivityStreamsAccept() ActivityStreamsAccept
	// GetActivityStreamsActivity returns the value of this property. When
	// IsActivityStreamsActivity returns false, GetActivityStreamsActivity
	// will return an arbitrary value.
	GetActivityStreamsActivity() ActivityStreamsActivity
	// GetActivityStreamsAdd returns the value of this property. When
	// IsActivityStreamsAdd returns false, GetActivityStreamsAdd will
	// return an arbitrary value.
	GetActivityStreamsAdd() ActivityStreamsAdd
	// GetActivityStreamsAnnounce returns the value of this property. When
	// IsActivityStreamsAnnounce returns false, GetActivityStreamsAnnounce
	// will return an arbitrary value.
	GetActivityStreamsAnnounce() ActivityStreamsAnnounce
	// GetActivityStreamsApplication returns the value of this property. When
	// IsActivityStreamsApplication returns false,
	// GetActivityStreamsApplication will return an arbitrary value.
	GetActivityStreamsApplication() ActivityStreamsApplication
	// GetActivityStreamsArrive returns the value of this property. When
	// IsActivityStreamsArrive returns false, GetActivityStreamsArrive
	// will return an arbitrary value.
	GetActivityStreamsArrive() ActivityStreamsArrive
	// GetActivityStreamsArticle returns the value of this property. When
	// IsActivityStreamsArticle returns false, GetActivityStreamsArticle
	// will return an arbitrary value.
	GetActivityStreamsArticle() ActivityStreamsArticle
	// GetActivityStreamsAudio returns the value of this property. When
	// IsActivityStreamsAudio returns false, GetActivityStreamsAudio will
	// return an arbitrary value.
	GetActivityStreamsAudio() ActivityStreamsAudio
	// GetActivityStreamsBlock returns the value of this property. When
	// IsActivityStreamsBlock returns false, GetActivityStreamsBlock will
	// return an arbitrary value.
	GetActivityStreamsBlock() ActivityStreamsBlock
	// GetActivityStreamsCollection returns the value of this property. When
	// IsActivityStreamsCollection returns false,
	// GetActivityStreamsCollection will return an arbitrary value.
	GetActivityStreamsCollection() ActivityStreamsCollection
	// GetActivityStreamsCollectionPage returns the value of this property.
	// When IsActivityStreamsCollectionPage returns false,
	// GetActivityStreamsCollectionPage will return an arbitrary value.
	GetActivityStreamsCollectionPage() ActivityStreamsCollectionPage
	// GetActivityStreamsCreate returns the value of this property. When
	// IsActivityStreamsCreate returns false, GetActivityStreamsCreate
	// will return an arbitrary value.
	GetActivityStreamsCreate() ActivityStreamsCreate
	// GetActivityStreamsDelete returns the value of this property. When
	// IsActivityStreamsDelete returns false, GetActivityStreamsDelete
	// will return an arbitrary value.
	GetActivityStreamsDelete() ActivityStreamsDelete
	// GetActivityStreamsDislike returns the value of this property. When
	// IsActivityStreamsDislike returns false, GetActivityStreamsDislike
	// will return an arbitrary value.
	GetActivityStreamsDislike() ActivityStreamsDislike
	// GetActivityStreamsDocument returns the value of this property. When
	// IsActivityStreamsDocument returns false, GetActivityStreamsDocument
	// will return an arbitrary value.
	GetActivityStreamsDocument() ActivityStreamsDocument
	// GetActivityStreamsEvent returns the value of this property. When
	// IsActivityStreamsEvent returns false, GetActivityStreamsEvent will
	// return an arbitrary value.
	GetActivityStreamsEvent() ActivityStreamsEvent
	// GetActivityStreamsFlag returns the value of this property. When
	// IsActivityStreamsFlag returns false, GetActivityStreamsFlag will
	// return an arbitrary value.
	GetActivityStreamsFlag() ActivityStreamsFlag
	// GetActivityStreamsFollow returns the value of this property. When
	// IsActivityStreamsFollow returns false, GetActivityStreamsFollow
	// will return an arbitrary value.
	GetActivityStreamsFollow() ActivityStreamsFollow
	// GetActivityStreamsGroup returns the value of this property. When
	// IsActivityStreamsGroup returns false, GetActivityStreamsGroup will
	// return an arbitrary value.
	GetActivityStreamsGroup() ActivityStreamsGroup
	// GetActivityStreamsIgnore returns the value of this property. When
	// IsActivityStreamsIgnore returns false, GetActivityStreamsIgnore
	// will return an arbitrary value.
	GetActivityStreamsIgnore() ActivityStreamsIgnore
	// GetActivityStreamsImage returns the value of this property. When
	// IsActivityStreamsImage returns false, GetActivityStreamsImage will
	// return an arbitrary value.
	GetActivityStreamsImage() ActivityStreamsImage
	// GetActivityStreamsIntransitiveActivity returns the value of this
	// property. When IsActivityStreamsIntransitiveActivity returns false,
	// GetActivityStreamsIntransitiveActivity will return an arbitrary
	// value.
	GetActivityStreamsIntransitiveActivity() ActivityStreamsIntransitiveActivity
	// GetActivityStreamsInvite returns the value of this property. When
	// IsActivityStreamsInvite returns false, GetActivityStreamsInvite
	// will return an arbitrary value.
	GetActivityStreamsInvite() ActivityStreamsInvite
	// GetActivityStreamsJoin returns the value of this property. When
	// IsActivityStreamsJoin returns false, GetActivityStreamsJoin will
	// return an arbitrary value.
	GetActivityStreamsJoin() ActivityStreamsJoin
	// GetActivityStreamsLeave returns the value of this property. When
	// IsActivityStreamsLeave returns false, GetActivityStreamsLeave will
	// return an arbitrary value.
	GetActivityStreamsLeave() ActivityStreamsLeave
	// GetActivityStreamsLike returns the value of this property. When
	// IsActivityStreamsLike returns false, GetActivityStreamsLike will
	// return an arbitrary value.
	GetActivityStreamsLike() ActivityStreamsLike
	// GetActivityStreamsLink returns the value of this property. When
	// IsActivityStreamsLink returns false, GetActivityStreamsLink will
	// return an arbitrary value.
	GetActivityStreamsLink() ActivityStreamsLink
	// GetActivityStreamsListen returns the value of this property. When
	// IsActivityStreamsListen returns false, GetActivityStreamsListen
	// will return an arbitrary value.
	GetActivityStreamsListen() ActivityStreamsListen
	// GetActivityStreamsMention returns the value of this property. When
	// IsActivityStreamsMention returns false, GetActivityStreamsMention
	// will return an arbitrary value.
	GetActivityStreamsMention() ActivityStreamsMention
	// GetActivityStreamsMove returns the value of this property. When
	// IsActivityStreamsMove returns false, GetActivityStreamsMove will
	// return an arbitrary value.
	GetActivityStreamsMove() ActivityStreamsMove
	// GetActivityStreamsNote returns the value of this property. When
	// IsActivityStreamsNote returns false, GetActivityStreamsNote will
	// return an arbitrary value.
	GetActivityStreamsNote() ActivityStreamsNote
	// GetActivityStreamsObject returns the value of this property. When
	// IsActivityStreamsObject returns false, GetActivityStreamsObject
	// will return an arbitrary value.
	GetActivityStreamsObject() ActivityStreamsObject
	// GetActivityStreamsOffer returns the value of this property. When
	// IsActivityStreamsOffer returns false, GetActivityStreamsOffer will
	// return an arbitrary value.
	GetActivityStreamsOffer() ActivityStreamsOffer
	// GetActivityStreamsOrderedCollection returns the value of this property.
	// When IsActivityStreamsOrderedCollection returns false,
	// GetActivityStreamsOrderedCollection will return an arbitrary value.
	GetActivityStreamsOrderedCollection() ActivityStreamsOrderedCollection
	// GetActivityStreamsOrderedCollectionPage returns the value of this
	// property. When IsActivityStreamsOrderedCollectionPage returns
	// false, GetActivityStreamsOrderedCollectionPage will return an
	// arbitrary value.
	GetActivityStreamsOrderedCollectionPage() ActivityStreamsOrderedCollectionPage
	// GetActivityStreamsOrganization returns the value of this property. When
	// IsActivityStreamsOrganization returns false,
	// GetActivityStreamsOrganization will return an arbitrary value.
	GetActivityStreamsOrganization() ActivityStreamsOrganization
	// GetActivityStreamsPage returns the value of this property. When
	// IsActivityStreamsPage returns false, GetActivityStreamsPage will
	// return an arbitrary value.
	GetActivityStreamsPage() ActivityStreamsPage
	// GetActivityStreamsPerson returns the value of this property. When
	// IsActivityStreamsPerson returns false, GetActivityStreamsPerson
	// will return an arbitrary value.
	GetActivityStreamsPerson() ActivityStreamsPerson
	// GetActivityStreamsPlace returns the value of this property. When
	// IsActivityStreamsPlace returns false, GetActivityStreamsPlace will
	// return an arbitrary value.
	GetActivityStreamsPlace() ActivityStreamsPlace
	// GetActivityStreamsProfile returns the value of this property. When
	// IsActivityStreamsProfile returns false, GetActivityStreamsProfile
	// will return an arbitrary value.
	GetActivityStreamsProfile() ActivityStreamsProfile
	// GetActivityStreamsQuestion returns the value of this property. When
	// IsActivityStreamsQuestion returns false, GetActivityStreamsQuestion
	// will return an arbitrary value.
	GetActivityStreamsQuestion() ActivityStreamsQuestion
	// GetActivityStreamsRead returns the value of this property. When
	// IsActivityStreamsRead returns false, GetActivityStreamsRead will
	// return an arbitrary value.
	GetActivityStreamsRead() ActivityStreamsRead
	// GetActivityStreamsReject returns the value of this property. When
	// IsActivityStreamsReject returns false, GetActivityStreamsReject
	// will return an arbitrary value.
	GetActivityStreamsReject() ActivityStreamsReject
	// GetActivityStreamsRelationship returns the value of this property. When
	// IsActivityStreamsRelationship returns false,
	// GetActivityStreamsRelationship will return an arbitrary value.
	GetActivityStreamsRelationship() ActivityStreamsRelationship
	// GetActivityStreamsRemove returns the value of this property. When
	// IsActivityStreamsRemove returns false, GetActivityStreamsRemove
	// will return an arbitrary value.
	GetActivityStreamsRemove() ActivityStreamsRemove
	// GetActivityStreamsService returns the value of this property. When
	// IsActivityStreamsService returns false, GetActivityStreamsService
	// will return an arbitrary value.
	GetActivityStreamsService() ActivityStreamsService
	// GetActivityStreamsTentativeAccept returns the value of this property.
	// When IsActivityStreamsTentativeAccept returns false,
	// GetActivityStreamsTentativeAccept will return an arbitrary value.
	GetActivityStreamsTentativeAccept() ActivityStreamsTentativeAccept
	// GetActivityStreamsTentativeReject returns the value of this property.
	// When IsActivityStreamsTentativeReject returns false,
	// GetActivityStreamsTentativeReject will return an arbitrary value.
	GetActivityStreamsTentativeReject() ActivityStreamsTentativeReject
	// GetActivityStreamsTombstone returns the value of this property. When
	// IsActivityStreamsTombstone returns false,
	// GetActivityStreamsTombstone will return an arbitrary value.
	GetActivityStreamsTombstone() ActivityStreamsTombstone
	// GetActivityStreamsTravel returns the value of this property. When
	// IsActivityStreamsTravel returns false, GetActivityStreamsTravel
	// will return an arbitrary value.
	GetActivityStreamsTravel() ActivityStreamsTravel
	// GetActivityStreamsUndo returns the value of this property. When
	// IsActivityStreamsUndo returns false, GetActivityStreamsUndo will
	// return an arbitrary value.
	GetActivityStreamsUndo() ActivityStreamsUndo
	// GetActivityStreamsUpdate returns the value of this property. When
	// IsActivityStreamsUpdate returns false, GetActivityStreamsUpdate
	// will return an arbitrary value.
	GetActivityStreamsUpdate() ActivityStreamsUpdate
	// GetActivityStreamsVideo returns the value of this property. When
	// IsActivityStreamsVideo returns false, GetActivityStreamsVideo will
	// return an arbitrary value.
	GetActivityStreamsVideo() ActivityStreamsVideo
	// GetActivityStreamsView returns the value of this property. When
	// IsActivityStreamsView returns false, GetActivityStreamsView will
	// return an arbitrary value.
	GetActivityStreamsView() ActivityStreamsView
	// GetForgeFedBranch returns the value of this property. When
	// IsForgeFedBranch returns false, GetForgeFedBranch will return an
	// arbitrary value.
	GetForgeFedBranch() ForgeFedBranch
	// GetForgeFedCommit returns the value of this property. When
	// IsForgeFedCommit returns false, GetForgeFedCommit will return an
	// arbitrary value.
	GetForgeFedCommit() ForgeFedCommit
	// GetForgeFedPush returns the value of this property. When IsForgeFedPush
	// returns false, GetForgeFedPush will return an arbitrary value.
	GetForgeFedPush() ForgeFedPush
	// GetForgeFedRepository returns the value of this property. When
	// IsForgeFedRepository returns false, GetForgeFedRepository will
	// return an arbitrary value.
	GetForgeFedRepository() ForgeFedRepository
	// GetForgeFedTicket returns the value of this property. When
	// IsForgeFedTicket returns false, GetForgeFedTicket will return an
	// arbitrary value.
	GetForgeFedTicket() ForgeFedTicket
	// GetForgeFedTicketDependency returns the value of this property. When
	// IsForgeFedTicketDependency returns false,
	// GetForgeFedTicketDependency will return an arbitrary value.
	GetForgeFedTicketDependency() ForgeFedTicketDependency
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return an arbitrary value.
	GetIRI() *url.URL
	// GetTootEmoji returns the value of this property. When IsTootEmoji
	// returns false, GetTootEmoji will return an arbitrary value.
	GetTootEmoji() TootEmoji
	// GetTootIdentityProof returns the value of this property. When
	// IsTootIdentityProof returns false, GetTootIdentityProof will return
	// an arbitrary value.
	GetTootIdentityProof() TootIdentityProof
	// GetType returns the value in this property as a Type. Returns nil if
	// the value is not an ActivityStreams type, such as an IRI or another
	// value.
	GetType() Type
	// HasAny returns true if any of the different values is set.
	HasAny() bool
	// IsActivityStreamsAccept returns true if this property has a type of
	// "Accept". When true, use the GetActivityStreamsAccept and
	// SetActivityStreamsAccept methods to access and set this property.
	IsActivityStreamsAccept() bool
	// IsActivityStreamsActivity returns true if this property has a type of
	// "Activity". When true, use the GetActivityStreamsActivity and
	// SetActivityStreamsActivity methods to access and set this property.
	IsActivityStreamsActivity() bool
	// IsActivityStreamsAdd returns true if this property has a type of "Add".
	// When true, use the GetActivityStreamsAdd and SetActivityStreamsAdd
	// methods to access and set this property.
	IsActivityStreamsAdd() bool
	// IsActivityStreamsAnnounce returns true if this property has a type of
	// "Announce". When true, use the GetActivityStreamsAnnounce and
	// SetActivityStreamsAnnounce methods to access and set this property.
	IsActivityStreamsAnnounce() bool
	// IsActivityStreamsApplication returns true if this property has a type
	// of "Application". When true, use the GetActivityStreamsApplication
	// and SetActivityStreamsApplication methods to access and set this
	// property.
	IsActivityStreamsApplication() bool
	// IsActivityStreamsArrive returns true if this property has a type of
	// "Arrive". When true, use the GetActivityStreamsArrive and
	// SetActivityStreamsArrive methods to access and set this property.
	IsActivityStreamsArrive() bool
	// IsActivityStreamsArticle returns true if this property has a type of
	// "Article". When true, use the GetActivityStreamsArticle and
	// SetActivityStreamsArticle methods to access and set this property.
	IsActivityStreamsArticle() bool
	// IsActivityStreamsAudio returns true if this property has a type of
	// "Audio". When true, use the GetActivityStreamsAudio and
	// SetActivityStreamsAudio methods to access and set this property.
	IsActivityStreamsAudio() bool
	// IsActivityStreamsBlock returns true if this property has a type of
	// "Block". When true, use the GetActivityStreamsBlock and
	// SetActivityStreamsBlock methods to access and set this property.
	IsActivityStreamsBlock() bool
	// IsActivityStreamsCollection returns true if this property has a type of
	// "Collection". When true, use the GetActivityStreamsCollection and
	// SetActivityStreamsCollection methods to access and set this
	// property.
	IsActivityStreamsCollection() bool
	// IsActivityStreamsCollectionPage returns true if this property has a
	// type of "CollectionPage". When true, use the
	// GetActivityStreamsCollectionPage and
	// SetActivityStreamsCollectionPage methods to access and set this
	// property.
	IsActivityStreamsCollectionPage() bool
	// IsActivityStreamsCreate returns true if this property has a type of
	// "Create". When true, use the GetActivityStreamsCreate and
	// SetActivityStreamsCreate methods to access and set this property.
	IsActivityStreamsCreate() bool
	// IsActivityStreamsDelete returns true if this property has a type of
	// "Delete". When true, use the GetActivityStreamsDelete and
	// SetActivityStreamsDelete methods to access and set this property.
	IsActivityStreamsDelete() bool
	// IsActivityStreamsDislike returns true if this property has a type of
	// "Dislike". When true, use the GetActivityStreamsDislike and
	// SetActivityStreamsDislike methods to access and set this property.
	IsActivityStreamsDislike() bool
	// IsActivityStreamsDocument returns true if this property has a type of
	// "Document". When true, use the GetActivityStreamsDocument and
	// SetActivityStreamsDocument methods to access and set this property.
	IsActivityStreamsDocument() bool
	// IsActivityStreamsEvent returns true if this property has a type of
	// "Event". When true, use the GetActivityStreamsEvent and
	// SetActivityStreamsEvent methods to access and set this property.
	IsActivityStreamsEvent() bool
	// IsActivityStreamsFlag returns true if this property has a type of
	// "Flag". When true, use the GetActivityStreamsFlag and
	// SetActivityStreamsFlag methods to access and set this property.
	IsActivityStreamsFlag() bool
	// IsActivityStreamsFollow returns true if this property has a type of
	// "Follow". When true, use the GetActivityStreamsFollow and
	// SetActivityStreamsFollow methods to access and set this property.
	IsActivityStreamsFollow() bool
	// IsActivityStreamsGroup returns true if this property has a type of
	// "Group". When true, use the GetActivityStreamsGroup and
	// SetActivityStreamsGroup methods to access and set this property.
	IsActivityStreamsGroup() bool
	// IsActivityStreamsIgnore returns true if this property has a type of
	// "Ignore". When true, use the GetActivityStreamsIgnore and
	// SetActivityStreamsIgnore methods to access and set this property.
	IsActivityStreamsIgnore() bool
	// IsActivityStreamsImage returns true if this property has a type of
	// "Image". When true, use the GetActivityStreamsImage and
	// SetActivityStreamsImage methods to access and set this property.
	IsActivityStreamsImage() bool
	// IsActivityStreamsIntransitiveActivity returns true if this property has
	// a type of "IntransitiveActivity". When true, use the
	// GetActivityStreamsIntransitiveActivity and
	// SetActivityStreamsIntransitiveActivity methods to access and set
	// this property.
	IsActivityStreamsIntransitiveActivity() bool
	// IsActivityStreamsInvite returns true if this property has a type of
	// "Invite". When true, use the GetActivityStreamsInvite and
	// SetActivityStreamsInvite methods to access and set this property.
	IsActivityStreamsInvite() bool
	// IsActivityStreamsJoin returns true if this property has a type of
	// "Join". When true, use the GetActivityStreamsJoin and
	// SetActivityStreamsJoin methods to access and set this property.
	IsActivityStreamsJoin() bool
	// IsActivityStreamsLeave returns true if this property has a type of
	// "Leave". When true, use the GetActivityStreamsLeave and
	// SetActivityStreamsLeave methods to access and set this property.
	IsActivityStreamsLeave() bool
	// IsActivityStreamsLike returns true if this property has a type of
	// "Like". When true, use the GetActivityStreamsLike and
	// SetActivityStreamsLike methods to access and set this property.
	IsActivityStreamsLike() bool
	// IsActivityStreamsLink returns true if this property has a type of
	// "Link". When true, use the GetActivityStreamsLink and
	// SetActivityStreamsLink methods to access and set this property.
	IsActivityStreamsLink() bool
	// IsActivityStreamsListen returns true if this property has a type of
	// "Listen". When true, use the GetActivityStreamsListen and
	// SetActivityStreamsListen methods to access and set this property.
	IsActivityStreamsListen() bool
	// IsActivityStreamsMention returns true if this property has a type of
	// "Mention". When true, use the GetActivityStreamsMention and
	// SetActivityStreamsMention methods to access and set this property.
	IsActivityStreamsMention() bool
	// IsActivityStreamsMove returns true if this property has a type of
	// "Move". When true, use the GetActivityStreamsMove and
	// SetActivityStreamsMove methods to access and set this property.
	IsActivityStreamsMove() bool
	// IsActivityStreamsNote returns true if this property has a type of
	// "Note". When true, use the GetActivityStreamsNote and
	// SetActivityStreamsNote methods to access and set this property.
	IsActivityStreamsNote() bool
	// IsActivityStreamsObject returns true if this property has a type of
	// "Object". When true, use the GetActivityStreamsObject and
	// SetActivityStreamsObject methods to access and set this property.
	IsActivityStreamsObject() bool
	// IsActivityStreamsOffer returns true if this property has a type of
	// "Offer". When true, use the GetActivityStreamsOffer and
	// SetActivityStreamsOffer methods to access and set this property.
	IsActivityStreamsOffer() bool
	// IsActivityStreamsOrderedCollection returns true if this property has a
	// type of "OrderedCollection". When true, use the
	// GetActivityStreamsOrderedCollection and
	// SetActivityStreamsOrderedCollection methods to access and set this
	// property.
	IsActivityStreamsOrderedCollection() bool
	// IsActivityStreamsOrderedCollectionPage returns true if this property
	// has a type of "OrderedCollectionPage". When true, use the
	// GetActivityStreamsOrderedCollectionPage and
	// SetActivityStreamsOrderedCollectionPage methods to access and set
	// this property.
	IsActivityStreamsOrderedCollectionPage() bool
	// IsActivityStreamsOrganization returns true if this property has a type
	// of "Organization". When true, use the
	// GetActivityStreamsOrganization and SetActivityStreamsOrganization
	// methods to access and set this property.
	IsActivityStreamsOrganization() bool
	// IsActivityStreamsPage returns true if this property has a type of
	// "Page". When true, use the GetActivityStreamsPage and
	// SetActivityStreamsPage methods to access and set this property.
	IsActivityStreamsPage() bool
	// IsActivityStreamsPerson returns true if this property has a type of
	// "Person". When true, use the GetActivityStreamsPerson and
	// SetActivityStreamsPerson methods to access and set this property.
	IsActivityStreamsPerson() bool
	// IsActivityStreamsPlace returns true if this property has a type of
	// "Place". When true, use the GetActivityStreamsPlace and
	// SetActivityStreamsPlace methods to access and set this property.
	IsActivityStreamsPlace() bool
	// IsActivityStreamsProfile returns true if this property has a type of
	// "Profile". When true, use the GetActivityStreamsProfile and
	// SetActivityStreamsProfile methods to access and set this property.
	IsActivityStreamsProfile() bool
	// IsActivityStreamsQuestion returns true if this property has a type of
	// "Question". When true, use the GetActivityStreamsQuestion and
	// SetActivityStreamsQuestion methods to access and set this property.
	IsActivityStreamsQuestion() bool
	// IsActivityStreamsRead returns true if this property has a type of
	// "Read". When true, use the GetActivityStreamsRead and
	// SetActivityStreamsRead methods to access and set this property.
	IsActivityStreamsRead() bool
	// IsActivityStreamsReject returns true if this property has a type of
	// "Reject". When true, use the GetActivityStreamsReject and
	// SetActivityStreamsReject methods to access and set this property.
	IsActivityStreamsReject() bool
	// IsActivityStreamsRelationship returns true if this property has a type
	// of "Relationship". When true, use the
	// GetActivityStreamsRelationship and SetActivityStreamsRelationship
	// methods to access and set this property.
	IsActivityStreamsRelationship() bool
	// IsActivityStreamsRemove returns true if this property has a type of
	// "Remove". When true, use the GetActivityStreamsRemove and
	// SetActivityStreamsRemove methods to access and set this property.
	IsActivityStreamsRemove() bool
	// IsActivityStreamsService returns true if this property has a type of
	// "Service". When true, use the GetActivityStreamsService and
	// SetActivityStreamsService methods to access and set this property.
	IsActivityStreamsService() bool
	// IsActivityStreamsTentativeAccept returns true if this property has a
	// type of "TentativeAccept". When true, use the
	// GetActivityStreamsTentativeAccept and
	// SetActivityStreamsTentativeAccept methods to access and set this
	// property.
	IsActivityStreamsTentativeAccept() bool
	// IsActivityStreamsTentativeReject returns true if this property has a
	// type of "TentativeReject". When true, use the
	// GetActivityStreamsTentativeReject and
	// SetActivityStreamsTentativeReject methods to access and set this
	// property.
	IsActivityStreamsTentativeReject() bool
	// IsActivityStreamsTombstone returns true if this property has a type of
	// "Tombstone". When true, use the GetActivityStreamsTombstone and
	// SetActivityStreamsTombstone methods to access and set this property.
	IsActivityStreamsTombstone() bool
	// IsActivityStreamsTravel returns true if this property has a type of
	// "Travel". When true, use the GetActivityStreamsTravel and
	// SetActivityStreamsTravel methods to access and set this property.
	IsActivityStreamsTravel() bool
	// IsActivityStreamsUndo returns true if this property has a type of
	// "Undo". When true, use the GetActivityStreamsUndo and
	// SetActivityStreamsUndo methods to access and set this property.
	IsActivityStreamsUndo() bool
	// IsActivityStreamsUpdate returns true if this property has a type of
	// "Update". When true, use the GetActivityStreamsUpdate and
	// SetActivityStreamsUpdate methods to access and set this property.
	IsActivityStreamsUpdate() bool
	// IsActivityStreamsVideo returns true if this property has a type of
	// "Video". When true, use the GetActivityStreamsVideo and
	// SetActivityStreamsVideo methods to access and set this property.
	IsActivityStreamsVideo() bool
	// IsActivityStreamsView returns true if this property has a type of
	// "View". When true, use the GetActivityStreamsView and
	// SetActivityStreamsView methods to access and set this property.
	IsActivityStreamsView() bool
	// IsForgeFedBranch returns true if this property has a type of "Branch".
	// When true, use the GetForgeFedBranch and SetForgeFedBranch methods
	// to access and set this property.
	IsForgeFedBranch() bool
	// IsForgeFedCommit returns true if this property has a type of "Commit".
	// When true, use the GetForgeFedCommit and SetForgeFedCommit methods
	// to access and set this property.
	IsForgeFedCommit() bool
	// IsForgeFedPush returns true if this property has a type of "Push". When
	// true, use the GetForgeFedPush and SetForgeFedPush methods to access
	// and set this property.
	IsForgeFedPush() bool
	// IsForgeFedRepository returns true if this property has a type of
	// "Repository". When true, use the GetForgeFedRepository and
	// SetForgeFedRepository methods to access and set this property.
	IsForgeFedRepository() bool
	// IsForgeFedTicket returns true if this property has a type of "Ticket".
	// When true, use the GetForgeFedTicket and SetForgeFedTicket methods
	// to access and set this property.
	IsForgeFedTicket() bool
	// IsForgeFedTicketDependency returns true if this property has a type of
	// "TicketDependency". When true, use the GetForgeFedTicketDependency
	// and SetForgeFedTicketDependency methods to access and set this
	// property.
	IsForgeFedTicketDependency() bool
	// IsIRI returns true if this property is an IRI. When true, use GetIRI
	// and SetIRI to access and set this property
	IsIRI() bool
	// IsTootEmoji returns true if this property has a type of "Emoji". When
	// true, use the GetTootEmoji and SetTootEmoji methods to access and
	// set this property.
	IsTootEmoji() bool
	// IsTootIdentityProof returns true if this property has a type of
	// "IdentityProof". When true, use the GetTootIdentityProof and
	// SetTootIdentityProof methods to access and set this property.
	IsTootIdentityProof() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsLocationPropertyIterator) bool
	// Name returns the name of this property: "ActivityStreamsLocation".
	Name() string
	// Next returns the next iterator, or nil if there is no next iterator.
	Next() ActivityStreamsLocationPropertyIterator
	// Prev returns the previous iterator, or nil if there is no previous
	// iterator.
	Prev() ActivityStreamsLocationPropertyIterator
	// SetActivityStreamsAccept sets the value of this property. Calling
	// IsActivityStreamsAccept afterwards returns true.
	SetActivityStreamsAccept(v ActivityStreamsAccept)
	// SetActivityStreamsActivity sets the value of this property. Calling
	// IsActivityStreamsActivity afterwards returns true.
	SetActivityStreamsActivity(v ActivityStreamsActivity)
	// SetActivityStreamsAdd sets the value of this property. Calling
	// IsActivityStreamsAdd afterwards returns true.
	SetActivityStreamsAdd(v ActivityStreamsAdd)
	// SetActivityStreamsAnnounce sets the value of this property. Calling
	// IsActivityStreamsAnnounce afterwards returns true.
	SetActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// SetActivityStreamsApplication sets the value of this property. Calling
	// IsActivityStreamsApplication afterwards returns true.
	SetActivityStreamsApplication(v ActivityStreamsApplication)
	// SetActivityStreamsArrive sets the value of this property. Calling
	// IsActivityStreamsArrive afterwards returns true.
	SetActivityStreamsArrive(v ActivityStreamsArrive)
	// SetActivityStreamsArticle sets the value of this property. Calling
	// IsActivityStreamsArticle afterwards returns true.
	SetActivityStreamsArticle(v ActivityStreamsArticle)
	// SetActivityStreamsAudio sets the value of this property. Calling
	// IsActivityStreamsAudio afterwards returns true.
	SetActivityStreamsAudio(v ActivityStreamsAudio)
	// SetActivityStreamsBlock sets the value of this property. Calling
	// IsActivityStreamsBlock afterwards returns true.
	SetActivityStreamsBlock(v ActivityStreamsBlock)
	// SetActivityStreamsCollection sets the value of this property. Calling
	// IsActivityStreamsCollection afterwards returns true.
	SetActivityStreamsCollection(v ActivityStreamsCollection)
	// SetActivityStreamsCollectionPage sets the value of this property.
	// Calling IsActivityStreamsCollectionPage afterwards returns true.
	SetActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// SetActivityStreamsCreate sets the value of this property. Calling
	// IsActivityStreamsCreate afterwards returns true.
	SetActivityStreamsCreate(v ActivityStreamsCreate)
	// SetActivityStreamsDelete sets the value of this property. Calling
	// IsActivityStreamsDelete afterwards returns true.
	SetActivityStreamsDelete(v ActivityStreamsDelete)
	// SetActivityStreamsDislike sets the value of this property. Calling
	// IsActivityStreamsDislike afterwards returns true.
	SetActivityStreamsDislike(v ActivityStreamsDislike)
	// SetActivityStreamsDocument sets the value of this property. Calling
	// IsActivityStreamsDocument afterwards returns true.
	SetActivityStreamsDocument(v ActivityStreamsDocument)
	// SetActivityStreamsEvent sets the value of this property. Calling
	// IsActivityStreamsEvent afterwards returns true.
	SetActivityStreamsEvent(v ActivityStreamsEvent)
	// SetActivityStreamsFlag sets the value of this property. Calling
	// IsActivityStreamsFlag afterwards returns true.
	SetActivityStreamsFlag(v ActivityStreamsFlag)
	// SetActivityStreamsFollow sets the value of this property. Calling
	// IsActivityStreamsFollow afterwards returns true.
	SetActivityStreamsFollow(v ActivityStreamsFollow)
	// SetActivityStreamsGroup sets the value of this property. Calling
	// IsActivityStreamsGroup afterwards returns true.
	SetActivityStreamsGroup(v ActivityStreamsGroup)
	// SetActivityStreamsIgnore sets the value of this property. Calling
	// IsActivityStreamsIgnore afterwards returns true.
	SetActivityStreamsIgnore(v ActivityStreamsIgnore)
	// SetActivityStreamsImage sets the value of this property. Calling
	// IsActivityStreamsImage afterwards returns true.
	SetActivityStreamsImage(v ActivityStreamsImage)
	// SetActivityStreamsIntransitiveActivity sets the value of this property.
	// Calling IsActivityStreamsIntransitiveActivity afterwards returns
	// true.
	SetActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// SetActivityStreamsInvite sets the value of this property. Calling
	// IsActivityStreamsInvite afterwards returns true.
	SetActivityStreamsInvite(v ActivityStreamsInvite)
	// SetActivityStreamsJoin sets the value of this property. Calling
	// IsActivityStreamsJoin afterwards returns true.
	SetActivityStreamsJoin(v ActivityStreamsJoin)
	// SetActivityStreamsLeave sets the value of this property. Calling
	// IsActivityStreamsLeave afterwards returns true.
	SetActivityStreamsLeave(v ActivityStreamsLeave)
	// SetActivityStreamsLike sets the value of this property. Calling
	// IsActivityStreamsLike afterwards returns true.
	SetActivityStreamsLike(v ActivityStreamsLike)
	// SetActivityStreamsLink sets the value of this property. Calling
	// IsActivityStreamsLink afterwards returns true.
	SetActivityStreamsLink(v ActivityStreamsLink)
	// SetActivityStreamsListen sets the value of this property. Calling
	// IsActivityStreamsListen afterwards returns true.
	SetActivityStreamsListen(v ActivityStreamsListen)
	// SetActivityStreamsMention sets the value of this property. Calling
	// IsActivityStreamsMention afterwards returns true.
	SetActivityStreamsMention(v ActivityStreamsMention)
	// SetActivityStreamsMove sets the value of this property. Calling
	// IsActivityStreamsMove afterwards returns true.
	SetActivityStreamsMove(v ActivityStreamsMove)
	// SetActivityStreamsNote sets the value of this property. Calling
	// IsActivityStreamsNote afterwards returns true.
	SetActivityStreamsNote(v ActivityStreamsNote)
	// SetActivityStreamsObject sets the value of this property. Calling
	// IsActivityStreamsObject afterwards returns true.
	SetActivityStreamsObject(v ActivityStreamsObject)
	// SetActivityStreamsOffer sets the value of this property. Calling
	// IsActivityStreamsOffer afterwards returns true.
	SetActivityStreamsOffer(v ActivityStreamsOffer)
	// SetActivityStreamsOrderedCollection sets the value of this property.
	// Calling IsActivityStreamsOrderedCollection afterwards returns true.
	SetActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// SetActivityStreamsOrderedCollectionPage sets the value of this
	// property. Calling IsActivityStreamsOrderedCollectionPage afterwards
	// returns true.
	SetActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// SetActivityStreamsOrganization sets the value of this property. Calling
	// IsActivityStreamsOrganization afterwards returns true.
	SetActivityStreamsOrganization(v ActivityStreamsOrganization)
	// SetActivityStreamsPage sets the value of this property. Calling
	// IsActivityStreamsPage afterwards returns true.
	SetActivityStreamsPage(v ActivityStreamsPage)
	// SetActivityStreamsPerson sets the value of this property. Calling
	// IsActivityStreamsPerson afterwards returns true.
	SetActivityStreamsPerson(v ActivityStreamsPerson)
	// SetActivityStreamsPlace sets the value of this property. Calling
	// IsActivityStreamsPlace afterwards returns true.
	SetActivityStreamsPlace(v ActivityStreamsPlace)
	// SetActivityStreamsProfile sets the value of this property. Calling
	// IsActivityStreamsProfile afterwards returns true.
	SetActivityStreamsProfile(v ActivityStreamsProfile)
	// SetActivityStreamsQuestion sets the value of this property. Calling
	// IsActivityStreamsQuestion afterwards returns true.
	SetActivityStreamsQuestion(v ActivityStreamsQuestion)
	// SetActivityStreamsRead sets the value of this property. Calling
	// IsActivityStreamsRead afterwards returns true.
	SetActivityStreamsRead(v ActivityStreamsRead)
	// SetActivityStreamsReject sets the value of this property. Calling
	// IsActivityStreamsReject afterwards returns true.
	SetActivityStreamsReject(v ActivityStreamsReject)
	// SetActivityStreamsRelationship sets the value of this property. Calling
	// IsActivityStreamsRelationship afterwards returns true.
	SetActivityStreamsRelationship(v ActivityStreamsRelationship)
	// SetActivityStreamsRemove sets the value of this property. Calling
	// IsActivityStreamsRemove afterwards returns true.
	SetActivityStreamsRemove(v ActivityStreamsRemove)
	// SetActivityStreamsService sets the value of this property. Calling
	// IsActivityStreamsService afterwards returns true.
	SetActivityStreamsService(v ActivityStreamsService)
	// SetActivityStreamsTentativeAccept sets the value of this property.
	// Calling IsActivityStreamsTentativeAccept afterwards returns true.
	SetActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// SetActivityStreamsTentativeReject sets the value of this property.
	// Calling IsActivityStreamsTentativeReject afterwards returns true.
	SetActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// SetActivityStreamsTombstone sets the value of this property. Calling
	// IsActivityStreamsTombstone afterwards returns true.
	SetActivityStreamsTombstone(v ActivityStreamsTombstone)
	// SetActivityStreamsTravel sets the value of this property. Calling
	// IsActivityStreamsTravel afterwards returns true.
	SetActivityStreamsTravel(v ActivityStreamsTravel)
	// SetActivityStreamsUndo sets the value of this property. Calling
	// IsActivityStreamsUndo afterwards returns true.
	SetActivityStreamsUndo(v ActivityStreamsUndo)
	// SetActivityStreamsUpdate sets the value of this property. Calling
	// IsActivityStreamsUpdate afterwards returns true.
	SetActivityStreamsUpdate(v ActivityStreamsUpdate)
	// SetActivityStreamsVideo sets the value of this property. Calling
	// IsActivityStreamsVideo afterwards returns true.
	SetActivityStreamsVideo(v ActivityStreamsVideo)
	// SetActivityStreamsView sets the value of this property. Calling
	// IsActivityStreamsView afterwards returns true.
	SetActivityStreamsView(v ActivityStreamsView)
	// SetForgeFedBranch sets the value of this property. Calling
	// IsForgeFedBranch afterwards returns true.
	SetForgeFedBranch(v ForgeFedBranch)
	// SetForgeFedCommit sets the value of this property. Calling
	// IsForgeFedCommit afterwards returns true.
	SetForgeFedCommit(v ForgeFedCommit)
	// SetForgeFedPush sets the value of this property. Calling IsForgeFedPush
	// afterwards returns true.
	SetForgeFedPush(v ForgeFedPush)
	// SetForgeFedRepository sets the value of this property. Calling
	// IsForgeFedRepository afterwards returns true.
	SetForgeFedRepository(v ForgeFedRepository)
	// SetForgeFedTicket sets the value of this property. Calling
	// IsForgeFedTicket afterwards returns true.
	SetForgeFedTicket(v ForgeFedTicket)
	// SetForgeFedTicketDependency sets the value of this property. Calling
	// IsForgeFedTicketDependency afterwards returns true.
	SetForgeFedTicketDependency(v ForgeFedTicketDependency)
	// SetIRI sets the value of this property. Calling IsIRI afterwards
	// returns true.
	SetIRI(v *url.URL)
	// SetTootEmoji sets the value of this property. Calling IsTootEmoji
	// afterwards returns true.
	SetTootEmoji(v TootEmoji)
	// SetTootIdentityProof sets the value of this property. Calling
	// IsTootIdentityProof afterwards returns true.
	SetTootIdentityProof(v TootIdentityProof)
	// SetType attempts to set the property for the arbitrary type. Returns an
	// error if it is not a valid type to set on this property.
	SetType(t Type) error
}

ActivityStreamsLocationPropertyIterator represents a single value for the "location" property.

type ActivityStreamsLongitudeProperty

type ActivityStreamsLongitudeProperty interface {
	// Clear ensures no value of this property is set. Calling
	// IsXMLSchemaFloat afterwards will return false.
	Clear()
	// Get returns the value of this property. When IsXMLSchemaFloat returns
	// false, Get will return any arbitrary value.
	Get() float64
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return any arbitrary value.
	GetIRI() *url.URL
	// HasAny returns true if the value or IRI is set.
	HasAny() bool
	// IsIRI returns true if this property is an IRI.
	IsIRI() bool
	// IsXMLSchemaFloat returns true if this property is set and not an IRI.
	IsXMLSchemaFloat() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsLongitudeProperty) bool
	// Name returns the name of this property: "longitude".
	Name() string
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// Set sets the value of this property. Calling IsXMLSchemaFloat
	// afterwards will return true.
	Set(v float64)
	// SetIRI sets the value of this property. Calling IsIRI afterwards will
	// return true.
	SetIRI(v *url.URL)
}

The longitude of a place

Example 125 (https://www.w3.org/TR/activitystreams-vocabulary/#ex141-jsonld):

{
  "latitude": 36.75,
  "longitude": 119.7667,
  "name": "Fresno Area",
  "radius": 15,
  "type": "Place",
  "units": "miles"
}

type ActivityStreamsMediaTypeProperty

type ActivityStreamsMediaTypeProperty interface {
	// Clear ensures no value of this property is set. Calling IsRFCRfc2045
	// afterwards will return false.
	Clear()
	// Get returns the value of this property. When IsRFCRfc2045 returns
	// false, Get will return any arbitrary value.
	Get() string
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return any arbitrary value.
	GetIRI() *url.URL
	// HasAny returns true if the value or IRI is set.
	HasAny() bool
	// IsIRI returns true if this property is an IRI.
	IsIRI() bool
	// IsRFCRfc2045 returns true if this property is set and not an IRI.
	IsRFCRfc2045() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsMediaTypeProperty) bool
	// Name returns the name of this property: "mediaType".
	Name() string
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// Set sets the value of this property. Calling IsRFCRfc2045 afterwards
	// will return true.
	Set(v string)
	// SetIRI sets the value of this property. Calling IsIRI afterwards will
	// return true.
	SetIRI(v *url.URL)
}

When used on a Link, identifies the MIME media type of the referenced resource. When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.

Example 126 (https://www.w3.org/TR/activitystreams-vocabulary/#ex142-jsonld):

{
  "hreflang": "en",
  "mediaType": "text/html",
  "name": "Next",
  "type": "Link",
  "url": "http://example.org/abc"
}

type ActivityStreamsMention

type ActivityStreamsMention interface {
	// GetActivityStreamsAttributedTo returns the "attributedTo" property if
	// it exists, and nil otherwise.
	GetActivityStreamsAttributedTo() ActivityStreamsAttributedToProperty
	// GetActivityStreamsHeight returns the "height" property if it exists,
	// and nil otherwise.
	GetActivityStreamsHeight() ActivityStreamsHeightProperty
	// GetActivityStreamsHref returns the "href" property if it exists, and
	// nil otherwise.
	GetActivityStreamsHref() ActivityStreamsHrefProperty
	// GetActivityStreamsHreflang returns the "hreflang" property if it
	// exists, and nil otherwise.
	GetActivityStreamsHreflang() ActivityStreamsHreflangProperty
	// GetActivityStreamsMediaType returns the "mediaType" property if it
	// exists, and nil otherwise.
	GetActivityStreamsMediaType() ActivityStreamsMediaTypeProperty
	// GetActivityStreamsName returns the "name" property if it exists, and
	// nil otherwise.
	GetActivityStreamsName() ActivityStreamsNameProperty
	// GetActivityStreamsPreview returns the "preview" property if it exists,
	// and nil otherwise.
	GetActivityStreamsPreview() ActivityStreamsPreviewProperty
	// GetActivityStreamsRel returns the "rel" property if it exists, and nil
	// otherwise.
	GetActivityStreamsRel() ActivityStreamsRelProperty
	// GetActivityStreamsSummary returns the "summary" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSummary() ActivityStreamsSummaryProperty
	// GetActivityStreamsWidth returns the "width" property if it exists, and
	// nil otherwise.
	GetActivityStreamsWidth() ActivityStreamsWidthProperty
	// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
	GetJSONLDId() JSONLDIdProperty
	// GetJSONLDType returns the "type" property if it exists, and nil
	// otherwise.
	GetJSONLDType() JSONLDTypeProperty
	// GetTypeName returns the name of this type.
	GetTypeName() string
	// GetUnknownProperties returns the unknown properties for the Mention
	// type. Note that this should not be used by app developers. It is
	// only used to help determine which implementation is LessThan the
	// other. Developers who are creating a different implementation of
	// this type's interface can use this method in their LessThan
	// implementation, but routine ActivityPub applications should not use
	// this to bypass the code generation tool.
	GetUnknownProperties() map[string]interface{}
	// IsExtending returns true if the Mention type extends from the other
	// type.
	IsExtending(other Type) bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this type and the specific properties that are set. The value
	// in the map is the alias used to import the type and its properties.
	JSONLDContext() map[string]string
	// LessThan computes if this Mention is lesser, with an arbitrary but
	// stable determination.
	LessThan(o ActivityStreamsMention) bool
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format.
	Serialize() (map[string]interface{}, error)
	// SetActivityStreamsAttributedTo sets the "attributedTo" property.
	SetActivityStreamsAttributedTo(i ActivityStreamsAttributedToProperty)
	// SetActivityStreamsHeight sets the "height" property.
	SetActivityStreamsHeight(i ActivityStreamsHeightProperty)
	// SetActivityStreamsHref sets the "href" property.
	SetActivityStreamsHref(i ActivityStreamsHrefProperty)
	// SetActivityStreamsHreflang sets the "hreflang" property.
	SetActivityStreamsHreflang(i ActivityStreamsHreflangProperty)
	// SetActivityStreamsMediaType sets the "mediaType" property.
	SetActivityStreamsMediaType(i ActivityStreamsMediaTypeProperty)
	// SetActivityStreamsName sets the "name" property.
	SetActivityStreamsName(i ActivityStreamsNameProperty)
	// SetActivityStreamsPreview sets the "preview" property.
	SetActivityStreamsPreview(i ActivityStreamsPreviewProperty)
	// SetActivityStreamsRel sets the "rel" property.
	SetActivityStreamsRel(i ActivityStreamsRelProperty)
	// SetActivityStreamsSummary sets the "summary" property.
	SetActivityStreamsSummary(i ActivityStreamsSummaryProperty)
	// SetActivityStreamsWidth sets the "width" property.
	SetActivityStreamsWidth(i ActivityStreamsWidthProperty)
	// SetJSONLDId sets the "id" property.
	SetJSONLDId(i JSONLDIdProperty)
	// SetJSONLDType sets the "type" property.
	SetJSONLDType(i JSONLDTypeProperty)
	// VocabularyURI returns the vocabulary's URI as a string.
	VocabularyURI() string
}

A specialized Link that represents an @mention.

Example 58 (https://www.w3.org/TR/activitystreams-vocabulary/#ex181-jsonld):

{
  "name": "Joe",
  "summary": "Mention of Joe by Carrie in her note",
  "type": "Mention",
  "url": "http://example.org/joe"
}

type ActivityStreamsMove

type ActivityStreamsMove interface {
	// GetActivityStreamsActor returns the "actor" property if it exists, and
	// nil otherwise.
	GetActivityStreamsActor() ActivityStreamsActorProperty
	// GetActivityStreamsAltitude returns the "altitude" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAltitude() ActivityStreamsAltitudeProperty
	// GetActivityStreamsAttachment returns the "attachment" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAttachment() ActivityStreamsAttachmentProperty
	// GetActivityStreamsAttributedTo returns the "attributedTo" property if
	// it exists, and nil otherwise.
	GetActivityStreamsAttributedTo() ActivityStreamsAttributedToProperty
	// GetActivityStreamsAudience returns the "audience" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAudience() ActivityStreamsAudienceProperty
	// GetActivityStreamsBcc returns the "bcc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBcc() ActivityStreamsBccProperty
	// GetActivityStreamsBto returns the "bto" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBto() ActivityStreamsBtoProperty
	// GetActivityStreamsCc returns the "cc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsCc() ActivityStreamsCcProperty
	// GetActivityStreamsContent returns the "content" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContent() ActivityStreamsContentProperty
	// GetActivityStreamsContext returns the "context" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContext() ActivityStreamsContextProperty
	// GetActivityStreamsDuration returns the "duration" property if it
	// exists, and nil otherwise.
	GetActivityStreamsDuration() ActivityStreamsDurationProperty
	// GetActivityStreamsEndTime returns the "endTime" property if it exists,
	// and nil otherwise.
	GetActivityStreamsEndTime() ActivityStreamsEndTimeProperty
	// GetActivityStreamsGenerator returns the "generator" property if it
	// exists, and nil otherwise.
	GetActivityStreamsGenerator() ActivityStreamsGeneratorProperty
	// GetActivityStreamsIcon returns the "icon" property if it exists, and
	// nil otherwise.
	GetActivityStreamsIcon() ActivityStreamsIconProperty
	// GetActivityStreamsImage returns the "image" property if it exists, and
	// nil otherwise.
	GetActivityStreamsImage() ActivityStreamsImageProperty
	// GetActivityStreamsInReplyTo returns the "inReplyTo" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInReplyTo() ActivityStreamsInReplyToProperty
	// GetActivityStreamsInstrument returns the "instrument" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInstrument() ActivityStreamsInstrumentProperty
	// GetActivityStreamsLikes returns the "likes" property if it exists, and
	// nil otherwise.
	GetActivityStreamsLikes() ActivityStreamsLikesProperty
	// GetActivityStreamsLocation returns the "location" property if it
	// exists, and nil otherwise.
	GetActivityStreamsLocation() ActivityStreamsLocationProperty
	// GetActivityStreamsMediaType returns the "mediaType" property if it
	// exists, and nil otherwise.
	GetActivityStreamsMediaType() ActivityStreamsMediaTypeProperty
	// GetActivityStreamsName returns the "name" property if it exists, and
	// nil otherwise.
	GetActivityStreamsName() ActivityStreamsNameProperty
	// GetActivityStreamsObject returns the "object" property if it exists,
	// and nil otherwise.
	GetActivityStreamsObject() ActivityStreamsObjectProperty
	// GetActivityStreamsOrigin returns the "origin" property if it exists,
	// and nil otherwise.
	GetActivityStreamsOrigin() ActivityStreamsOriginProperty
	// GetActivityStreamsPreview returns the "preview" property if it exists,
	// and nil otherwise.
	GetActivityStreamsPreview() ActivityStreamsPreviewProperty
	// GetActivityStreamsPublished returns the "published" property if it
	// exists, and nil otherwise.
	GetActivityStreamsPublished() ActivityStreamsPublishedProperty
	// GetActivityStreamsReplies returns the "replies" property if it exists,
	// and nil otherwise.
	GetActivityStreamsReplies() ActivityStreamsRepliesProperty
	// GetActivityStreamsResult returns the "result" property if it exists,
	// and nil otherwise.
	GetActivityStreamsResult() ActivityStreamsResultProperty
	// GetActivityStreamsShares returns the "shares" property if it exists,
	// and nil otherwise.
	GetActivityStreamsShares() ActivityStreamsSharesProperty
	// GetActivityStreamsSource returns the "source" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSource() ActivityStreamsSourceProperty
	// GetActivityStreamsStartTime returns the "startTime" property if it
	// exists, and nil otherwise.
	GetActivityStreamsStartTime() ActivityStreamsStartTimeProperty
	// GetActivityStreamsSummary returns the "summary" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSummary() ActivityStreamsSummaryProperty
	// GetActivityStreamsTag returns the "tag" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTag() ActivityStreamsTagProperty
	// GetActivityStreamsTarget returns the "target" property if it exists,
	// and nil otherwise.
	GetActivityStreamsTarget() ActivityStreamsTargetProperty
	// GetActivityStreamsTo returns the "to" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTo() ActivityStreamsToProperty
	// GetActivityStreamsUpdated returns the "updated" property if it exists,
	// and nil otherwise.
	GetActivityStreamsUpdated() ActivityStreamsUpdatedProperty
	// GetActivityStreamsUrl returns the "url" property if it exists, and nil
	// otherwise.
	GetActivityStreamsUrl() ActivityStreamsUrlProperty
	// GetForgeFedTeam returns the "team" property if it exists, and nil
	// otherwise.
	GetForgeFedTeam() ForgeFedTeamProperty
	// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
	// it exists, and nil otherwise.
	GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
	// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
	// it exists, and nil otherwise.
	GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
	// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
	GetJSONLDId() JSONLDIdProperty
	// GetJSONLDType returns the "type" property if it exists, and nil
	// otherwise.
	GetJSONLDType() JSONLDTypeProperty
	// GetTypeName returns the name of this type.
	GetTypeName() string
	// GetUnknownProperties returns the unknown properties for the Move type.
	// Note that this should not be used by app developers. It is only
	// used to help determine which implementation is LessThan the other.
	// Developers who are creating a different implementation of this
	// type's interface can use this method in their LessThan
	// implementation, but routine ActivityPub applications should not use
	// this to bypass the code generation tool.
	GetUnknownProperties() map[string]interface{}
	// IsExtending returns true if the Move type extends from the other type.
	IsExtending(other Type) bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this type and the specific properties that are set. The value
	// in the map is the alias used to import the type and its properties.
	JSONLDContext() map[string]string
	// LessThan computes if this Move is lesser, with an arbitrary but stable
	// determination.
	LessThan(o ActivityStreamsMove) bool
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format.
	Serialize() (map[string]interface{}, error)
	// SetActivityStreamsActor sets the "actor" property.
	SetActivityStreamsActor(i ActivityStreamsActorProperty)
	// SetActivityStreamsAltitude sets the "altitude" property.
	SetActivityStreamsAltitude(i ActivityStreamsAltitudeProperty)
	// SetActivityStreamsAttachment sets the "attachment" property.
	SetActivityStreamsAttachment(i ActivityStreamsAttachmentProperty)
	// SetActivityStreamsAttributedTo sets the "attributedTo" property.
	SetActivityStreamsAttributedTo(i ActivityStreamsAttributedToProperty)
	// SetActivityStreamsAudience sets the "audience" property.
	SetActivityStreamsAudience(i ActivityStreamsAudienceProperty)
	// SetActivityStreamsBcc sets the "bcc" property.
	SetActivityStreamsBcc(i ActivityStreamsBccProperty)
	// SetActivityStreamsBto sets the "bto" property.
	SetActivityStreamsBto(i ActivityStreamsBtoProperty)
	// SetActivityStreamsCc sets the "cc" property.
	SetActivityStreamsCc(i ActivityStreamsCcProperty)
	// SetActivityStreamsContent sets the "content" property.
	SetActivityStreamsContent(i ActivityStreamsContentProperty)
	// SetActivityStreamsContext sets the "context" property.
	SetActivityStreamsContext(i ActivityStreamsContextProperty)
	// SetActivityStreamsDuration sets the "duration" property.
	SetActivityStreamsDuration(i ActivityStreamsDurationProperty)
	// SetActivityStreamsEndTime sets the "endTime" property.
	SetActivityStreamsEndTime(i ActivityStreamsEndTimeProperty)
	// SetActivityStreamsGenerator sets the "generator" property.
	SetActivityStreamsGenerator(i ActivityStreamsGeneratorProperty)
	// SetActivityStreamsIcon sets the "icon" property.
	SetActivityStreamsIcon(i ActivityStreamsIconProperty)
	// SetActivityStreamsImage sets the "image" property.
	SetActivityStreamsImage(i ActivityStreamsImageProperty)
	// SetActivityStreamsInReplyTo sets the "inReplyTo" property.
	SetActivityStreamsInReplyTo(i ActivityStreamsInReplyToProperty)
	// SetActivityStreamsInstrument sets the "instrument" property.
	SetActivityStreamsInstrument(i ActivityStreamsInstrumentProperty)
	// SetActivityStreamsLikes sets the "likes" property.
	SetActivityStreamsLikes(i ActivityStreamsLikesProperty)
	// SetActivityStreamsLocation sets the "location" property.
	SetActivityStreamsLocation(i ActivityStreamsLocationProperty)
	// SetActivityStreamsMediaType sets the "mediaType" property.
	SetActivityStreamsMediaType(i ActivityStreamsMediaTypeProperty)
	// SetActivityStreamsName sets the "name" property.
	SetActivityStreamsName(i ActivityStreamsNameProperty)
	// SetActivityStreamsObject sets the "object" property.
	SetActivityStreamsObject(i ActivityStreamsObjectProperty)
	// SetActivityStreamsOrigin sets the "origin" property.
	SetActivityStreamsOrigin(i ActivityStreamsOriginProperty)
	// SetActivityStreamsPreview sets the "preview" property.
	SetActivityStreamsPreview(i ActivityStreamsPreviewProperty)
	// SetActivityStreamsPublished sets the "published" property.
	SetActivityStreamsPublished(i ActivityStreamsPublishedProperty)
	// SetActivityStreamsReplies sets the "replies" property.
	SetActivityStreamsReplies(i ActivityStreamsRepliesProperty)
	// SetActivityStreamsResult sets the "result" property.
	SetActivityStreamsResult(i ActivityStreamsResultProperty)
	// SetActivityStreamsShares sets the "shares" property.
	SetActivityStreamsShares(i ActivityStreamsSharesProperty)
	// SetActivityStreamsSource sets the "source" property.
	SetActivityStreamsSource(i ActivityStreamsSourceProperty)
	// SetActivityStreamsStartTime sets the "startTime" property.
	SetActivityStreamsStartTime(i ActivityStreamsStartTimeProperty)
	// SetActivityStreamsSummary sets the "summary" property.
	SetActivityStreamsSummary(i ActivityStreamsSummaryProperty)
	// SetActivityStreamsTag sets the "tag" property.
	SetActivityStreamsTag(i ActivityStreamsTagProperty)
	// SetActivityStreamsTarget sets the "target" property.
	SetActivityStreamsTarget(i ActivityStreamsTargetProperty)
	// SetActivityStreamsTo sets the "to" property.
	SetActivityStreamsTo(i ActivityStreamsToProperty)
	// SetActivityStreamsUpdated sets the "updated" property.
	SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
	// SetActivityStreamsUrl sets the "url" property.
	SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
	// SetForgeFedTeam sets the "team" property.
	SetForgeFedTeam(i ForgeFedTeamProperty)
	// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
	SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
	// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
	SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
	// SetJSONLDId sets the "id" property.
	SetJSONLDId(i JSONLDIdProperty)
	// SetJSONLDType sets the "type" property.
	SetJSONLDType(i JSONLDTypeProperty)
	// VocabularyURI returns the vocabulary's URI as a string.
	VocabularyURI() string
}

Indicates that the actor has moved object from origin to target. If the origin or target are not specified, either can be determined by context.

Example 34 (https://www.w3.org/TR/activitystreams-vocabulary/#ex168-jsonld):

{
  "actor": {
    "name": "Sally",
    "type": "Person"
  },
  "object": "http://example.org/posts/1",
  "origin": {
    "name": "List A",
    "type": "Collection"
  },
  "summary": "Sally moved a post from List A to List B",
  "target": {
    "name": "List B",
    "type": "Collection"
  },
  "type": "Move"
}

type ActivityStreamsNameProperty

type ActivityStreamsNameProperty interface {
	// AppendIRI appends an IRI value to the back of a list of the property
	// "name"
	AppendIRI(v *url.URL)
	// AppendRDFLangString appends a langString value to the back of a list of
	// the property "name". Invalidates iterators that are traversing
	// using Prev.
	AppendRDFLangString(v map[string]string)
	// AppendXMLSchemaString appends a string value to the back of a list of
	// the property "name". Invalidates iterators that are traversing
	// using Prev.
	AppendXMLSchemaString(v string)
	// At returns the property value for the specified index. Panics if the
	// index is out of bounds.
	At(index int) ActivityStreamsNamePropertyIterator
	// Begin returns the first iterator, or nil if empty. Can be used with the
	// iterator's Next method and this property's End method to iterate
	// from front to back through all values.
	Begin() ActivityStreamsNamePropertyIterator
	// Empty returns returns true if there are no elements.
	Empty() bool
	// End returns beyond-the-last iterator, which is nil. Can be used with
	// the iterator's Next method and this property's Begin method to
	// iterate from front to back through all values.
	End() ActivityStreamsNamePropertyIterator
	// Insert inserts an IRI value at the specified index for a property
	// "name". Existing elements at that index and higher are shifted back
	// once. Invalidates all iterators.
	InsertIRI(idx int, v *url.URL)
	// InsertRDFLangString inserts a langString value at the specified index
	// for a property "name". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertRDFLangString(idx int, v map[string]string)
	// InsertXMLSchemaString inserts a string value at the specified index for
	// a property "name". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertXMLSchemaString(idx int, v string)
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API method specifically needed only for alternate
	// implementations for go-fed. Applications should not use this
	// method. Panics if the index is out of bounds.
	KindIndex(idx int) int
	// Len returns the number of values that exist for the "name" property.
	Len() (length int)
	// Less computes whether another property is less than this one. Mixing
	// types results in a consistent but arbitrary ordering
	Less(i, j int) bool
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsNameProperty) bool
	// Name returns the name of this property ("name") with any alias.
	Name() string
	// PrependIRI prepends an IRI value to the front of a list of the property
	// "name".
	PrependIRI(v *url.URL)
	// PrependRDFLangString prepends a langString value to the front of a list
	// of the property "name". Invalidates all iterators.
	PrependRDFLangString(v map[string]string)
	// PrependXMLSchemaString prepends a string value to the front of a list
	// of the property "name". Invalidates all iterators.
	PrependXMLSchemaString(v string)
	// Remove deletes an element at the specified index from a list of the
	// property "name", regardless of its type. Panics if the index is out
	// of bounds. Invalidates all iterators.
	Remove(idx int)
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// SetIRI sets an IRI value to be at the specified index for the property
	// "name". Panics if the index is out of bounds.
	SetIRI(idx int, v *url.URL)
	// SetRDFLangString sets a langString value to be at the specified index
	// for the property "name". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetRDFLangString(idx int, v map[string]string)
	// SetXMLSchemaString sets a string value to be at the specified index for
	// the property "name". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetXMLSchemaString(idx int, v string)
	// Swap swaps the location of values at two indices for the "name"
	// property.
	Swap(i, j int)
}

A simple, human-readable, plain-text name for the object. HTML markup MUST NOT be included. The name MAY be expressed using multiple language-tagged values.

Example 117 (https://www.w3.org/TR/activitystreams-vocabulary/#ex132-jsonld):

{
  "name": "A simple note",
  "type": "Note"
}

Example 118 (https://www.w3.org/TR/activitystreams-vocabulary/#ex133-jsonld):

{
  "nameMap": {
    "en": "A simple note",
    "es": "Una nota sencilla",
    "zh-hans": "一段简单的笔记"
  },
  "type": "Note"
}

type ActivityStreamsNamePropertyIterator

type ActivityStreamsNamePropertyIterator interface {
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return an arbitrary value.
	GetIRI() *url.URL
	// GetLanguage returns the value for the specified BCP47 language code, or
	// an empty string if it is either not a language map or no value is
	// present.
	GetLanguage(bcp47 string) string
	// GetRDFLangString returns the value of this property. When
	// IsRDFLangString returns false, GetRDFLangString will return an
	// arbitrary value.
	GetRDFLangString() map[string]string
	// GetXMLSchemaString returns the value of this property. When
	// IsXMLSchemaString returns false, GetXMLSchemaString will return an
	// arbitrary value.
	GetXMLSchemaString() string
	// HasAny returns true if any of the values are set, except for the
	// natural language map. When true, the specific has, getter, and
	// setter methods may be used to determine what kind of value there is
	// to access and set this property. To determine if the property was
	// set as a natural language map, use the IsRDFLangString method
	// instead.
	HasAny() bool
	// HasLanguage returns true if the natural language map has an entry for
	// the specified BCP47 language code.
	HasLanguage(bcp47 string) bool
	// IsIRI returns true if this property is an IRI. When true, use GetIRI
	// and SetIRI to access and set this property
	IsIRI() bool
	// IsRDFLangString returns true if this property has a type of
	// "langString". When true, use the GetRDFLangString and
	// SetRDFLangString methods to access and set this property.. To
	// determine if the property was set as a natural language map, use
	// the IsRDFLangString method instead.
	IsRDFLangString() bool
	// IsXMLSchemaString returns true if this property has a type of "string".
	// When true, use the GetXMLSchemaString and SetXMLSchemaString
	// methods to access and set this property.. To determine if the
	// property was set as a natural language map, use the IsRDFLangString
	// method instead.
	IsXMLSchemaString() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsNamePropertyIterator) bool
	// Name returns the name of this property: "ActivityStreamsName".
	Name() string
	// Next returns the next iterator, or nil if there is no next iterator.
	Next() ActivityStreamsNamePropertyIterator
	// Prev returns the previous iterator, or nil if there is no previous
	// iterator.
	Prev() ActivityStreamsNamePropertyIterator
	// SetIRI sets the value of this property. Calling IsIRI afterwards
	// returns true.
	SetIRI(v *url.URL)
	// SetLanguage sets the value for the specified BCP47 language code.
	SetLanguage(bcp47, value string)
	// SetRDFLangString sets the value of this property and clears the natural
	// language map. Calling IsRDFLangString afterwards will return true.
	// Calling IsRDFLangString afterwards returns false.
	SetRDFLangString(v map[string]string)
	// SetXMLSchemaString sets the value of this property and clears the
	// natural language map. Calling IsXMLSchemaString afterwards will
	// return true. Calling IsRDFLangString afterwards returns false.
	SetXMLSchemaString(v string)
}

ActivityStreamsNamePropertyIterator represents a single value for the "name" property.

type ActivityStreamsNextProperty

type ActivityStreamsNextProperty interface {
	// Clear ensures no value of this property is set. Calling HasAny or any
	// of the 'Is' methods afterwards will return false.
	Clear()
	// GetActivityStreamsCollectionPage returns the value of this property.
	// When IsActivityStreamsCollectionPage returns false,
	// GetActivityStreamsCollectionPage will return an arbitrary value.
	GetActivityStreamsCollectionPage() ActivityStreamsCollectionPage
	// GetActivityStreamsLink returns the value of this property. When
	// IsActivityStreamsLink returns false, GetActivityStreamsLink will
	// return an arbitrary value.
	GetActivityStreamsLink() ActivityStreamsLink
	// GetActivityStreamsMention returns the value of this property. When
	// IsActivityStreamsMention returns false, GetActivityStreamsMention
	// will return an arbitrary value.
	GetActivityStreamsMention() ActivityStreamsMention
	// GetActivityStreamsOrderedCollectionPage returns the value of this
	// property. When IsActivityStreamsOrderedCollectionPage returns
	// false, GetActivityStreamsOrderedCollectionPage will return an
	// arbitrary value.
	GetActivityStreamsOrderedCollectionPage() ActivityStreamsOrderedCollectionPage
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return an arbitrary value.
	GetIRI() *url.URL
	// GetType returns the value in this property as a Type. Returns nil if
	// the value is not an ActivityStreams type, such as an IRI or another
	// value.
	GetType() Type
	// HasAny returns true if any of the different values is set.
	HasAny() bool
	// IsActivityStreamsCollectionPage returns true if this property has a
	// type of "CollectionPage". When true, use the
	// GetActivityStreamsCollectionPage and
	// SetActivityStreamsCollectionPage methods to access and set this
	// property.
	IsActivityStreamsCollectionPage() bool
	// IsActivityStreamsLink returns true if this property has a type of
	// "Link". When true, use the GetActivityStreamsLink and
	// SetActivityStreamsLink methods to access and set this property.
	IsActivityStreamsLink() bool
	// IsActivityStreamsMention returns true if this property has a type of
	// "Mention". When true, use the GetActivityStreamsMention and
	// SetActivityStreamsMention methods to access and set this property.
	IsActivityStreamsMention() bool
	// IsActivityStreamsOrderedCollectionPage returns true if this property
	// has a type of "OrderedCollectionPage". When true, use the
	// GetActivityStreamsOrderedCollectionPage and
	// SetActivityStreamsOrderedCollectionPage methods to access and set
	// this property.
	IsActivityStreamsOrderedCollectionPage() bool
	// IsIRI returns true if this property is an IRI. When true, use GetIRI
	// and SetIRI to access and set this property
	IsIRI() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsNextProperty) bool
	// Name returns the name of this property: "next".
	Name() string
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// SetActivityStreamsCollectionPage sets the value of this property.
	// Calling IsActivityStreamsCollectionPage afterwards returns true.
	SetActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// SetActivityStreamsLink sets the value of this property. Calling
	// IsActivityStreamsLink afterwards returns true.
	SetActivityStreamsLink(v ActivityStreamsLink)
	// SetActivityStreamsMention sets the value of this property. Calling
	// IsActivityStreamsMention afterwards returns true.
	SetActivityStreamsMention(v ActivityStreamsMention)
	// SetActivityStreamsOrderedCollectionPage sets the value of this
	// property. Calling IsActivityStreamsOrderedCollectionPage afterwards
	// returns true.
	SetActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// SetIRI sets the value of this property. Calling IsIRI afterwards
	// returns true.
	SetIRI(v *url.URL)
	// SetType attempts to set the property for the arbitrary type. Returns an
	// error if it is not a valid type to set on this property.
	SetType(t Type) error
}

In a paged Collection, indicates the next page of items.

Example 95 (https://www.w3.org/TR/activitystreams-vocabulary/#ex96-jsonld):

{
  "items": [
    "http://example.org/posts/1",
    "http://example.org/posts/2",
    "http://example.org/posts/3"
  ],
  "next": "http://example.org/collection?page=2",
  "summary": "Page 2 of Sally's blog posts",
  "type": "CollectionPage"
}

Example 96 (https://www.w3.org/TR/activitystreams-vocabulary/#ex97-jsonld):

{
  "items": [
    "http://example.org/posts/1",
    "http://example.org/posts/2",
    "http://example.org/posts/3"
  ],
  "next": {
    "name": "Next Page",
    "type": "owl:Class",
    "url": "http://example.org/collection?page=2"
  },
  "summary": "Page 2 of Sally's blog posts",
  "type": "CollectionPage"
}

type ActivityStreamsNote

type ActivityStreamsNote interface {
	// GetActivityStreamsAltitude returns the "altitude" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAltitude() ActivityStreamsAltitudeProperty
	// GetActivityStreamsAttachment returns the "attachment" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAttachment() ActivityStreamsAttachmentProperty
	// GetActivityStreamsAttributedTo returns the "attributedTo" property if
	// it exists, and nil otherwise.
	GetActivityStreamsAttributedTo() ActivityStreamsAttributedToProperty
	// GetActivityStreamsAudience returns the "audience" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAudience() ActivityStreamsAudienceProperty
	// GetActivityStreamsBcc returns the "bcc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBcc() ActivityStreamsBccProperty
	// GetActivityStreamsBto returns the "bto" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBto() ActivityStreamsBtoProperty
	// GetActivityStreamsCc returns the "cc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsCc() ActivityStreamsCcProperty
	// GetActivityStreamsContent returns the "content" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContent() ActivityStreamsContentProperty
	// GetActivityStreamsContext returns the "context" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContext() ActivityStreamsContextProperty
	// GetActivityStreamsDuration returns the "duration" property if it
	// exists, and nil otherwise.
	GetActivityStreamsDuration() ActivityStreamsDurationProperty
	// GetActivityStreamsEndTime returns the "endTime" property if it exists,
	// and nil otherwise.
	GetActivityStreamsEndTime() ActivityStreamsEndTimeProperty
	// GetActivityStreamsGenerator returns the "generator" property if it
	// exists, and nil otherwise.
	GetActivityStreamsGenerator() ActivityStreamsGeneratorProperty
	// GetActivityStreamsIcon returns the "icon" property if it exists, and
	// nil otherwise.
	GetActivityStreamsIcon() ActivityStreamsIconProperty
	// GetActivityStreamsImage returns the "image" property if it exists, and
	// nil otherwise.
	GetActivityStreamsImage() ActivityStreamsImageProperty
	// GetActivityStreamsInReplyTo returns the "inReplyTo" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInReplyTo() ActivityStreamsInReplyToProperty
	// GetActivityStreamsLikes returns the "likes" property if it exists, and
	// nil otherwise.
	GetActivityStreamsLikes() ActivityStreamsLikesProperty
	// GetActivityStreamsLocation returns the "location" property if it
	// exists, and nil otherwise.
	GetActivityStreamsLocation() ActivityStreamsLocationProperty
	// GetActivityStreamsMediaType returns the "mediaType" property if it
	// exists, and nil otherwise.
	GetActivityStreamsMediaType() ActivityStreamsMediaTypeProperty
	// GetActivityStreamsName returns the "name" property if it exists, and
	// nil otherwise.
	GetActivityStreamsName() ActivityStreamsNameProperty
	// GetActivityStreamsObject returns the "object" property if it exists,
	// and nil otherwise.
	GetActivityStreamsObject() ActivityStreamsObjectProperty
	// GetActivityStreamsPreview returns the "preview" property if it exists,
	// and nil otherwise.
	GetActivityStreamsPreview() ActivityStreamsPreviewProperty
	// GetActivityStreamsPublished returns the "published" property if it
	// exists, and nil otherwise.
	GetActivityStreamsPublished() ActivityStreamsPublishedProperty
	// GetActivityStreamsReplies returns the "replies" property if it exists,
	// and nil otherwise.
	GetActivityStreamsReplies() ActivityStreamsRepliesProperty
	// GetActivityStreamsShares returns the "shares" property if it exists,
	// and nil otherwise.
	GetActivityStreamsShares() ActivityStreamsSharesProperty
	// GetActivityStreamsSource returns the "source" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSource() ActivityStreamsSourceProperty
	// GetActivityStreamsStartTime returns the "startTime" property if it
	// exists, and nil otherwise.
	GetActivityStreamsStartTime() ActivityStreamsStartTimeProperty
	// GetActivityStreamsSummary returns the "summary" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSummary() ActivityStreamsSummaryProperty
	// GetActivityStreamsTag returns the "tag" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTag() ActivityStreamsTagProperty
	// GetActivityStreamsTo returns the "to" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTo() ActivityStreamsToProperty
	// GetActivityStreamsUpdated returns the "updated" property if it exists,
	// and nil otherwise.
	GetActivityStreamsUpdated() ActivityStreamsUpdatedProperty
	// GetActivityStreamsUrl returns the "url" property if it exists, and nil
	// otherwise.
	GetActivityStreamsUrl() ActivityStreamsUrlProperty
	// GetForgeFedTeam returns the "team" property if it exists, and nil
	// otherwise.
	GetForgeFedTeam() ForgeFedTeamProperty
	// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
	// it exists, and nil otherwise.
	GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
	// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
	// it exists, and nil otherwise.
	GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
	// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
	GetJSONLDId() JSONLDIdProperty
	// GetJSONLDType returns the "type" property if it exists, and nil
	// otherwise.
	GetJSONLDType() JSONLDTypeProperty
	// GetTypeName returns the name of this type.
	GetTypeName() string
	// GetUnknownProperties returns the unknown properties for the Note type.
	// Note that this should not be used by app developers. It is only
	// used to help determine which implementation is LessThan the other.
	// Developers who are creating a different implementation of this
	// type's interface can use this method in their LessThan
	// implementation, but routine ActivityPub applications should not use
	// this to bypass the code generation tool.
	GetUnknownProperties() map[string]interface{}
	// IsExtending returns true if the Note type extends from the other type.
	IsExtending(other Type) bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this type and the specific properties that are set. The value
	// in the map is the alias used to import the type and its properties.
	JSONLDContext() map[string]string
	// LessThan computes if this Note is lesser, with an arbitrary but stable
	// determination.
	LessThan(o ActivityStreamsNote) bool
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format.
	Serialize() (map[string]interface{}, error)
	// SetActivityStreamsAltitude sets the "altitude" property.
	SetActivityStreamsAltitude(i ActivityStreamsAltitudeProperty)
	// SetActivityStreamsAttachment sets the "attachment" property.
	SetActivityStreamsAttachment(i ActivityStreamsAttachmentProperty)
	// SetActivityStreamsAttributedTo sets the "attributedTo" property.
	SetActivityStreamsAttributedTo(i ActivityStreamsAttributedToProperty)
	// SetActivityStreamsAudience sets the "audience" property.
	SetActivityStreamsAudience(i ActivityStreamsAudienceProperty)
	// SetActivityStreamsBcc sets the "bcc" property.
	SetActivityStreamsBcc(i ActivityStreamsBccProperty)
	// SetActivityStreamsBto sets the "bto" property.
	SetActivityStreamsBto(i ActivityStreamsBtoProperty)
	// SetActivityStreamsCc sets the "cc" property.
	SetActivityStreamsCc(i ActivityStreamsCcProperty)
	// SetActivityStreamsContent sets the "content" property.
	SetActivityStreamsContent(i ActivityStreamsContentProperty)
	// SetActivityStreamsContext sets the "context" property.
	SetActivityStreamsContext(i ActivityStreamsContextProperty)
	// SetActivityStreamsDuration sets the "duration" property.
	SetActivityStreamsDuration(i ActivityStreamsDurationProperty)
	// SetActivityStreamsEndTime sets the "endTime" property.
	SetActivityStreamsEndTime(i ActivityStreamsEndTimeProperty)
	// SetActivityStreamsGenerator sets the "generator" property.
	SetActivityStreamsGenerator(i ActivityStreamsGeneratorProperty)
	// SetActivityStreamsIcon sets the "icon" property.
	SetActivityStreamsIcon(i ActivityStreamsIconProperty)
	// SetActivityStreamsImage sets the "image" property.
	SetActivityStreamsImage(i ActivityStreamsImageProperty)
	// SetActivityStreamsInReplyTo sets the "inReplyTo" property.
	SetActivityStreamsInReplyTo(i ActivityStreamsInReplyToProperty)
	// SetActivityStreamsLikes sets the "likes" property.
	SetActivityStreamsLikes(i ActivityStreamsLikesProperty)
	// SetActivityStreamsLocation sets the "location" property.
	SetActivityStreamsLocation(i ActivityStreamsLocationProperty)
	// SetActivityStreamsMediaType sets the "mediaType" property.
	SetActivityStreamsMediaType(i ActivityStreamsMediaTypeProperty)
	// SetActivityStreamsName sets the "name" property.
	SetActivityStreamsName(i ActivityStreamsNameProperty)
	// SetActivityStreamsObject sets the "object" property.
	SetActivityStreamsObject(i ActivityStreamsObjectProperty)
	// SetActivityStreamsPreview sets the "preview" property.
	SetActivityStreamsPreview(i ActivityStreamsPreviewProperty)
	// SetActivityStreamsPublished sets the "published" property.
	SetActivityStreamsPublished(i ActivityStreamsPublishedProperty)
	// SetActivityStreamsReplies sets the "replies" property.
	SetActivityStreamsReplies(i ActivityStreamsRepliesProperty)
	// SetActivityStreamsShares sets the "shares" property.
	SetActivityStreamsShares(i ActivityStreamsSharesProperty)
	// SetActivityStreamsSource sets the "source" property.
	SetActivityStreamsSource(i ActivityStreamsSourceProperty)
	// SetActivityStreamsStartTime sets the "startTime" property.
	SetActivityStreamsStartTime(i ActivityStreamsStartTimeProperty)
	// SetActivityStreamsSummary sets the "summary" property.
	SetActivityStreamsSummary(i ActivityStreamsSummaryProperty)
	// SetActivityStreamsTag sets the "tag" property.
	SetActivityStreamsTag(i ActivityStreamsTagProperty)
	// SetActivityStreamsTo sets the "to" property.
	SetActivityStreamsTo(i ActivityStreamsToProperty)
	// SetActivityStreamsUpdated sets the "updated" property.
	SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
	// SetActivityStreamsUrl sets the "url" property.
	SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
	// SetForgeFedTeam sets the "team" property.
	SetForgeFedTeam(i ForgeFedTeamProperty)
	// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
	SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
	// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
	SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
	// SetJSONLDId sets the "id" property.
	SetJSONLDId(i JSONLDIdProperty)
	// SetJSONLDType sets the "type" property.
	SetJSONLDType(i JSONLDTypeProperty)
	// VocabularyURI returns the vocabulary's URI as a string.
	VocabularyURI() string
}

Represents a short written work typically less than a single paragraph in length.

Example 53 (https://www.w3.org/TR/activitystreams-vocabulary/#ex52-jsonld):

{
  "content": "Looks like it is going to rain today. Bring an umbrella!",
  "name": "A Word of Warning",
  "type": "Note"
}

type ActivityStreamsObject

type ActivityStreamsObject interface {
	// GetActivityStreamsAltitude returns the "altitude" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAltitude() ActivityStreamsAltitudeProperty
	// GetActivityStreamsAttachment returns the "attachment" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAttachment() ActivityStreamsAttachmentProperty
	// GetActivityStreamsAttributedTo returns the "attributedTo" property if
	// it exists, and nil otherwise.
	GetActivityStreamsAttributedTo() ActivityStreamsAttributedToProperty
	// GetActivityStreamsAudience returns the "audience" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAudience() ActivityStreamsAudienceProperty
	// GetActivityStreamsBcc returns the "bcc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBcc() ActivityStreamsBccProperty
	// GetActivityStreamsBto returns the "bto" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBto() ActivityStreamsBtoProperty
	// GetActivityStreamsCc returns the "cc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsCc() ActivityStreamsCcProperty
	// GetActivityStreamsContent returns the "content" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContent() ActivityStreamsContentProperty
	// GetActivityStreamsContext returns the "context" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContext() ActivityStreamsContextProperty
	// GetActivityStreamsDuration returns the "duration" property if it
	// exists, and nil otherwise.
	GetActivityStreamsDuration() ActivityStreamsDurationProperty
	// GetActivityStreamsEndTime returns the "endTime" property if it exists,
	// and nil otherwise.
	GetActivityStreamsEndTime() ActivityStreamsEndTimeProperty
	// GetActivityStreamsGenerator returns the "generator" property if it
	// exists, and nil otherwise.
	GetActivityStreamsGenerator() ActivityStreamsGeneratorProperty
	// GetActivityStreamsIcon returns the "icon" property if it exists, and
	// nil otherwise.
	GetActivityStreamsIcon() ActivityStreamsIconProperty
	// GetActivityStreamsImage returns the "image" property if it exists, and
	// nil otherwise.
	GetActivityStreamsImage() ActivityStreamsImageProperty
	// GetActivityStreamsInReplyTo returns the "inReplyTo" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInReplyTo() ActivityStreamsInReplyToProperty
	// GetActivityStreamsLikes returns the "likes" property if it exists, and
	// nil otherwise.
	GetActivityStreamsLikes() ActivityStreamsLikesProperty
	// GetActivityStreamsLocation returns the "location" property if it
	// exists, and nil otherwise.
	GetActivityStreamsLocation() ActivityStreamsLocationProperty
	// GetActivityStreamsMediaType returns the "mediaType" property if it
	// exists, and nil otherwise.
	GetActivityStreamsMediaType() ActivityStreamsMediaTypeProperty
	// GetActivityStreamsName returns the "name" property if it exists, and
	// nil otherwise.
	GetActivityStreamsName() ActivityStreamsNameProperty
	// GetActivityStreamsObject returns the "object" property if it exists,
	// and nil otherwise.
	GetActivityStreamsObject() ActivityStreamsObjectProperty
	// GetActivityStreamsPreview returns the "preview" property if it exists,
	// and nil otherwise.
	GetActivityStreamsPreview() ActivityStreamsPreviewProperty
	// GetActivityStreamsPublished returns the "published" property if it
	// exists, and nil otherwise.
	GetActivityStreamsPublished() ActivityStreamsPublishedProperty
	// GetActivityStreamsReplies returns the "replies" property if it exists,
	// and nil otherwise.
	GetActivityStreamsReplies() ActivityStreamsRepliesProperty
	// GetActivityStreamsShares returns the "shares" property if it exists,
	// and nil otherwise.
	GetActivityStreamsShares() ActivityStreamsSharesProperty
	// GetActivityStreamsSource returns the "source" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSource() ActivityStreamsSourceProperty
	// GetActivityStreamsStartTime returns the "startTime" property if it
	// exists, and nil otherwise.
	GetActivityStreamsStartTime() ActivityStreamsStartTimeProperty
	// GetActivityStreamsSummary returns the "summary" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSummary() ActivityStreamsSummaryProperty
	// GetActivityStreamsTag returns the "tag" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTag() ActivityStreamsTagProperty
	// GetActivityStreamsTo returns the "to" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTo() ActivityStreamsToProperty
	// GetActivityStreamsUpdated returns the "updated" property if it exists,
	// and nil otherwise.
	GetActivityStreamsUpdated() ActivityStreamsUpdatedProperty
	// GetActivityStreamsUrl returns the "url" property if it exists, and nil
	// otherwise.
	GetActivityStreamsUrl() ActivityStreamsUrlProperty
	// GetForgeFedTeam returns the "team" property if it exists, and nil
	// otherwise.
	GetForgeFedTeam() ForgeFedTeamProperty
	// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
	// it exists, and nil otherwise.
	GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
	// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
	// it exists, and nil otherwise.
	GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
	// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
	GetJSONLDId() JSONLDIdProperty
	// GetJSONLDType returns the "type" property if it exists, and nil
	// otherwise.
	GetJSONLDType() JSONLDTypeProperty
	// GetTypeName returns the name of this type.
	GetTypeName() string
	// GetUnknownProperties returns the unknown properties for the Object
	// type. Note that this should not be used by app developers. It is
	// only used to help determine which implementation is LessThan the
	// other. Developers who are creating a different implementation of
	// this type's interface can use this method in their LessThan
	// implementation, but routine ActivityPub applications should not use
	// this to bypass the code generation tool.
	GetUnknownProperties() map[string]interface{}
	// IsExtending returns true if the Object type extends from the other type.
	IsExtending(other Type) bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this type and the specific properties that are set. The value
	// in the map is the alias used to import the type and its properties.
	JSONLDContext() map[string]string
	// LessThan computes if this Object is lesser, with an arbitrary but
	// stable determination.
	LessThan(o ActivityStreamsObject) bool
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format.
	Serialize() (map[string]interface{}, error)
	// SetActivityStreamsAltitude sets the "altitude" property.
	SetActivityStreamsAltitude(i ActivityStreamsAltitudeProperty)
	// SetActivityStreamsAttachment sets the "attachment" property.
	SetActivityStreamsAttachment(i ActivityStreamsAttachmentProperty)
	// SetActivityStreamsAttributedTo sets the "attributedTo" property.
	SetActivityStreamsAttributedTo(i ActivityStreamsAttributedToProperty)
	// SetActivityStreamsAudience sets the "audience" property.
	SetActivityStreamsAudience(i ActivityStreamsAudienceProperty)
	// SetActivityStreamsBcc sets the "bcc" property.
	SetActivityStreamsBcc(i ActivityStreamsBccProperty)
	// SetActivityStreamsBto sets the "bto" property.
	SetActivityStreamsBto(i ActivityStreamsBtoProperty)
	// SetActivityStreamsCc sets the "cc" property.
	SetActivityStreamsCc(i ActivityStreamsCcProperty)
	// SetActivityStreamsContent sets the "content" property.
	SetActivityStreamsContent(i ActivityStreamsContentProperty)
	// SetActivityStreamsContext sets the "context" property.
	SetActivityStreamsContext(i ActivityStreamsContextProperty)
	// SetActivityStreamsDuration sets the "duration" property.
	SetActivityStreamsDuration(i ActivityStreamsDurationProperty)
	// SetActivityStreamsEndTime sets the "endTime" property.
	SetActivityStreamsEndTime(i ActivityStreamsEndTimeProperty)
	// SetActivityStreamsGenerator sets the "generator" property.
	SetActivityStreamsGenerator(i ActivityStreamsGeneratorProperty)
	// SetActivityStreamsIcon sets the "icon" property.
	SetActivityStreamsIcon(i ActivityStreamsIconProperty)
	// SetActivityStreamsImage sets the "image" property.
	SetActivityStreamsImage(i ActivityStreamsImageProperty)
	// SetActivityStreamsInReplyTo sets the "inReplyTo" property.
	SetActivityStreamsInReplyTo(i ActivityStreamsInReplyToProperty)
	// SetActivityStreamsLikes sets the "likes" property.
	SetActivityStreamsLikes(i ActivityStreamsLikesProperty)
	// SetActivityStreamsLocation sets the "location" property.
	SetActivityStreamsLocation(i ActivityStreamsLocationProperty)
	// SetActivityStreamsMediaType sets the "mediaType" property.
	SetActivityStreamsMediaType(i ActivityStreamsMediaTypeProperty)
	// SetActivityStreamsName sets the "name" property.
	SetActivityStreamsName(i ActivityStreamsNameProperty)
	// SetActivityStreamsObject sets the "object" property.
	SetActivityStreamsObject(i ActivityStreamsObjectProperty)
	// SetActivityStreamsPreview sets the "preview" property.
	SetActivityStreamsPreview(i ActivityStreamsPreviewProperty)
	// SetActivityStreamsPublished sets the "published" property.
	SetActivityStreamsPublished(i ActivityStreamsPublishedProperty)
	// SetActivityStreamsReplies sets the "replies" property.
	SetActivityStreamsReplies(i ActivityStreamsRepliesProperty)
	// SetActivityStreamsShares sets the "shares" property.
	SetActivityStreamsShares(i ActivityStreamsSharesProperty)
	// SetActivityStreamsSource sets the "source" property.
	SetActivityStreamsSource(i ActivityStreamsSourceProperty)
	// SetActivityStreamsStartTime sets the "startTime" property.
	SetActivityStreamsStartTime(i ActivityStreamsStartTimeProperty)
	// SetActivityStreamsSummary sets the "summary" property.
	SetActivityStreamsSummary(i ActivityStreamsSummaryProperty)
	// SetActivityStreamsTag sets the "tag" property.
	SetActivityStreamsTag(i ActivityStreamsTagProperty)
	// SetActivityStreamsTo sets the "to" property.
	SetActivityStreamsTo(i ActivityStreamsToProperty)
	// SetActivityStreamsUpdated sets the "updated" property.
	SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
	// SetActivityStreamsUrl sets the "url" property.
	SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
	// SetForgeFedTeam sets the "team" property.
	SetForgeFedTeam(i ForgeFedTeamProperty)
	// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
	SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
	// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
	SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
	// SetJSONLDId sets the "id" property.
	SetJSONLDId(i JSONLDIdProperty)
	// SetJSONLDType sets the "type" property.
	SetJSONLDType(i JSONLDTypeProperty)
	// VocabularyURI returns the vocabulary's URI as a string.
	VocabularyURI() string
}

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.

Example 1 (https://www.w3.org/TR/activitystreams-vocabulary/#ex1-jsonld):

{
  "id": "http://www.test.example/object/1",
  "name": "A Simple, non-specific object",
  "type": "Object"
}

type ActivityStreamsObjectProperty

type ActivityStreamsObjectProperty interface {
	// AppendActivityStreamsAccept appends a Accept value to the back of a
	// list of the property "object". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsAccept(v ActivityStreamsAccept)
	// AppendActivityStreamsActivity appends a Activity value to the back of a
	// list of the property "object". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsActivity(v ActivityStreamsActivity)
	// AppendActivityStreamsAdd appends a Add value to the back of a list of
	// the property "object". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsAdd(v ActivityStreamsAdd)
	// AppendActivityStreamsAnnounce appends a Announce value to the back of a
	// list of the property "object". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// AppendActivityStreamsApplication appends a Application value to the
	// back of a list of the property "object". Invalidates iterators that
	// are traversing using Prev.
	AppendActivityStreamsApplication(v ActivityStreamsApplication)
	// AppendActivityStreamsArrive appends a Arrive value to the back of a
	// list of the property "object". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsArrive(v ActivityStreamsArrive)
	// AppendActivityStreamsArticle appends a Article value to the back of a
	// list of the property "object". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsArticle(v ActivityStreamsArticle)
	// AppendActivityStreamsAudio appends a Audio value to the back of a list
	// of the property "object". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsAudio(v ActivityStreamsAudio)
	// AppendActivityStreamsBlock appends a Block value to the back of a list
	// of the property "object". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsBlock(v ActivityStreamsBlock)
	// AppendActivityStreamsCollection appends a Collection value to the back
	// of a list of the property "object". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsCollection(v ActivityStreamsCollection)
	// AppendActivityStreamsCollectionPage appends a CollectionPage value to
	// the back of a list of the property "object". Invalidates iterators
	// that are traversing using Prev.
	AppendActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// AppendActivityStreamsCreate appends a Create value to the back of a
	// list of the property "object". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsCreate(v ActivityStreamsCreate)
	// AppendActivityStreamsDelete appends a Delete value to the back of a
	// list of the property "object". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDelete(v ActivityStreamsDelete)
	// AppendActivityStreamsDislike appends a Dislike value to the back of a
	// list of the property "object". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDislike(v ActivityStreamsDislike)
	// AppendActivityStreamsDocument appends a Document value to the back of a
	// list of the property "object". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDocument(v ActivityStreamsDocument)
	// AppendActivityStreamsEvent appends a Event value to the back of a list
	// of the property "object". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsEvent(v ActivityStreamsEvent)
	// AppendActivityStreamsFlag appends a Flag value to the back of a list of
	// the property "object". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsFlag(v ActivityStreamsFlag)
	// AppendActivityStreamsFollow appends a Follow value to the back of a
	// list of the property "object". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsFollow(v ActivityStreamsFollow)
	// AppendActivityStreamsGroup appends a Group value to the back of a list
	// of the property "object". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsGroup(v ActivityStreamsGroup)
	// AppendActivityStreamsIgnore appends a Ignore value to the back of a
	// list of the property "object". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsIgnore(v ActivityStreamsIgnore)
	// AppendActivityStreamsImage appends a Image value to the back of a list
	// of the property "object". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsImage(v ActivityStreamsImage)
	// AppendActivityStreamsIntransitiveActivity appends a
	// IntransitiveActivity value to the back of a list of the property
	// "object". Invalidates iterators that are traversing using Prev.
	AppendActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// AppendActivityStreamsInvite appends a Invite value to the back of a
	// list of the property "object". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsInvite(v ActivityStreamsInvite)
	// AppendActivityStreamsJoin appends a Join value to the back of a list of
	// the property "object". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsJoin(v ActivityStreamsJoin)
	// AppendActivityStreamsLeave appends a Leave value to the back of a list
	// of the property "object". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsLeave(v ActivityStreamsLeave)
	// AppendActivityStreamsLike appends a Like value to the back of a list of
	// the property "object". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsLike(v ActivityStreamsLike)
	// AppendActivityStreamsLink appends a Link value to the back of a list of
	// the property "object". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsLink(v ActivityStreamsLink)
	// AppendActivityStreamsListen appends a Listen value to the back of a
	// list of the property "object". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsListen(v ActivityStreamsListen)
	// AppendActivityStreamsMention appends a Mention value to the back of a
	// list of the property "object". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsMention(v ActivityStreamsMention)
	// AppendActivityStreamsMove appends a Move value to the back of a list of
	// the property "object". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsMove(v ActivityStreamsMove)
	// AppendActivityStreamsNote appends a Note value to the back of a list of
	// the property "object". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsNote(v ActivityStreamsNote)
	// AppendActivityStreamsObject appends a Object value to the back of a
	// list of the property "object". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsObject(v ActivityStreamsObject)
	// AppendActivityStreamsOffer appends a Offer value to the back of a list
	// of the property "object". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsOffer(v ActivityStreamsOffer)
	// AppendActivityStreamsOrderedCollection appends a OrderedCollection
	// value to the back of a list of the property "object". Invalidates
	// iterators that are traversing using Prev.
	AppendActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// AppendActivityStreamsOrderedCollectionPage appends a
	// OrderedCollectionPage value to the back of a list of the property
	// "object". Invalidates iterators that are traversing using Prev.
	AppendActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// AppendActivityStreamsOrganization appends a Organization value to the
	// back of a list of the property "object". Invalidates iterators that
	// are traversing using Prev.
	AppendActivityStreamsOrganization(v ActivityStreamsOrganization)
	// AppendActivityStreamsPage appends a Page value to the back of a list of
	// the property "object". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsPage(v ActivityStreamsPage)
	// AppendActivityStreamsPerson appends a Person value to the back of a
	// list of the property "object". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsPerson(v ActivityStreamsPerson)
	// AppendActivityStreamsPlace appends a Place value to the back of a list
	// of the property "object". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsPlace(v ActivityStreamsPlace)
	// AppendActivityStreamsProfile appends a Profile value to the back of a
	// list of the property "object". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsProfile(v ActivityStreamsProfile)
	// AppendActivityStreamsQuestion appends a Question value to the back of a
	// list of the property "object". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsQuestion(v ActivityStreamsQuestion)
	// AppendActivityStreamsRead appends a Read value to the back of a list of
	// the property "object". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsRead(v ActivityStreamsRead)
	// AppendActivityStreamsReject appends a Reject value to the back of a
	// list of the property "object". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsReject(v ActivityStreamsReject)
	// AppendActivityStreamsRelationship appends a Relationship value to the
	// back of a list of the property "object". Invalidates iterators that
	// are traversing using Prev.
	AppendActivityStreamsRelationship(v ActivityStreamsRelationship)
	// AppendActivityStreamsRemove appends a Remove value to the back of a
	// list of the property "object". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsRemove(v ActivityStreamsRemove)
	// AppendActivityStreamsService appends a Service value to the back of a
	// list of the property "object". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsService(v ActivityStreamsService)
	// AppendActivityStreamsTentativeAccept appends a TentativeAccept value to
	// the back of a list of the property "object". Invalidates iterators
	// that are traversing using Prev.
	AppendActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// AppendActivityStreamsTentativeReject appends a TentativeReject value to
	// the back of a list of the property "object". Invalidates iterators
	// that are traversing using Prev.
	AppendActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// AppendActivityStreamsTombstone appends a Tombstone value to the back of
	// a list of the property "object". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsTombstone(v ActivityStreamsTombstone)
	// AppendActivityStreamsTravel appends a Travel value to the back of a
	// list of the property "object". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsTravel(v ActivityStreamsTravel)
	// AppendActivityStreamsUndo appends a Undo value to the back of a list of
	// the property "object". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsUndo(v ActivityStreamsUndo)
	// AppendActivityStreamsUpdate appends a Update value to the back of a
	// list of the property "object". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsUpdate(v ActivityStreamsUpdate)
	// AppendActivityStreamsVideo appends a Video value to the back of a list
	// of the property "object". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsVideo(v ActivityStreamsVideo)
	// AppendActivityStreamsView appends a View value to the back of a list of
	// the property "object". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsView(v ActivityStreamsView)
	// AppendForgeFedBranch appends a Branch value to the back of a list of
	// the property "object". Invalidates iterators that are traversing
	// using Prev.
	AppendForgeFedBranch(v ForgeFedBranch)
	// AppendForgeFedCommit appends a Commit value to the back of a list of
	// the property "object". Invalidates iterators that are traversing
	// using Prev.
	AppendForgeFedCommit(v ForgeFedCommit)
	// AppendForgeFedPush appends a Push value to the back of a list of the
	// property "object". Invalidates iterators that are traversing using
	// Prev.
	AppendForgeFedPush(v ForgeFedPush)
	// AppendForgeFedRepository appends a Repository value to the back of a
	// list of the property "object". Invalidates iterators that are
	// traversing using Prev.
	AppendForgeFedRepository(v ForgeFedRepository)
	// AppendForgeFedTicket appends a Ticket value to the back of a list of
	// the property "object". Invalidates iterators that are traversing
	// using Prev.
	AppendForgeFedTicket(v ForgeFedTicket)
	// AppendForgeFedTicketDependency appends a TicketDependency value to the
	// back of a list of the property "object". Invalidates iterators that
	// are traversing using Prev.
	AppendForgeFedTicketDependency(v ForgeFedTicketDependency)
	// AppendIRI appends an IRI value to the back of a list of the property
	// "object"
	AppendIRI(v *url.URL)
	// AppendTootEmoji appends a Emoji value to the back of a list of the
	// property "object". Invalidates iterators that are traversing using
	// Prev.
	AppendTootEmoji(v TootEmoji)
	// AppendTootIdentityProof appends a IdentityProof value to the back of a
	// list of the property "object". Invalidates iterators that are
	// traversing using Prev.
	AppendTootIdentityProof(v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "object". Invalidates iterators that are traversing
	// using Prev. Returns an error if the type is not a valid one to set
	// for this property.
	AppendType(t Type) error
	// At returns the property value for the specified index. Panics if the
	// index is out of bounds.
	At(index int) ActivityStreamsObjectPropertyIterator
	// Begin returns the first iterator, or nil if empty. Can be used with the
	// iterator's Next method and this property's End method to iterate
	// from front to back through all values.
	Begin() ActivityStreamsObjectPropertyIterator
	// Empty returns returns true if there are no elements.
	Empty() bool
	// End returns beyond-the-last iterator, which is nil. Can be used with
	// the iterator's Next method and this property's Begin method to
	// iterate from front to back through all values.
	End() ActivityStreamsObjectPropertyIterator
	// InsertActivityStreamsAccept inserts a Accept value at the specified
	// index for a property "object". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAccept(idx int, v ActivityStreamsAccept)
	// InsertActivityStreamsActivity inserts a Activity value at the specified
	// index for a property "object". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsActivity(idx int, v ActivityStreamsActivity)
	// InsertActivityStreamsAdd inserts a Add value at the specified index for
	// a property "object". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertActivityStreamsAdd(idx int, v ActivityStreamsAdd)
	// InsertActivityStreamsAnnounce inserts a Announce value at the specified
	// index for a property "object". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAnnounce(idx int, v ActivityStreamsAnnounce)
	// InsertActivityStreamsApplication inserts a Application value at the
	// specified index for a property "object". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsApplication(idx int, v ActivityStreamsApplication)
	// InsertActivityStreamsArrive inserts a Arrive value at the specified
	// index for a property "object". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsArrive(idx int, v ActivityStreamsArrive)
	// InsertActivityStreamsArticle inserts a Article value at the specified
	// index for a property "object". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsArticle(idx int, v ActivityStreamsArticle)
	// InsertActivityStreamsAudio inserts a Audio value at the specified index
	// for a property "object". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAudio(idx int, v ActivityStreamsAudio)
	// InsertActivityStreamsBlock inserts a Block value at the specified index
	// for a property "object". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsBlock(idx int, v ActivityStreamsBlock)
	// InsertActivityStreamsCollection inserts a Collection value at the
	// specified index for a property "object". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsCollection(idx int, v ActivityStreamsCollection)
	// InsertActivityStreamsCollectionPage inserts a CollectionPage value at
	// the specified index for a property "object". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsCollectionPage(idx int, v ActivityStreamsCollectionPage)
	// InsertActivityStreamsCreate inserts a Create value at the specified
	// index for a property "object". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsCreate(idx int, v ActivityStreamsCreate)
	// InsertActivityStreamsDelete inserts a Delete value at the specified
	// index for a property "object". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDelete(idx int, v ActivityStreamsDelete)
	// InsertActivityStreamsDislike inserts a Dislike value at the specified
	// index for a property "object". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDislike(idx int, v ActivityStreamsDislike)
	// InsertActivityStreamsDocument inserts a Document value at the specified
	// index for a property "object". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDocument(idx int, v ActivityStreamsDocument)
	// InsertActivityStreamsEvent inserts a Event value at the specified index
	// for a property "object". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsEvent(idx int, v ActivityStreamsEvent)
	// InsertActivityStreamsFlag inserts a Flag value at the specified index
	// for a property "object". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsFlag(idx int, v ActivityStreamsFlag)
	// InsertActivityStreamsFollow inserts a Follow value at the specified
	// index for a property "object". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsFollow(idx int, v ActivityStreamsFollow)
	// InsertActivityStreamsGroup inserts a Group value at the specified index
	// for a property "object". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsGroup(idx int, v ActivityStreamsGroup)
	// InsertActivityStreamsIgnore inserts a Ignore value at the specified
	// index for a property "object". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsIgnore(idx int, v ActivityStreamsIgnore)
	// InsertActivityStreamsImage inserts a Image value at the specified index
	// for a property "object". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsImage(idx int, v ActivityStreamsImage)
	// InsertActivityStreamsIntransitiveActivity inserts a
	// IntransitiveActivity value at the specified index for a property
	// "object". Existing elements at that index and higher are shifted
	// back once. Invalidates all iterators.
	InsertActivityStreamsIntransitiveActivity(idx int, v ActivityStreamsIntransitiveActivity)
	// InsertActivityStreamsInvite inserts a Invite value at the specified
	// index for a property "object". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsInvite(idx int, v ActivityStreamsInvite)
	// InsertActivityStreamsJoin inserts a Join value at the specified index
	// for a property "object". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsJoin(idx int, v ActivityStreamsJoin)
	// InsertActivityStreamsLeave inserts a Leave value at the specified index
	// for a property "object". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsLeave(idx int, v ActivityStreamsLeave)
	// InsertActivityStreamsLike inserts a Like value at the specified index
	// for a property "object". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsLike(idx int, v ActivityStreamsLike)
	// InsertActivityStreamsLink inserts a Link value at the specified index
	// for a property "object". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsLink(idx int, v ActivityStreamsLink)
	// InsertActivityStreamsListen inserts a Listen value at the specified
	// index for a property "object". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsListen(idx int, v ActivityStreamsListen)
	// InsertActivityStreamsMention inserts a Mention value at the specified
	// index for a property "object". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsMention(idx int, v ActivityStreamsMention)
	// InsertActivityStreamsMove inserts a Move value at the specified index
	// for a property "object". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsMove(idx int, v ActivityStreamsMove)
	// InsertActivityStreamsNote inserts a Note value at the specified index
	// for a property "object". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsNote(idx int, v ActivityStreamsNote)
	// InsertActivityStreamsObject inserts a Object value at the specified
	// index for a property "object". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsObject(idx int, v ActivityStreamsObject)
	// InsertActivityStreamsOffer inserts a Offer value at the specified index
	// for a property "object". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsOffer(idx int, v ActivityStreamsOffer)
	// InsertActivityStreamsOrderedCollection inserts a OrderedCollection
	// value at the specified index for a property "object". Existing
	// elements at that index and higher are shifted back once.
	// Invalidates all iterators.
	InsertActivityStreamsOrderedCollection(idx int, v ActivityStreamsOrderedCollection)
	// InsertActivityStreamsOrderedCollectionPage inserts a
	// OrderedCollectionPage value at the specified index for a property
	// "object". Existing elements at that index and higher are shifted
	// back once. Invalidates all iterators.
	InsertActivityStreamsOrderedCollectionPage(idx int, v ActivityStreamsOrderedCollectionPage)
	// InsertActivityStreamsOrganization inserts a Organization value at the
	// specified index for a property "object". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsOrganization(idx int, v ActivityStreamsOrganization)
	// InsertActivityStreamsPage inserts a Page value at the specified index
	// for a property "object". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsPage(idx int, v ActivityStreamsPage)
	// InsertActivityStreamsPerson inserts a Person value at the specified
	// index for a property "object". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsPerson(idx int, v ActivityStreamsPerson)
	// InsertActivityStreamsPlace inserts a Place value at the specified index
	// for a property "object". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsPlace(idx int, v ActivityStreamsPlace)
	// InsertActivityStreamsProfile inserts a Profile value at the specified
	// index for a property "object". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsProfile(idx int, v ActivityStreamsProfile)
	// InsertActivityStreamsQuestion inserts a Question value at the specified
	// index for a property "object". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsQuestion(idx int, v ActivityStreamsQuestion)
	// InsertActivityStreamsRead inserts a Read value at the specified index
	// for a property "object". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsRead(idx int, v ActivityStreamsRead)
	// InsertActivityStreamsReject inserts a Reject value at the specified
	// index for a property "object". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsReject(idx int, v ActivityStreamsReject)
	// InsertActivityStreamsRelationship inserts a Relationship value at the
	// specified index for a property "object". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsRelationship(idx int, v ActivityStreamsRelationship)
	// InsertActivityStreamsRemove inserts a Remove value at the specified
	// index for a property "object". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsRemove(idx int, v ActivityStreamsRemove)
	// InsertActivityStreamsService inserts a Service value at the specified
	// index for a property "object". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsService(idx int, v ActivityStreamsService)
	// InsertActivityStreamsTentativeAccept inserts a TentativeAccept value at
	// the specified index for a property "object". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsTentativeAccept(idx int, v ActivityStreamsTentativeAccept)
	// InsertActivityStreamsTentativeReject inserts a TentativeReject value at
	// the specified index for a property "object". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsTentativeReject(idx int, v ActivityStreamsTentativeReject)
	// InsertActivityStreamsTombstone inserts a Tombstone value at the
	// specified index for a property "object". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsTombstone(idx int, v ActivityStreamsTombstone)
	// InsertActivityStreamsTravel inserts a Travel value at the specified
	// index for a property "object". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsTravel(idx int, v ActivityStreamsTravel)
	// InsertActivityStreamsUndo inserts a Undo value at the specified index
	// for a property "object". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsUndo(idx int, v ActivityStreamsUndo)
	// InsertActivityStreamsUpdate inserts a Update value at the specified
	// index for a property "object". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsUpdate(idx int, v ActivityStreamsUpdate)
	// InsertActivityStreamsVideo inserts a Video value at the specified index
	// for a property "object". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsVideo(idx int, v ActivityStreamsVideo)
	// InsertActivityStreamsView inserts a View value at the specified index
	// for a property "object". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsView(idx int, v ActivityStreamsView)
	// InsertForgeFedBranch inserts a Branch value at the specified index for
	// a property "object". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertForgeFedBranch(idx int, v ForgeFedBranch)
	// InsertForgeFedCommit inserts a Commit value at the specified index for
	// a property "object". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertForgeFedCommit(idx int, v ForgeFedCommit)
	// InsertForgeFedPush inserts a Push value at the specified index for a
	// property "object". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertForgeFedPush(idx int, v ForgeFedPush)
	// InsertForgeFedRepository inserts a Repository value at the specified
	// index for a property "object". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertForgeFedRepository(idx int, v ForgeFedRepository)
	// InsertForgeFedTicket inserts a Ticket value at the specified index for
	// a property "object". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertForgeFedTicket(idx int, v ForgeFedTicket)
	// InsertForgeFedTicketDependency inserts a TicketDependency value at the
	// specified index for a property "object". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
	// Insert inserts an IRI value at the specified index for a property
	// "object". Existing elements at that index and higher are shifted
	// back once. Invalidates all iterators.
	InsertIRI(idx int, v *url.URL)
	// InsertTootEmoji inserts a Emoji value at the specified index for a
	// property "object". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertTootEmoji(idx int, v TootEmoji)
	// InsertTootIdentityProof inserts a IdentityProof value at the specified
	// index for a property "object". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertTootIdentityProof(idx int, v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "object". Invalidates all iterators. Returns an error
	// if the type is not a valid one to set for this property.
	InsertType(idx int, t Type) error
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API method specifically needed only for alternate
	// implementations for go-fed. Applications should not use this
	// method. Panics if the index is out of bounds.
	KindIndex(idx int) int
	// Len returns the number of values that exist for the "object" property.
	Len() (length int)
	// Less computes whether another property is less than this one. Mixing
	// types results in a consistent but arbitrary ordering
	Less(i, j int) bool
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsObjectProperty) bool
	// Name returns the name of this property ("object") with any alias.
	Name() string
	// PrependActivityStreamsAccept prepends a Accept value to the front of a
	// list of the property "object". Invalidates all iterators.
	PrependActivityStreamsAccept(v ActivityStreamsAccept)
	// PrependActivityStreamsActivity prepends a Activity value to the front
	// of a list of the property "object". Invalidates all iterators.
	PrependActivityStreamsActivity(v ActivityStreamsActivity)
	// PrependActivityStreamsAdd prepends a Add value to the front of a list
	// of the property "object". Invalidates all iterators.
	PrependActivityStreamsAdd(v ActivityStreamsAdd)
	// PrependActivityStreamsAnnounce prepends a Announce value to the front
	// of a list of the property "object". Invalidates all iterators.
	PrependActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// PrependActivityStreamsApplication prepends a Application value to the
	// front of a list of the property "object". Invalidates all iterators.
	PrependActivityStreamsApplication(v ActivityStreamsApplication)
	// PrependActivityStreamsArrive prepends a Arrive value to the front of a
	// list of the property "object". Invalidates all iterators.
	PrependActivityStreamsArrive(v ActivityStreamsArrive)
	// PrependActivityStreamsArticle prepends a Article value to the front of
	// a list of the property "object". Invalidates all iterators.
	PrependActivityStreamsArticle(v ActivityStreamsArticle)
	// PrependActivityStreamsAudio prepends a Audio value to the front of a
	// list of the property "object". Invalidates all iterators.
	PrependActivityStreamsAudio(v ActivityStreamsAudio)
	// PrependActivityStreamsBlock prepends a Block value to the front of a
	// list of the property "object". Invalidates all iterators.
	PrependActivityStreamsBlock(v ActivityStreamsBlock)
	// PrependActivityStreamsCollection prepends a Collection value to the
	// front of a list of the property "object". Invalidates all iterators.
	PrependActivityStreamsCollection(v ActivityStreamsCollection)
	// PrependActivityStreamsCollectionPage prepends a CollectionPage value to
	// the front of a list of the property "object". Invalidates all
	// iterators.
	PrependActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// PrependActivityStreamsCreate prepends a Create value to the front of a
	// list of the property "object". Invalidates all iterators.
	PrependActivityStreamsCreate(v ActivityStreamsCreate)
	// PrependActivityStreamsDelete prepends a Delete value to the front of a
	// list of the property "object". Invalidates all iterators.
	PrependActivityStreamsDelete(v ActivityStreamsDelete)
	// PrependActivityStreamsDislike prepends a Dislike value to the front of
	// a list of the property "object". Invalidates all iterators.
	PrependActivityStreamsDislike(v ActivityStreamsDislike)
	// PrependActivityStreamsDocument prepends a Document value to the front
	// of a list of the property "object". Invalidates all iterators.
	PrependActivityStreamsDocument(v ActivityStreamsDocument)
	// PrependActivityStreamsEvent prepends a Event value to the front of a
	// list of the property "object". Invalidates all iterators.
	PrependActivityStreamsEvent(v ActivityStreamsEvent)
	// PrependActivityStreamsFlag prepends a Flag value to the front of a list
	// of the property "object". Invalidates all iterators.
	PrependActivityStreamsFlag(v ActivityStreamsFlag)
	// PrependActivityStreamsFollow prepends a Follow value to the front of a
	// list of the property "object". Invalidates all iterators.
	PrependActivityStreamsFollow(v ActivityStreamsFollow)
	// PrependActivityStreamsGroup prepends a Group value to the front of a
	// list of the property "object". Invalidates all iterators.
	PrependActivityStreamsGroup(v ActivityStreamsGroup)
	// PrependActivityStreamsIgnore prepends a Ignore value to the front of a
	// list of the property "object". Invalidates all iterators.
	PrependActivityStreamsIgnore(v ActivityStreamsIgnore)
	// PrependActivityStreamsImage prepends a Image value to the front of a
	// list of the property "object". Invalidates all iterators.
	PrependActivityStreamsImage(v ActivityStreamsImage)
	// PrependActivityStreamsIntransitiveActivity prepends a
	// IntransitiveActivity value to the front of a list of the property
	// "object". Invalidates all iterators.
	PrependActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// PrependActivityStreamsInvite prepends a Invite value to the front of a
	// list of the property "object". Invalidates all iterators.
	PrependActivityStreamsInvite(v ActivityStreamsInvite)
	// PrependActivityStreamsJoin prepends a Join value to the front of a list
	// of the property "object". Invalidates all iterators.
	PrependActivityStreamsJoin(v ActivityStreamsJoin)
	// PrependActivityStreamsLeave prepends a Leave value to the front of a
	// list of the property "object". Invalidates all iterators.
	PrependActivityStreamsLeave(v ActivityStreamsLeave)
	// PrependActivityStreamsLike prepends a Like value to the front of a list
	// of the property "object". Invalidates all iterators.
	PrependActivityStreamsLike(v ActivityStreamsLike)
	// PrependActivityStreamsLink prepends a Link value to the front of a list
	// of the property "object". Invalidates all iterators.
	PrependActivityStreamsLink(v ActivityStreamsLink)
	// PrependActivityStreamsListen prepends a Listen value to the front of a
	// list of the property "object". Invalidates all iterators.
	PrependActivityStreamsListen(v ActivityStreamsListen)
	// PrependActivityStreamsMention prepends a Mention value to the front of
	// a list of the property "object". Invalidates all iterators.
	PrependActivityStreamsMention(v ActivityStreamsMention)
	// PrependActivityStreamsMove prepends a Move value to the front of a list
	// of the property "object". Invalidates all iterators.
	PrependActivityStreamsMove(v ActivityStreamsMove)
	// PrependActivityStreamsNote prepends a Note value to the front of a list
	// of the property "object". Invalidates all iterators.
	PrependActivityStreamsNote(v ActivityStreamsNote)
	// PrependActivityStreamsObject prepends a Object value to the front of a
	// list of the property "object". Invalidates all iterators.
	PrependActivityStreamsObject(v ActivityStreamsObject)
	// PrependActivityStreamsOffer prepends a Offer value to the front of a
	// list of the property "object". Invalidates all iterators.
	PrependActivityStreamsOffer(v ActivityStreamsOffer)
	// PrependActivityStreamsOrderedCollection prepends a OrderedCollection
	// value to the front of a list of the property "object". Invalidates
	// all iterators.
	PrependActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// PrependActivityStreamsOrderedCollectionPage prepends a
	// OrderedCollectionPage value to the front of a list of the property
	// "object". Invalidates all iterators.
	PrependActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// PrependActivityStreamsOrganization prepends a Organization value to the
	// front of a list of the property "object". Invalidates all iterators.
	PrependActivityStreamsOrganization(v ActivityStreamsOrganization)
	// PrependActivityStreamsPage prepends a Page value to the front of a list
	// of the property "object". Invalidates all iterators.
	PrependActivityStreamsPage(v ActivityStreamsPage)
	// PrependActivityStreamsPerson prepends a Person value to the front of a
	// list of the property "object". Invalidates all iterators.
	PrependActivityStreamsPerson(v ActivityStreamsPerson)
	// PrependActivityStreamsPlace prepends a Place value to the front of a
	// list of the property "object". Invalidates all iterators.
	PrependActivityStreamsPlace(v ActivityStreamsPlace)
	// PrependActivityStreamsProfile prepends a Profile value to the front of
	// a list of the property "object". Invalidates all iterators.
	PrependActivityStreamsProfile(v ActivityStreamsProfile)
	// PrependActivityStreamsQuestion prepends a Question value to the front
	// of a list of the property "object". Invalidates all iterators.
	PrependActivityStreamsQuestion(v ActivityStreamsQuestion)
	// PrependActivityStreamsRead prepends a Read value to the front of a list
	// of the property "object". Invalidates all iterators.
	PrependActivityStreamsRead(v ActivityStreamsRead)
	// PrependActivityStreamsReject prepends a Reject value to the front of a
	// list of the property "object". Invalidates all iterators.
	PrependActivityStreamsReject(v ActivityStreamsReject)
	// PrependActivityStreamsRelationship prepends a Relationship value to the
	// front of a list of the property "object". Invalidates all iterators.
	PrependActivityStreamsRelationship(v ActivityStreamsRelationship)
	// PrependActivityStreamsRemove prepends a Remove value to the front of a
	// list of the property "object". Invalidates all iterators.
	PrependActivityStreamsRemove(v ActivityStreamsRemove)
	// PrependActivityStreamsService prepends a Service value to the front of
	// a list of the property "object". Invalidates all iterators.
	PrependActivityStreamsService(v ActivityStreamsService)
	// PrependActivityStreamsTentativeAccept prepends a TentativeAccept value
	// to the front of a list of the property "object". Invalidates all
	// iterators.
	PrependActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// PrependActivityStreamsTentativeReject prepends a TentativeReject value
	// to the front of a list of the property "object". Invalidates all
	// iterators.
	PrependActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// PrependActivityStreamsTombstone prepends a Tombstone value to the front
	// of a list of the property "object". Invalidates all iterators.
	PrependActivityStreamsTombstone(v ActivityStreamsTombstone)
	// PrependActivityStreamsTravel prepends a Travel value to the front of a
	// list of the property "object". Invalidates all iterators.
	PrependActivityStreamsTravel(v ActivityStreamsTravel)
	// PrependActivityStreamsUndo prepends a Undo value to the front of a list
	// of the property "object". Invalidates all iterators.
	PrependActivityStreamsUndo(v ActivityStreamsUndo)
	// PrependActivityStreamsUpdate prepends a Update value to the front of a
	// list of the property "object". Invalidates all iterators.
	PrependActivityStreamsUpdate(v ActivityStreamsUpdate)
	// PrependActivityStreamsVideo prepends a Video value to the front of a
	// list of the property "object". Invalidates all iterators.
	PrependActivityStreamsVideo(v ActivityStreamsVideo)
	// PrependActivityStreamsView prepends a View value to the front of a list
	// of the property "object". Invalidates all iterators.
	PrependActivityStreamsView(v ActivityStreamsView)
	// PrependForgeFedBranch prepends a Branch value to the front of a list of
	// the property "object". Invalidates all iterators.
	PrependForgeFedBranch(v ForgeFedBranch)
	// PrependForgeFedCommit prepends a Commit value to the front of a list of
	// the property "object". Invalidates all iterators.
	PrependForgeFedCommit(v ForgeFedCommit)
	// PrependForgeFedPush prepends a Push value to the front of a list of the
	// property "object". Invalidates all iterators.
	PrependForgeFedPush(v ForgeFedPush)
	// PrependForgeFedRepository prepends a Repository value to the front of a
	// list of the property "object". Invalidates all iterators.
	PrependForgeFedRepository(v ForgeFedRepository)
	// PrependForgeFedTicket prepends a Ticket value to the front of a list of
	// the property "object". Invalidates all iterators.
	PrependForgeFedTicket(v ForgeFedTicket)
	// PrependForgeFedTicketDependency prepends a TicketDependency value to
	// the front of a list of the property "object". Invalidates all
	// iterators.
	PrependForgeFedTicketDependency(v ForgeFedTicketDependency)
	// PrependIRI prepends an IRI value to the front of a list of the property
	// "object".
	PrependIRI(v *url.URL)
	// PrependTootEmoji prepends a Emoji value to the front of a list of the
	// property "object". Invalidates all iterators.
	PrependTootEmoji(v TootEmoji)
	// PrependTootIdentityProof prepends a IdentityProof value to the front of
	// a list of the property "object". Invalidates all iterators.
	PrependTootIdentityProof(v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "object". Invalidates all iterators. Returns an error
	// if the type is not a valid one to set for this property.
	PrependType(t Type) error
	// Remove deletes an element at the specified index from a list of the
	// property "object", regardless of its type. Panics if the index is
	// out of bounds. Invalidates all iterators.
	Remove(idx int)
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// SetActivityStreamsAccept sets a Accept value to be at the specified
	// index for the property "object". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsAccept(idx int, v ActivityStreamsAccept)
	// SetActivityStreamsActivity sets a Activity value to be at the specified
	// index for the property "object". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsActivity(idx int, v ActivityStreamsActivity)
	// SetActivityStreamsAdd sets a Add value to be at the specified index for
	// the property "object". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsAdd(idx int, v ActivityStreamsAdd)
	// SetActivityStreamsAnnounce sets a Announce value to be at the specified
	// index for the property "object". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsAnnounce(idx int, v ActivityStreamsAnnounce)
	// SetActivityStreamsApplication sets a Application value to be at the
	// specified index for the property "object". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsApplication(idx int, v ActivityStreamsApplication)
	// SetActivityStreamsArrive sets a Arrive value to be at the specified
	// index for the property "object". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsArrive(idx int, v ActivityStreamsArrive)
	// SetActivityStreamsArticle sets a Article value to be at the specified
	// index for the property "object". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsArticle(idx int, v ActivityStreamsArticle)
	// SetActivityStreamsAudio sets a Audio value to be at the specified index
	// for the property "object". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsAudio(idx int, v ActivityStreamsAudio)
	// SetActivityStreamsBlock sets a Block value to be at the specified index
	// for the property "object". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsBlock(idx int, v ActivityStreamsBlock)
	// SetActivityStreamsCollection sets a Collection value to be at the
	// specified index for the property "object". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsCollection(idx int, v ActivityStreamsCollection)
	// SetActivityStreamsCollectionPage sets a CollectionPage value to be at
	// the specified index for the property "object". Panics if the index
	// is out of bounds. Invalidates all iterators.
	SetActivityStreamsCollectionPage(idx int, v ActivityStreamsCollectionPage)
	// SetActivityStreamsCreate sets a Create value to be at the specified
	// index for the property "object". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsCreate(idx int, v ActivityStreamsCreate)
	// SetActivityStreamsDelete sets a Delete value to be at the specified
	// index for the property "object". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsDelete(idx int, v ActivityStreamsDelete)
	// SetActivityStreamsDislike sets a Dislike value to be at the specified
	// index for the property "object". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsDislike(idx int, v ActivityStreamsDislike)
	// SetActivityStreamsDocument sets a Document value to be at the specified
	// index for the property "object". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsDocument(idx int, v ActivityStreamsDocument)
	// SetActivityStreamsEvent sets a Event value to be at the specified index
	// for the property "object". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsEvent(idx int, v ActivityStreamsEvent)
	// SetActivityStreamsFlag sets a Flag value to be at the specified index
	// for the property "object". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsFlag(idx int, v ActivityStreamsFlag)
	// SetActivityStreamsFollow sets a Follow value to be at the specified
	// index for the property "object". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsFollow(idx int, v ActivityStreamsFollow)
	// SetActivityStreamsGroup sets a Group value to be at the specified index
	// for the property "object". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsGroup(idx int, v ActivityStreamsGroup)
	// SetActivityStreamsIgnore sets a Ignore value to be at the specified
	// index for the property "object". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsIgnore(idx int, v ActivityStreamsIgnore)
	// SetActivityStreamsImage sets a Image value to be at the specified index
	// for the property "object". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsImage(idx int, v ActivityStreamsImage)
	// SetActivityStreamsIntransitiveActivity sets a IntransitiveActivity
	// value to be at the specified index for the property "object".
	// Panics if the index is out of bounds. Invalidates all iterators.
	SetActivityStreamsIntransitiveActivity(idx int, v ActivityStreamsIntransitiveActivity)
	// SetActivityStreamsInvite sets a Invite value to be at the specified
	// index for the property "object". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsInvite(idx int, v ActivityStreamsInvite)
	// SetActivityStreamsJoin sets a Join value to be at the specified index
	// for the property "object". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsJoin(idx int, v ActivityStreamsJoin)
	// SetActivityStreamsLeave sets a Leave value to be at the specified index
	// for the property "object". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsLeave(idx int, v ActivityStreamsLeave)
	// SetActivityStreamsLike sets a Like value to be at the specified index
	// for the property "object". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsLike(idx int, v ActivityStreamsLike)
	// SetActivityStreamsLink sets a Link value to be at the specified index
	// for the property "object". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsLink(idx int, v ActivityStreamsLink)
	// SetActivityStreamsListen sets a Listen value to be at the specified
	// index for the property "object". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsListen(idx int, v ActivityStreamsListen)
	// SetActivityStreamsMention sets a Mention value to be at the specified
	// index for the property "object". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsMention(idx int, v ActivityStreamsMention)
	// SetActivityStreamsMove sets a Move value to be at the specified index
	// for the property "object". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsMove(idx int, v ActivityStreamsMove)
	// SetActivityStreamsNote sets a Note value to be at the specified index
	// for the property "object". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsNote(idx int, v ActivityStreamsNote)
	// SetActivityStreamsObject sets a Object value to be at the specified
	// index for the property "object". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsObject(idx int, v ActivityStreamsObject)
	// SetActivityStreamsOffer sets a Offer value to be at the specified index
	// for the property "object". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsOffer(idx int, v ActivityStreamsOffer)
	// SetActivityStreamsOrderedCollection sets a OrderedCollection value to
	// be at the specified index for the property "object". Panics if the
	// index is out of bounds. Invalidates all iterators.
	SetActivityStreamsOrderedCollection(idx int, v ActivityStreamsOrderedCollection)
	// SetActivityStreamsOrderedCollectionPage sets a OrderedCollectionPage
	// value to be at the specified index for the property "object".
	// Panics if the index is out of bounds. Invalidates all iterators.
	SetActivityStreamsOrderedCollectionPage(idx int, v ActivityStreamsOrderedCollectionPage)
	// SetActivityStreamsOrganization sets a Organization value to be at the
	// specified index for the property "object". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsOrganization(idx int, v ActivityStreamsOrganization)
	// SetActivityStreamsPage sets a Page value to be at the specified index
	// for the property "object". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsPage(idx int, v ActivityStreamsPage)
	// SetActivityStreamsPerson sets a Person value to be at the specified
	// index for the property "object". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsPerson(idx int, v ActivityStreamsPerson)
	// SetActivityStreamsPlace sets a Place value to be at the specified index
	// for the property "object". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsPlace(idx int, v ActivityStreamsPlace)
	// SetActivityStreamsProfile sets a Profile value to be at the specified
	// index for the property "object". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsProfile(idx int, v ActivityStreamsProfile)
	// SetActivityStreamsQuestion sets a Question value to be at the specified
	// index for the property "object". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsQuestion(idx int, v ActivityStreamsQuestion)
	// SetActivityStreamsRead sets a Read value to be at the specified index
	// for the property "object". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsRead(idx int, v ActivityStreamsRead)
	// SetActivityStreamsReject sets a Reject value to be at the specified
	// index for the property "object". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsReject(idx int, v ActivityStreamsReject)
	// SetActivityStreamsRelationship sets a Relationship value to be at the
	// specified index for the property "object". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsRelationship(idx int, v ActivityStreamsRelationship)
	// SetActivityStreamsRemove sets a Remove value to be at the specified
	// index for the property "object". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsRemove(idx int, v ActivityStreamsRemove)
	// SetActivityStreamsService sets a Service value to be at the specified
	// index for the property "object". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsService(idx int, v ActivityStreamsService)
	// SetActivityStreamsTentativeAccept sets a TentativeAccept value to be at
	// the specified index for the property "object". Panics if the index
	// is out of bounds. Invalidates all iterators.
	SetActivityStreamsTentativeAccept(idx int, v ActivityStreamsTentativeAccept)
	// SetActivityStreamsTentativeReject sets a TentativeReject value to be at
	// the specified index for the property "object". Panics if the index
	// is out of bounds. Invalidates all iterators.
	SetActivityStreamsTentativeReject(idx int, v ActivityStreamsTentativeReject)
	// SetActivityStreamsTombstone sets a Tombstone value to be at the
	// specified index for the property "object". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsTombstone(idx int, v ActivityStreamsTombstone)
	// SetActivityStreamsTravel sets a Travel value to be at the specified
	// index for the property "object". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsTravel(idx int, v ActivityStreamsTravel)
	// SetActivityStreamsUndo sets a Undo value to be at the specified index
	// for the property "object". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsUndo(idx int, v ActivityStreamsUndo)
	// SetActivityStreamsUpdate sets a Update value to be at the specified
	// index for the property "object". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsUpdate(idx int, v ActivityStreamsUpdate)
	// SetActivityStreamsVideo sets a Video value to be at the specified index
	// for the property "object". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsVideo(idx int, v ActivityStreamsVideo)
	// SetActivityStreamsView sets a View value to be at the specified index
	// for the property "object". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsView(idx int, v ActivityStreamsView)
	// SetForgeFedBranch sets a Branch value to be at the specified index for
	// the property "object". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedBranch(idx int, v ForgeFedBranch)
	// SetForgeFedCommit sets a Commit value to be at the specified index for
	// the property "object". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedCommit(idx int, v ForgeFedCommit)
	// SetForgeFedPush sets a Push value to be at the specified index for the
	// property "object". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedPush(idx int, v ForgeFedPush)
	// SetForgeFedRepository sets a Repository value to be at the specified
	// index for the property "object". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetForgeFedRepository(idx int, v ForgeFedRepository)
	// SetForgeFedTicket sets a Ticket value to be at the specified index for
	// the property "object". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedTicket(idx int, v ForgeFedTicket)
	// SetForgeFedTicketDependency sets a TicketDependency value to be at the
	// specified index for the property "object". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
	// SetIRI sets an IRI value to be at the specified index for the property
	// "object". Panics if the index is out of bounds.
	SetIRI(idx int, v *url.URL)
	// SetTootEmoji sets a Emoji value to be at the specified index for the
	// property "object". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetTootEmoji(idx int, v TootEmoji)
	// SetTootIdentityProof sets a IdentityProof value to be at the specified
	// index for the property "object". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetTootIdentityProof(idx int, v TootIdentityProof)
	// SetType sets an arbitrary type value to the specified index of the
	// property "object". Invalidates all iterators. Returns an error if
	// the type is not a valid one to set for this property. Panics if the
	// index is out of bounds.
	SetType(idx int, t Type) error
	// Swap swaps the location of values at two indices for the "object"
	// property.
	Swap(i, j int)
}

When used within an Activity, describes the direct object of the activity. For instance, in the activity "John added a movie to his wishlist", the object of the activity is the movie added. When used within a Relationship describes the entity to which the subject is related.

Example 97 (https://www.w3.org/TR/activitystreams-vocabulary/#ex98-jsonld):

{
  "actor": "http://sally.example.org",
  "object": "http://example.org/posts/1",
  "summary": "Sally liked a post",
  "type": "Like"
}

Example 98 (https://www.w3.org/TR/activitystreams-vocabulary/#ex99-jsonld):

{
  "actor": "http://sally.example.org",
  "object": {
    "content": "A simple note",
    "type": "Note"
  },
  "type": "Like"
}

Example 99 (https://www.w3.org/TR/activitystreams-vocabulary/#ex100-jsonld):

{
  "actor": "http://sally.example.org",
  "object": [
    "http://example.org/posts/1",
    {
      "content": "That is a tree.",
      "summary": "A simple note",
      "type": "Note"
    }
  ],
  "summary": "Sally liked a note",
  "type": "Like"
}

type ActivityStreamsObjectPropertyIterator

type ActivityStreamsObjectPropertyIterator interface {
	// GetActivityStreamsAccept returns the value of this property. When
	// IsActivityStreamsAccept returns false, GetActivityStreamsAccept
	// will return an arbitrary value.
	GetActivityStreamsAccept() ActivityStreamsAccept
	// GetActivityStreamsActivity returns the value of this property. When
	// IsActivityStreamsActivity returns false, GetActivityStreamsActivity
	// will return an arbitrary value.
	GetActivityStreamsActivity() ActivityStreamsActivity
	// GetActivityStreamsAdd returns the value of this property. When
	// IsActivityStreamsAdd returns false, GetActivityStreamsAdd will
	// return an arbitrary value.
	GetActivityStreamsAdd() ActivityStreamsAdd
	// GetActivityStreamsAnnounce returns the value of this property. When
	// IsActivityStreamsAnnounce returns false, GetActivityStreamsAnnounce
	// will return an arbitrary value.
	GetActivityStreamsAnnounce() ActivityStreamsAnnounce
	// GetActivityStreamsApplication returns the value of this property. When
	// IsActivityStreamsApplication returns false,
	// GetActivityStreamsApplication will return an arbitrary value.
	GetActivityStreamsApplication() ActivityStreamsApplication
	// GetActivityStreamsArrive returns the value of this property. When
	// IsActivityStreamsArrive returns false, GetActivityStreamsArrive
	// will return an arbitrary value.
	GetActivityStreamsArrive() ActivityStreamsArrive
	// GetActivityStreamsArticle returns the value of this property. When
	// IsActivityStreamsArticle returns false, GetActivityStreamsArticle
	// will return an arbitrary value.
	GetActivityStreamsArticle() ActivityStreamsArticle
	// GetActivityStreamsAudio returns the value of this property. When
	// IsActivityStreamsAudio returns false, GetActivityStreamsAudio will
	// return an arbitrary value.
	GetActivityStreamsAudio() ActivityStreamsAudio
	// GetActivityStreamsBlock returns the value of this property. When
	// IsActivityStreamsBlock returns false, GetActivityStreamsBlock will
	// return an arbitrary value.
	GetActivityStreamsBlock() ActivityStreamsBlock
	// GetActivityStreamsCollection returns the value of this property. When
	// IsActivityStreamsCollection returns false,
	// GetActivityStreamsCollection will return an arbitrary value.
	GetActivityStreamsCollection() ActivityStreamsCollection
	// GetActivityStreamsCollectionPage returns the value of this property.
	// When IsActivityStreamsCollectionPage returns false,
	// GetActivityStreamsCollectionPage will return an arbitrary value.
	GetActivityStreamsCollectionPage() ActivityStreamsCollectionPage
	// GetActivityStreamsCreate returns the value of this property. When
	// IsActivityStreamsCreate returns false, GetActivityStreamsCreate
	// will return an arbitrary value.
	GetActivityStreamsCreate() ActivityStreamsCreate
	// GetActivityStreamsDelete returns the value of this property. When
	// IsActivityStreamsDelete returns false, GetActivityStreamsDelete
	// will return an arbitrary value.
	GetActivityStreamsDelete() ActivityStreamsDelete
	// GetActivityStreamsDislike returns the value of this property. When
	// IsActivityStreamsDislike returns false, GetActivityStreamsDislike
	// will return an arbitrary value.
	GetActivityStreamsDislike() ActivityStreamsDislike
	// GetActivityStreamsDocument returns the value of this property. When
	// IsActivityStreamsDocument returns false, GetActivityStreamsDocument
	// will return an arbitrary value.
	GetActivityStreamsDocument() ActivityStreamsDocument
	// GetActivityStreamsEvent returns the value of this property. When
	// IsActivityStreamsEvent returns false, GetActivityStreamsEvent will
	// return an arbitrary value.
	GetActivityStreamsEvent() ActivityStreamsEvent
	// GetActivityStreamsFlag returns the value of this property. When
	// IsActivityStreamsFlag returns false, GetActivityStreamsFlag will
	// return an arbitrary value.
	GetActivityStreamsFlag() ActivityStreamsFlag
	// GetActivityStreamsFollow returns the value of this property. When
	// IsActivityStreamsFollow returns false, GetActivityStreamsFollow
	// will return an arbitrary value.
	GetActivityStreamsFollow() ActivityStreamsFollow
	// GetActivityStreamsGroup returns the value of this property. When
	// IsActivityStreamsGroup returns false, GetActivityStreamsGroup will
	// return an arbitrary value.
	GetActivityStreamsGroup() ActivityStreamsGroup
	// GetActivityStreamsIgnore returns the value of this property. When
	// IsActivityStreamsIgnore returns false, GetActivityStreamsIgnore
	// will return an arbitrary value.
	GetActivityStreamsIgnore() ActivityStreamsIgnore
	// GetActivityStreamsImage returns the value of this property. When
	// IsActivityStreamsImage returns false, GetActivityStreamsImage will
	// return an arbitrary value.
	GetActivityStreamsImage() ActivityStreamsImage
	// GetActivityStreamsIntransitiveActivity returns the value of this
	// property. When IsActivityStreamsIntransitiveActivity returns false,
	// GetActivityStreamsIntransitiveActivity will return an arbitrary
	// value.
	GetActivityStreamsIntransitiveActivity() ActivityStreamsIntransitiveActivity
	// GetActivityStreamsInvite returns the value of this property. When
	// IsActivityStreamsInvite returns false, GetActivityStreamsInvite
	// will return an arbitrary value.
	GetActivityStreamsInvite() ActivityStreamsInvite
	// GetActivityStreamsJoin returns the value of this property. When
	// IsActivityStreamsJoin returns false, GetActivityStreamsJoin will
	// return an arbitrary value.
	GetActivityStreamsJoin() ActivityStreamsJoin
	// GetActivityStreamsLeave returns the value of this property. When
	// IsActivityStreamsLeave returns false, GetActivityStreamsLeave will
	// return an arbitrary value.
	GetActivityStreamsLeave() ActivityStreamsLeave
	// GetActivityStreamsLike returns the value of this property. When
	// IsActivityStreamsLike returns false, GetActivityStreamsLike will
	// return an arbitrary value.
	GetActivityStreamsLike() ActivityStreamsLike
	// GetActivityStreamsLink returns the value of this property. When
	// IsActivityStreamsLink returns false, GetActivityStreamsLink will
	// return an arbitrary value.
	GetActivityStreamsLink() ActivityStreamsLink
	// GetActivityStreamsListen returns the value of this property. When
	// IsActivityStreamsListen returns false, GetActivityStreamsListen
	// will return an arbitrary value.
	GetActivityStreamsListen() ActivityStreamsListen
	// GetActivityStreamsMention returns the value of this property. When
	// IsActivityStreamsMention returns false, GetActivityStreamsMention
	// will return an arbitrary value.
	GetActivityStreamsMention() ActivityStreamsMention
	// GetActivityStreamsMove returns the value of this property. When
	// IsActivityStreamsMove returns false, GetActivityStreamsMove will
	// return an arbitrary value.
	GetActivityStreamsMove() ActivityStreamsMove
	// GetActivityStreamsNote returns the value of this property. When
	// IsActivityStreamsNote returns false, GetActivityStreamsNote will
	// return an arbitrary value.
	GetActivityStreamsNote() ActivityStreamsNote
	// GetActivityStreamsObject returns the value of this property. When
	// IsActivityStreamsObject returns false, GetActivityStreamsObject
	// will return an arbitrary value.
	GetActivityStreamsObject() ActivityStreamsObject
	// GetActivityStreamsOffer returns the value of this property. When
	// IsActivityStreamsOffer returns false, GetActivityStreamsOffer will
	// return an arbitrary value.
	GetActivityStreamsOffer() ActivityStreamsOffer
	// GetActivityStreamsOrderedCollection returns the value of this property.
	// When IsActivityStreamsOrderedCollection returns false,
	// GetActivityStreamsOrderedCollection will return an arbitrary value.
	GetActivityStreamsOrderedCollection() ActivityStreamsOrderedCollection
	// GetActivityStreamsOrderedCollectionPage returns the value of this
	// property. When IsActivityStreamsOrderedCollectionPage returns
	// false, GetActivityStreamsOrderedCollectionPage will return an
	// arbitrary value.
	GetActivityStreamsOrderedCollectionPage() ActivityStreamsOrderedCollectionPage
	// GetActivityStreamsOrganization returns the value of this property. When
	// IsActivityStreamsOrganization returns false,
	// GetActivityStreamsOrganization will return an arbitrary value.
	GetActivityStreamsOrganization() ActivityStreamsOrganization
	// GetActivityStreamsPage returns the value of this property. When
	// IsActivityStreamsPage returns false, GetActivityStreamsPage will
	// return an arbitrary value.
	GetActivityStreamsPage() ActivityStreamsPage
	// GetActivityStreamsPerson returns the value of this property. When
	// IsActivityStreamsPerson returns false, GetActivityStreamsPerson
	// will return an arbitrary value.
	GetActivityStreamsPerson() ActivityStreamsPerson
	// GetActivityStreamsPlace returns the value of this property. When
	// IsActivityStreamsPlace returns false, GetActivityStreamsPlace will
	// return an arbitrary value.
	GetActivityStreamsPlace() ActivityStreamsPlace
	// GetActivityStreamsProfile returns the value of this property. When
	// IsActivityStreamsProfile returns false, GetActivityStreamsProfile
	// will return an arbitrary value.
	GetActivityStreamsProfile() ActivityStreamsProfile
	// GetActivityStreamsQuestion returns the value of this property. When
	// IsActivityStreamsQuestion returns false, GetActivityStreamsQuestion
	// will return an arbitrary value.
	GetActivityStreamsQuestion() ActivityStreamsQuestion
	// GetActivityStreamsRead returns the value of this property. When
	// IsActivityStreamsRead returns false, GetActivityStreamsRead will
	// return an arbitrary value.
	GetActivityStreamsRead() ActivityStreamsRead
	// GetActivityStreamsReject returns the value of this property. When
	// IsActivityStreamsReject returns false, GetActivityStreamsReject
	// will return an arbitrary value.
	GetActivityStreamsReject() ActivityStreamsReject
	// GetActivityStreamsRelationship returns the value of this property. When
	// IsActivityStreamsRelationship returns false,
	// GetActivityStreamsRelationship will return an arbitrary value.
	GetActivityStreamsRelationship() ActivityStreamsRelationship
	// GetActivityStreamsRemove returns the value of this property. When
	// IsActivityStreamsRemove returns false, GetActivityStreamsRemove
	// will return an arbitrary value.
	GetActivityStreamsRemove() ActivityStreamsRemove
	// GetActivityStreamsService returns the value of this property. When
	// IsActivityStreamsService returns false, GetActivityStreamsService
	// will return an arbitrary value.
	GetActivityStreamsService() ActivityStreamsService
	// GetActivityStreamsTentativeAccept returns the value of this property.
	// When IsActivityStreamsTentativeAccept returns false,
	// GetActivityStreamsTentativeAccept will return an arbitrary value.
	GetActivityStreamsTentativeAccept() ActivityStreamsTentativeAccept
	// GetActivityStreamsTentativeReject returns the value of this property.
	// When IsActivityStreamsTentativeReject returns false,
	// GetActivityStreamsTentativeReject will return an arbitrary value.
	GetActivityStreamsTentativeReject() ActivityStreamsTentativeReject
	// GetActivityStreamsTombstone returns the value of this property. When
	// IsActivityStreamsTombstone returns false,
	// GetActivityStreamsTombstone will return an arbitrary value.
	GetActivityStreamsTombstone() ActivityStreamsTombstone
	// GetActivityStreamsTravel returns the value of this property. When
	// IsActivityStreamsTravel returns false, GetActivityStreamsTravel
	// will return an arbitrary value.
	GetActivityStreamsTravel() ActivityStreamsTravel
	// GetActivityStreamsUndo returns the value of this property. When
	// IsActivityStreamsUndo returns false, GetActivityStreamsUndo will
	// return an arbitrary value.
	GetActivityStreamsUndo() ActivityStreamsUndo
	// GetActivityStreamsUpdate returns the value of this property. When
	// IsActivityStreamsUpdate returns false, GetActivityStreamsUpdate
	// will return an arbitrary value.
	GetActivityStreamsUpdate() ActivityStreamsUpdate
	// GetActivityStreamsVideo returns the value of this property. When
	// IsActivityStreamsVideo returns false, GetActivityStreamsVideo will
	// return an arbitrary value.
	GetActivityStreamsVideo() ActivityStreamsVideo
	// GetActivityStreamsView returns the value of this property. When
	// IsActivityStreamsView returns false, GetActivityStreamsView will
	// return an arbitrary value.
	GetActivityStreamsView() ActivityStreamsView
	// GetForgeFedBranch returns the value of this property. When
	// IsForgeFedBranch returns false, GetForgeFedBranch will return an
	// arbitrary value.
	GetForgeFedBranch() ForgeFedBranch
	// GetForgeFedCommit returns the value of this property. When
	// IsForgeFedCommit returns false, GetForgeFedCommit will return an
	// arbitrary value.
	GetForgeFedCommit() ForgeFedCommit
	// GetForgeFedPush returns the value of this property. When IsForgeFedPush
	// returns false, GetForgeFedPush will return an arbitrary value.
	GetForgeFedPush() ForgeFedPush
	// GetForgeFedRepository returns the value of this property. When
	// IsForgeFedRepository returns false, GetForgeFedRepository will
	// return an arbitrary value.
	GetForgeFedRepository() ForgeFedRepository
	// GetForgeFedTicket returns the value of this property. When
	// IsForgeFedTicket returns false, GetForgeFedTicket will return an
	// arbitrary value.
	GetForgeFedTicket() ForgeFedTicket
	// GetForgeFedTicketDependency returns the value of this property. When
	// IsForgeFedTicketDependency returns false,
	// GetForgeFedTicketDependency will return an arbitrary value.
	GetForgeFedTicketDependency() ForgeFedTicketDependency
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return an arbitrary value.
	GetIRI() *url.URL
	// GetTootEmoji returns the value of this property. When IsTootEmoji
	// returns false, GetTootEmoji will return an arbitrary value.
	GetTootEmoji() TootEmoji
	// GetTootIdentityProof returns the value of this property. When
	// IsTootIdentityProof returns false, GetTootIdentityProof will return
	// an arbitrary value.
	GetTootIdentityProof() TootIdentityProof
	// GetType returns the value in this property as a Type. Returns nil if
	// the value is not an ActivityStreams type, such as an IRI or another
	// value.
	GetType() Type
	// HasAny returns true if any of the different values is set.
	HasAny() bool
	// IsActivityStreamsAccept returns true if this property has a type of
	// "Accept". When true, use the GetActivityStreamsAccept and
	// SetActivityStreamsAccept methods to access and set this property.
	IsActivityStreamsAccept() bool
	// IsActivityStreamsActivity returns true if this property has a type of
	// "Activity". When true, use the GetActivityStreamsActivity and
	// SetActivityStreamsActivity methods to access and set this property.
	IsActivityStreamsActivity() bool
	// IsActivityStreamsAdd returns true if this property has a type of "Add".
	// When true, use the GetActivityStreamsAdd and SetActivityStreamsAdd
	// methods to access and set this property.
	IsActivityStreamsAdd() bool
	// IsActivityStreamsAnnounce returns true if this property has a type of
	// "Announce". When true, use the GetActivityStreamsAnnounce and
	// SetActivityStreamsAnnounce methods to access and set this property.
	IsActivityStreamsAnnounce() bool
	// IsActivityStreamsApplication returns true if this property has a type
	// of "Application". When true, use the GetActivityStreamsApplication
	// and SetActivityStreamsApplication methods to access and set this
	// property.
	IsActivityStreamsApplication() bool
	// IsActivityStreamsArrive returns true if this property has a type of
	// "Arrive". When true, use the GetActivityStreamsArrive and
	// SetActivityStreamsArrive methods to access and set this property.
	IsActivityStreamsArrive() bool
	// IsActivityStreamsArticle returns true if this property has a type of
	// "Article". When true, use the GetActivityStreamsArticle and
	// SetActivityStreamsArticle methods to access and set this property.
	IsActivityStreamsArticle() bool
	// IsActivityStreamsAudio returns true if this property has a type of
	// "Audio". When true, use the GetActivityStreamsAudio and
	// SetActivityStreamsAudio methods to access and set this property.
	IsActivityStreamsAudio() bool
	// IsActivityStreamsBlock returns true if this property has a type of
	// "Block". When true, use the GetActivityStreamsBlock and
	// SetActivityStreamsBlock methods to access and set this property.
	IsActivityStreamsBlock() bool
	// IsActivityStreamsCollection returns true if this property has a type of
	// "Collection". When true, use the GetActivityStreamsCollection and
	// SetActivityStreamsCollection methods to access and set this
	// property.
	IsActivityStreamsCollection() bool
	// IsActivityStreamsCollectionPage returns true if this property has a
	// type of "CollectionPage". When true, use the
	// GetActivityStreamsCollectionPage and
	// SetActivityStreamsCollectionPage methods to access and set this
	// property.
	IsActivityStreamsCollectionPage() bool
	// IsActivityStreamsCreate returns true if this property has a type of
	// "Create". When true, use the GetActivityStreamsCreate and
	// SetActivityStreamsCreate methods to access and set this property.
	IsActivityStreamsCreate() bool
	// IsActivityStreamsDelete returns true if this property has a type of
	// "Delete". When true, use the GetActivityStreamsDelete and
	// SetActivityStreamsDelete methods to access and set this property.
	IsActivityStreamsDelete() bool
	// IsActivityStreamsDislike returns true if this property has a type of
	// "Dislike". When true, use the GetActivityStreamsDislike and
	// SetActivityStreamsDislike methods to access and set this property.
	IsActivityStreamsDislike() bool
	// IsActivityStreamsDocument returns true if this property has a type of
	// "Document". When true, use the GetActivityStreamsDocument and
	// SetActivityStreamsDocument methods to access and set this property.
	IsActivityStreamsDocument() bool
	// IsActivityStreamsEvent returns true if this property has a type of
	// "Event". When true, use the GetActivityStreamsEvent and
	// SetActivityStreamsEvent methods to access and set this property.
	IsActivityStreamsEvent() bool
	// IsActivityStreamsFlag returns true if this property has a type of
	// "Flag". When true, use the GetActivityStreamsFlag and
	// SetActivityStreamsFlag methods to access and set this property.
	IsActivityStreamsFlag() bool
	// IsActivityStreamsFollow returns true if this property has a type of
	// "Follow". When true, use the GetActivityStreamsFollow and
	// SetActivityStreamsFollow methods to access and set this property.
	IsActivityStreamsFollow() bool
	// IsActivityStreamsGroup returns true if this property has a type of
	// "Group". When true, use the GetActivityStreamsGroup and
	// SetActivityStreamsGroup methods to access and set this property.
	IsActivityStreamsGroup() bool
	// IsActivityStreamsIgnore returns true if this property has a type of
	// "Ignore". When true, use the GetActivityStreamsIgnore and
	// SetActivityStreamsIgnore methods to access and set this property.
	IsActivityStreamsIgnore() bool
	// IsActivityStreamsImage returns true if this property has a type of
	// "Image". When true, use the GetActivityStreamsImage and
	// SetActivityStreamsImage methods to access and set this property.
	IsActivityStreamsImage() bool
	// IsActivityStreamsIntransitiveActivity returns true if this property has
	// a type of "IntransitiveActivity". When true, use the
	// GetActivityStreamsIntransitiveActivity and
	// SetActivityStreamsIntransitiveActivity methods to access and set
	// this property.
	IsActivityStreamsIntransitiveActivity() bool
	// IsActivityStreamsInvite returns true if this property has a type of
	// "Invite". When true, use the GetActivityStreamsInvite and
	// SetActivityStreamsInvite methods to access and set this property.
	IsActivityStreamsInvite() bool
	// IsActivityStreamsJoin returns true if this property has a type of
	// "Join". When true, use the GetActivityStreamsJoin and
	// SetActivityStreamsJoin methods to access and set this property.
	IsActivityStreamsJoin() bool
	// IsActivityStreamsLeave returns true if this property has a type of
	// "Leave". When true, use the GetActivityStreamsLeave and
	// SetActivityStreamsLeave methods to access and set this property.
	IsActivityStreamsLeave() bool
	// IsActivityStreamsLike returns true if this property has a type of
	// "Like". When true, use the GetActivityStreamsLike and
	// SetActivityStreamsLike methods to access and set this property.
	IsActivityStreamsLike() bool
	// IsActivityStreamsLink returns true if this property has a type of
	// "Link". When true, use the GetActivityStreamsLink and
	// SetActivityStreamsLink methods to access and set this property.
	IsActivityStreamsLink() bool
	// IsActivityStreamsListen returns true if this property has a type of
	// "Listen". When true, use the GetActivityStreamsListen and
	// SetActivityStreamsListen methods to access and set this property.
	IsActivityStreamsListen() bool
	// IsActivityStreamsMention returns true if this property has a type of
	// "Mention". When true, use the GetActivityStreamsMention and
	// SetActivityStreamsMention methods to access and set this property.
	IsActivityStreamsMention() bool
	// IsActivityStreamsMove returns true if this property has a type of
	// "Move". When true, use the GetActivityStreamsMove and
	// SetActivityStreamsMove methods to access and set this property.
	IsActivityStreamsMove() bool
	// IsActivityStreamsNote returns true if this property has a type of
	// "Note". When true, use the GetActivityStreamsNote and
	// SetActivityStreamsNote methods to access and set this property.
	IsActivityStreamsNote() bool
	// IsActivityStreamsObject returns true if this property has a type of
	// "Object". When true, use the GetActivityStreamsObject and
	// SetActivityStreamsObject methods to access and set this property.
	IsActivityStreamsObject() bool
	// IsActivityStreamsOffer returns true if this property has a type of
	// "Offer". When true, use the GetActivityStreamsOffer and
	// SetActivityStreamsOffer methods to access and set this property.
	IsActivityStreamsOffer() bool
	// IsActivityStreamsOrderedCollection returns true if this property has a
	// type of "OrderedCollection". When true, use the
	// GetActivityStreamsOrderedCollection and
	// SetActivityStreamsOrderedCollection methods to access and set this
	// property.
	IsActivityStreamsOrderedCollection() bool
	// IsActivityStreamsOrderedCollectionPage returns true if this property
	// has a type of "OrderedCollectionPage". When true, use the
	// GetActivityStreamsOrderedCollectionPage and
	// SetActivityStreamsOrderedCollectionPage methods to access and set
	// this property.
	IsActivityStreamsOrderedCollectionPage() bool
	// IsActivityStreamsOrganization returns true if this property has a type
	// of "Organization". When true, use the
	// GetActivityStreamsOrganization and SetActivityStreamsOrganization
	// methods to access and set this property.
	IsActivityStreamsOrganization() bool
	// IsActivityStreamsPage returns true if this property has a type of
	// "Page". When true, use the GetActivityStreamsPage and
	// SetActivityStreamsPage methods to access and set this property.
	IsActivityStreamsPage() bool
	// IsActivityStreamsPerson returns true if this property has a type of
	// "Person". When true, use the GetActivityStreamsPerson and
	// SetActivityStreamsPerson methods to access and set this property.
	IsActivityStreamsPerson() bool
	// IsActivityStreamsPlace returns true if this property has a type of
	// "Place". When true, use the GetActivityStreamsPlace and
	// SetActivityStreamsPlace methods to access and set this property.
	IsActivityStreamsPlace() bool
	// IsActivityStreamsProfile returns true if this property has a type of
	// "Profile". When true, use the GetActivityStreamsProfile and
	// SetActivityStreamsProfile methods to access and set this property.
	IsActivityStreamsProfile() bool
	// IsActivityStreamsQuestion returns true if this property has a type of
	// "Question". When true, use the GetActivityStreamsQuestion and
	// SetActivityStreamsQuestion methods to access and set this property.
	IsActivityStreamsQuestion() bool
	// IsActivityStreamsRead returns true if this property has a type of
	// "Read". When true, use the GetActivityStreamsRead and
	// SetActivityStreamsRead methods to access and set this property.
	IsActivityStreamsRead() bool
	// IsActivityStreamsReject returns true if this property has a type of
	// "Reject". When true, use the GetActivityStreamsReject and
	// SetActivityStreamsReject methods to access and set this property.
	IsActivityStreamsReject() bool
	// IsActivityStreamsRelationship returns true if this property has a type
	// of "Relationship". When true, use the
	// GetActivityStreamsRelationship and SetActivityStreamsRelationship
	// methods to access and set this property.
	IsActivityStreamsRelationship() bool
	// IsActivityStreamsRemove returns true if this property has a type of
	// "Remove". When true, use the GetActivityStreamsRemove and
	// SetActivityStreamsRemove methods to access and set this property.
	IsActivityStreamsRemove() bool
	// IsActivityStreamsService returns true if this property has a type of
	// "Service". When true, use the GetActivityStreamsService and
	// SetActivityStreamsService methods to access and set this property.
	IsActivityStreamsService() bool
	// IsActivityStreamsTentativeAccept returns true if this property has a
	// type of "TentativeAccept". When true, use the
	// GetActivityStreamsTentativeAccept and
	// SetActivityStreamsTentativeAccept methods to access and set this
	// property.
	IsActivityStreamsTentativeAccept() bool
	// IsActivityStreamsTentativeReject returns true if this property has a
	// type of "TentativeReject". When true, use the
	// GetActivityStreamsTentativeReject and
	// SetActivityStreamsTentativeReject methods to access and set this
	// property.
	IsActivityStreamsTentativeReject() bool
	// IsActivityStreamsTombstone returns true if this property has a type of
	// "Tombstone". When true, use the GetActivityStreamsTombstone and
	// SetActivityStreamsTombstone methods to access and set this property.
	IsActivityStreamsTombstone() bool
	// IsActivityStreamsTravel returns true if this property has a type of
	// "Travel". When true, use the GetActivityStreamsTravel and
	// SetActivityStreamsTravel methods to access and set this property.
	IsActivityStreamsTravel() bool
	// IsActivityStreamsUndo returns true if this property has a type of
	// "Undo". When true, use the GetActivityStreamsUndo and
	// SetActivityStreamsUndo methods to access and set this property.
	IsActivityStreamsUndo() bool
	// IsActivityStreamsUpdate returns true if this property has a type of
	// "Update". When true, use the GetActivityStreamsUpdate and
	// SetActivityStreamsUpdate methods to access and set this property.
	IsActivityStreamsUpdate() bool
	// IsActivityStreamsVideo returns true if this property has a type of
	// "Video". When true, use the GetActivityStreamsVideo and
	// SetActivityStreamsVideo methods to access and set this property.
	IsActivityStreamsVideo() bool
	// IsActivityStreamsView returns true if this property has a type of
	// "View". When true, use the GetActivityStreamsView and
	// SetActivityStreamsView methods to access and set this property.
	IsActivityStreamsView() bool
	// IsForgeFedBranch returns true if this property has a type of "Branch".
	// When true, use the GetForgeFedBranch and SetForgeFedBranch methods
	// to access and set this property.
	IsForgeFedBranch() bool
	// IsForgeFedCommit returns true if this property has a type of "Commit".
	// When true, use the GetForgeFedCommit and SetForgeFedCommit methods
	// to access and set this property.
	IsForgeFedCommit() bool
	// IsForgeFedPush returns true if this property has a type of "Push". When
	// true, use the GetForgeFedPush and SetForgeFedPush methods to access
	// and set this property.
	IsForgeFedPush() bool
	// IsForgeFedRepository returns true if this property has a type of
	// "Repository". When true, use the GetForgeFedRepository and
	// SetForgeFedRepository methods to access and set this property.
	IsForgeFedRepository() bool
	// IsForgeFedTicket returns true if this property has a type of "Ticket".
	// When true, use the GetForgeFedTicket and SetForgeFedTicket methods
	// to access and set this property.
	IsForgeFedTicket() bool
	// IsForgeFedTicketDependency returns true if this property has a type of
	// "TicketDependency". When true, use the GetForgeFedTicketDependency
	// and SetForgeFedTicketDependency methods to access and set this
	// property.
	IsForgeFedTicketDependency() bool
	// IsIRI returns true if this property is an IRI. When true, use GetIRI
	// and SetIRI to access and set this property
	IsIRI() bool
	// IsTootEmoji returns true if this property has a type of "Emoji". When
	// true, use the GetTootEmoji and SetTootEmoji methods to access and
	// set this property.
	IsTootEmoji() bool
	// IsTootIdentityProof returns true if this property has a type of
	// "IdentityProof". When true, use the GetTootIdentityProof and
	// SetTootIdentityProof methods to access and set this property.
	IsTootIdentityProof() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsObjectPropertyIterator) bool
	// Name returns the name of this property: "ActivityStreamsObject".
	Name() string
	// Next returns the next iterator, or nil if there is no next iterator.
	Next() ActivityStreamsObjectPropertyIterator
	// Prev returns the previous iterator, or nil if there is no previous
	// iterator.
	Prev() ActivityStreamsObjectPropertyIterator
	// SetActivityStreamsAccept sets the value of this property. Calling
	// IsActivityStreamsAccept afterwards returns true.
	SetActivityStreamsAccept(v ActivityStreamsAccept)
	// SetActivityStreamsActivity sets the value of this property. Calling
	// IsActivityStreamsActivity afterwards returns true.
	SetActivityStreamsActivity(v ActivityStreamsActivity)
	// SetActivityStreamsAdd sets the value of this property. Calling
	// IsActivityStreamsAdd afterwards returns true.
	SetActivityStreamsAdd(v ActivityStreamsAdd)
	// SetActivityStreamsAnnounce sets the value of this property. Calling
	// IsActivityStreamsAnnounce afterwards returns true.
	SetActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// SetActivityStreamsApplication sets the value of this property. Calling
	// IsActivityStreamsApplication afterwards returns true.
	SetActivityStreamsApplication(v ActivityStreamsApplication)
	// SetActivityStreamsArrive sets the value of this property. Calling
	// IsActivityStreamsArrive afterwards returns true.
	SetActivityStreamsArrive(v ActivityStreamsArrive)
	// SetActivityStreamsArticle sets the value of this property. Calling
	// IsActivityStreamsArticle afterwards returns true.
	SetActivityStreamsArticle(v ActivityStreamsArticle)
	// SetActivityStreamsAudio sets the value of this property. Calling
	// IsActivityStreamsAudio afterwards returns true.
	SetActivityStreamsAudio(v ActivityStreamsAudio)
	// SetActivityStreamsBlock sets the value of this property. Calling
	// IsActivityStreamsBlock afterwards returns true.
	SetActivityStreamsBlock(v ActivityStreamsBlock)
	// SetActivityStreamsCollection sets the value of this property. Calling
	// IsActivityStreamsCollection afterwards returns true.
	SetActivityStreamsCollection(v ActivityStreamsCollection)
	// SetActivityStreamsCollectionPage sets the value of this property.
	// Calling IsActivityStreamsCollectionPage afterwards returns true.
	SetActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// SetActivityStreamsCreate sets the value of this property. Calling
	// IsActivityStreamsCreate afterwards returns true.
	SetActivityStreamsCreate(v ActivityStreamsCreate)
	// SetActivityStreamsDelete sets the value of this property. Calling
	// IsActivityStreamsDelete afterwards returns true.
	SetActivityStreamsDelete(v ActivityStreamsDelete)
	// SetActivityStreamsDislike sets the value of this property. Calling
	// IsActivityStreamsDislike afterwards returns true.
	SetActivityStreamsDislike(v ActivityStreamsDislike)
	// SetActivityStreamsDocument sets the value of this property. Calling
	// IsActivityStreamsDocument afterwards returns true.
	SetActivityStreamsDocument(v ActivityStreamsDocument)
	// SetActivityStreamsEvent sets the value of this property. Calling
	// IsActivityStreamsEvent afterwards returns true.
	SetActivityStreamsEvent(v ActivityStreamsEvent)
	// SetActivityStreamsFlag sets the value of this property. Calling
	// IsActivityStreamsFlag afterwards returns true.
	SetActivityStreamsFlag(v ActivityStreamsFlag)
	// SetActivityStreamsFollow sets the value of this property. Calling
	// IsActivityStreamsFollow afterwards returns true.
	SetActivityStreamsFollow(v ActivityStreamsFollow)
	// SetActivityStreamsGroup sets the value of this property. Calling
	// IsActivityStreamsGroup afterwards returns true.
	SetActivityStreamsGroup(v ActivityStreamsGroup)
	// SetActivityStreamsIgnore sets the value of this property. Calling
	// IsActivityStreamsIgnore afterwards returns true.
	SetActivityStreamsIgnore(v ActivityStreamsIgnore)
	// SetActivityStreamsImage sets the value of this property. Calling
	// IsActivityStreamsImage afterwards returns true.
	SetActivityStreamsImage(v ActivityStreamsImage)
	// SetActivityStreamsIntransitiveActivity sets the value of this property.
	// Calling IsActivityStreamsIntransitiveActivity afterwards returns
	// true.
	SetActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// SetActivityStreamsInvite sets the value of this property. Calling
	// IsActivityStreamsInvite afterwards returns true.
	SetActivityStreamsInvite(v ActivityStreamsInvite)
	// SetActivityStreamsJoin sets the value of this property. Calling
	// IsActivityStreamsJoin afterwards returns true.
	SetActivityStreamsJoin(v ActivityStreamsJoin)
	// SetActivityStreamsLeave sets the value of this property. Calling
	// IsActivityStreamsLeave afterwards returns true.
	SetActivityStreamsLeave(v ActivityStreamsLeave)
	// SetActivityStreamsLike sets the value of this property. Calling
	// IsActivityStreamsLike afterwards returns true.
	SetActivityStreamsLike(v ActivityStreamsLike)
	// SetActivityStreamsLink sets the value of this property. Calling
	// IsActivityStreamsLink afterwards returns true.
	SetActivityStreamsLink(v ActivityStreamsLink)
	// SetActivityStreamsListen sets the value of this property. Calling
	// IsActivityStreamsListen afterwards returns true.
	SetActivityStreamsListen(v ActivityStreamsListen)
	// SetActivityStreamsMention sets the value of this property. Calling
	// IsActivityStreamsMention afterwards returns true.
	SetActivityStreamsMention(v ActivityStreamsMention)
	// SetActivityStreamsMove sets the value of this property. Calling
	// IsActivityStreamsMove afterwards returns true.
	SetActivityStreamsMove(v ActivityStreamsMove)
	// SetActivityStreamsNote sets the value of this property. Calling
	// IsActivityStreamsNote afterwards returns true.
	SetActivityStreamsNote(v ActivityStreamsNote)
	// SetActivityStreamsObject sets the value of this property. Calling
	// IsActivityStreamsObject afterwards returns true.
	SetActivityStreamsObject(v ActivityStreamsObject)
	// SetActivityStreamsOffer sets the value of this property. Calling
	// IsActivityStreamsOffer afterwards returns true.
	SetActivityStreamsOffer(v ActivityStreamsOffer)
	// SetActivityStreamsOrderedCollection sets the value of this property.
	// Calling IsActivityStreamsOrderedCollection afterwards returns true.
	SetActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// SetActivityStreamsOrderedCollectionPage sets the value of this
	// property. Calling IsActivityStreamsOrderedCollectionPage afterwards
	// returns true.
	SetActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// SetActivityStreamsOrganization sets the value of this property. Calling
	// IsActivityStreamsOrganization afterwards returns true.
	SetActivityStreamsOrganization(v ActivityStreamsOrganization)
	// SetActivityStreamsPage sets the value of this property. Calling
	// IsActivityStreamsPage afterwards returns true.
	SetActivityStreamsPage(v ActivityStreamsPage)
	// SetActivityStreamsPerson sets the value of this property. Calling
	// IsActivityStreamsPerson afterwards returns true.
	SetActivityStreamsPerson(v ActivityStreamsPerson)
	// SetActivityStreamsPlace sets the value of this property. Calling
	// IsActivityStreamsPlace afterwards returns true.
	SetActivityStreamsPlace(v ActivityStreamsPlace)
	// SetActivityStreamsProfile sets the value of this property. Calling
	// IsActivityStreamsProfile afterwards returns true.
	SetActivityStreamsProfile(v ActivityStreamsProfile)
	// SetActivityStreamsQuestion sets the value of this property. Calling
	// IsActivityStreamsQuestion afterwards returns true.
	SetActivityStreamsQuestion(v ActivityStreamsQuestion)
	// SetActivityStreamsRead sets the value of this property. Calling
	// IsActivityStreamsRead afterwards returns true.
	SetActivityStreamsRead(v ActivityStreamsRead)
	// SetActivityStreamsReject sets the value of this property. Calling
	// IsActivityStreamsReject afterwards returns true.
	SetActivityStreamsReject(v ActivityStreamsReject)
	// SetActivityStreamsRelationship sets the value of this property. Calling
	// IsActivityStreamsRelationship afterwards returns true.
	SetActivityStreamsRelationship(v ActivityStreamsRelationship)
	// SetActivityStreamsRemove sets the value of this property. Calling
	// IsActivityStreamsRemove afterwards returns true.
	SetActivityStreamsRemove(v ActivityStreamsRemove)
	// SetActivityStreamsService sets the value of this property. Calling
	// IsActivityStreamsService afterwards returns true.
	SetActivityStreamsService(v ActivityStreamsService)
	// SetActivityStreamsTentativeAccept sets the value of this property.
	// Calling IsActivityStreamsTentativeAccept afterwards returns true.
	SetActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// SetActivityStreamsTentativeReject sets the value of this property.
	// Calling IsActivityStreamsTentativeReject afterwards returns true.
	SetActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// SetActivityStreamsTombstone sets the value of this property. Calling
	// IsActivityStreamsTombstone afterwards returns true.
	SetActivityStreamsTombstone(v ActivityStreamsTombstone)
	// SetActivityStreamsTravel sets the value of this property. Calling
	// IsActivityStreamsTravel afterwards returns true.
	SetActivityStreamsTravel(v ActivityStreamsTravel)
	// SetActivityStreamsUndo sets the value of this property. Calling
	// IsActivityStreamsUndo afterwards returns true.
	SetActivityStreamsUndo(v ActivityStreamsUndo)
	// SetActivityStreamsUpdate sets the value of this property. Calling
	// IsActivityStreamsUpdate afterwards returns true.
	SetActivityStreamsUpdate(v ActivityStreamsUpdate)
	// SetActivityStreamsVideo sets the value of this property. Calling
	// IsActivityStreamsVideo afterwards returns true.
	SetActivityStreamsVideo(v ActivityStreamsVideo)
	// SetActivityStreamsView sets the value of this property. Calling
	// IsActivityStreamsView afterwards returns true.
	SetActivityStreamsView(v ActivityStreamsView)
	// SetForgeFedBranch sets the value of this property. Calling
	// IsForgeFedBranch afterwards returns true.
	SetForgeFedBranch(v ForgeFedBranch)
	// SetForgeFedCommit sets the value of this property. Calling
	// IsForgeFedCommit afterwards returns true.
	SetForgeFedCommit(v ForgeFedCommit)
	// SetForgeFedPush sets the value of this property. Calling IsForgeFedPush
	// afterwards returns true.
	SetForgeFedPush(v ForgeFedPush)
	// SetForgeFedRepository sets the value of this property. Calling
	// IsForgeFedRepository afterwards returns true.
	SetForgeFedRepository(v ForgeFedRepository)
	// SetForgeFedTicket sets the value of this property. Calling
	// IsForgeFedTicket afterwards returns true.
	SetForgeFedTicket(v ForgeFedTicket)
	// SetForgeFedTicketDependency sets the value of this property. Calling
	// IsForgeFedTicketDependency afterwards returns true.
	SetForgeFedTicketDependency(v ForgeFedTicketDependency)
	// SetIRI sets the value of this property. Calling IsIRI afterwards
	// returns true.
	SetIRI(v *url.URL)
	// SetTootEmoji sets the value of this property. Calling IsTootEmoji
	// afterwards returns true.
	SetTootEmoji(v TootEmoji)
	// SetTootIdentityProof sets the value of this property. Calling
	// IsTootIdentityProof afterwards returns true.
	SetTootIdentityProof(v TootIdentityProof)
	// SetType attempts to set the property for the arbitrary type. Returns an
	// error if it is not a valid type to set on this property.
	SetType(t Type) error
}

ActivityStreamsObjectPropertyIterator represents a single value for the "object" property.

type ActivityStreamsOffer

type ActivityStreamsOffer interface {
	// GetActivityStreamsActor returns the "actor" property if it exists, and
	// nil otherwise.
	GetActivityStreamsActor() ActivityStreamsActorProperty
	// GetActivityStreamsAltitude returns the "altitude" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAltitude() ActivityStreamsAltitudeProperty
	// GetActivityStreamsAttachment returns the "attachment" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAttachment() ActivityStreamsAttachmentProperty
	// GetActivityStreamsAttributedTo returns the "attributedTo" property if
	// it exists, and nil otherwise.
	GetActivityStreamsAttributedTo() ActivityStreamsAttributedToProperty
	// GetActivityStreamsAudience returns the "audience" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAudience() ActivityStreamsAudienceProperty
	// GetActivityStreamsBcc returns the "bcc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBcc() ActivityStreamsBccProperty
	// GetActivityStreamsBto returns the "bto" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBto() ActivityStreamsBtoProperty
	// GetActivityStreamsCc returns the "cc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsCc() ActivityStreamsCcProperty
	// GetActivityStreamsContent returns the "content" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContent() ActivityStreamsContentProperty
	// GetActivityStreamsContext returns the "context" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContext() ActivityStreamsContextProperty
	// GetActivityStreamsDuration returns the "duration" property if it
	// exists, and nil otherwise.
	GetActivityStreamsDuration() ActivityStreamsDurationProperty
	// GetActivityStreamsEndTime returns the "endTime" property if it exists,
	// and nil otherwise.
	GetActivityStreamsEndTime() ActivityStreamsEndTimeProperty
	// GetActivityStreamsGenerator returns the "generator" property if it
	// exists, and nil otherwise.
	GetActivityStreamsGenerator() ActivityStreamsGeneratorProperty
	// GetActivityStreamsIcon returns the "icon" property if it exists, and
	// nil otherwise.
	GetActivityStreamsIcon() ActivityStreamsIconProperty
	// GetActivityStreamsImage returns the "image" property if it exists, and
	// nil otherwise.
	GetActivityStreamsImage() ActivityStreamsImageProperty
	// GetActivityStreamsInReplyTo returns the "inReplyTo" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInReplyTo() ActivityStreamsInReplyToProperty
	// GetActivityStreamsInstrument returns the "instrument" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInstrument() ActivityStreamsInstrumentProperty
	// GetActivityStreamsLikes returns the "likes" property if it exists, and
	// nil otherwise.
	GetActivityStreamsLikes() ActivityStreamsLikesProperty
	// GetActivityStreamsLocation returns the "location" property if it
	// exists, and nil otherwise.
	GetActivityStreamsLocation() ActivityStreamsLocationProperty
	// GetActivityStreamsMediaType returns the "mediaType" property if it
	// exists, and nil otherwise.
	GetActivityStreamsMediaType() ActivityStreamsMediaTypeProperty
	// GetActivityStreamsName returns the "name" property if it exists, and
	// nil otherwise.
	GetActivityStreamsName() ActivityStreamsNameProperty
	// GetActivityStreamsObject returns the "object" property if it exists,
	// and nil otherwise.
	GetActivityStreamsObject() ActivityStreamsObjectProperty
	// GetActivityStreamsOrigin returns the "origin" property if it exists,
	// and nil otherwise.
	GetActivityStreamsOrigin() ActivityStreamsOriginProperty
	// GetActivityStreamsPreview returns the "preview" property if it exists,
	// and nil otherwise.
	GetActivityStreamsPreview() ActivityStreamsPreviewProperty
	// GetActivityStreamsPublished returns the "published" property if it
	// exists, and nil otherwise.
	GetActivityStreamsPublished() ActivityStreamsPublishedProperty
	// GetActivityStreamsReplies returns the "replies" property if it exists,
	// and nil otherwise.
	GetActivityStreamsReplies() ActivityStreamsRepliesProperty
	// GetActivityStreamsResult returns the "result" property if it exists,
	// and nil otherwise.
	GetActivityStreamsResult() ActivityStreamsResultProperty
	// GetActivityStreamsShares returns the "shares" property if it exists,
	// and nil otherwise.
	GetActivityStreamsShares() ActivityStreamsSharesProperty
	// GetActivityStreamsSource returns the "source" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSource() ActivityStreamsSourceProperty
	// GetActivityStreamsStartTime returns the "startTime" property if it
	// exists, and nil otherwise.
	GetActivityStreamsStartTime() ActivityStreamsStartTimeProperty
	// GetActivityStreamsSummary returns the "summary" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSummary() ActivityStreamsSummaryProperty
	// GetActivityStreamsTag returns the "tag" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTag() ActivityStreamsTagProperty
	// GetActivityStreamsTarget returns the "target" property if it exists,
	// and nil otherwise.
	GetActivityStreamsTarget() ActivityStreamsTargetProperty
	// GetActivityStreamsTo returns the "to" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTo() ActivityStreamsToProperty
	// GetActivityStreamsUpdated returns the "updated" property if it exists,
	// and nil otherwise.
	GetActivityStreamsUpdated() ActivityStreamsUpdatedProperty
	// GetActivityStreamsUrl returns the "url" property if it exists, and nil
	// otherwise.
	GetActivityStreamsUrl() ActivityStreamsUrlProperty
	// GetForgeFedTeam returns the "team" property if it exists, and nil
	// otherwise.
	GetForgeFedTeam() ForgeFedTeamProperty
	// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
	// it exists, and nil otherwise.
	GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
	// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
	// it exists, and nil otherwise.
	GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
	// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
	GetJSONLDId() JSONLDIdProperty
	// GetJSONLDType returns the "type" property if it exists, and nil
	// otherwise.
	GetJSONLDType() JSONLDTypeProperty
	// GetTypeName returns the name of this type.
	GetTypeName() string
	// GetUnknownProperties returns the unknown properties for the Offer type.
	// Note that this should not be used by app developers. It is only
	// used to help determine which implementation is LessThan the other.
	// Developers who are creating a different implementation of this
	// type's interface can use this method in their LessThan
	// implementation, but routine ActivityPub applications should not use
	// this to bypass the code generation tool.
	GetUnknownProperties() map[string]interface{}
	// IsExtending returns true if the Offer type extends from the other type.
	IsExtending(other Type) bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this type and the specific properties that are set. The value
	// in the map is the alias used to import the type and its properties.
	JSONLDContext() map[string]string
	// LessThan computes if this Offer is lesser, with an arbitrary but stable
	// determination.
	LessThan(o ActivityStreamsOffer) bool
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format.
	Serialize() (map[string]interface{}, error)
	// SetActivityStreamsActor sets the "actor" property.
	SetActivityStreamsActor(i ActivityStreamsActorProperty)
	// SetActivityStreamsAltitude sets the "altitude" property.
	SetActivityStreamsAltitude(i ActivityStreamsAltitudeProperty)
	// SetActivityStreamsAttachment sets the "attachment" property.
	SetActivityStreamsAttachment(i ActivityStreamsAttachmentProperty)
	// SetActivityStreamsAttributedTo sets the "attributedTo" property.
	SetActivityStreamsAttributedTo(i ActivityStreamsAttributedToProperty)
	// SetActivityStreamsAudience sets the "audience" property.
	SetActivityStreamsAudience(i ActivityStreamsAudienceProperty)
	// SetActivityStreamsBcc sets the "bcc" property.
	SetActivityStreamsBcc(i ActivityStreamsBccProperty)
	// SetActivityStreamsBto sets the "bto" property.
	SetActivityStreamsBto(i ActivityStreamsBtoProperty)
	// SetActivityStreamsCc sets the "cc" property.
	SetActivityStreamsCc(i ActivityStreamsCcProperty)
	// SetActivityStreamsContent sets the "content" property.
	SetActivityStreamsContent(i ActivityStreamsContentProperty)
	// SetActivityStreamsContext sets the "context" property.
	SetActivityStreamsContext(i ActivityStreamsContextProperty)
	// SetActivityStreamsDuration sets the "duration" property.
	SetActivityStreamsDuration(i ActivityStreamsDurationProperty)
	// SetActivityStreamsEndTime sets the "endTime" property.
	SetActivityStreamsEndTime(i ActivityStreamsEndTimeProperty)
	// SetActivityStreamsGenerator sets the "generator" property.
	SetActivityStreamsGenerator(i ActivityStreamsGeneratorProperty)
	// SetActivityStreamsIcon sets the "icon" property.
	SetActivityStreamsIcon(i ActivityStreamsIconProperty)
	// SetActivityStreamsImage sets the "image" property.
	SetActivityStreamsImage(i ActivityStreamsImageProperty)
	// SetActivityStreamsInReplyTo sets the "inReplyTo" property.
	SetActivityStreamsInReplyTo(i ActivityStreamsInReplyToProperty)
	// SetActivityStreamsInstrument sets the "instrument" property.
	SetActivityStreamsInstrument(i ActivityStreamsInstrumentProperty)
	// SetActivityStreamsLikes sets the "likes" property.
	SetActivityStreamsLikes(i ActivityStreamsLikesProperty)
	// SetActivityStreamsLocation sets the "location" property.
	SetActivityStreamsLocation(i ActivityStreamsLocationProperty)
	// SetActivityStreamsMediaType sets the "mediaType" property.
	SetActivityStreamsMediaType(i ActivityStreamsMediaTypeProperty)
	// SetActivityStreamsName sets the "name" property.
	SetActivityStreamsName(i ActivityStreamsNameProperty)
	// SetActivityStreamsObject sets the "object" property.
	SetActivityStreamsObject(i ActivityStreamsObjectProperty)
	// SetActivityStreamsOrigin sets the "origin" property.
	SetActivityStreamsOrigin(i ActivityStreamsOriginProperty)
	// SetActivityStreamsPreview sets the "preview" property.
	SetActivityStreamsPreview(i ActivityStreamsPreviewProperty)
	// SetActivityStreamsPublished sets the "published" property.
	SetActivityStreamsPublished(i ActivityStreamsPublishedProperty)
	// SetActivityStreamsReplies sets the "replies" property.
	SetActivityStreamsReplies(i ActivityStreamsRepliesProperty)
	// SetActivityStreamsResult sets the "result" property.
	SetActivityStreamsResult(i ActivityStreamsResultProperty)
	// SetActivityStreamsShares sets the "shares" property.
	SetActivityStreamsShares(i ActivityStreamsSharesProperty)
	// SetActivityStreamsSource sets the "source" property.
	SetActivityStreamsSource(i ActivityStreamsSourceProperty)
	// SetActivityStreamsStartTime sets the "startTime" property.
	SetActivityStreamsStartTime(i ActivityStreamsStartTimeProperty)
	// SetActivityStreamsSummary sets the "summary" property.
	SetActivityStreamsSummary(i ActivityStreamsSummaryProperty)
	// SetActivityStreamsTag sets the "tag" property.
	SetActivityStreamsTag(i ActivityStreamsTagProperty)
	// SetActivityStreamsTarget sets the "target" property.
	SetActivityStreamsTarget(i ActivityStreamsTargetProperty)
	// SetActivityStreamsTo sets the "to" property.
	SetActivityStreamsTo(i ActivityStreamsToProperty)
	// SetActivityStreamsUpdated sets the "updated" property.
	SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
	// SetActivityStreamsUrl sets the "url" property.
	SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
	// SetForgeFedTeam sets the "team" property.
	SetForgeFedTeam(i ForgeFedTeamProperty)
	// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
	SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
	// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
	SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
	// SetJSONLDId sets the "id" property.
	SetJSONLDId(i JSONLDIdProperty)
	// SetJSONLDType sets the "type" property.
	SetJSONLDType(i JSONLDTypeProperty)
	// VocabularyURI returns the vocabulary's URI as a string.
	VocabularyURI() string
}

Indicates that the actor is offering the object. If specified, the target indicates the entity to which the object is being offered.

Example 23 (https://www.w3.org/TR/activitystreams-vocabulary/#ex21-jsonld):

{
  "actor": {
    "name": "Sally",
    "type": "Person"
  },
  "object": {
    "name": "50% Off!",
    "type": "http://www.types.example/ProductOffer"
  },
  "summary": "Sally offered 50% off to Lewis",
  "target": {
    "name": "Lewis",
    "type": "Person"
  },
  "type": "Offer"
}

type ActivityStreamsOneOfProperty

type ActivityStreamsOneOfProperty interface {
	// AppendActivityStreamsAccept appends a Accept value to the back of a
	// list of the property "oneOf". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsAccept(v ActivityStreamsAccept)
	// AppendActivityStreamsActivity appends a Activity value to the back of a
	// list of the property "oneOf". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsActivity(v ActivityStreamsActivity)
	// AppendActivityStreamsAdd appends a Add value to the back of a list of
	// the property "oneOf". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsAdd(v ActivityStreamsAdd)
	// AppendActivityStreamsAnnounce appends a Announce value to the back of a
	// list of the property "oneOf". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// AppendActivityStreamsApplication appends a Application value to the
	// back of a list of the property "oneOf". Invalidates iterators that
	// are traversing using Prev.
	AppendActivityStreamsApplication(v ActivityStreamsApplication)
	// AppendActivityStreamsArrive appends a Arrive value to the back of a
	// list of the property "oneOf". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsArrive(v ActivityStreamsArrive)
	// AppendActivityStreamsArticle appends a Article value to the back of a
	// list of the property "oneOf". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsArticle(v ActivityStreamsArticle)
	// AppendActivityStreamsAudio appends a Audio value to the back of a list
	// of the property "oneOf". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsAudio(v ActivityStreamsAudio)
	// AppendActivityStreamsBlock appends a Block value to the back of a list
	// of the property "oneOf". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsBlock(v ActivityStreamsBlock)
	// AppendActivityStreamsCollection appends a Collection value to the back
	// of a list of the property "oneOf". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsCollection(v ActivityStreamsCollection)
	// AppendActivityStreamsCollectionPage appends a CollectionPage value to
	// the back of a list of the property "oneOf". Invalidates iterators
	// that are traversing using Prev.
	AppendActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// AppendActivityStreamsCreate appends a Create value to the back of a
	// list of the property "oneOf". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsCreate(v ActivityStreamsCreate)
	// AppendActivityStreamsDelete appends a Delete value to the back of a
	// list of the property "oneOf". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDelete(v ActivityStreamsDelete)
	// AppendActivityStreamsDislike appends a Dislike value to the back of a
	// list of the property "oneOf". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDislike(v ActivityStreamsDislike)
	// AppendActivityStreamsDocument appends a Document value to the back of a
	// list of the property "oneOf". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDocument(v ActivityStreamsDocument)
	// AppendActivityStreamsEvent appends a Event value to the back of a list
	// of the property "oneOf". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsEvent(v ActivityStreamsEvent)
	// AppendActivityStreamsFlag appends a Flag value to the back of a list of
	// the property "oneOf". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsFlag(v ActivityStreamsFlag)
	// AppendActivityStreamsFollow appends a Follow value to the back of a
	// list of the property "oneOf". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsFollow(v ActivityStreamsFollow)
	// AppendActivityStreamsGroup appends a Group value to the back of a list
	// of the property "oneOf". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsGroup(v ActivityStreamsGroup)
	// AppendActivityStreamsIgnore appends a Ignore value to the back of a
	// list of the property "oneOf". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsIgnore(v ActivityStreamsIgnore)
	// AppendActivityStreamsImage appends a Image value to the back of a list
	// of the property "oneOf". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsImage(v ActivityStreamsImage)
	// AppendActivityStreamsIntransitiveActivity appends a
	// IntransitiveActivity value to the back of a list of the property
	// "oneOf". Invalidates iterators that are traversing using Prev.
	AppendActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// AppendActivityStreamsInvite appends a Invite value to the back of a
	// list of the property "oneOf". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsInvite(v ActivityStreamsInvite)
	// AppendActivityStreamsJoin appends a Join value to the back of a list of
	// the property "oneOf". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsJoin(v ActivityStreamsJoin)
	// AppendActivityStreamsLeave appends a Leave value to the back of a list
	// of the property "oneOf". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsLeave(v ActivityStreamsLeave)
	// AppendActivityStreamsLike appends a Like value to the back of a list of
	// the property "oneOf". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsLike(v ActivityStreamsLike)
	// AppendActivityStreamsLink appends a Link value to the back of a list of
	// the property "oneOf". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsLink(v ActivityStreamsLink)
	// AppendActivityStreamsListen appends a Listen value to the back of a
	// list of the property "oneOf". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsListen(v ActivityStreamsListen)
	// AppendActivityStreamsMention appends a Mention value to the back of a
	// list of the property "oneOf". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsMention(v ActivityStreamsMention)
	// AppendActivityStreamsMove appends a Move value to the back of a list of
	// the property "oneOf". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsMove(v ActivityStreamsMove)
	// AppendActivityStreamsNote appends a Note value to the back of a list of
	// the property "oneOf". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsNote(v ActivityStreamsNote)
	// AppendActivityStreamsObject appends a Object value to the back of a
	// list of the property "oneOf". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsObject(v ActivityStreamsObject)
	// AppendActivityStreamsOffer appends a Offer value to the back of a list
	// of the property "oneOf". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsOffer(v ActivityStreamsOffer)
	// AppendActivityStreamsOrderedCollection appends a OrderedCollection
	// value to the back of a list of the property "oneOf". Invalidates
	// iterators that are traversing using Prev.
	AppendActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// AppendActivityStreamsOrderedCollectionPage appends a
	// OrderedCollectionPage value to the back of a list of the property
	// "oneOf". Invalidates iterators that are traversing using Prev.
	AppendActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// AppendActivityStreamsOrganization appends a Organization value to the
	// back of a list of the property "oneOf". Invalidates iterators that
	// are traversing using Prev.
	AppendActivityStreamsOrganization(v ActivityStreamsOrganization)
	// AppendActivityStreamsPage appends a Page value to the back of a list of
	// the property "oneOf". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsPage(v ActivityStreamsPage)
	// AppendActivityStreamsPerson appends a Person value to the back of a
	// list of the property "oneOf". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsPerson(v ActivityStreamsPerson)
	// AppendActivityStreamsPlace appends a Place value to the back of a list
	// of the property "oneOf". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsPlace(v ActivityStreamsPlace)
	// AppendActivityStreamsProfile appends a Profile value to the back of a
	// list of the property "oneOf". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsProfile(v ActivityStreamsProfile)
	// AppendActivityStreamsQuestion appends a Question value to the back of a
	// list of the property "oneOf". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsQuestion(v ActivityStreamsQuestion)
	// AppendActivityStreamsRead appends a Read value to the back of a list of
	// the property "oneOf". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsRead(v ActivityStreamsRead)
	// AppendActivityStreamsReject appends a Reject value to the back of a
	// list of the property "oneOf". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsReject(v ActivityStreamsReject)
	// AppendActivityStreamsRelationship appends a Relationship value to the
	// back of a list of the property "oneOf". Invalidates iterators that
	// are traversing using Prev.
	AppendActivityStreamsRelationship(v ActivityStreamsRelationship)
	// AppendActivityStreamsRemove appends a Remove value to the back of a
	// list of the property "oneOf". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsRemove(v ActivityStreamsRemove)
	// AppendActivityStreamsService appends a Service value to the back of a
	// list of the property "oneOf". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsService(v ActivityStreamsService)
	// AppendActivityStreamsTentativeAccept appends a TentativeAccept value to
	// the back of a list of the property "oneOf". Invalidates iterators
	// that are traversing using Prev.
	AppendActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// AppendActivityStreamsTentativeReject appends a TentativeReject value to
	// the back of a list of the property "oneOf". Invalidates iterators
	// that are traversing using Prev.
	AppendActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// AppendActivityStreamsTombstone appends a Tombstone value to the back of
	// a list of the property "oneOf". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsTombstone(v ActivityStreamsTombstone)
	// AppendActivityStreamsTravel appends a Travel value to the back of a
	// list of the property "oneOf". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsTravel(v ActivityStreamsTravel)
	// AppendActivityStreamsUndo appends a Undo value to the back of a list of
	// the property "oneOf". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsUndo(v ActivityStreamsUndo)
	// AppendActivityStreamsUpdate appends a Update value to the back of a
	// list of the property "oneOf". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsUpdate(v ActivityStreamsUpdate)
	// AppendActivityStreamsVideo appends a Video value to the back of a list
	// of the property "oneOf". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsVideo(v ActivityStreamsVideo)
	// AppendActivityStreamsView appends a View value to the back of a list of
	// the property "oneOf". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsView(v ActivityStreamsView)
	// AppendForgeFedBranch appends a Branch value to the back of a list of
	// the property "oneOf". Invalidates iterators that are traversing
	// using Prev.
	AppendForgeFedBranch(v ForgeFedBranch)
	// AppendForgeFedCommit appends a Commit value to the back of a list of
	// the property "oneOf". Invalidates iterators that are traversing
	// using Prev.
	AppendForgeFedCommit(v ForgeFedCommit)
	// AppendForgeFedPush appends a Push value to the back of a list of the
	// property "oneOf". Invalidates iterators that are traversing using
	// Prev.
	AppendForgeFedPush(v ForgeFedPush)
	// AppendForgeFedRepository appends a Repository value to the back of a
	// list of the property "oneOf". Invalidates iterators that are
	// traversing using Prev.
	AppendForgeFedRepository(v ForgeFedRepository)
	// AppendForgeFedTicket appends a Ticket value to the back of a list of
	// the property "oneOf". Invalidates iterators that are traversing
	// using Prev.
	AppendForgeFedTicket(v ForgeFedTicket)
	// AppendForgeFedTicketDependency appends a TicketDependency value to the
	// back of a list of the property "oneOf". Invalidates iterators that
	// are traversing using Prev.
	AppendForgeFedTicketDependency(v ForgeFedTicketDependency)
	// AppendIRI appends an IRI value to the back of a list of the property
	// "oneOf"
	AppendIRI(v *url.URL)
	// AppendTootEmoji appends a Emoji value to the back of a list of the
	// property "oneOf". Invalidates iterators that are traversing using
	// Prev.
	AppendTootEmoji(v TootEmoji)
	// AppendTootIdentityProof appends a IdentityProof value to the back of a
	// list of the property "oneOf". Invalidates iterators that are
	// traversing using Prev.
	AppendTootIdentityProof(v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "oneOf". Invalidates iterators that are traversing
	// using Prev. Returns an error if the type is not a valid one to set
	// for this property.
	AppendType(t Type) error
	// At returns the property value for the specified index. Panics if the
	// index is out of bounds.
	At(index int) ActivityStreamsOneOfPropertyIterator
	// Begin returns the first iterator, or nil if empty. Can be used with the
	// iterator's Next method and this property's End method to iterate
	// from front to back through all values.
	Begin() ActivityStreamsOneOfPropertyIterator
	// Empty returns returns true if there are no elements.
	Empty() bool
	// End returns beyond-the-last iterator, which is nil. Can be used with
	// the iterator's Next method and this property's Begin method to
	// iterate from front to back through all values.
	End() ActivityStreamsOneOfPropertyIterator
	// InsertActivityStreamsAccept inserts a Accept value at the specified
	// index for a property "oneOf". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAccept(idx int, v ActivityStreamsAccept)
	// InsertActivityStreamsActivity inserts a Activity value at the specified
	// index for a property "oneOf". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsActivity(idx int, v ActivityStreamsActivity)
	// InsertActivityStreamsAdd inserts a Add value at the specified index for
	// a property "oneOf". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertActivityStreamsAdd(idx int, v ActivityStreamsAdd)
	// InsertActivityStreamsAnnounce inserts a Announce value at the specified
	// index for a property "oneOf". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAnnounce(idx int, v ActivityStreamsAnnounce)
	// InsertActivityStreamsApplication inserts a Application value at the
	// specified index for a property "oneOf". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsApplication(idx int, v ActivityStreamsApplication)
	// InsertActivityStreamsArrive inserts a Arrive value at the specified
	// index for a property "oneOf". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsArrive(idx int, v ActivityStreamsArrive)
	// InsertActivityStreamsArticle inserts a Article value at the specified
	// index for a property "oneOf". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsArticle(idx int, v ActivityStreamsArticle)
	// InsertActivityStreamsAudio inserts a Audio value at the specified index
	// for a property "oneOf". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAudio(idx int, v ActivityStreamsAudio)
	// InsertActivityStreamsBlock inserts a Block value at the specified index
	// for a property "oneOf". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsBlock(idx int, v ActivityStreamsBlock)
	// InsertActivityStreamsCollection inserts a Collection value at the
	// specified index for a property "oneOf". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsCollection(idx int, v ActivityStreamsCollection)
	// InsertActivityStreamsCollectionPage inserts a CollectionPage value at
	// the specified index for a property "oneOf". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsCollectionPage(idx int, v ActivityStreamsCollectionPage)
	// InsertActivityStreamsCreate inserts a Create value at the specified
	// index for a property "oneOf". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsCreate(idx int, v ActivityStreamsCreate)
	// InsertActivityStreamsDelete inserts a Delete value at the specified
	// index for a property "oneOf". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDelete(idx int, v ActivityStreamsDelete)
	// InsertActivityStreamsDislike inserts a Dislike value at the specified
	// index for a property "oneOf". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDislike(idx int, v ActivityStreamsDislike)
	// InsertActivityStreamsDocument inserts a Document value at the specified
	// index for a property "oneOf". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDocument(idx int, v ActivityStreamsDocument)
	// InsertActivityStreamsEvent inserts a Event value at the specified index
	// for a property "oneOf". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsEvent(idx int, v ActivityStreamsEvent)
	// InsertActivityStreamsFlag inserts a Flag value at the specified index
	// for a property "oneOf". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsFlag(idx int, v ActivityStreamsFlag)
	// InsertActivityStreamsFollow inserts a Follow value at the specified
	// index for a property "oneOf". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsFollow(idx int, v ActivityStreamsFollow)
	// InsertActivityStreamsGroup inserts a Group value at the specified index
	// for a property "oneOf". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsGroup(idx int, v ActivityStreamsGroup)
	// InsertActivityStreamsIgnore inserts a Ignore value at the specified
	// index for a property "oneOf". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsIgnore(idx int, v ActivityStreamsIgnore)
	// InsertActivityStreamsImage inserts a Image value at the specified index
	// for a property "oneOf". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsImage(idx int, v ActivityStreamsImage)
	// InsertActivityStreamsIntransitiveActivity inserts a
	// IntransitiveActivity value at the specified index for a property
	// "oneOf". Existing elements at that index and higher are shifted
	// back once. Invalidates all iterators.
	InsertActivityStreamsIntransitiveActivity(idx int, v ActivityStreamsIntransitiveActivity)
	// InsertActivityStreamsInvite inserts a Invite value at the specified
	// index for a property "oneOf". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsInvite(idx int, v ActivityStreamsInvite)
	// InsertActivityStreamsJoin inserts a Join value at the specified index
	// for a property "oneOf". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsJoin(idx int, v ActivityStreamsJoin)
	// InsertActivityStreamsLeave inserts a Leave value at the specified index
	// for a property "oneOf". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsLeave(idx int, v ActivityStreamsLeave)
	// InsertActivityStreamsLike inserts a Like value at the specified index
	// for a property "oneOf". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsLike(idx int, v ActivityStreamsLike)
	// InsertActivityStreamsLink inserts a Link value at the specified index
	// for a property "oneOf". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsLink(idx int, v ActivityStreamsLink)
	// InsertActivityStreamsListen inserts a Listen value at the specified
	// index for a property "oneOf". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsListen(idx int, v ActivityStreamsListen)
	// InsertActivityStreamsMention inserts a Mention value at the specified
	// index for a property "oneOf". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsMention(idx int, v ActivityStreamsMention)
	// InsertActivityStreamsMove inserts a Move value at the specified index
	// for a property "oneOf". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsMove(idx int, v ActivityStreamsMove)
	// InsertActivityStreamsNote inserts a Note value at the specified index
	// for a property "oneOf". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsNote(idx int, v ActivityStreamsNote)
	// InsertActivityStreamsObject inserts a Object value at the specified
	// index for a property "oneOf". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsObject(idx int, v ActivityStreamsObject)
	// InsertActivityStreamsOffer inserts a Offer value at the specified index
	// for a property "oneOf". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsOffer(idx int, v ActivityStreamsOffer)
	// InsertActivityStreamsOrderedCollection inserts a OrderedCollection
	// value at the specified index for a property "oneOf". Existing
	// elements at that index and higher are shifted back once.
	// Invalidates all iterators.
	InsertActivityStreamsOrderedCollection(idx int, v ActivityStreamsOrderedCollection)
	// InsertActivityStreamsOrderedCollectionPage inserts a
	// OrderedCollectionPage value at the specified index for a property
	// "oneOf". Existing elements at that index and higher are shifted
	// back once. Invalidates all iterators.
	InsertActivityStreamsOrderedCollectionPage(idx int, v ActivityStreamsOrderedCollectionPage)
	// InsertActivityStreamsOrganization inserts a Organization value at the
	// specified index for a property "oneOf". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsOrganization(idx int, v ActivityStreamsOrganization)
	// InsertActivityStreamsPage inserts a Page value at the specified index
	// for a property "oneOf". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsPage(idx int, v ActivityStreamsPage)
	// InsertActivityStreamsPerson inserts a Person value at the specified
	// index for a property "oneOf". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsPerson(idx int, v ActivityStreamsPerson)
	// InsertActivityStreamsPlace inserts a Place value at the specified index
	// for a property "oneOf". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsPlace(idx int, v ActivityStreamsPlace)
	// InsertActivityStreamsProfile inserts a Profile value at the specified
	// index for a property "oneOf". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsProfile(idx int, v ActivityStreamsProfile)
	// InsertActivityStreamsQuestion inserts a Question value at the specified
	// index for a property "oneOf". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsQuestion(idx int, v ActivityStreamsQuestion)
	// InsertActivityStreamsRead inserts a Read value at the specified index
	// for a property "oneOf". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsRead(idx int, v ActivityStreamsRead)
	// InsertActivityStreamsReject inserts a Reject value at the specified
	// index for a property "oneOf". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsReject(idx int, v ActivityStreamsReject)
	// InsertActivityStreamsRelationship inserts a Relationship value at the
	// specified index for a property "oneOf". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsRelationship(idx int, v ActivityStreamsRelationship)
	// InsertActivityStreamsRemove inserts a Remove value at the specified
	// index for a property "oneOf". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsRemove(idx int, v ActivityStreamsRemove)
	// InsertActivityStreamsService inserts a Service value at the specified
	// index for a property "oneOf". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsService(idx int, v ActivityStreamsService)
	// InsertActivityStreamsTentativeAccept inserts a TentativeAccept value at
	// the specified index for a property "oneOf". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsTentativeAccept(idx int, v ActivityStreamsTentativeAccept)
	// InsertActivityStreamsTentativeReject inserts a TentativeReject value at
	// the specified index for a property "oneOf". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsTentativeReject(idx int, v ActivityStreamsTentativeReject)
	// InsertActivityStreamsTombstone inserts a Tombstone value at the
	// specified index for a property "oneOf". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsTombstone(idx int, v ActivityStreamsTombstone)
	// InsertActivityStreamsTravel inserts a Travel value at the specified
	// index for a property "oneOf". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsTravel(idx int, v ActivityStreamsTravel)
	// InsertActivityStreamsUndo inserts a Undo value at the specified index
	// for a property "oneOf". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsUndo(idx int, v ActivityStreamsUndo)
	// InsertActivityStreamsUpdate inserts a Update value at the specified
	// index for a property "oneOf". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsUpdate(idx int, v ActivityStreamsUpdate)
	// InsertActivityStreamsVideo inserts a Video value at the specified index
	// for a property "oneOf". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsVideo(idx int, v ActivityStreamsVideo)
	// InsertActivityStreamsView inserts a View value at the specified index
	// for a property "oneOf". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsView(idx int, v ActivityStreamsView)
	// InsertForgeFedBranch inserts a Branch value at the specified index for
	// a property "oneOf". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertForgeFedBranch(idx int, v ForgeFedBranch)
	// InsertForgeFedCommit inserts a Commit value at the specified index for
	// a property "oneOf". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertForgeFedCommit(idx int, v ForgeFedCommit)
	// InsertForgeFedPush inserts a Push value at the specified index for a
	// property "oneOf". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertForgeFedPush(idx int, v ForgeFedPush)
	// InsertForgeFedRepository inserts a Repository value at the specified
	// index for a property "oneOf". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertForgeFedRepository(idx int, v ForgeFedRepository)
	// InsertForgeFedTicket inserts a Ticket value at the specified index for
	// a property "oneOf". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertForgeFedTicket(idx int, v ForgeFedTicket)
	// InsertForgeFedTicketDependency inserts a TicketDependency value at the
	// specified index for a property "oneOf". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
	// Insert inserts an IRI value at the specified index for a property
	// "oneOf". Existing elements at that index and higher are shifted
	// back once. Invalidates all iterators.
	InsertIRI(idx int, v *url.URL)
	// InsertTootEmoji inserts a Emoji value at the specified index for a
	// property "oneOf". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertTootEmoji(idx int, v TootEmoji)
	// InsertTootIdentityProof inserts a IdentityProof value at the specified
	// index for a property "oneOf". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertTootIdentityProof(idx int, v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "oneOf". Invalidates all iterators. Returns an error
	// if the type is not a valid one to set for this property.
	InsertType(idx int, t Type) error
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API method specifically needed only for alternate
	// implementations for go-fed. Applications should not use this
	// method. Panics if the index is out of bounds.
	KindIndex(idx int) int
	// Len returns the number of values that exist for the "oneOf" property.
	Len() (length int)
	// Less computes whether another property is less than this one. Mixing
	// types results in a consistent but arbitrary ordering
	Less(i, j int) bool
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsOneOfProperty) bool
	// Name returns the name of this property ("oneOf") with any alias.
	Name() string
	// PrependActivityStreamsAccept prepends a Accept value to the front of a
	// list of the property "oneOf". Invalidates all iterators.
	PrependActivityStreamsAccept(v ActivityStreamsAccept)
	// PrependActivityStreamsActivity prepends a Activity value to the front
	// of a list of the property "oneOf". Invalidates all iterators.
	PrependActivityStreamsActivity(v ActivityStreamsActivity)
	// PrependActivityStreamsAdd prepends a Add value to the front of a list
	// of the property "oneOf". Invalidates all iterators.
	PrependActivityStreamsAdd(v ActivityStreamsAdd)
	// PrependActivityStreamsAnnounce prepends a Announce value to the front
	// of a list of the property "oneOf". Invalidates all iterators.
	PrependActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// PrependActivityStreamsApplication prepends a Application value to the
	// front of a list of the property "oneOf". Invalidates all iterators.
	PrependActivityStreamsApplication(v ActivityStreamsApplication)
	// PrependActivityStreamsArrive prepends a Arrive value to the front of a
	// list of the property "oneOf". Invalidates all iterators.
	PrependActivityStreamsArrive(v ActivityStreamsArrive)
	// PrependActivityStreamsArticle prepends a Article value to the front of
	// a list of the property "oneOf". Invalidates all iterators.
	PrependActivityStreamsArticle(v ActivityStreamsArticle)
	// PrependActivityStreamsAudio prepends a Audio value to the front of a
	// list of the property "oneOf". Invalidates all iterators.
	PrependActivityStreamsAudio(v ActivityStreamsAudio)
	// PrependActivityStreamsBlock prepends a Block value to the front of a
	// list of the property "oneOf". Invalidates all iterators.
	PrependActivityStreamsBlock(v ActivityStreamsBlock)
	// PrependActivityStreamsCollection prepends a Collection value to the
	// front of a list of the property "oneOf". Invalidates all iterators.
	PrependActivityStreamsCollection(v ActivityStreamsCollection)
	// PrependActivityStreamsCollectionPage prepends a CollectionPage value to
	// the front of a list of the property "oneOf". Invalidates all
	// iterators.
	PrependActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// PrependActivityStreamsCreate prepends a Create value to the front of a
	// list of the property "oneOf". Invalidates all iterators.
	PrependActivityStreamsCreate(v ActivityStreamsCreate)
	// PrependActivityStreamsDelete prepends a Delete value to the front of a
	// list of the property "oneOf". Invalidates all iterators.
	PrependActivityStreamsDelete(v ActivityStreamsDelete)
	// PrependActivityStreamsDislike prepends a Dislike value to the front of
	// a list of the property "oneOf". Invalidates all iterators.
	PrependActivityStreamsDislike(v ActivityStreamsDislike)
	// PrependActivityStreamsDocument prepends a Document value to the front
	// of a list of the property "oneOf". Invalidates all iterators.
	PrependActivityStreamsDocument(v ActivityStreamsDocument)
	// PrependActivityStreamsEvent prepends a Event value to the front of a
	// list of the property "oneOf". Invalidates all iterators.
	PrependActivityStreamsEvent(v ActivityStreamsEvent)
	// PrependActivityStreamsFlag prepends a Flag value to the front of a list
	// of the property "oneOf". Invalidates all iterators.
	PrependActivityStreamsFlag(v ActivityStreamsFlag)
	// PrependActivityStreamsFollow prepends a Follow value to the front of a
	// list of the property "oneOf". Invalidates all iterators.
	PrependActivityStreamsFollow(v ActivityStreamsFollow)
	// PrependActivityStreamsGroup prepends a Group value to the front of a
	// list of the property "oneOf". Invalidates all iterators.
	PrependActivityStreamsGroup(v ActivityStreamsGroup)
	// PrependActivityStreamsIgnore prepends a Ignore value to the front of a
	// list of the property "oneOf". Invalidates all iterators.
	PrependActivityStreamsIgnore(v ActivityStreamsIgnore)
	// PrependActivityStreamsImage prepends a Image value to the front of a
	// list of the property "oneOf". Invalidates all iterators.
	PrependActivityStreamsImage(v ActivityStreamsImage)
	// PrependActivityStreamsIntransitiveActivity prepends a
	// IntransitiveActivity value to the front of a list of the property
	// "oneOf". Invalidates all iterators.
	PrependActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// PrependActivityStreamsInvite prepends a Invite value to the front of a
	// list of the property "oneOf". Invalidates all iterators.
	PrependActivityStreamsInvite(v ActivityStreamsInvite)
	// PrependActivityStreamsJoin prepends a Join value to the front of a list
	// of the property "oneOf". Invalidates all iterators.
	PrependActivityStreamsJoin(v ActivityStreamsJoin)
	// PrependActivityStreamsLeave prepends a Leave value to the front of a
	// list of the property "oneOf". Invalidates all iterators.
	PrependActivityStreamsLeave(v ActivityStreamsLeave)
	// PrependActivityStreamsLike prepends a Like value to the front of a list
	// of the property "oneOf". Invalidates all iterators.
	PrependActivityStreamsLike(v ActivityStreamsLike)
	// PrependActivityStreamsLink prepends a Link value to the front of a list
	// of the property "oneOf". Invalidates all iterators.
	PrependActivityStreamsLink(v ActivityStreamsLink)
	// PrependActivityStreamsListen prepends a Listen value to the front of a
	// list of the property "oneOf". Invalidates all iterators.
	PrependActivityStreamsListen(v ActivityStreamsListen)
	// PrependActivityStreamsMention prepends a Mention value to the front of
	// a list of the property "oneOf". Invalidates all iterators.
	PrependActivityStreamsMention(v ActivityStreamsMention)
	// PrependActivityStreamsMove prepends a Move value to the front of a list
	// of the property "oneOf". Invalidates all iterators.
	PrependActivityStreamsMove(v ActivityStreamsMove)
	// PrependActivityStreamsNote prepends a Note value to the front of a list
	// of the property "oneOf". Invalidates all iterators.
	PrependActivityStreamsNote(v ActivityStreamsNote)
	// PrependActivityStreamsObject prepends a Object value to the front of a
	// list of the property "oneOf". Invalidates all iterators.
	PrependActivityStreamsObject(v ActivityStreamsObject)
	// PrependActivityStreamsOffer prepends a Offer value to the front of a
	// list of the property "oneOf". Invalidates all iterators.
	PrependActivityStreamsOffer(v ActivityStreamsOffer)
	// PrependActivityStreamsOrderedCollection prepends a OrderedCollection
	// value to the front of a list of the property "oneOf". Invalidates
	// all iterators.
	PrependActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// PrependActivityStreamsOrderedCollectionPage prepends a
	// OrderedCollectionPage value to the front of a list of the property
	// "oneOf". Invalidates all iterators.
	PrependActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// PrependActivityStreamsOrganization prepends a Organization value to the
	// front of a list of the property "oneOf". Invalidates all iterators.
	PrependActivityStreamsOrganization(v ActivityStreamsOrganization)
	// PrependActivityStreamsPage prepends a Page value to the front of a list
	// of the property "oneOf". Invalidates all iterators.
	PrependActivityStreamsPage(v ActivityStreamsPage)
	// PrependActivityStreamsPerson prepends a Person value to the front of a
	// list of the property "oneOf". Invalidates all iterators.
	PrependActivityStreamsPerson(v ActivityStreamsPerson)
	// PrependActivityStreamsPlace prepends a Place value to the front of a
	// list of the property "oneOf". Invalidates all iterators.
	PrependActivityStreamsPlace(v ActivityStreamsPlace)
	// PrependActivityStreamsProfile prepends a Profile value to the front of
	// a list of the property "oneOf". Invalidates all iterators.
	PrependActivityStreamsProfile(v ActivityStreamsProfile)
	// PrependActivityStreamsQuestion prepends a Question value to the front
	// of a list of the property "oneOf". Invalidates all iterators.
	PrependActivityStreamsQuestion(v ActivityStreamsQuestion)
	// PrependActivityStreamsRead prepends a Read value to the front of a list
	// of the property "oneOf". Invalidates all iterators.
	PrependActivityStreamsRead(v ActivityStreamsRead)
	// PrependActivityStreamsReject prepends a Reject value to the front of a
	// list of the property "oneOf". Invalidates all iterators.
	PrependActivityStreamsReject(v ActivityStreamsReject)
	// PrependActivityStreamsRelationship prepends a Relationship value to the
	// front of a list of the property "oneOf". Invalidates all iterators.
	PrependActivityStreamsRelationship(v ActivityStreamsRelationship)
	// PrependActivityStreamsRemove prepends a Remove value to the front of a
	// list of the property "oneOf". Invalidates all iterators.
	PrependActivityStreamsRemove(v ActivityStreamsRemove)
	// PrependActivityStreamsService prepends a Service value to the front of
	// a list of the property "oneOf". Invalidates all iterators.
	PrependActivityStreamsService(v ActivityStreamsService)
	// PrependActivityStreamsTentativeAccept prepends a TentativeAccept value
	// to the front of a list of the property "oneOf". Invalidates all
	// iterators.
	PrependActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// PrependActivityStreamsTentativeReject prepends a TentativeReject value
	// to the front of a list of the property "oneOf". Invalidates all
	// iterators.
	PrependActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// PrependActivityStreamsTombstone prepends a Tombstone value to the front
	// of a list of the property "oneOf". Invalidates all iterators.
	PrependActivityStreamsTombstone(v ActivityStreamsTombstone)
	// PrependActivityStreamsTravel prepends a Travel value to the front of a
	// list of the property "oneOf". Invalidates all iterators.
	PrependActivityStreamsTravel(v ActivityStreamsTravel)
	// PrependActivityStreamsUndo prepends a Undo value to the front of a list
	// of the property "oneOf". Invalidates all iterators.
	PrependActivityStreamsUndo(v ActivityStreamsUndo)
	// PrependActivityStreamsUpdate prepends a Update value to the front of a
	// list of the property "oneOf". Invalidates all iterators.
	PrependActivityStreamsUpdate(v ActivityStreamsUpdate)
	// PrependActivityStreamsVideo prepends a Video value to the front of a
	// list of the property "oneOf". Invalidates all iterators.
	PrependActivityStreamsVideo(v ActivityStreamsVideo)
	// PrependActivityStreamsView prepends a View value to the front of a list
	// of the property "oneOf". Invalidates all iterators.
	PrependActivityStreamsView(v ActivityStreamsView)
	// PrependForgeFedBranch prepends a Branch value to the front of a list of
	// the property "oneOf". Invalidates all iterators.
	PrependForgeFedBranch(v ForgeFedBranch)
	// PrependForgeFedCommit prepends a Commit value to the front of a list of
	// the property "oneOf". Invalidates all iterators.
	PrependForgeFedCommit(v ForgeFedCommit)
	// PrependForgeFedPush prepends a Push value to the front of a list of the
	// property "oneOf". Invalidates all iterators.
	PrependForgeFedPush(v ForgeFedPush)
	// PrependForgeFedRepository prepends a Repository value to the front of a
	// list of the property "oneOf". Invalidates all iterators.
	PrependForgeFedRepository(v ForgeFedRepository)
	// PrependForgeFedTicket prepends a Ticket value to the front of a list of
	// the property "oneOf". Invalidates all iterators.
	PrependForgeFedTicket(v ForgeFedTicket)
	// PrependForgeFedTicketDependency prepends a TicketDependency value to
	// the front of a list of the property "oneOf". Invalidates all
	// iterators.
	PrependForgeFedTicketDependency(v ForgeFedTicketDependency)
	// PrependIRI prepends an IRI value to the front of a list of the property
	// "oneOf".
	PrependIRI(v *url.URL)
	// PrependTootEmoji prepends a Emoji value to the front of a list of the
	// property "oneOf". Invalidates all iterators.
	PrependTootEmoji(v TootEmoji)
	// PrependTootIdentityProof prepends a IdentityProof value to the front of
	// a list of the property "oneOf". Invalidates all iterators.
	PrependTootIdentityProof(v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "oneOf". Invalidates all iterators. Returns an error
	// if the type is not a valid one to set for this property.
	PrependType(t Type) error
	// Remove deletes an element at the specified index from a list of the
	// property "oneOf", regardless of its type. Panics if the index is
	// out of bounds. Invalidates all iterators.
	Remove(idx int)
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// SetActivityStreamsAccept sets a Accept value to be at the specified
	// index for the property "oneOf". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsAccept(idx int, v ActivityStreamsAccept)
	// SetActivityStreamsActivity sets a Activity value to be at the specified
	// index for the property "oneOf". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsActivity(idx int, v ActivityStreamsActivity)
	// SetActivityStreamsAdd sets a Add value to be at the specified index for
	// the property "oneOf". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsAdd(idx int, v ActivityStreamsAdd)
	// SetActivityStreamsAnnounce sets a Announce value to be at the specified
	// index for the property "oneOf". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsAnnounce(idx int, v ActivityStreamsAnnounce)
	// SetActivityStreamsApplication sets a Application value to be at the
	// specified index for the property "oneOf". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsApplication(idx int, v ActivityStreamsApplication)
	// SetActivityStreamsArrive sets a Arrive value to be at the specified
	// index for the property "oneOf". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsArrive(idx int, v ActivityStreamsArrive)
	// SetActivityStreamsArticle sets a Article value to be at the specified
	// index for the property "oneOf". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsArticle(idx int, v ActivityStreamsArticle)
	// SetActivityStreamsAudio sets a Audio value to be at the specified index
	// for the property "oneOf". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsAudio(idx int, v ActivityStreamsAudio)
	// SetActivityStreamsBlock sets a Block value to be at the specified index
	// for the property "oneOf". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsBlock(idx int, v ActivityStreamsBlock)
	// SetActivityStreamsCollection sets a Collection value to be at the
	// specified index for the property "oneOf". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsCollection(idx int, v ActivityStreamsCollection)
	// SetActivityStreamsCollectionPage sets a CollectionPage value to be at
	// the specified index for the property "oneOf". Panics if the index
	// is out of bounds. Invalidates all iterators.
	SetActivityStreamsCollectionPage(idx int, v ActivityStreamsCollectionPage)
	// SetActivityStreamsCreate sets a Create value to be at the specified
	// index for the property "oneOf". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsCreate(idx int, v ActivityStreamsCreate)
	// SetActivityStreamsDelete sets a Delete value to be at the specified
	// index for the property "oneOf". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsDelete(idx int, v ActivityStreamsDelete)
	// SetActivityStreamsDislike sets a Dislike value to be at the specified
	// index for the property "oneOf". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsDislike(idx int, v ActivityStreamsDislike)
	// SetActivityStreamsDocument sets a Document value to be at the specified
	// index for the property "oneOf". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsDocument(idx int, v ActivityStreamsDocument)
	// SetActivityStreamsEvent sets a Event value to be at the specified index
	// for the property "oneOf". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsEvent(idx int, v ActivityStreamsEvent)
	// SetActivityStreamsFlag sets a Flag value to be at the specified index
	// for the property "oneOf". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsFlag(idx int, v ActivityStreamsFlag)
	// SetActivityStreamsFollow sets a Follow value to be at the specified
	// index for the property "oneOf". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsFollow(idx int, v ActivityStreamsFollow)
	// SetActivityStreamsGroup sets a Group value to be at the specified index
	// for the property "oneOf". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsGroup(idx int, v ActivityStreamsGroup)
	// SetActivityStreamsIgnore sets a Ignore value to be at the specified
	// index for the property "oneOf". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsIgnore(idx int, v ActivityStreamsIgnore)
	// SetActivityStreamsImage sets a Image value to be at the specified index
	// for the property "oneOf". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsImage(idx int, v ActivityStreamsImage)
	// SetActivityStreamsIntransitiveActivity sets a IntransitiveActivity
	// value to be at the specified index for the property "oneOf". Panics
	// if the index is out of bounds. Invalidates all iterators.
	SetActivityStreamsIntransitiveActivity(idx int, v ActivityStreamsIntransitiveActivity)
	// SetActivityStreamsInvite sets a Invite value to be at the specified
	// index for the property "oneOf". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsInvite(idx int, v ActivityStreamsInvite)
	// SetActivityStreamsJoin sets a Join value to be at the specified index
	// for the property "oneOf". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsJoin(idx int, v ActivityStreamsJoin)
	// SetActivityStreamsLeave sets a Leave value to be at the specified index
	// for the property "oneOf". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsLeave(idx int, v ActivityStreamsLeave)
	// SetActivityStreamsLike sets a Like value to be at the specified index
	// for the property "oneOf". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsLike(idx int, v ActivityStreamsLike)
	// SetActivityStreamsLink sets a Link value to be at the specified index
	// for the property "oneOf". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsLink(idx int, v ActivityStreamsLink)
	// SetActivityStreamsListen sets a Listen value to be at the specified
	// index for the property "oneOf". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsListen(idx int, v ActivityStreamsListen)
	// SetActivityStreamsMention sets a Mention value to be at the specified
	// index for the property "oneOf". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsMention(idx int, v ActivityStreamsMention)
	// SetActivityStreamsMove sets a Move value to be at the specified index
	// for the property "oneOf". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsMove(idx int, v ActivityStreamsMove)
	// SetActivityStreamsNote sets a Note value to be at the specified index
	// for the property "oneOf". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsNote(idx int, v ActivityStreamsNote)
	// SetActivityStreamsObject sets a Object value to be at the specified
	// index for the property "oneOf". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsObject(idx int, v ActivityStreamsObject)
	// SetActivityStreamsOffer sets a Offer value to be at the specified index
	// for the property "oneOf". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsOffer(idx int, v ActivityStreamsOffer)
	// SetActivityStreamsOrderedCollection sets a OrderedCollection value to
	// be at the specified index for the property "oneOf". Panics if the
	// index is out of bounds. Invalidates all iterators.
	SetActivityStreamsOrderedCollection(idx int, v ActivityStreamsOrderedCollection)
	// SetActivityStreamsOrderedCollectionPage sets a OrderedCollectionPage
	// value to be at the specified index for the property "oneOf". Panics
	// if the index is out of bounds. Invalidates all iterators.
	SetActivityStreamsOrderedCollectionPage(idx int, v ActivityStreamsOrderedCollectionPage)
	// SetActivityStreamsOrganization sets a Organization value to be at the
	// specified index for the property "oneOf". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsOrganization(idx int, v ActivityStreamsOrganization)
	// SetActivityStreamsPage sets a Page value to be at the specified index
	// for the property "oneOf". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsPage(idx int, v ActivityStreamsPage)
	// SetActivityStreamsPerson sets a Person value to be at the specified
	// index for the property "oneOf". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsPerson(idx int, v ActivityStreamsPerson)
	// SetActivityStreamsPlace sets a Place value to be at the specified index
	// for the property "oneOf". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsPlace(idx int, v ActivityStreamsPlace)
	// SetActivityStreamsProfile sets a Profile value to be at the specified
	// index for the property "oneOf". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsProfile(idx int, v ActivityStreamsProfile)
	// SetActivityStreamsQuestion sets a Question value to be at the specified
	// index for the property "oneOf". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsQuestion(idx int, v ActivityStreamsQuestion)
	// SetActivityStreamsRead sets a Read value to be at the specified index
	// for the property "oneOf". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsRead(idx int, v ActivityStreamsRead)
	// SetActivityStreamsReject sets a Reject value to be at the specified
	// index for the property "oneOf". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsReject(idx int, v ActivityStreamsReject)
	// SetActivityStreamsRelationship sets a Relationship value to be at the
	// specified index for the property "oneOf". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsRelationship(idx int, v ActivityStreamsRelationship)
	// SetActivityStreamsRemove sets a Remove value to be at the specified
	// index for the property "oneOf". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsRemove(idx int, v ActivityStreamsRemove)
	// SetActivityStreamsService sets a Service value to be at the specified
	// index for the property "oneOf". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsService(idx int, v ActivityStreamsService)
	// SetActivityStreamsTentativeAccept sets a TentativeAccept value to be at
	// the specified index for the property "oneOf". Panics if the index
	// is out of bounds. Invalidates all iterators.
	SetActivityStreamsTentativeAccept(idx int, v ActivityStreamsTentativeAccept)
	// SetActivityStreamsTentativeReject sets a TentativeReject value to be at
	// the specified index for the property "oneOf". Panics if the index
	// is out of bounds. Invalidates all iterators.
	SetActivityStreamsTentativeReject(idx int, v ActivityStreamsTentativeReject)
	// SetActivityStreamsTombstone sets a Tombstone value to be at the
	// specified index for the property "oneOf". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsTombstone(idx int, v ActivityStreamsTombstone)
	// SetActivityStreamsTravel sets a Travel value to be at the specified
	// index for the property "oneOf". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsTravel(idx int, v ActivityStreamsTravel)
	// SetActivityStreamsUndo sets a Undo value to be at the specified index
	// for the property "oneOf". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsUndo(idx int, v ActivityStreamsUndo)
	// SetActivityStreamsUpdate sets a Update value to be at the specified
	// index for the property "oneOf". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsUpdate(idx int, v ActivityStreamsUpdate)
	// SetActivityStreamsVideo sets a Video value to be at the specified index
	// for the property "oneOf". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsVideo(idx int, v ActivityStreamsVideo)
	// SetActivityStreamsView sets a View value to be at the specified index
	// for the property "oneOf". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsView(idx int, v ActivityStreamsView)
	// SetForgeFedBranch sets a Branch value to be at the specified index for
	// the property "oneOf". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedBranch(idx int, v ForgeFedBranch)
	// SetForgeFedCommit sets a Commit value to be at the specified index for
	// the property "oneOf". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedCommit(idx int, v ForgeFedCommit)
	// SetForgeFedPush sets a Push value to be at the specified index for the
	// property "oneOf". Panics if the index is out of bounds. Invalidates
	// all iterators.
	SetForgeFedPush(idx int, v ForgeFedPush)
	// SetForgeFedRepository sets a Repository value to be at the specified
	// index for the property "oneOf". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetForgeFedRepository(idx int, v ForgeFedRepository)
	// SetForgeFedTicket sets a Ticket value to be at the specified index for
	// the property "oneOf". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedTicket(idx int, v ForgeFedTicket)
	// SetForgeFedTicketDependency sets a TicketDependency value to be at the
	// specified index for the property "oneOf". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
	// SetIRI sets an IRI value to be at the specified index for the property
	// "oneOf". Panics if the index is out of bounds.
	SetIRI(idx int, v *url.URL)
	// SetTootEmoji sets a Emoji value to be at the specified index for the
	// property "oneOf". Panics if the index is out of bounds. Invalidates
	// all iterators.
	SetTootEmoji(idx int, v TootEmoji)
	// SetTootIdentityProof sets a IdentityProof value to be at the specified
	// index for the property "oneOf". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetTootIdentityProof(idx int, v TootIdentityProof)
	// SetType sets an arbitrary type value to the specified index of the
	// property "oneOf". Invalidates all iterators. Returns an error if
	// the type is not a valid one to set for this property. Panics if the
	// index is out of bounds.
	SetType(idx int, t Type) error
	// Swap swaps the location of values at two indices for the "oneOf"
	// property.
	Swap(i, j int)
}

Identifies an exclusive option for a Question. Use of oneOf implies that the Question can have only a single answer. To indicate that a Question can have multiple answers, use anyOf.

Example 91 (https://www.w3.org/TR/activitystreams-vocabulary/#ex93-jsonld):

{
  "name": "What is the answer?",
  "oneOf": [
    {
      "name": "Option A",
      "type": "Note"
    },
    {
      "name": "Option B",
      "type": "Note"
    }
  ],
  "type": "Question"
}

type ActivityStreamsOneOfPropertyIterator

type ActivityStreamsOneOfPropertyIterator interface {
	// GetActivityStreamsAccept returns the value of this property. When
	// IsActivityStreamsAccept returns false, GetActivityStreamsAccept
	// will return an arbitrary value.
	GetActivityStreamsAccept() ActivityStreamsAccept
	// GetActivityStreamsActivity returns the value of this property. When
	// IsActivityStreamsActivity returns false, GetActivityStreamsActivity
	// will return an arbitrary value.
	GetActivityStreamsActivity() ActivityStreamsActivity
	// GetActivityStreamsAdd returns the value of this property. When
	// IsActivityStreamsAdd returns false, GetActivityStreamsAdd will
	// return an arbitrary value.
	GetActivityStreamsAdd() ActivityStreamsAdd
	// GetActivityStreamsAnnounce returns the value of this property. When
	// IsActivityStreamsAnnounce returns false, GetActivityStreamsAnnounce
	// will return an arbitrary value.
	GetActivityStreamsAnnounce() ActivityStreamsAnnounce
	// GetActivityStreamsApplication returns the value of this property. When
	// IsActivityStreamsApplication returns false,
	// GetActivityStreamsApplication will return an arbitrary value.
	GetActivityStreamsApplication() ActivityStreamsApplication
	// GetActivityStreamsArrive returns the value of this property. When
	// IsActivityStreamsArrive returns false, GetActivityStreamsArrive
	// will return an arbitrary value.
	GetActivityStreamsArrive() ActivityStreamsArrive
	// GetActivityStreamsArticle returns the value of this property. When
	// IsActivityStreamsArticle returns false, GetActivityStreamsArticle
	// will return an arbitrary value.
	GetActivityStreamsArticle() ActivityStreamsArticle
	// GetActivityStreamsAudio returns the value of this property. When
	// IsActivityStreamsAudio returns false, GetActivityStreamsAudio will
	// return an arbitrary value.
	GetActivityStreamsAudio() ActivityStreamsAudio
	// GetActivityStreamsBlock returns the value of this property. When
	// IsActivityStreamsBlock returns false, GetActivityStreamsBlock will
	// return an arbitrary value.
	GetActivityStreamsBlock() ActivityStreamsBlock
	// GetActivityStreamsCollection returns the value of this property. When
	// IsActivityStreamsCollection returns false,
	// GetActivityStreamsCollection will return an arbitrary value.
	GetActivityStreamsCollection() ActivityStreamsCollection
	// GetActivityStreamsCollectionPage returns the value of this property.
	// When IsActivityStreamsCollectionPage returns false,
	// GetActivityStreamsCollectionPage will return an arbitrary value.
	GetActivityStreamsCollectionPage() ActivityStreamsCollectionPage
	// GetActivityStreamsCreate returns the value of this property. When
	// IsActivityStreamsCreate returns false, GetActivityStreamsCreate
	// will return an arbitrary value.
	GetActivityStreamsCreate() ActivityStreamsCreate
	// GetActivityStreamsDelete returns the value of this property. When
	// IsActivityStreamsDelete returns false, GetActivityStreamsDelete
	// will return an arbitrary value.
	GetActivityStreamsDelete() ActivityStreamsDelete
	// GetActivityStreamsDislike returns the value of this property. When
	// IsActivityStreamsDislike returns false, GetActivityStreamsDislike
	// will return an arbitrary value.
	GetActivityStreamsDislike() ActivityStreamsDislike
	// GetActivityStreamsDocument returns the value of this property. When
	// IsActivityStreamsDocument returns false, GetActivityStreamsDocument
	// will return an arbitrary value.
	GetActivityStreamsDocument() ActivityStreamsDocument
	// GetActivityStreamsEvent returns the value of this property. When
	// IsActivityStreamsEvent returns false, GetActivityStreamsEvent will
	// return an arbitrary value.
	GetActivityStreamsEvent() ActivityStreamsEvent
	// GetActivityStreamsFlag returns the value of this property. When
	// IsActivityStreamsFlag returns false, GetActivityStreamsFlag will
	// return an arbitrary value.
	GetActivityStreamsFlag() ActivityStreamsFlag
	// GetActivityStreamsFollow returns the value of this property. When
	// IsActivityStreamsFollow returns false, GetActivityStreamsFollow
	// will return an arbitrary value.
	GetActivityStreamsFollow() ActivityStreamsFollow
	// GetActivityStreamsGroup returns the value of this property. When
	// IsActivityStreamsGroup returns false, GetActivityStreamsGroup will
	// return an arbitrary value.
	GetActivityStreamsGroup() ActivityStreamsGroup
	// GetActivityStreamsIgnore returns the value of this property. When
	// IsActivityStreamsIgnore returns false, GetActivityStreamsIgnore
	// will return an arbitrary value.
	GetActivityStreamsIgnore() ActivityStreamsIgnore
	// GetActivityStreamsImage returns the value of this property. When
	// IsActivityStreamsImage returns false, GetActivityStreamsImage will
	// return an arbitrary value.
	GetActivityStreamsImage() ActivityStreamsImage
	// GetActivityStreamsIntransitiveActivity returns the value of this
	// property. When IsActivityStreamsIntransitiveActivity returns false,
	// GetActivityStreamsIntransitiveActivity will return an arbitrary
	// value.
	GetActivityStreamsIntransitiveActivity() ActivityStreamsIntransitiveActivity
	// GetActivityStreamsInvite returns the value of this property. When
	// IsActivityStreamsInvite returns false, GetActivityStreamsInvite
	// will return an arbitrary value.
	GetActivityStreamsInvite() ActivityStreamsInvite
	// GetActivityStreamsJoin returns the value of this property. When
	// IsActivityStreamsJoin returns false, GetActivityStreamsJoin will
	// return an arbitrary value.
	GetActivityStreamsJoin() ActivityStreamsJoin
	// GetActivityStreamsLeave returns the value of this property. When
	// IsActivityStreamsLeave returns false, GetActivityStreamsLeave will
	// return an arbitrary value.
	GetActivityStreamsLeave() ActivityStreamsLeave
	// GetActivityStreamsLike returns the value of this property. When
	// IsActivityStreamsLike returns false, GetActivityStreamsLike will
	// return an arbitrary value.
	GetActivityStreamsLike() ActivityStreamsLike
	// GetActivityStreamsLink returns the value of this property. When
	// IsActivityStreamsLink returns false, GetActivityStreamsLink will
	// return an arbitrary value.
	GetActivityStreamsLink() ActivityStreamsLink
	// GetActivityStreamsListen returns the value of this property. When
	// IsActivityStreamsListen returns false, GetActivityStreamsListen
	// will return an arbitrary value.
	GetActivityStreamsListen() ActivityStreamsListen
	// GetActivityStreamsMention returns the value of this property. When
	// IsActivityStreamsMention returns false, GetActivityStreamsMention
	// will return an arbitrary value.
	GetActivityStreamsMention() ActivityStreamsMention
	// GetActivityStreamsMove returns the value of this property. When
	// IsActivityStreamsMove returns false, GetActivityStreamsMove will
	// return an arbitrary value.
	GetActivityStreamsMove() ActivityStreamsMove
	// GetActivityStreamsNote returns the value of this property. When
	// IsActivityStreamsNote returns false, GetActivityStreamsNote will
	// return an arbitrary value.
	GetActivityStreamsNote() ActivityStreamsNote
	// GetActivityStreamsObject returns the value of this property. When
	// IsActivityStreamsObject returns false, GetActivityStreamsObject
	// will return an arbitrary value.
	GetActivityStreamsObject() ActivityStreamsObject
	// GetActivityStreamsOffer returns the value of this property. When
	// IsActivityStreamsOffer returns false, GetActivityStreamsOffer will
	// return an arbitrary value.
	GetActivityStreamsOffer() ActivityStreamsOffer
	// GetActivityStreamsOrderedCollection returns the value of this property.
	// When IsActivityStreamsOrderedCollection returns false,
	// GetActivityStreamsOrderedCollection will return an arbitrary value.
	GetActivityStreamsOrderedCollection() ActivityStreamsOrderedCollection
	// GetActivityStreamsOrderedCollectionPage returns the value of this
	// property. When IsActivityStreamsOrderedCollectionPage returns
	// false, GetActivityStreamsOrderedCollectionPage will return an
	// arbitrary value.
	GetActivityStreamsOrderedCollectionPage() ActivityStreamsOrderedCollectionPage
	// GetActivityStreamsOrganization returns the value of this property. When
	// IsActivityStreamsOrganization returns false,
	// GetActivityStreamsOrganization will return an arbitrary value.
	GetActivityStreamsOrganization() ActivityStreamsOrganization
	// GetActivityStreamsPage returns the value of this property. When
	// IsActivityStreamsPage returns false, GetActivityStreamsPage will
	// return an arbitrary value.
	GetActivityStreamsPage() ActivityStreamsPage
	// GetActivityStreamsPerson returns the value of this property. When
	// IsActivityStreamsPerson returns false, GetActivityStreamsPerson
	// will return an arbitrary value.
	GetActivityStreamsPerson() ActivityStreamsPerson
	// GetActivityStreamsPlace returns the value of this property. When
	// IsActivityStreamsPlace returns false, GetActivityStreamsPlace will
	// return an arbitrary value.
	GetActivityStreamsPlace() ActivityStreamsPlace
	// GetActivityStreamsProfile returns the value of this property. When
	// IsActivityStreamsProfile returns false, GetActivityStreamsProfile
	// will return an arbitrary value.
	GetActivityStreamsProfile() ActivityStreamsProfile
	// GetActivityStreamsQuestion returns the value of this property. When
	// IsActivityStreamsQuestion returns false, GetActivityStreamsQuestion
	// will return an arbitrary value.
	GetActivityStreamsQuestion() ActivityStreamsQuestion
	// GetActivityStreamsRead returns the value of this property. When
	// IsActivityStreamsRead returns false, GetActivityStreamsRead will
	// return an arbitrary value.
	GetActivityStreamsRead() ActivityStreamsRead
	// GetActivityStreamsReject returns the value of this property. When
	// IsActivityStreamsReject returns false, GetActivityStreamsReject
	// will return an arbitrary value.
	GetActivityStreamsReject() ActivityStreamsReject
	// GetActivityStreamsRelationship returns the value of this property. When
	// IsActivityStreamsRelationship returns false,
	// GetActivityStreamsRelationship will return an arbitrary value.
	GetActivityStreamsRelationship() ActivityStreamsRelationship
	// GetActivityStreamsRemove returns the value of this property. When
	// IsActivityStreamsRemove returns false, GetActivityStreamsRemove
	// will return an arbitrary value.
	GetActivityStreamsRemove() ActivityStreamsRemove
	// GetActivityStreamsService returns the value of this property. When
	// IsActivityStreamsService returns false, GetActivityStreamsService
	// will return an arbitrary value.
	GetActivityStreamsService() ActivityStreamsService
	// GetActivityStreamsTentativeAccept returns the value of this property.
	// When IsActivityStreamsTentativeAccept returns false,
	// GetActivityStreamsTentativeAccept will return an arbitrary value.
	GetActivityStreamsTentativeAccept() ActivityStreamsTentativeAccept
	// GetActivityStreamsTentativeReject returns the value of this property.
	// When IsActivityStreamsTentativeReject returns false,
	// GetActivityStreamsTentativeReject will return an arbitrary value.
	GetActivityStreamsTentativeReject() ActivityStreamsTentativeReject
	// GetActivityStreamsTombstone returns the value of this property. When
	// IsActivityStreamsTombstone returns false,
	// GetActivityStreamsTombstone will return an arbitrary value.
	GetActivityStreamsTombstone() ActivityStreamsTombstone
	// GetActivityStreamsTravel returns the value of this property. When
	// IsActivityStreamsTravel returns false, GetActivityStreamsTravel
	// will return an arbitrary value.
	GetActivityStreamsTravel() ActivityStreamsTravel
	// GetActivityStreamsUndo returns the value of this property. When
	// IsActivityStreamsUndo returns false, GetActivityStreamsUndo will
	// return an arbitrary value.
	GetActivityStreamsUndo() ActivityStreamsUndo
	// GetActivityStreamsUpdate returns the value of this property. When
	// IsActivityStreamsUpdate returns false, GetActivityStreamsUpdate
	// will return an arbitrary value.
	GetActivityStreamsUpdate() ActivityStreamsUpdate
	// GetActivityStreamsVideo returns the value of this property. When
	// IsActivityStreamsVideo returns false, GetActivityStreamsVideo will
	// return an arbitrary value.
	GetActivityStreamsVideo() ActivityStreamsVideo
	// GetActivityStreamsView returns the value of this property. When
	// IsActivityStreamsView returns false, GetActivityStreamsView will
	// return an arbitrary value.
	GetActivityStreamsView() ActivityStreamsView
	// GetForgeFedBranch returns the value of this property. When
	// IsForgeFedBranch returns false, GetForgeFedBranch will return an
	// arbitrary value.
	GetForgeFedBranch() ForgeFedBranch
	// GetForgeFedCommit returns the value of this property. When
	// IsForgeFedCommit returns false, GetForgeFedCommit will return an
	// arbitrary value.
	GetForgeFedCommit() ForgeFedCommit
	// GetForgeFedPush returns the value of this property. When IsForgeFedPush
	// returns false, GetForgeFedPush will return an arbitrary value.
	GetForgeFedPush() ForgeFedPush
	// GetForgeFedRepository returns the value of this property. When
	// IsForgeFedRepository returns false, GetForgeFedRepository will
	// return an arbitrary value.
	GetForgeFedRepository() ForgeFedRepository
	// GetForgeFedTicket returns the value of this property. When
	// IsForgeFedTicket returns false, GetForgeFedTicket will return an
	// arbitrary value.
	GetForgeFedTicket() ForgeFedTicket
	// GetForgeFedTicketDependency returns the value of this property. When
	// IsForgeFedTicketDependency returns false,
	// GetForgeFedTicketDependency will return an arbitrary value.
	GetForgeFedTicketDependency() ForgeFedTicketDependency
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return an arbitrary value.
	GetIRI() *url.URL
	// GetTootEmoji returns the value of this property. When IsTootEmoji
	// returns false, GetTootEmoji will return an arbitrary value.
	GetTootEmoji() TootEmoji
	// GetTootIdentityProof returns the value of this property. When
	// IsTootIdentityProof returns false, GetTootIdentityProof will return
	// an arbitrary value.
	GetTootIdentityProof() TootIdentityProof
	// GetType returns the value in this property as a Type. Returns nil if
	// the value is not an ActivityStreams type, such as an IRI or another
	// value.
	GetType() Type
	// HasAny returns true if any of the different values is set.
	HasAny() bool
	// IsActivityStreamsAccept returns true if this property has a type of
	// "Accept". When true, use the GetActivityStreamsAccept and
	// SetActivityStreamsAccept methods to access and set this property.
	IsActivityStreamsAccept() bool
	// IsActivityStreamsActivity returns true if this property has a type of
	// "Activity". When true, use the GetActivityStreamsActivity and
	// SetActivityStreamsActivity methods to access and set this property.
	IsActivityStreamsActivity() bool
	// IsActivityStreamsAdd returns true if this property has a type of "Add".
	// When true, use the GetActivityStreamsAdd and SetActivityStreamsAdd
	// methods to access and set this property.
	IsActivityStreamsAdd() bool
	// IsActivityStreamsAnnounce returns true if this property has a type of
	// "Announce". When true, use the GetActivityStreamsAnnounce and
	// SetActivityStreamsAnnounce methods to access and set this property.
	IsActivityStreamsAnnounce() bool
	// IsActivityStreamsApplication returns true if this property has a type
	// of "Application". When true, use the GetActivityStreamsApplication
	// and SetActivityStreamsApplication methods to access and set this
	// property.
	IsActivityStreamsApplication() bool
	// IsActivityStreamsArrive returns true if this property has a type of
	// "Arrive". When true, use the GetActivityStreamsArrive and
	// SetActivityStreamsArrive methods to access and set this property.
	IsActivityStreamsArrive() bool
	// IsActivityStreamsArticle returns true if this property has a type of
	// "Article". When true, use the GetActivityStreamsArticle and
	// SetActivityStreamsArticle methods to access and set this property.
	IsActivityStreamsArticle() bool
	// IsActivityStreamsAudio returns true if this property has a type of
	// "Audio". When true, use the GetActivityStreamsAudio and
	// SetActivityStreamsAudio methods to access and set this property.
	IsActivityStreamsAudio() bool
	// IsActivityStreamsBlock returns true if this property has a type of
	// "Block". When true, use the GetActivityStreamsBlock and
	// SetActivityStreamsBlock methods to access and set this property.
	IsActivityStreamsBlock() bool
	// IsActivityStreamsCollection returns true if this property has a type of
	// "Collection". When true, use the GetActivityStreamsCollection and
	// SetActivityStreamsCollection methods to access and set this
	// property.
	IsActivityStreamsCollection() bool
	// IsActivityStreamsCollectionPage returns true if this property has a
	// type of "CollectionPage". When true, use the
	// GetActivityStreamsCollectionPage and
	// SetActivityStreamsCollectionPage methods to access and set this
	// property.
	IsActivityStreamsCollectionPage() bool
	// IsActivityStreamsCreate returns true if this property has a type of
	// "Create". When true, use the GetActivityStreamsCreate and
	// SetActivityStreamsCreate methods to access and set this property.
	IsActivityStreamsCreate() bool
	// IsActivityStreamsDelete returns true if this property has a type of
	// "Delete". When true, use the GetActivityStreamsDelete and
	// SetActivityStreamsDelete methods to access and set this property.
	IsActivityStreamsDelete() bool
	// IsActivityStreamsDislike returns true if this property has a type of
	// "Dislike". When true, use the GetActivityStreamsDislike and
	// SetActivityStreamsDislike methods to access and set this property.
	IsActivityStreamsDislike() bool
	// IsActivityStreamsDocument returns true if this property has a type of
	// "Document". When true, use the GetActivityStreamsDocument and
	// SetActivityStreamsDocument methods to access and set this property.
	IsActivityStreamsDocument() bool
	// IsActivityStreamsEvent returns true if this property has a type of
	// "Event". When true, use the GetActivityStreamsEvent and
	// SetActivityStreamsEvent methods to access and set this property.
	IsActivityStreamsEvent() bool
	// IsActivityStreamsFlag returns true if this property has a type of
	// "Flag". When true, use the GetActivityStreamsFlag and
	// SetActivityStreamsFlag methods to access and set this property.
	IsActivityStreamsFlag() bool
	// IsActivityStreamsFollow returns true if this property has a type of
	// "Follow". When true, use the GetActivityStreamsFollow and
	// SetActivityStreamsFollow methods to access and set this property.
	IsActivityStreamsFollow() bool
	// IsActivityStreamsGroup returns true if this property has a type of
	// "Group". When true, use the GetActivityStreamsGroup and
	// SetActivityStreamsGroup methods to access and set this property.
	IsActivityStreamsGroup() bool
	// IsActivityStreamsIgnore returns true if this property has a type of
	// "Ignore". When true, use the GetActivityStreamsIgnore and
	// SetActivityStreamsIgnore methods to access and set this property.
	IsActivityStreamsIgnore() bool
	// IsActivityStreamsImage returns true if this property has a type of
	// "Image". When true, use the GetActivityStreamsImage and
	// SetActivityStreamsImage methods to access and set this property.
	IsActivityStreamsImage() bool
	// IsActivityStreamsIntransitiveActivity returns true if this property has
	// a type of "IntransitiveActivity". When true, use the
	// GetActivityStreamsIntransitiveActivity and
	// SetActivityStreamsIntransitiveActivity methods to access and set
	// this property.
	IsActivityStreamsIntransitiveActivity() bool
	// IsActivityStreamsInvite returns true if this property has a type of
	// "Invite". When true, use the GetActivityStreamsInvite and
	// SetActivityStreamsInvite methods to access and set this property.
	IsActivityStreamsInvite() bool
	// IsActivityStreamsJoin returns true if this property has a type of
	// "Join". When true, use the GetActivityStreamsJoin and
	// SetActivityStreamsJoin methods to access and set this property.
	IsActivityStreamsJoin() bool
	// IsActivityStreamsLeave returns true if this property has a type of
	// "Leave". When true, use the GetActivityStreamsLeave and
	// SetActivityStreamsLeave methods to access and set this property.
	IsActivityStreamsLeave() bool
	// IsActivityStreamsLike returns true if this property has a type of
	// "Like". When true, use the GetActivityStreamsLike and
	// SetActivityStreamsLike methods to access and set this property.
	IsActivityStreamsLike() bool
	// IsActivityStreamsLink returns true if this property has a type of
	// "Link". When true, use the GetActivityStreamsLink and
	// SetActivityStreamsLink methods to access and set this property.
	IsActivityStreamsLink() bool
	// IsActivityStreamsListen returns true if this property has a type of
	// "Listen". When true, use the GetActivityStreamsListen and
	// SetActivityStreamsListen methods to access and set this property.
	IsActivityStreamsListen() bool
	// IsActivityStreamsMention returns true if this property has a type of
	// "Mention". When true, use the GetActivityStreamsMention and
	// SetActivityStreamsMention methods to access and set this property.
	IsActivityStreamsMention() bool
	// IsActivityStreamsMove returns true if this property has a type of
	// "Move". When true, use the GetActivityStreamsMove and
	// SetActivityStreamsMove methods to access and set this property.
	IsActivityStreamsMove() bool
	// IsActivityStreamsNote returns true if this property has a type of
	// "Note". When true, use the GetActivityStreamsNote and
	// SetActivityStreamsNote methods to access and set this property.
	IsActivityStreamsNote() bool
	// IsActivityStreamsObject returns true if this property has a type of
	// "Object". When true, use the GetActivityStreamsObject and
	// SetActivityStreamsObject methods to access and set this property.
	IsActivityStreamsObject() bool
	// IsActivityStreamsOffer returns true if this property has a type of
	// "Offer". When true, use the GetActivityStreamsOffer and
	// SetActivityStreamsOffer methods to access and set this property.
	IsActivityStreamsOffer() bool
	// IsActivityStreamsOrderedCollection returns true if this property has a
	// type of "OrderedCollection". When true, use the
	// GetActivityStreamsOrderedCollection and
	// SetActivityStreamsOrderedCollection methods to access and set this
	// property.
	IsActivityStreamsOrderedCollection() bool
	// IsActivityStreamsOrderedCollectionPage returns true if this property
	// has a type of "OrderedCollectionPage". When true, use the
	// GetActivityStreamsOrderedCollectionPage and
	// SetActivityStreamsOrderedCollectionPage methods to access and set
	// this property.
	IsActivityStreamsOrderedCollectionPage() bool
	// IsActivityStreamsOrganization returns true if this property has a type
	// of "Organization". When true, use the
	// GetActivityStreamsOrganization and SetActivityStreamsOrganization
	// methods to access and set this property.
	IsActivityStreamsOrganization() bool
	// IsActivityStreamsPage returns true if this property has a type of
	// "Page". When true, use the GetActivityStreamsPage and
	// SetActivityStreamsPage methods to access and set this property.
	IsActivityStreamsPage() bool
	// IsActivityStreamsPerson returns true if this property has a type of
	// "Person". When true, use the GetActivityStreamsPerson and
	// SetActivityStreamsPerson methods to access and set this property.
	IsActivityStreamsPerson() bool
	// IsActivityStreamsPlace returns true if this property has a type of
	// "Place". When true, use the GetActivityStreamsPlace and
	// SetActivityStreamsPlace methods to access and set this property.
	IsActivityStreamsPlace() bool
	// IsActivityStreamsProfile returns true if this property has a type of
	// "Profile". When true, use the GetActivityStreamsProfile and
	// SetActivityStreamsProfile methods to access and set this property.
	IsActivityStreamsProfile() bool
	// IsActivityStreamsQuestion returns true if this property has a type of
	// "Question". When true, use the GetActivityStreamsQuestion and
	// SetActivityStreamsQuestion methods to access and set this property.
	IsActivityStreamsQuestion() bool
	// IsActivityStreamsRead returns true if this property has a type of
	// "Read". When true, use the GetActivityStreamsRead and
	// SetActivityStreamsRead methods to access and set this property.
	IsActivityStreamsRead() bool
	// IsActivityStreamsReject returns true if this property has a type of
	// "Reject". When true, use the GetActivityStreamsReject and
	// SetActivityStreamsReject methods to access and set this property.
	IsActivityStreamsReject() bool
	// IsActivityStreamsRelationship returns true if this property has a type
	// of "Relationship". When true, use the
	// GetActivityStreamsRelationship and SetActivityStreamsRelationship
	// methods to access and set this property.
	IsActivityStreamsRelationship() bool
	// IsActivityStreamsRemove returns true if this property has a type of
	// "Remove". When true, use the GetActivityStreamsRemove and
	// SetActivityStreamsRemove methods to access and set this property.
	IsActivityStreamsRemove() bool
	// IsActivityStreamsService returns true if this property has a type of
	// "Service". When true, use the GetActivityStreamsService and
	// SetActivityStreamsService methods to access and set this property.
	IsActivityStreamsService() bool
	// IsActivityStreamsTentativeAccept returns true if this property has a
	// type of "TentativeAccept". When true, use the
	// GetActivityStreamsTentativeAccept and
	// SetActivityStreamsTentativeAccept methods to access and set this
	// property.
	IsActivityStreamsTentativeAccept() bool
	// IsActivityStreamsTentativeReject returns true if this property has a
	// type of "TentativeReject". When true, use the
	// GetActivityStreamsTentativeReject and
	// SetActivityStreamsTentativeReject methods to access and set this
	// property.
	IsActivityStreamsTentativeReject() bool
	// IsActivityStreamsTombstone returns true if this property has a type of
	// "Tombstone". When true, use the GetActivityStreamsTombstone and
	// SetActivityStreamsTombstone methods to access and set this property.
	IsActivityStreamsTombstone() bool
	// IsActivityStreamsTravel returns true if this property has a type of
	// "Travel". When true, use the GetActivityStreamsTravel and
	// SetActivityStreamsTravel methods to access and set this property.
	IsActivityStreamsTravel() bool
	// IsActivityStreamsUndo returns true if this property has a type of
	// "Undo". When true, use the GetActivityStreamsUndo and
	// SetActivityStreamsUndo methods to access and set this property.
	IsActivityStreamsUndo() bool
	// IsActivityStreamsUpdate returns true if this property has a type of
	// "Update". When true, use the GetActivityStreamsUpdate and
	// SetActivityStreamsUpdate methods to access and set this property.
	IsActivityStreamsUpdate() bool
	// IsActivityStreamsVideo returns true if this property has a type of
	// "Video". When true, use the GetActivityStreamsVideo and
	// SetActivityStreamsVideo methods to access and set this property.
	IsActivityStreamsVideo() bool
	// IsActivityStreamsView returns true if this property has a type of
	// "View". When true, use the GetActivityStreamsView and
	// SetActivityStreamsView methods to access and set this property.
	IsActivityStreamsView() bool
	// IsForgeFedBranch returns true if this property has a type of "Branch".
	// When true, use the GetForgeFedBranch and SetForgeFedBranch methods
	// to access and set this property.
	IsForgeFedBranch() bool
	// IsForgeFedCommit returns true if this property has a type of "Commit".
	// When true, use the GetForgeFedCommit and SetForgeFedCommit methods
	// to access and set this property.
	IsForgeFedCommit() bool
	// IsForgeFedPush returns true if this property has a type of "Push". When
	// true, use the GetForgeFedPush and SetForgeFedPush methods to access
	// and set this property.
	IsForgeFedPush() bool
	// IsForgeFedRepository returns true if this property has a type of
	// "Repository". When true, use the GetForgeFedRepository and
	// SetForgeFedRepository methods to access and set this property.
	IsForgeFedRepository() bool
	// IsForgeFedTicket returns true if this property has a type of "Ticket".
	// When true, use the GetForgeFedTicket and SetForgeFedTicket methods
	// to access and set this property.
	IsForgeFedTicket() bool
	// IsForgeFedTicketDependency returns true if this property has a type of
	// "TicketDependency". When true, use the GetForgeFedTicketDependency
	// and SetForgeFedTicketDependency methods to access and set this
	// property.
	IsForgeFedTicketDependency() bool
	// IsIRI returns true if this property is an IRI. When true, use GetIRI
	// and SetIRI to access and set this property
	IsIRI() bool
	// IsTootEmoji returns true if this property has a type of "Emoji". When
	// true, use the GetTootEmoji and SetTootEmoji methods to access and
	// set this property.
	IsTootEmoji() bool
	// IsTootIdentityProof returns true if this property has a type of
	// "IdentityProof". When true, use the GetTootIdentityProof and
	// SetTootIdentityProof methods to access and set this property.
	IsTootIdentityProof() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsOneOfPropertyIterator) bool
	// Name returns the name of this property: "ActivityStreamsOneOf".
	Name() string
	// Next returns the next iterator, or nil if there is no next iterator.
	Next() ActivityStreamsOneOfPropertyIterator
	// Prev returns the previous iterator, or nil if there is no previous
	// iterator.
	Prev() ActivityStreamsOneOfPropertyIterator
	// SetActivityStreamsAccept sets the value of this property. Calling
	// IsActivityStreamsAccept afterwards returns true.
	SetActivityStreamsAccept(v ActivityStreamsAccept)
	// SetActivityStreamsActivity sets the value of this property. Calling
	// IsActivityStreamsActivity afterwards returns true.
	SetActivityStreamsActivity(v ActivityStreamsActivity)
	// SetActivityStreamsAdd sets the value of this property. Calling
	// IsActivityStreamsAdd afterwards returns true.
	SetActivityStreamsAdd(v ActivityStreamsAdd)
	// SetActivityStreamsAnnounce sets the value of this property. Calling
	// IsActivityStreamsAnnounce afterwards returns true.
	SetActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// SetActivityStreamsApplication sets the value of this property. Calling
	// IsActivityStreamsApplication afterwards returns true.
	SetActivityStreamsApplication(v ActivityStreamsApplication)
	// SetActivityStreamsArrive sets the value of this property. Calling
	// IsActivityStreamsArrive afterwards returns true.
	SetActivityStreamsArrive(v ActivityStreamsArrive)
	// SetActivityStreamsArticle sets the value of this property. Calling
	// IsActivityStreamsArticle afterwards returns true.
	SetActivityStreamsArticle(v ActivityStreamsArticle)
	// SetActivityStreamsAudio sets the value of this property. Calling
	// IsActivityStreamsAudio afterwards returns true.
	SetActivityStreamsAudio(v ActivityStreamsAudio)
	// SetActivityStreamsBlock sets the value of this property. Calling
	// IsActivityStreamsBlock afterwards returns true.
	SetActivityStreamsBlock(v ActivityStreamsBlock)
	// SetActivityStreamsCollection sets the value of this property. Calling
	// IsActivityStreamsCollection afterwards returns true.
	SetActivityStreamsCollection(v ActivityStreamsCollection)
	// SetActivityStreamsCollectionPage sets the value of this property.
	// Calling IsActivityStreamsCollectionPage afterwards returns true.
	SetActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// SetActivityStreamsCreate sets the value of this property. Calling
	// IsActivityStreamsCreate afterwards returns true.
	SetActivityStreamsCreate(v ActivityStreamsCreate)
	// SetActivityStreamsDelete sets the value of this property. Calling
	// IsActivityStreamsDelete afterwards returns true.
	SetActivityStreamsDelete(v ActivityStreamsDelete)
	// SetActivityStreamsDislike sets the value of this property. Calling
	// IsActivityStreamsDislike afterwards returns true.
	SetActivityStreamsDislike(v ActivityStreamsDislike)
	// SetActivityStreamsDocument sets the value of this property. Calling
	// IsActivityStreamsDocument afterwards returns true.
	SetActivityStreamsDocument(v ActivityStreamsDocument)
	// SetActivityStreamsEvent sets the value of this property. Calling
	// IsActivityStreamsEvent afterwards returns true.
	SetActivityStreamsEvent(v ActivityStreamsEvent)
	// SetActivityStreamsFlag sets the value of this property. Calling
	// IsActivityStreamsFlag afterwards returns true.
	SetActivityStreamsFlag(v ActivityStreamsFlag)
	// SetActivityStreamsFollow sets the value of this property. Calling
	// IsActivityStreamsFollow afterwards returns true.
	SetActivityStreamsFollow(v ActivityStreamsFollow)
	// SetActivityStreamsGroup sets the value of this property. Calling
	// IsActivityStreamsGroup afterwards returns true.
	SetActivityStreamsGroup(v ActivityStreamsGroup)
	// SetActivityStreamsIgnore sets the value of this property. Calling
	// IsActivityStreamsIgnore afterwards returns true.
	SetActivityStreamsIgnore(v ActivityStreamsIgnore)
	// SetActivityStreamsImage sets the value of this property. Calling
	// IsActivityStreamsImage afterwards returns true.
	SetActivityStreamsImage(v ActivityStreamsImage)
	// SetActivityStreamsIntransitiveActivity sets the value of this property.
	// Calling IsActivityStreamsIntransitiveActivity afterwards returns
	// true.
	SetActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// SetActivityStreamsInvite sets the value of this property. Calling
	// IsActivityStreamsInvite afterwards returns true.
	SetActivityStreamsInvite(v ActivityStreamsInvite)
	// SetActivityStreamsJoin sets the value of this property. Calling
	// IsActivityStreamsJoin afterwards returns true.
	SetActivityStreamsJoin(v ActivityStreamsJoin)
	// SetActivityStreamsLeave sets the value of this property. Calling
	// IsActivityStreamsLeave afterwards returns true.
	SetActivityStreamsLeave(v ActivityStreamsLeave)
	// SetActivityStreamsLike sets the value of this property. Calling
	// IsActivityStreamsLike afterwards returns true.
	SetActivityStreamsLike(v ActivityStreamsLike)
	// SetActivityStreamsLink sets the value of this property. Calling
	// IsActivityStreamsLink afterwards returns true.
	SetActivityStreamsLink(v ActivityStreamsLink)
	// SetActivityStreamsListen sets the value of this property. Calling
	// IsActivityStreamsListen afterwards returns true.
	SetActivityStreamsListen(v ActivityStreamsListen)
	// SetActivityStreamsMention sets the value of this property. Calling
	// IsActivityStreamsMention afterwards returns true.
	SetActivityStreamsMention(v ActivityStreamsMention)
	// SetActivityStreamsMove sets the value of this property. Calling
	// IsActivityStreamsMove afterwards returns true.
	SetActivityStreamsMove(v ActivityStreamsMove)
	// SetActivityStreamsNote sets the value of this property. Calling
	// IsActivityStreamsNote afterwards returns true.
	SetActivityStreamsNote(v ActivityStreamsNote)
	// SetActivityStreamsObject sets the value of this property. Calling
	// IsActivityStreamsObject afterwards returns true.
	SetActivityStreamsObject(v ActivityStreamsObject)
	// SetActivityStreamsOffer sets the value of this property. Calling
	// IsActivityStreamsOffer afterwards returns true.
	SetActivityStreamsOffer(v ActivityStreamsOffer)
	// SetActivityStreamsOrderedCollection sets the value of this property.
	// Calling IsActivityStreamsOrderedCollection afterwards returns true.
	SetActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// SetActivityStreamsOrderedCollectionPage sets the value of this
	// property. Calling IsActivityStreamsOrderedCollectionPage afterwards
	// returns true.
	SetActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// SetActivityStreamsOrganization sets the value of this property. Calling
	// IsActivityStreamsOrganization afterwards returns true.
	SetActivityStreamsOrganization(v ActivityStreamsOrganization)
	// SetActivityStreamsPage sets the value of this property. Calling
	// IsActivityStreamsPage afterwards returns true.
	SetActivityStreamsPage(v ActivityStreamsPage)
	// SetActivityStreamsPerson sets the value of this property. Calling
	// IsActivityStreamsPerson afterwards returns true.
	SetActivityStreamsPerson(v ActivityStreamsPerson)
	// SetActivityStreamsPlace sets the value of this property. Calling
	// IsActivityStreamsPlace afterwards returns true.
	SetActivityStreamsPlace(v ActivityStreamsPlace)
	// SetActivityStreamsProfile sets the value of this property. Calling
	// IsActivityStreamsProfile afterwards returns true.
	SetActivityStreamsProfile(v ActivityStreamsProfile)
	// SetActivityStreamsQuestion sets the value of this property. Calling
	// IsActivityStreamsQuestion afterwards returns true.
	SetActivityStreamsQuestion(v ActivityStreamsQuestion)
	// SetActivityStreamsRead sets the value of this property. Calling
	// IsActivityStreamsRead afterwards returns true.
	SetActivityStreamsRead(v ActivityStreamsRead)
	// SetActivityStreamsReject sets the value of this property. Calling
	// IsActivityStreamsReject afterwards returns true.
	SetActivityStreamsReject(v ActivityStreamsReject)
	// SetActivityStreamsRelationship sets the value of this property. Calling
	// IsActivityStreamsRelationship afterwards returns true.
	SetActivityStreamsRelationship(v ActivityStreamsRelationship)
	// SetActivityStreamsRemove sets the value of this property. Calling
	// IsActivityStreamsRemove afterwards returns true.
	SetActivityStreamsRemove(v ActivityStreamsRemove)
	// SetActivityStreamsService sets the value of this property. Calling
	// IsActivityStreamsService afterwards returns true.
	SetActivityStreamsService(v ActivityStreamsService)
	// SetActivityStreamsTentativeAccept sets the value of this property.
	// Calling IsActivityStreamsTentativeAccept afterwards returns true.
	SetActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// SetActivityStreamsTentativeReject sets the value of this property.
	// Calling IsActivityStreamsTentativeReject afterwards returns true.
	SetActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// SetActivityStreamsTombstone sets the value of this property. Calling
	// IsActivityStreamsTombstone afterwards returns true.
	SetActivityStreamsTombstone(v ActivityStreamsTombstone)
	// SetActivityStreamsTravel sets the value of this property. Calling
	// IsActivityStreamsTravel afterwards returns true.
	SetActivityStreamsTravel(v ActivityStreamsTravel)
	// SetActivityStreamsUndo sets the value of this property. Calling
	// IsActivityStreamsUndo afterwards returns true.
	SetActivityStreamsUndo(v ActivityStreamsUndo)
	// SetActivityStreamsUpdate sets the value of this property. Calling
	// IsActivityStreamsUpdate afterwards returns true.
	SetActivityStreamsUpdate(v ActivityStreamsUpdate)
	// SetActivityStreamsVideo sets the value of this property. Calling
	// IsActivityStreamsVideo afterwards returns true.
	SetActivityStreamsVideo(v ActivityStreamsVideo)
	// SetActivityStreamsView sets the value of this property. Calling
	// IsActivityStreamsView afterwards returns true.
	SetActivityStreamsView(v ActivityStreamsView)
	// SetForgeFedBranch sets the value of this property. Calling
	// IsForgeFedBranch afterwards returns true.
	SetForgeFedBranch(v ForgeFedBranch)
	// SetForgeFedCommit sets the value of this property. Calling
	// IsForgeFedCommit afterwards returns true.
	SetForgeFedCommit(v ForgeFedCommit)
	// SetForgeFedPush sets the value of this property. Calling IsForgeFedPush
	// afterwards returns true.
	SetForgeFedPush(v ForgeFedPush)
	// SetForgeFedRepository sets the value of this property. Calling
	// IsForgeFedRepository afterwards returns true.
	SetForgeFedRepository(v ForgeFedRepository)
	// SetForgeFedTicket sets the value of this property. Calling
	// IsForgeFedTicket afterwards returns true.
	SetForgeFedTicket(v ForgeFedTicket)
	// SetForgeFedTicketDependency sets the value of this property. Calling
	// IsForgeFedTicketDependency afterwards returns true.
	SetForgeFedTicketDependency(v ForgeFedTicketDependency)
	// SetIRI sets the value of this property. Calling IsIRI afterwards
	// returns true.
	SetIRI(v *url.URL)
	// SetTootEmoji sets the value of this property. Calling IsTootEmoji
	// afterwards returns true.
	SetTootEmoji(v TootEmoji)
	// SetTootIdentityProof sets the value of this property. Calling
	// IsTootIdentityProof afterwards returns true.
	SetTootIdentityProof(v TootIdentityProof)
	// SetType attempts to set the property for the arbitrary type. Returns an
	// error if it is not a valid type to set on this property.
	SetType(t Type) error
}

ActivityStreamsOneOfPropertyIterator represents a single value for the "oneOf" property.

type ActivityStreamsOrderedCollection

type ActivityStreamsOrderedCollection interface {
	// GetActivityStreamsAltitude returns the "altitude" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAltitude() ActivityStreamsAltitudeProperty
	// GetActivityStreamsAttachment returns the "attachment" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAttachment() ActivityStreamsAttachmentProperty
	// GetActivityStreamsAttributedTo returns the "attributedTo" property if
	// it exists, and nil otherwise.
	GetActivityStreamsAttributedTo() ActivityStreamsAttributedToProperty
	// GetActivityStreamsAudience returns the "audience" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAudience() ActivityStreamsAudienceProperty
	// GetActivityStreamsBcc returns the "bcc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBcc() ActivityStreamsBccProperty
	// GetActivityStreamsBto returns the "bto" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBto() ActivityStreamsBtoProperty
	// GetActivityStreamsCc returns the "cc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsCc() ActivityStreamsCcProperty
	// GetActivityStreamsContent returns the "content" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContent() ActivityStreamsContentProperty
	// GetActivityStreamsContext returns the "context" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContext() ActivityStreamsContextProperty
	// GetActivityStreamsCurrent returns the "current" property if it exists,
	// and nil otherwise.
	GetActivityStreamsCurrent() ActivityStreamsCurrentProperty
	// GetActivityStreamsDuration returns the "duration" property if it
	// exists, and nil otherwise.
	GetActivityStreamsDuration() ActivityStreamsDurationProperty
	// GetActivityStreamsEndTime returns the "endTime" property if it exists,
	// and nil otherwise.
	GetActivityStreamsEndTime() ActivityStreamsEndTimeProperty
	// GetActivityStreamsFirst returns the "first" property if it exists, and
	// nil otherwise.
	GetActivityStreamsFirst() ActivityStreamsFirstProperty
	// GetActivityStreamsGenerator returns the "generator" property if it
	// exists, and nil otherwise.
	GetActivityStreamsGenerator() ActivityStreamsGeneratorProperty
	// GetActivityStreamsIcon returns the "icon" property if it exists, and
	// nil otherwise.
	GetActivityStreamsIcon() ActivityStreamsIconProperty
	// GetActivityStreamsImage returns the "image" property if it exists, and
	// nil otherwise.
	GetActivityStreamsImage() ActivityStreamsImageProperty
	// GetActivityStreamsInReplyTo returns the "inReplyTo" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInReplyTo() ActivityStreamsInReplyToProperty
	// GetActivityStreamsLast returns the "last" property if it exists, and
	// nil otherwise.
	GetActivityStreamsLast() ActivityStreamsLastProperty
	// GetActivityStreamsLikes returns the "likes" property if it exists, and
	// nil otherwise.
	GetActivityStreamsLikes() ActivityStreamsLikesProperty
	// GetActivityStreamsLocation returns the "location" property if it
	// exists, and nil otherwise.
	GetActivityStreamsLocation() ActivityStreamsLocationProperty
	// GetActivityStreamsMediaType returns the "mediaType" property if it
	// exists, and nil otherwise.
	GetActivityStreamsMediaType() ActivityStreamsMediaTypeProperty
	// GetActivityStreamsName returns the "name" property if it exists, and
	// nil otherwise.
	GetActivityStreamsName() ActivityStreamsNameProperty
	// GetActivityStreamsObject returns the "object" property if it exists,
	// and nil otherwise.
	GetActivityStreamsObject() ActivityStreamsObjectProperty
	// GetActivityStreamsOrderedItems returns the "orderedItems" property if
	// it exists, and nil otherwise.
	GetActivityStreamsOrderedItems() ActivityStreamsOrderedItemsProperty
	// GetActivityStreamsPreview returns the "preview" property if it exists,
	// and nil otherwise.
	GetActivityStreamsPreview() ActivityStreamsPreviewProperty
	// GetActivityStreamsPublished returns the "published" property if it
	// exists, and nil otherwise.
	GetActivityStreamsPublished() ActivityStreamsPublishedProperty
	// GetActivityStreamsReplies returns the "replies" property if it exists,
	// and nil otherwise.
	GetActivityStreamsReplies() ActivityStreamsRepliesProperty
	// GetActivityStreamsShares returns the "shares" property if it exists,
	// and nil otherwise.
	GetActivityStreamsShares() ActivityStreamsSharesProperty
	// GetActivityStreamsSource returns the "source" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSource() ActivityStreamsSourceProperty
	// GetActivityStreamsStartTime returns the "startTime" property if it
	// exists, and nil otherwise.
	GetActivityStreamsStartTime() ActivityStreamsStartTimeProperty
	// GetActivityStreamsSummary returns the "summary" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSummary() ActivityStreamsSummaryProperty
	// GetActivityStreamsTag returns the "tag" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTag() ActivityStreamsTagProperty
	// GetActivityStreamsTo returns the "to" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTo() ActivityStreamsToProperty
	// GetActivityStreamsTotalItems returns the "totalItems" property if it
	// exists, and nil otherwise.
	GetActivityStreamsTotalItems() ActivityStreamsTotalItemsProperty
	// GetActivityStreamsUpdated returns the "updated" property if it exists,
	// and nil otherwise.
	GetActivityStreamsUpdated() ActivityStreamsUpdatedProperty
	// GetActivityStreamsUrl returns the "url" property if it exists, and nil
	// otherwise.
	GetActivityStreamsUrl() ActivityStreamsUrlProperty
	// GetForgeFedEarlyItems returns the "earlyItems" property if it exists,
	// and nil otherwise.
	GetForgeFedEarlyItems() ForgeFedEarlyItemsProperty
	// GetForgeFedTeam returns the "team" property if it exists, and nil
	// otherwise.
	GetForgeFedTeam() ForgeFedTeamProperty
	// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
	// it exists, and nil otherwise.
	GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
	// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
	// it exists, and nil otherwise.
	GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
	// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
	GetJSONLDId() JSONLDIdProperty
	// GetJSONLDType returns the "type" property if it exists, and nil
	// otherwise.
	GetJSONLDType() JSONLDTypeProperty
	// GetTypeName returns the name of this type.
	GetTypeName() string
	// GetUnknownProperties returns the unknown properties for the
	// OrderedCollection type. Note that this should not be used by app
	// developers. It is only used to help determine which implementation
	// is LessThan the other. Developers who are creating a different
	// implementation of this type's interface can use this method in
	// their LessThan implementation, but routine ActivityPub applications
	// should not use this to bypass the code generation tool.
	GetUnknownProperties() map[string]interface{}
	// IsExtending returns true if the OrderedCollection type extends from the
	// other type.
	IsExtending(other Type) bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this type and the specific properties that are set. The value
	// in the map is the alias used to import the type and its properties.
	JSONLDContext() map[string]string
	// LessThan computes if this OrderedCollection is lesser, with an
	// arbitrary but stable determination.
	LessThan(o ActivityStreamsOrderedCollection) bool
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format.
	Serialize() (map[string]interface{}, error)
	// SetActivityStreamsAltitude sets the "altitude" property.
	SetActivityStreamsAltitude(i ActivityStreamsAltitudeProperty)
	// SetActivityStreamsAttachment sets the "attachment" property.
	SetActivityStreamsAttachment(i ActivityStreamsAttachmentProperty)
	// SetActivityStreamsAttributedTo sets the "attributedTo" property.
	SetActivityStreamsAttributedTo(i ActivityStreamsAttributedToProperty)
	// SetActivityStreamsAudience sets the "audience" property.
	SetActivityStreamsAudience(i ActivityStreamsAudienceProperty)
	// SetActivityStreamsBcc sets the "bcc" property.
	SetActivityStreamsBcc(i ActivityStreamsBccProperty)
	// SetActivityStreamsBto sets the "bto" property.
	SetActivityStreamsBto(i ActivityStreamsBtoProperty)
	// SetActivityStreamsCc sets the "cc" property.
	SetActivityStreamsCc(i ActivityStreamsCcProperty)
	// SetActivityStreamsContent sets the "content" property.
	SetActivityStreamsContent(i ActivityStreamsContentProperty)
	// SetActivityStreamsContext sets the "context" property.
	SetActivityStreamsContext(i ActivityStreamsContextProperty)
	// SetActivityStreamsCurrent sets the "current" property.
	SetActivityStreamsCurrent(i ActivityStreamsCurrentProperty)
	// SetActivityStreamsDuration sets the "duration" property.
	SetActivityStreamsDuration(i ActivityStreamsDurationProperty)
	// SetActivityStreamsEndTime sets the "endTime" property.
	SetActivityStreamsEndTime(i ActivityStreamsEndTimeProperty)
	// SetActivityStreamsFirst sets the "first" property.
	SetActivityStreamsFirst(i ActivityStreamsFirstProperty)
	// SetActivityStreamsGenerator sets the "generator" property.
	SetActivityStreamsGenerator(i ActivityStreamsGeneratorProperty)
	// SetActivityStreamsIcon sets the "icon" property.
	SetActivityStreamsIcon(i ActivityStreamsIconProperty)
	// SetActivityStreamsImage sets the "image" property.
	SetActivityStreamsImage(i ActivityStreamsImageProperty)
	// SetActivityStreamsInReplyTo sets the "inReplyTo" property.
	SetActivityStreamsInReplyTo(i ActivityStreamsInReplyToProperty)
	// SetActivityStreamsLast sets the "last" property.
	SetActivityStreamsLast(i ActivityStreamsLastProperty)
	// SetActivityStreamsLikes sets the "likes" property.
	SetActivityStreamsLikes(i ActivityStreamsLikesProperty)
	// SetActivityStreamsLocation sets the "location" property.
	SetActivityStreamsLocation(i ActivityStreamsLocationProperty)
	// SetActivityStreamsMediaType sets the "mediaType" property.
	SetActivityStreamsMediaType(i ActivityStreamsMediaTypeProperty)
	// SetActivityStreamsName sets the "name" property.
	SetActivityStreamsName(i ActivityStreamsNameProperty)
	// SetActivityStreamsObject sets the "object" property.
	SetActivityStreamsObject(i ActivityStreamsObjectProperty)
	// SetActivityStreamsOrderedItems sets the "orderedItems" property.
	SetActivityStreamsOrderedItems(i ActivityStreamsOrderedItemsProperty)
	// SetActivityStreamsPreview sets the "preview" property.
	SetActivityStreamsPreview(i ActivityStreamsPreviewProperty)
	// SetActivityStreamsPublished sets the "published" property.
	SetActivityStreamsPublished(i ActivityStreamsPublishedProperty)
	// SetActivityStreamsReplies sets the "replies" property.
	SetActivityStreamsReplies(i ActivityStreamsRepliesProperty)
	// SetActivityStreamsShares sets the "shares" property.
	SetActivityStreamsShares(i ActivityStreamsSharesProperty)
	// SetActivityStreamsSource sets the "source" property.
	SetActivityStreamsSource(i ActivityStreamsSourceProperty)
	// SetActivityStreamsStartTime sets the "startTime" property.
	SetActivityStreamsStartTime(i ActivityStreamsStartTimeProperty)
	// SetActivityStreamsSummary sets the "summary" property.
	SetActivityStreamsSummary(i ActivityStreamsSummaryProperty)
	// SetActivityStreamsTag sets the "tag" property.
	SetActivityStreamsTag(i ActivityStreamsTagProperty)
	// SetActivityStreamsTo sets the "to" property.
	SetActivityStreamsTo(i ActivityStreamsToProperty)
	// SetActivityStreamsTotalItems sets the "totalItems" property.
	SetActivityStreamsTotalItems(i ActivityStreamsTotalItemsProperty)
	// SetActivityStreamsUpdated sets the "updated" property.
	SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
	// SetActivityStreamsUrl sets the "url" property.
	SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
	// SetForgeFedEarlyItems sets the "earlyItems" property.
	SetForgeFedEarlyItems(i ForgeFedEarlyItemsProperty)
	// SetForgeFedTeam sets the "team" property.
	SetForgeFedTeam(i ForgeFedTeamProperty)
	// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
	SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
	// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
	SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
	// SetJSONLDId sets the "id" property.
	SetJSONLDId(i JSONLDIdProperty)
	// SetJSONLDType sets the "type" property.
	SetJSONLDType(i JSONLDTypeProperty)
	// VocabularyURI returns the vocabulary's URI as a string.
	VocabularyURI() string
}

A subtype of Collection in which members of the logical collection are assumed to always be strictly ordered.

Example 6 (https://www.w3.org/TR/activitystreams-vocabulary/#ex6-jsonld):

{
  "orderedItems": [
    {
      "name": "A Simple Note",
      "type": "Note"
    },
    {
      "name": "Another Simple Note",
      "type": "Note"
    }
  ],
  "summary": "Sally's notes",
  "totalItems": 2,
  "type": "OrderedCollection"
}

type ActivityStreamsOrderedCollectionPage

type ActivityStreamsOrderedCollectionPage interface {
	// GetActivityStreamsAltitude returns the "altitude" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAltitude() ActivityStreamsAltitudeProperty
	// GetActivityStreamsAttachment returns the "attachment" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAttachment() ActivityStreamsAttachmentProperty
	// GetActivityStreamsAttributedTo returns the "attributedTo" property if
	// it exists, and nil otherwise.
	GetActivityStreamsAttributedTo() ActivityStreamsAttributedToProperty
	// GetActivityStreamsAudience returns the "audience" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAudience() ActivityStreamsAudienceProperty
	// GetActivityStreamsBcc returns the "bcc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBcc() ActivityStreamsBccProperty
	// GetActivityStreamsBto returns the "bto" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBto() ActivityStreamsBtoProperty
	// GetActivityStreamsCc returns the "cc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsCc() ActivityStreamsCcProperty
	// GetActivityStreamsContent returns the "content" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContent() ActivityStreamsContentProperty
	// GetActivityStreamsContext returns the "context" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContext() ActivityStreamsContextProperty
	// GetActivityStreamsCurrent returns the "current" property if it exists,
	// and nil otherwise.
	GetActivityStreamsCurrent() ActivityStreamsCurrentProperty
	// GetActivityStreamsDuration returns the "duration" property if it
	// exists, and nil otherwise.
	GetActivityStreamsDuration() ActivityStreamsDurationProperty
	// GetActivityStreamsEndTime returns the "endTime" property if it exists,
	// and nil otherwise.
	GetActivityStreamsEndTime() ActivityStreamsEndTimeProperty
	// GetActivityStreamsFirst returns the "first" property if it exists, and
	// nil otherwise.
	GetActivityStreamsFirst() ActivityStreamsFirstProperty
	// GetActivityStreamsGenerator returns the "generator" property if it
	// exists, and nil otherwise.
	GetActivityStreamsGenerator() ActivityStreamsGeneratorProperty
	// GetActivityStreamsIcon returns the "icon" property if it exists, and
	// nil otherwise.
	GetActivityStreamsIcon() ActivityStreamsIconProperty
	// GetActivityStreamsImage returns the "image" property if it exists, and
	// nil otherwise.
	GetActivityStreamsImage() ActivityStreamsImageProperty
	// GetActivityStreamsInReplyTo returns the "inReplyTo" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInReplyTo() ActivityStreamsInReplyToProperty
	// GetActivityStreamsLast returns the "last" property if it exists, and
	// nil otherwise.
	GetActivityStreamsLast() ActivityStreamsLastProperty
	// GetActivityStreamsLikes returns the "likes" property if it exists, and
	// nil otherwise.
	GetActivityStreamsLikes() ActivityStreamsLikesProperty
	// GetActivityStreamsLocation returns the "location" property if it
	// exists, and nil otherwise.
	GetActivityStreamsLocation() ActivityStreamsLocationProperty
	// GetActivityStreamsMediaType returns the "mediaType" property if it
	// exists, and nil otherwise.
	GetActivityStreamsMediaType() ActivityStreamsMediaTypeProperty
	// GetActivityStreamsName returns the "name" property if it exists, and
	// nil otherwise.
	GetActivityStreamsName() ActivityStreamsNameProperty
	// GetActivityStreamsNext returns the "next" property if it exists, and
	// nil otherwise.
	GetActivityStreamsNext() ActivityStreamsNextProperty
	// GetActivityStreamsObject returns the "object" property if it exists,
	// and nil otherwise.
	GetActivityStreamsObject() ActivityStreamsObjectProperty
	// GetActivityStreamsOrderedItems returns the "orderedItems" property if
	// it exists, and nil otherwise.
	GetActivityStreamsOrderedItems() ActivityStreamsOrderedItemsProperty
	// GetActivityStreamsPartOf returns the "partOf" property if it exists,
	// and nil otherwise.
	GetActivityStreamsPartOf() ActivityStreamsPartOfProperty
	// GetActivityStreamsPrev returns the "prev" property if it exists, and
	// nil otherwise.
	GetActivityStreamsPrev() ActivityStreamsPrevProperty
	// GetActivityStreamsPreview returns the "preview" property if it exists,
	// and nil otherwise.
	GetActivityStreamsPreview() ActivityStreamsPreviewProperty
	// GetActivityStreamsPublished returns the "published" property if it
	// exists, and nil otherwise.
	GetActivityStreamsPublished() ActivityStreamsPublishedProperty
	// GetActivityStreamsReplies returns the "replies" property if it exists,
	// and nil otherwise.
	GetActivityStreamsReplies() ActivityStreamsRepliesProperty
	// GetActivityStreamsShares returns the "shares" property if it exists,
	// and nil otherwise.
	GetActivityStreamsShares() ActivityStreamsSharesProperty
	// GetActivityStreamsSource returns the "source" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSource() ActivityStreamsSourceProperty
	// GetActivityStreamsStartIndex returns the "startIndex" property if it
	// exists, and nil otherwise.
	GetActivityStreamsStartIndex() ActivityStreamsStartIndexProperty
	// GetActivityStreamsStartTime returns the "startTime" property if it
	// exists, and nil otherwise.
	GetActivityStreamsStartTime() ActivityStreamsStartTimeProperty
	// GetActivityStreamsSummary returns the "summary" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSummary() ActivityStreamsSummaryProperty
	// GetActivityStreamsTag returns the "tag" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTag() ActivityStreamsTagProperty
	// GetActivityStreamsTo returns the "to" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTo() ActivityStreamsToProperty
	// GetActivityStreamsTotalItems returns the "totalItems" property if it
	// exists, and nil otherwise.
	GetActivityStreamsTotalItems() ActivityStreamsTotalItemsProperty
	// GetActivityStreamsUpdated returns the "updated" property if it exists,
	// and nil otherwise.
	GetActivityStreamsUpdated() ActivityStreamsUpdatedProperty
	// GetActivityStreamsUrl returns the "url" property if it exists, and nil
	// otherwise.
	GetActivityStreamsUrl() ActivityStreamsUrlProperty
	// GetForgeFedEarlyItems returns the "earlyItems" property if it exists,
	// and nil otherwise.
	GetForgeFedEarlyItems() ForgeFedEarlyItemsProperty
	// GetForgeFedTeam returns the "team" property if it exists, and nil
	// otherwise.
	GetForgeFedTeam() ForgeFedTeamProperty
	// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
	// it exists, and nil otherwise.
	GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
	// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
	// it exists, and nil otherwise.
	GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
	// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
	GetJSONLDId() JSONLDIdProperty
	// GetJSONLDType returns the "type" property if it exists, and nil
	// otherwise.
	GetJSONLDType() JSONLDTypeProperty
	// GetTypeName returns the name of this type.
	GetTypeName() string
	// GetUnknownProperties returns the unknown properties for the
	// OrderedCollectionPage type. Note that this should not be used by
	// app developers. It is only used to help determine which
	// implementation is LessThan the other. Developers who are creating a
	// different implementation of this type's interface can use this
	// method in their LessThan implementation, but routine ActivityPub
	// applications should not use this to bypass the code generation tool.
	GetUnknownProperties() map[string]interface{}
	// IsExtending returns true if the OrderedCollectionPage type extends from
	// the other type.
	IsExtending(other Type) bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this type and the specific properties that are set. The value
	// in the map is the alias used to import the type and its properties.
	JSONLDContext() map[string]string
	// LessThan computes if this OrderedCollectionPage is lesser, with an
	// arbitrary but stable determination.
	LessThan(o ActivityStreamsOrderedCollectionPage) bool
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format.
	Serialize() (map[string]interface{}, error)
	// SetActivityStreamsAltitude sets the "altitude" property.
	SetActivityStreamsAltitude(i ActivityStreamsAltitudeProperty)
	// SetActivityStreamsAttachment sets the "attachment" property.
	SetActivityStreamsAttachment(i ActivityStreamsAttachmentProperty)
	// SetActivityStreamsAttributedTo sets the "attributedTo" property.
	SetActivityStreamsAttributedTo(i ActivityStreamsAttributedToProperty)
	// SetActivityStreamsAudience sets the "audience" property.
	SetActivityStreamsAudience(i ActivityStreamsAudienceProperty)
	// SetActivityStreamsBcc sets the "bcc" property.
	SetActivityStreamsBcc(i ActivityStreamsBccProperty)
	// SetActivityStreamsBto sets the "bto" property.
	SetActivityStreamsBto(i ActivityStreamsBtoProperty)
	// SetActivityStreamsCc sets the "cc" property.
	SetActivityStreamsCc(i ActivityStreamsCcProperty)
	// SetActivityStreamsContent sets the "content" property.
	SetActivityStreamsContent(i ActivityStreamsContentProperty)
	// SetActivityStreamsContext sets the "context" property.
	SetActivityStreamsContext(i ActivityStreamsContextProperty)
	// SetActivityStreamsCurrent sets the "current" property.
	SetActivityStreamsCurrent(i ActivityStreamsCurrentProperty)
	// SetActivityStreamsDuration sets the "duration" property.
	SetActivityStreamsDuration(i ActivityStreamsDurationProperty)
	// SetActivityStreamsEndTime sets the "endTime" property.
	SetActivityStreamsEndTime(i ActivityStreamsEndTimeProperty)
	// SetActivityStreamsFirst sets the "first" property.
	SetActivityStreamsFirst(i ActivityStreamsFirstProperty)
	// SetActivityStreamsGenerator sets the "generator" property.
	SetActivityStreamsGenerator(i ActivityStreamsGeneratorProperty)
	// SetActivityStreamsIcon sets the "icon" property.
	SetActivityStreamsIcon(i ActivityStreamsIconProperty)
	// SetActivityStreamsImage sets the "image" property.
	SetActivityStreamsImage(i ActivityStreamsImageProperty)
	// SetActivityStreamsInReplyTo sets the "inReplyTo" property.
	SetActivityStreamsInReplyTo(i ActivityStreamsInReplyToProperty)
	// SetActivityStreamsLast sets the "last" property.
	SetActivityStreamsLast(i ActivityStreamsLastProperty)
	// SetActivityStreamsLikes sets the "likes" property.
	SetActivityStreamsLikes(i ActivityStreamsLikesProperty)
	// SetActivityStreamsLocation sets the "location" property.
	SetActivityStreamsLocation(i ActivityStreamsLocationProperty)
	// SetActivityStreamsMediaType sets the "mediaType" property.
	SetActivityStreamsMediaType(i ActivityStreamsMediaTypeProperty)
	// SetActivityStreamsName sets the "name" property.
	SetActivityStreamsName(i ActivityStreamsNameProperty)
	// SetActivityStreamsNext sets the "next" property.
	SetActivityStreamsNext(i ActivityStreamsNextProperty)
	// SetActivityStreamsObject sets the "object" property.
	SetActivityStreamsObject(i ActivityStreamsObjectProperty)
	// SetActivityStreamsOrderedItems sets the "orderedItems" property.
	SetActivityStreamsOrderedItems(i ActivityStreamsOrderedItemsProperty)
	// SetActivityStreamsPartOf sets the "partOf" property.
	SetActivityStreamsPartOf(i ActivityStreamsPartOfProperty)
	// SetActivityStreamsPrev sets the "prev" property.
	SetActivityStreamsPrev(i ActivityStreamsPrevProperty)
	// SetActivityStreamsPreview sets the "preview" property.
	SetActivityStreamsPreview(i ActivityStreamsPreviewProperty)
	// SetActivityStreamsPublished sets the "published" property.
	SetActivityStreamsPublished(i ActivityStreamsPublishedProperty)
	// SetActivityStreamsReplies sets the "replies" property.
	SetActivityStreamsReplies(i ActivityStreamsRepliesProperty)
	// SetActivityStreamsShares sets the "shares" property.
	SetActivityStreamsShares(i ActivityStreamsSharesProperty)
	// SetActivityStreamsSource sets the "source" property.
	SetActivityStreamsSource(i ActivityStreamsSourceProperty)
	// SetActivityStreamsStartIndex sets the "startIndex" property.
	SetActivityStreamsStartIndex(i ActivityStreamsStartIndexProperty)
	// SetActivityStreamsStartTime sets the "startTime" property.
	SetActivityStreamsStartTime(i ActivityStreamsStartTimeProperty)
	// SetActivityStreamsSummary sets the "summary" property.
	SetActivityStreamsSummary(i ActivityStreamsSummaryProperty)
	// SetActivityStreamsTag sets the "tag" property.
	SetActivityStreamsTag(i ActivityStreamsTagProperty)
	// SetActivityStreamsTo sets the "to" property.
	SetActivityStreamsTo(i ActivityStreamsToProperty)
	// SetActivityStreamsTotalItems sets the "totalItems" property.
	SetActivityStreamsTotalItems(i ActivityStreamsTotalItemsProperty)
	// SetActivityStreamsUpdated sets the "updated" property.
	SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
	// SetActivityStreamsUrl sets the "url" property.
	SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
	// SetForgeFedEarlyItems sets the "earlyItems" property.
	SetForgeFedEarlyItems(i ForgeFedEarlyItemsProperty)
	// SetForgeFedTeam sets the "team" property.
	SetForgeFedTeam(i ForgeFedTeamProperty)
	// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
	SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
	// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
	SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
	// SetJSONLDId sets the "id" property.
	SetJSONLDId(i JSONLDIdProperty)
	// SetJSONLDType sets the "type" property.
	SetJSONLDType(i JSONLDTypeProperty)
	// VocabularyURI returns the vocabulary's URI as a string.
	VocabularyURI() string
}

Used to represent ordered subsets of items from an OrderedCollection. Refer to the Activity Streams 2.0 Core for a complete description of the OrderedCollectionPage object.

Example 8 (https://www.w3.org/TR/activitystreams-vocabulary/#ex6c-jsonld):

{
  "id": "http://example.org/foo?page=1",
  "orderedItems": [
    {
      "name": "A Simple Note",
      "type": "Note"
    },
    {
      "name": "Another Simple Note",
      "type": "Note"
    }
  ],
  "partOf": "http://example.org/foo",
  "summary": "Page 1 of Sally's notes",
  "type": "OrderedCollectionPage"
}

type ActivityStreamsOrderedItemsProperty

type ActivityStreamsOrderedItemsProperty interface {
	// AppendActivityStreamsAccept appends a Accept value to the back of a
	// list of the property "orderedItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsAccept(v ActivityStreamsAccept)
	// AppendActivityStreamsActivity appends a Activity value to the back of a
	// list of the property "orderedItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsActivity(v ActivityStreamsActivity)
	// AppendActivityStreamsAdd appends a Add value to the back of a list of
	// the property "orderedItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsAdd(v ActivityStreamsAdd)
	// AppendActivityStreamsAnnounce appends a Announce value to the back of a
	// list of the property "orderedItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// AppendActivityStreamsApplication appends a Application value to the
	// back of a list of the property "orderedItems". Invalidates
	// iterators that are traversing using Prev.
	AppendActivityStreamsApplication(v ActivityStreamsApplication)
	// AppendActivityStreamsArrive appends a Arrive value to the back of a
	// list of the property "orderedItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsArrive(v ActivityStreamsArrive)
	// AppendActivityStreamsArticle appends a Article value to the back of a
	// list of the property "orderedItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsArticle(v ActivityStreamsArticle)
	// AppendActivityStreamsAudio appends a Audio value to the back of a list
	// of the property "orderedItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsAudio(v ActivityStreamsAudio)
	// AppendActivityStreamsBlock appends a Block value to the back of a list
	// of the property "orderedItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsBlock(v ActivityStreamsBlock)
	// AppendActivityStreamsCollection appends a Collection value to the back
	// of a list of the property "orderedItems". Invalidates iterators
	// that are traversing using Prev.
	AppendActivityStreamsCollection(v ActivityStreamsCollection)
	// AppendActivityStreamsCollectionPage appends a CollectionPage value to
	// the back of a list of the property "orderedItems". Invalidates
	// iterators that are traversing using Prev.
	AppendActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// AppendActivityStreamsCreate appends a Create value to the back of a
	// list of the property "orderedItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsCreate(v ActivityStreamsCreate)
	// AppendActivityStreamsDelete appends a Delete value to the back of a
	// list of the property "orderedItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDelete(v ActivityStreamsDelete)
	// AppendActivityStreamsDislike appends a Dislike value to the back of a
	// list of the property "orderedItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDislike(v ActivityStreamsDislike)
	// AppendActivityStreamsDocument appends a Document value to the back of a
	// list of the property "orderedItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDocument(v ActivityStreamsDocument)
	// AppendActivityStreamsEvent appends a Event value to the back of a list
	// of the property "orderedItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsEvent(v ActivityStreamsEvent)
	// AppendActivityStreamsFlag appends a Flag value to the back of a list of
	// the property "orderedItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsFlag(v ActivityStreamsFlag)
	// AppendActivityStreamsFollow appends a Follow value to the back of a
	// list of the property "orderedItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsFollow(v ActivityStreamsFollow)
	// AppendActivityStreamsGroup appends a Group value to the back of a list
	// of the property "orderedItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsGroup(v ActivityStreamsGroup)
	// AppendActivityStreamsIgnore appends a Ignore value to the back of a
	// list of the property "orderedItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsIgnore(v ActivityStreamsIgnore)
	// AppendActivityStreamsImage appends a Image value to the back of a list
	// of the property "orderedItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsImage(v ActivityStreamsImage)
	// AppendActivityStreamsIntransitiveActivity appends a
	// IntransitiveActivity value to the back of a list of the property
	// "orderedItems". Invalidates iterators that are traversing using
	// Prev.
	AppendActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// AppendActivityStreamsInvite appends a Invite value to the back of a
	// list of the property "orderedItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsInvite(v ActivityStreamsInvite)
	// AppendActivityStreamsJoin appends a Join value to the back of a list of
	// the property "orderedItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsJoin(v ActivityStreamsJoin)
	// AppendActivityStreamsLeave appends a Leave value to the back of a list
	// of the property "orderedItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsLeave(v ActivityStreamsLeave)
	// AppendActivityStreamsLike appends a Like value to the back of a list of
	// the property "orderedItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsLike(v ActivityStreamsLike)
	// AppendActivityStreamsLink appends a Link value to the back of a list of
	// the property "orderedItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsLink(v ActivityStreamsLink)
	// AppendActivityStreamsListen appends a Listen value to the back of a
	// list of the property "orderedItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsListen(v ActivityStreamsListen)
	// AppendActivityStreamsMention appends a Mention value to the back of a
	// list of the property "orderedItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsMention(v ActivityStreamsMention)
	// AppendActivityStreamsMove appends a Move value to the back of a list of
	// the property "orderedItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsMove(v ActivityStreamsMove)
	// AppendActivityStreamsNote appends a Note value to the back of a list of
	// the property "orderedItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsNote(v ActivityStreamsNote)
	// AppendActivityStreamsObject appends a Object value to the back of a
	// list of the property "orderedItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsObject(v ActivityStreamsObject)
	// AppendActivityStreamsOffer appends a Offer value to the back of a list
	// of the property "orderedItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsOffer(v ActivityStreamsOffer)
	// AppendActivityStreamsOrderedCollection appends a OrderedCollection
	// value to the back of a list of the property "orderedItems".
	// Invalidates iterators that are traversing using Prev.
	AppendActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// AppendActivityStreamsOrderedCollectionPage appends a
	// OrderedCollectionPage value to the back of a list of the property
	// "orderedItems". Invalidates iterators that are traversing using
	// Prev.
	AppendActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// AppendActivityStreamsOrganization appends a Organization value to the
	// back of a list of the property "orderedItems". Invalidates
	// iterators that are traversing using Prev.
	AppendActivityStreamsOrganization(v ActivityStreamsOrganization)
	// AppendActivityStreamsPage appends a Page value to the back of a list of
	// the property "orderedItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsPage(v ActivityStreamsPage)
	// AppendActivityStreamsPerson appends a Person value to the back of a
	// list of the property "orderedItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsPerson(v ActivityStreamsPerson)
	// AppendActivityStreamsPlace appends a Place value to the back of a list
	// of the property "orderedItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsPlace(v ActivityStreamsPlace)
	// AppendActivityStreamsProfile appends a Profile value to the back of a
	// list of the property "orderedItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsProfile(v ActivityStreamsProfile)
	// AppendActivityStreamsQuestion appends a Question value to the back of a
	// list of the property "orderedItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsQuestion(v ActivityStreamsQuestion)
	// AppendActivityStreamsRead appends a Read value to the back of a list of
	// the property "orderedItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsRead(v ActivityStreamsRead)
	// AppendActivityStreamsReject appends a Reject value to the back of a
	// list of the property "orderedItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsReject(v ActivityStreamsReject)
	// AppendActivityStreamsRelationship appends a Relationship value to the
	// back of a list of the property "orderedItems". Invalidates
	// iterators that are traversing using Prev.
	AppendActivityStreamsRelationship(v ActivityStreamsRelationship)
	// AppendActivityStreamsRemove appends a Remove value to the back of a
	// list of the property "orderedItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsRemove(v ActivityStreamsRemove)
	// AppendActivityStreamsService appends a Service value to the back of a
	// list of the property "orderedItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsService(v ActivityStreamsService)
	// AppendActivityStreamsTentativeAccept appends a TentativeAccept value to
	// the back of a list of the property "orderedItems". Invalidates
	// iterators that are traversing using Prev.
	AppendActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// AppendActivityStreamsTentativeReject appends a TentativeReject value to
	// the back of a list of the property "orderedItems". Invalidates
	// iterators that are traversing using Prev.
	AppendActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// AppendActivityStreamsTombstone appends a Tombstone value to the back of
	// a list of the property "orderedItems". Invalidates iterators that
	// are traversing using Prev.
	AppendActivityStreamsTombstone(v ActivityStreamsTombstone)
	// AppendActivityStreamsTravel appends a Travel value to the back of a
	// list of the property "orderedItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsTravel(v ActivityStreamsTravel)
	// AppendActivityStreamsUndo appends a Undo value to the back of a list of
	// the property "orderedItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsUndo(v ActivityStreamsUndo)
	// AppendActivityStreamsUpdate appends a Update value to the back of a
	// list of the property "orderedItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsUpdate(v ActivityStreamsUpdate)
	// AppendActivityStreamsVideo appends a Video value to the back of a list
	// of the property "orderedItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsVideo(v ActivityStreamsVideo)
	// AppendActivityStreamsView appends a View value to the back of a list of
	// the property "orderedItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsView(v ActivityStreamsView)
	// AppendForgeFedBranch appends a Branch value to the back of a list of
	// the property "orderedItems". Invalidates iterators that are
	// traversing using Prev.
	AppendForgeFedBranch(v ForgeFedBranch)
	// AppendForgeFedCommit appends a Commit value to the back of a list of
	// the property "orderedItems". Invalidates iterators that are
	// traversing using Prev.
	AppendForgeFedCommit(v ForgeFedCommit)
	// AppendForgeFedPush appends a Push value to the back of a list of the
	// property "orderedItems". Invalidates iterators that are traversing
	// using Prev.
	AppendForgeFedPush(v ForgeFedPush)
	// AppendForgeFedRepository appends a Repository value to the back of a
	// list of the property "orderedItems". Invalidates iterators that are
	// traversing using Prev.
	AppendForgeFedRepository(v ForgeFedRepository)
	// AppendForgeFedTicket appends a Ticket value to the back of a list of
	// the property "orderedItems". Invalidates iterators that are
	// traversing using Prev.
	AppendForgeFedTicket(v ForgeFedTicket)
	// AppendForgeFedTicketDependency appends a TicketDependency value to the
	// back of a list of the property "orderedItems". Invalidates
	// iterators that are traversing using Prev.
	AppendForgeFedTicketDependency(v ForgeFedTicketDependency)
	// AppendIRI appends an IRI value to the back of a list of the property
	// "orderedItems"
	AppendIRI(v *url.URL)
	// AppendTootEmoji appends a Emoji value to the back of a list of the
	// property "orderedItems". Invalidates iterators that are traversing
	// using Prev.
	AppendTootEmoji(v TootEmoji)
	// AppendTootIdentityProof appends a IdentityProof value to the back of a
	// list of the property "orderedItems". Invalidates iterators that are
	// traversing using Prev.
	AppendTootIdentityProof(v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "orderedItems". Invalidates iterators that are
	// traversing using Prev. Returns an error if the type is not a valid
	// one to set for this property.
	AppendType(t Type) error
	// At returns the property value for the specified index. Panics if the
	// index is out of bounds.
	At(index int) ActivityStreamsOrderedItemsPropertyIterator
	// Begin returns the first iterator, or nil if empty. Can be used with the
	// iterator's Next method and this property's End method to iterate
	// from front to back through all values.
	Begin() ActivityStreamsOrderedItemsPropertyIterator
	// Empty returns returns true if there are no elements.
	Empty() bool
	// End returns beyond-the-last iterator, which is nil. Can be used with
	// the iterator's Next method and this property's Begin method to
	// iterate from front to back through all values.
	End() ActivityStreamsOrderedItemsPropertyIterator
	// InsertActivityStreamsAccept inserts a Accept value at the specified
	// index for a property "orderedItems". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAccept(idx int, v ActivityStreamsAccept)
	// InsertActivityStreamsActivity inserts a Activity value at the specified
	// index for a property "orderedItems". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsActivity(idx int, v ActivityStreamsActivity)
	// InsertActivityStreamsAdd inserts a Add value at the specified index for
	// a property "orderedItems". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAdd(idx int, v ActivityStreamsAdd)
	// InsertActivityStreamsAnnounce inserts a Announce value at the specified
	// index for a property "orderedItems". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAnnounce(idx int, v ActivityStreamsAnnounce)
	// InsertActivityStreamsApplication inserts a Application value at the
	// specified index for a property "orderedItems". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsApplication(idx int, v ActivityStreamsApplication)
	// InsertActivityStreamsArrive inserts a Arrive value at the specified
	// index for a property "orderedItems". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsArrive(idx int, v ActivityStreamsArrive)
	// InsertActivityStreamsArticle inserts a Article value at the specified
	// index for a property "orderedItems". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsArticle(idx int, v ActivityStreamsArticle)
	// InsertActivityStreamsAudio inserts a Audio value at the specified index
	// for a property "orderedItems". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAudio(idx int, v ActivityStreamsAudio)
	// InsertActivityStreamsBlock inserts a Block value at the specified index
	// for a property "orderedItems". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsBlock(idx int, v ActivityStreamsBlock)
	// InsertActivityStreamsCollection inserts a Collection value at the
	// specified index for a property "orderedItems". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsCollection(idx int, v ActivityStreamsCollection)
	// InsertActivityStreamsCollectionPage inserts a CollectionPage value at
	// the specified index for a property "orderedItems". Existing
	// elements at that index and higher are shifted back once.
	// Invalidates all iterators.
	InsertActivityStreamsCollectionPage(idx int, v ActivityStreamsCollectionPage)
	// InsertActivityStreamsCreate inserts a Create value at the specified
	// index for a property "orderedItems". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsCreate(idx int, v ActivityStreamsCreate)
	// InsertActivityStreamsDelete inserts a Delete value at the specified
	// index for a property "orderedItems". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDelete(idx int, v ActivityStreamsDelete)
	// InsertActivityStreamsDislike inserts a Dislike value at the specified
	// index for a property "orderedItems". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDislike(idx int, v ActivityStreamsDislike)
	// InsertActivityStreamsDocument inserts a Document value at the specified
	// index for a property "orderedItems". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDocument(idx int, v ActivityStreamsDocument)
	// InsertActivityStreamsEvent inserts a Event value at the specified index
	// for a property "orderedItems". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsEvent(idx int, v ActivityStreamsEvent)
	// InsertActivityStreamsFlag inserts a Flag value at the specified index
	// for a property "orderedItems". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsFlag(idx int, v ActivityStreamsFlag)
	// InsertActivityStreamsFollow inserts a Follow value at the specified
	// index for a property "orderedItems". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsFollow(idx int, v ActivityStreamsFollow)
	// InsertActivityStreamsGroup inserts a Group value at the specified index
	// for a property "orderedItems". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsGroup(idx int, v ActivityStreamsGroup)
	// InsertActivityStreamsIgnore inserts a Ignore value at the specified
	// index for a property "orderedItems". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsIgnore(idx int, v ActivityStreamsIgnore)
	// InsertActivityStreamsImage inserts a Image value at the specified index
	// for a property "orderedItems". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsImage(idx int, v ActivityStreamsImage)
	// InsertActivityStreamsIntransitiveActivity inserts a
	// IntransitiveActivity value at the specified index for a property
	// "orderedItems". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertActivityStreamsIntransitiveActivity(idx int, v ActivityStreamsIntransitiveActivity)
	// InsertActivityStreamsInvite inserts a Invite value at the specified
	// index for a property "orderedItems". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsInvite(idx int, v ActivityStreamsInvite)
	// InsertActivityStreamsJoin inserts a Join value at the specified index
	// for a property "orderedItems". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsJoin(idx int, v ActivityStreamsJoin)
	// InsertActivityStreamsLeave inserts a Leave value at the specified index
	// for a property "orderedItems". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsLeave(idx int, v ActivityStreamsLeave)
	// InsertActivityStreamsLike inserts a Like value at the specified index
	// for a property "orderedItems". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsLike(idx int, v ActivityStreamsLike)
	// InsertActivityStreamsLink inserts a Link value at the specified index
	// for a property "orderedItems". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsLink(idx int, v ActivityStreamsLink)
	// InsertActivityStreamsListen inserts a Listen value at the specified
	// index for a property "orderedItems". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsListen(idx int, v ActivityStreamsListen)
	// InsertActivityStreamsMention inserts a Mention value at the specified
	// index for a property "orderedItems". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsMention(idx int, v ActivityStreamsMention)
	// InsertActivityStreamsMove inserts a Move value at the specified index
	// for a property "orderedItems". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsMove(idx int, v ActivityStreamsMove)
	// InsertActivityStreamsNote inserts a Note value at the specified index
	// for a property "orderedItems". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsNote(idx int, v ActivityStreamsNote)
	// InsertActivityStreamsObject inserts a Object value at the specified
	// index for a property "orderedItems". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsObject(idx int, v ActivityStreamsObject)
	// InsertActivityStreamsOffer inserts a Offer value at the specified index
	// for a property "orderedItems". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsOffer(idx int, v ActivityStreamsOffer)
	// InsertActivityStreamsOrderedCollection inserts a OrderedCollection
	// value at the specified index for a property "orderedItems".
	// Existing elements at that index and higher are shifted back once.
	// Invalidates all iterators.
	InsertActivityStreamsOrderedCollection(idx int, v ActivityStreamsOrderedCollection)
	// InsertActivityStreamsOrderedCollectionPage inserts a
	// OrderedCollectionPage value at the specified index for a property
	// "orderedItems". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertActivityStreamsOrderedCollectionPage(idx int, v ActivityStreamsOrderedCollectionPage)
	// InsertActivityStreamsOrganization inserts a Organization value at the
	// specified index for a property "orderedItems". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsOrganization(idx int, v ActivityStreamsOrganization)
	// InsertActivityStreamsPage inserts a Page value at the specified index
	// for a property "orderedItems". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsPage(idx int, v ActivityStreamsPage)
	// InsertActivityStreamsPerson inserts a Person value at the specified
	// index for a property "orderedItems". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsPerson(idx int, v ActivityStreamsPerson)
	// InsertActivityStreamsPlace inserts a Place value at the specified index
	// for a property "orderedItems". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsPlace(idx int, v ActivityStreamsPlace)
	// InsertActivityStreamsProfile inserts a Profile value at the specified
	// index for a property "orderedItems". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsProfile(idx int, v ActivityStreamsProfile)
	// InsertActivityStreamsQuestion inserts a Question value at the specified
	// index for a property "orderedItems". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsQuestion(idx int, v ActivityStreamsQuestion)
	// InsertActivityStreamsRead inserts a Read value at the specified index
	// for a property "orderedItems". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsRead(idx int, v ActivityStreamsRead)
	// InsertActivityStreamsReject inserts a Reject value at the specified
	// index for a property "orderedItems". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsReject(idx int, v ActivityStreamsReject)
	// InsertActivityStreamsRelationship inserts a Relationship value at the
	// specified index for a property "orderedItems". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsRelationship(idx int, v ActivityStreamsRelationship)
	// InsertActivityStreamsRemove inserts a Remove value at the specified
	// index for a property "orderedItems". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsRemove(idx int, v ActivityStreamsRemove)
	// InsertActivityStreamsService inserts a Service value at the specified
	// index for a property "orderedItems". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsService(idx int, v ActivityStreamsService)
	// InsertActivityStreamsTentativeAccept inserts a TentativeAccept value at
	// the specified index for a property "orderedItems". Existing
	// elements at that index and higher are shifted back once.
	// Invalidates all iterators.
	InsertActivityStreamsTentativeAccept(idx int, v ActivityStreamsTentativeAccept)
	// InsertActivityStreamsTentativeReject inserts a TentativeReject value at
	// the specified index for a property "orderedItems". Existing
	// elements at that index and higher are shifted back once.
	// Invalidates all iterators.
	InsertActivityStreamsTentativeReject(idx int, v ActivityStreamsTentativeReject)
	// InsertActivityStreamsTombstone inserts a Tombstone value at the
	// specified index for a property "orderedItems". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsTombstone(idx int, v ActivityStreamsTombstone)
	// InsertActivityStreamsTravel inserts a Travel value at the specified
	// index for a property "orderedItems". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsTravel(idx int, v ActivityStreamsTravel)
	// InsertActivityStreamsUndo inserts a Undo value at the specified index
	// for a property "orderedItems". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsUndo(idx int, v ActivityStreamsUndo)
	// InsertActivityStreamsUpdate inserts a Update value at the specified
	// index for a property "orderedItems". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsUpdate(idx int, v ActivityStreamsUpdate)
	// InsertActivityStreamsVideo inserts a Video value at the specified index
	// for a property "orderedItems". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsVideo(idx int, v ActivityStreamsVideo)
	// InsertActivityStreamsView inserts a View value at the specified index
	// for a property "orderedItems". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsView(idx int, v ActivityStreamsView)
	// InsertForgeFedBranch inserts a Branch value at the specified index for
	// a property "orderedItems". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertForgeFedBranch(idx int, v ForgeFedBranch)
	// InsertForgeFedCommit inserts a Commit value at the specified index for
	// a property "orderedItems". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertForgeFedCommit(idx int, v ForgeFedCommit)
	// InsertForgeFedPush inserts a Push value at the specified index for a
	// property "orderedItems". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertForgeFedPush(idx int, v ForgeFedPush)
	// InsertForgeFedRepository inserts a Repository value at the specified
	// index for a property "orderedItems". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertForgeFedRepository(idx int, v ForgeFedRepository)
	// InsertForgeFedTicket inserts a Ticket value at the specified index for
	// a property "orderedItems". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertForgeFedTicket(idx int, v ForgeFedTicket)
	// InsertForgeFedTicketDependency inserts a TicketDependency value at the
	// specified index for a property "orderedItems". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
	// Insert inserts an IRI value at the specified index for a property
	// "orderedItems". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertIRI(idx int, v *url.URL)
	// InsertTootEmoji inserts a Emoji value at the specified index for a
	// property "orderedItems". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertTootEmoji(idx int, v TootEmoji)
	// InsertTootIdentityProof inserts a IdentityProof value at the specified
	// index for a property "orderedItems". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertTootIdentityProof(idx int, v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "orderedItems". Invalidates all iterators. Returns an
	// error if the type is not a valid one to set for this property.
	InsertType(idx int, t Type) error
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API method specifically needed only for alternate
	// implementations for go-fed. Applications should not use this
	// method. Panics if the index is out of bounds.
	KindIndex(idx int) int
	// Len returns the number of values that exist for the "orderedItems"
	// property.
	Len() (length int)
	// Less computes whether another property is less than this one. Mixing
	// types results in a consistent but arbitrary ordering
	Less(i, j int) bool
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsOrderedItemsProperty) bool
	// Name returns the name of this property ("orderedItems") with any alias.
	Name() string
	// PrependActivityStreamsAccept prepends a Accept value to the front of a
	// list of the property "orderedItems". Invalidates all iterators.
	PrependActivityStreamsAccept(v ActivityStreamsAccept)
	// PrependActivityStreamsActivity prepends a Activity value to the front
	// of a list of the property "orderedItems". Invalidates all iterators.
	PrependActivityStreamsActivity(v ActivityStreamsActivity)
	// PrependActivityStreamsAdd prepends a Add value to the front of a list
	// of the property "orderedItems". Invalidates all iterators.
	PrependActivityStreamsAdd(v ActivityStreamsAdd)
	// PrependActivityStreamsAnnounce prepends a Announce value to the front
	// of a list of the property "orderedItems". Invalidates all iterators.
	PrependActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// PrependActivityStreamsApplication prepends a Application value to the
	// front of a list of the property "orderedItems". Invalidates all
	// iterators.
	PrependActivityStreamsApplication(v ActivityStreamsApplication)
	// PrependActivityStreamsArrive prepends a Arrive value to the front of a
	// list of the property "orderedItems". Invalidates all iterators.
	PrependActivityStreamsArrive(v ActivityStreamsArrive)
	// PrependActivityStreamsArticle prepends a Article value to the front of
	// a list of the property "orderedItems". Invalidates all iterators.
	PrependActivityStreamsArticle(v ActivityStreamsArticle)
	// PrependActivityStreamsAudio prepends a Audio value to the front of a
	// list of the property "orderedItems". Invalidates all iterators.
	PrependActivityStreamsAudio(v ActivityStreamsAudio)
	// PrependActivityStreamsBlock prepends a Block value to the front of a
	// list of the property "orderedItems". Invalidates all iterators.
	PrependActivityStreamsBlock(v ActivityStreamsBlock)
	// PrependActivityStreamsCollection prepends a Collection value to the
	// front of a list of the property "orderedItems". Invalidates all
	// iterators.
	PrependActivityStreamsCollection(v ActivityStreamsCollection)
	// PrependActivityStreamsCollectionPage prepends a CollectionPage value to
	// the front of a list of the property "orderedItems". Invalidates all
	// iterators.
	PrependActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// PrependActivityStreamsCreate prepends a Create value to the front of a
	// list of the property "orderedItems". Invalidates all iterators.
	PrependActivityStreamsCreate(v ActivityStreamsCreate)
	// PrependActivityStreamsDelete prepends a Delete value to the front of a
	// list of the property "orderedItems". Invalidates all iterators.
	PrependActivityStreamsDelete(v ActivityStreamsDelete)
	// PrependActivityStreamsDislike prepends a Dislike value to the front of
	// a list of the property "orderedItems". Invalidates all iterators.
	PrependActivityStreamsDislike(v ActivityStreamsDislike)
	// PrependActivityStreamsDocument prepends a Document value to the front
	// of a list of the property "orderedItems". Invalidates all iterators.
	PrependActivityStreamsDocument(v ActivityStreamsDocument)
	// PrependActivityStreamsEvent prepends a Event value to the front of a
	// list of the property "orderedItems". Invalidates all iterators.
	PrependActivityStreamsEvent(v ActivityStreamsEvent)
	// PrependActivityStreamsFlag prepends a Flag value to the front of a list
	// of the property "orderedItems". Invalidates all iterators.
	PrependActivityStreamsFlag(v ActivityStreamsFlag)
	// PrependActivityStreamsFollow prepends a Follow value to the front of a
	// list of the property "orderedItems". Invalidates all iterators.
	PrependActivityStreamsFollow(v ActivityStreamsFollow)
	// PrependActivityStreamsGroup prepends a Group value to the front of a
	// list of the property "orderedItems". Invalidates all iterators.
	PrependActivityStreamsGroup(v ActivityStreamsGroup)
	// PrependActivityStreamsIgnore prepends a Ignore value to the front of a
	// list of the property "orderedItems". Invalidates all iterators.
	PrependActivityStreamsIgnore(v ActivityStreamsIgnore)
	// PrependActivityStreamsImage prepends a Image value to the front of a
	// list of the property "orderedItems". Invalidates all iterators.
	PrependActivityStreamsImage(v ActivityStreamsImage)
	// PrependActivityStreamsIntransitiveActivity prepends a
	// IntransitiveActivity value to the front of a list of the property
	// "orderedItems". Invalidates all iterators.
	PrependActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// PrependActivityStreamsInvite prepends a Invite value to the front of a
	// list of the property "orderedItems". Invalidates all iterators.
	PrependActivityStreamsInvite(v ActivityStreamsInvite)
	// PrependActivityStreamsJoin prepends a Join value to the front of a list
	// of the property "orderedItems". Invalidates all iterators.
	PrependActivityStreamsJoin(v ActivityStreamsJoin)
	// PrependActivityStreamsLeave prepends a Leave value to the front of a
	// list of the property "orderedItems". Invalidates all iterators.
	PrependActivityStreamsLeave(v ActivityStreamsLeave)
	// PrependActivityStreamsLike prepends a Like value to the front of a list
	// of the property "orderedItems". Invalidates all iterators.
	PrependActivityStreamsLike(v ActivityStreamsLike)
	// PrependActivityStreamsLink prepends a Link value to the front of a list
	// of the property "orderedItems". Invalidates all iterators.
	PrependActivityStreamsLink(v ActivityStreamsLink)
	// PrependActivityStreamsListen prepends a Listen value to the front of a
	// list of the property "orderedItems". Invalidates all iterators.
	PrependActivityStreamsListen(v ActivityStreamsListen)
	// PrependActivityStreamsMention prepends a Mention value to the front of
	// a list of the property "orderedItems". Invalidates all iterators.
	PrependActivityStreamsMention(v ActivityStreamsMention)
	// PrependActivityStreamsMove prepends a Move value to the front of a list
	// of the property "orderedItems". Invalidates all iterators.
	PrependActivityStreamsMove(v ActivityStreamsMove)
	// PrependActivityStreamsNote prepends a Note value to the front of a list
	// of the property "orderedItems". Invalidates all iterators.
	PrependActivityStreamsNote(v ActivityStreamsNote)
	// PrependActivityStreamsObject prepends a Object value to the front of a
	// list of the property "orderedItems". Invalidates all iterators.
	PrependActivityStreamsObject(v ActivityStreamsObject)
	// PrependActivityStreamsOffer prepends a Offer value to the front of a
	// list of the property "orderedItems". Invalidates all iterators.
	PrependActivityStreamsOffer(v ActivityStreamsOffer)
	// PrependActivityStreamsOrderedCollection prepends a OrderedCollection
	// value to the front of a list of the property "orderedItems".
	// Invalidates all iterators.
	PrependActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// PrependActivityStreamsOrderedCollectionPage prepends a
	// OrderedCollectionPage value to the front of a list of the property
	// "orderedItems". Invalidates all iterators.
	PrependActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// PrependActivityStreamsOrganization prepends a Organization value to the
	// front of a list of the property "orderedItems". Invalidates all
	// iterators.
	PrependActivityStreamsOrganization(v ActivityStreamsOrganization)
	// PrependActivityStreamsPage prepends a Page value to the front of a list
	// of the property "orderedItems". Invalidates all iterators.
	PrependActivityStreamsPage(v ActivityStreamsPage)
	// PrependActivityStreamsPerson prepends a Person value to the front of a
	// list of the property "orderedItems". Invalidates all iterators.
	PrependActivityStreamsPerson(v ActivityStreamsPerson)
	// PrependActivityStreamsPlace prepends a Place value to the front of a
	// list of the property "orderedItems". Invalidates all iterators.
	PrependActivityStreamsPlace(v ActivityStreamsPlace)
	// PrependActivityStreamsProfile prepends a Profile value to the front of
	// a list of the property "orderedItems". Invalidates all iterators.
	PrependActivityStreamsProfile(v ActivityStreamsProfile)
	// PrependActivityStreamsQuestion prepends a Question value to the front
	// of a list of the property "orderedItems". Invalidates all iterators.
	PrependActivityStreamsQuestion(v ActivityStreamsQuestion)
	// PrependActivityStreamsRead prepends a Read value to the front of a list
	// of the property "orderedItems". Invalidates all iterators.
	PrependActivityStreamsRead(v ActivityStreamsRead)
	// PrependActivityStreamsReject prepends a Reject value to the front of a
	// list of the property "orderedItems". Invalidates all iterators.
	PrependActivityStreamsReject(v ActivityStreamsReject)
	// PrependActivityStreamsRelationship prepends a Relationship value to the
	// front of a list of the property "orderedItems". Invalidates all
	// iterators.
	PrependActivityStreamsRelationship(v ActivityStreamsRelationship)
	// PrependActivityStreamsRemove prepends a Remove value to the front of a
	// list of the property "orderedItems". Invalidates all iterators.
	PrependActivityStreamsRemove(v ActivityStreamsRemove)
	// PrependActivityStreamsService prepends a Service value to the front of
	// a list of the property "orderedItems". Invalidates all iterators.
	PrependActivityStreamsService(v ActivityStreamsService)
	// PrependActivityStreamsTentativeAccept prepends a TentativeAccept value
	// to the front of a list of the property "orderedItems". Invalidates
	// all iterators.
	PrependActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// PrependActivityStreamsTentativeReject prepends a TentativeReject value
	// to the front of a list of the property "orderedItems". Invalidates
	// all iterators.
	PrependActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// PrependActivityStreamsTombstone prepends a Tombstone value to the front
	// of a list of the property "orderedItems". Invalidates all iterators.
	PrependActivityStreamsTombstone(v ActivityStreamsTombstone)
	// PrependActivityStreamsTravel prepends a Travel value to the front of a
	// list of the property "orderedItems". Invalidates all iterators.
	PrependActivityStreamsTravel(v ActivityStreamsTravel)
	// PrependActivityStreamsUndo prepends a Undo value to the front of a list
	// of the property "orderedItems". Invalidates all iterators.
	PrependActivityStreamsUndo(v ActivityStreamsUndo)
	// PrependActivityStreamsUpdate prepends a Update value to the front of a
	// list of the property "orderedItems". Invalidates all iterators.
	PrependActivityStreamsUpdate(v ActivityStreamsUpdate)
	// PrependActivityStreamsVideo prepends a Video value to the front of a
	// list of the property "orderedItems". Invalidates all iterators.
	PrependActivityStreamsVideo(v ActivityStreamsVideo)
	// PrependActivityStreamsView prepends a View value to the front of a list
	// of the property "orderedItems". Invalidates all iterators.
	PrependActivityStreamsView(v ActivityStreamsView)
	// PrependForgeFedBranch prepends a Branch value to the front of a list of
	// the property "orderedItems". Invalidates all iterators.
	PrependForgeFedBranch(v ForgeFedBranch)
	// PrependForgeFedCommit prepends a Commit value to the front of a list of
	// the property "orderedItems". Invalidates all iterators.
	PrependForgeFedCommit(v ForgeFedCommit)
	// PrependForgeFedPush prepends a Push value to the front of a list of the
	// property "orderedItems". Invalidates all iterators.
	PrependForgeFedPush(v ForgeFedPush)
	// PrependForgeFedRepository prepends a Repository value to the front of a
	// list of the property "orderedItems". Invalidates all iterators.
	PrependForgeFedRepository(v ForgeFedRepository)
	// PrependForgeFedTicket prepends a Ticket value to the front of a list of
	// the property "orderedItems". Invalidates all iterators.
	PrependForgeFedTicket(v ForgeFedTicket)
	// PrependForgeFedTicketDependency prepends a TicketDependency value to
	// the front of a list of the property "orderedItems". Invalidates all
	// iterators.
	PrependForgeFedTicketDependency(v ForgeFedTicketDependency)
	// PrependIRI prepends an IRI value to the front of a list of the property
	// "orderedItems".
	PrependIRI(v *url.URL)
	// PrependTootEmoji prepends a Emoji value to the front of a list of the
	// property "orderedItems". Invalidates all iterators.
	PrependTootEmoji(v TootEmoji)
	// PrependTootIdentityProof prepends a IdentityProof value to the front of
	// a list of the property "orderedItems". Invalidates all iterators.
	PrependTootIdentityProof(v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "orderedItems". Invalidates all iterators. Returns an
	// error if the type is not a valid one to set for this property.
	PrependType(t Type) error
	// Remove deletes an element at the specified index from a list of the
	// property "orderedItems", regardless of its type. Panics if the
	// index is out of bounds. Invalidates all iterators.
	Remove(idx int)
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// SetActivityStreamsAccept sets a Accept value to be at the specified
	// index for the property "orderedItems". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsAccept(idx int, v ActivityStreamsAccept)
	// SetActivityStreamsActivity sets a Activity value to be at the specified
	// index for the property "orderedItems". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsActivity(idx int, v ActivityStreamsActivity)
	// SetActivityStreamsAdd sets a Add value to be at the specified index for
	// the property "orderedItems". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsAdd(idx int, v ActivityStreamsAdd)
	// SetActivityStreamsAnnounce sets a Announce value to be at the specified
	// index for the property "orderedItems". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsAnnounce(idx int, v ActivityStreamsAnnounce)
	// SetActivityStreamsApplication sets a Application value to be at the
	// specified index for the property "orderedItems". Panics if the
	// index is out of bounds. Invalidates all iterators.
	SetActivityStreamsApplication(idx int, v ActivityStreamsApplication)
	// SetActivityStreamsArrive sets a Arrive value to be at the specified
	// index for the property "orderedItems". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsArrive(idx int, v ActivityStreamsArrive)
	// SetActivityStreamsArticle sets a Article value to be at the specified
	// index for the property "orderedItems". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsArticle(idx int, v ActivityStreamsArticle)
	// SetActivityStreamsAudio sets a Audio value to be at the specified index
	// for the property "orderedItems". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsAudio(idx int, v ActivityStreamsAudio)
	// SetActivityStreamsBlock sets a Block value to be at the specified index
	// for the property "orderedItems". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsBlock(idx int, v ActivityStreamsBlock)
	// SetActivityStreamsCollection sets a Collection value to be at the
	// specified index for the property "orderedItems". Panics if the
	// index is out of bounds. Invalidates all iterators.
	SetActivityStreamsCollection(idx int, v ActivityStreamsCollection)
	// SetActivityStreamsCollectionPage sets a CollectionPage value to be at
	// the specified index for the property "orderedItems". Panics if the
	// index is out of bounds. Invalidates all iterators.
	SetActivityStreamsCollectionPage(idx int, v ActivityStreamsCollectionPage)
	// SetActivityStreamsCreate sets a Create value to be at the specified
	// index for the property "orderedItems". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsCreate(idx int, v ActivityStreamsCreate)
	// SetActivityStreamsDelete sets a Delete value to be at the specified
	// index for the property "orderedItems". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsDelete(idx int, v ActivityStreamsDelete)
	// SetActivityStreamsDislike sets a Dislike value to be at the specified
	// index for the property "orderedItems". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsDislike(idx int, v ActivityStreamsDislike)
	// SetActivityStreamsDocument sets a Document value to be at the specified
	// index for the property "orderedItems". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsDocument(idx int, v ActivityStreamsDocument)
	// SetActivityStreamsEvent sets a Event value to be at the specified index
	// for the property "orderedItems". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsEvent(idx int, v ActivityStreamsEvent)
	// SetActivityStreamsFlag sets a Flag value to be at the specified index
	// for the property "orderedItems". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsFlag(idx int, v ActivityStreamsFlag)
	// SetActivityStreamsFollow sets a Follow value to be at the specified
	// index for the property "orderedItems". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsFollow(idx int, v ActivityStreamsFollow)
	// SetActivityStreamsGroup sets a Group value to be at the specified index
	// for the property "orderedItems". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsGroup(idx int, v ActivityStreamsGroup)
	// SetActivityStreamsIgnore sets a Ignore value to be at the specified
	// index for the property "orderedItems". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsIgnore(idx int, v ActivityStreamsIgnore)
	// SetActivityStreamsImage sets a Image value to be at the specified index
	// for the property "orderedItems". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsImage(idx int, v ActivityStreamsImage)
	// SetActivityStreamsIntransitiveActivity sets a IntransitiveActivity
	// value to be at the specified index for the property "orderedItems".
	// Panics if the index is out of bounds. Invalidates all iterators.
	SetActivityStreamsIntransitiveActivity(idx int, v ActivityStreamsIntransitiveActivity)
	// SetActivityStreamsInvite sets a Invite value to be at the specified
	// index for the property "orderedItems". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsInvite(idx int, v ActivityStreamsInvite)
	// SetActivityStreamsJoin sets a Join value to be at the specified index
	// for the property "orderedItems". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsJoin(idx int, v ActivityStreamsJoin)
	// SetActivityStreamsLeave sets a Leave value to be at the specified index
	// for the property "orderedItems". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsLeave(idx int, v ActivityStreamsLeave)
	// SetActivityStreamsLike sets a Like value to be at the specified index
	// for the property "orderedItems". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsLike(idx int, v ActivityStreamsLike)
	// SetActivityStreamsLink sets a Link value to be at the specified index
	// for the property "orderedItems". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsLink(idx int, v ActivityStreamsLink)
	// SetActivityStreamsListen sets a Listen value to be at the specified
	// index for the property "orderedItems". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsListen(idx int, v ActivityStreamsListen)
	// SetActivityStreamsMention sets a Mention value to be at the specified
	// index for the property "orderedItems". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsMention(idx int, v ActivityStreamsMention)
	// SetActivityStreamsMove sets a Move value to be at the specified index
	// for the property "orderedItems". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsMove(idx int, v ActivityStreamsMove)
	// SetActivityStreamsNote sets a Note value to be at the specified index
	// for the property "orderedItems". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsNote(idx int, v ActivityStreamsNote)
	// SetActivityStreamsObject sets a Object value to be at the specified
	// index for the property "orderedItems". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsObject(idx int, v ActivityStreamsObject)
	// SetActivityStreamsOffer sets a Offer value to be at the specified index
	// for the property "orderedItems". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsOffer(idx int, v ActivityStreamsOffer)
	// SetActivityStreamsOrderedCollection sets a OrderedCollection value to
	// be at the specified index for the property "orderedItems". Panics
	// if the index is out of bounds. Invalidates all iterators.
	SetActivityStreamsOrderedCollection(idx int, v ActivityStreamsOrderedCollection)
	// SetActivityStreamsOrderedCollectionPage sets a OrderedCollectionPage
	// value to be at the specified index for the property "orderedItems".
	// Panics if the index is out of bounds. Invalidates all iterators.
	SetActivityStreamsOrderedCollectionPage(idx int, v ActivityStreamsOrderedCollectionPage)
	// SetActivityStreamsOrganization sets a Organization value to be at the
	// specified index for the property "orderedItems". Panics if the
	// index is out of bounds. Invalidates all iterators.
	SetActivityStreamsOrganization(idx int, v ActivityStreamsOrganization)
	// SetActivityStreamsPage sets a Page value to be at the specified index
	// for the property "orderedItems". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsPage(idx int, v ActivityStreamsPage)
	// SetActivityStreamsPerson sets a Person value to be at the specified
	// index for the property "orderedItems". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsPerson(idx int, v ActivityStreamsPerson)
	// SetActivityStreamsPlace sets a Place value to be at the specified index
	// for the property "orderedItems". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsPlace(idx int, v ActivityStreamsPlace)
	// SetActivityStreamsProfile sets a Profile value to be at the specified
	// index for the property "orderedItems". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsProfile(idx int, v ActivityStreamsProfile)
	// SetActivityStreamsQuestion sets a Question value to be at the specified
	// index for the property "orderedItems". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsQuestion(idx int, v ActivityStreamsQuestion)
	// SetActivityStreamsRead sets a Read value to be at the specified index
	// for the property "orderedItems". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsRead(idx int, v ActivityStreamsRead)
	// SetActivityStreamsReject sets a Reject value to be at the specified
	// index for the property "orderedItems". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsReject(idx int, v ActivityStreamsReject)
	// SetActivityStreamsRelationship sets a Relationship value to be at the
	// specified index for the property "orderedItems". Panics if the
	// index is out of bounds. Invalidates all iterators.
	SetActivityStreamsRelationship(idx int, v ActivityStreamsRelationship)
	// SetActivityStreamsRemove sets a Remove value to be at the specified
	// index for the property "orderedItems". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsRemove(idx int, v ActivityStreamsRemove)
	// SetActivityStreamsService sets a Service value to be at the specified
	// index for the property "orderedItems". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsService(idx int, v ActivityStreamsService)
	// SetActivityStreamsTentativeAccept sets a TentativeAccept value to be at
	// the specified index for the property "orderedItems". Panics if the
	// index is out of bounds. Invalidates all iterators.
	SetActivityStreamsTentativeAccept(idx int, v ActivityStreamsTentativeAccept)
	// SetActivityStreamsTentativeReject sets a TentativeReject value to be at
	// the specified index for the property "orderedItems". Panics if the
	// index is out of bounds. Invalidates all iterators.
	SetActivityStreamsTentativeReject(idx int, v ActivityStreamsTentativeReject)
	// SetActivityStreamsTombstone sets a Tombstone value to be at the
	// specified index for the property "orderedItems". Panics if the
	// index is out of bounds. Invalidates all iterators.
	SetActivityStreamsTombstone(idx int, v ActivityStreamsTombstone)
	// SetActivityStreamsTravel sets a Travel value to be at the specified
	// index for the property "orderedItems". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsTravel(idx int, v ActivityStreamsTravel)
	// SetActivityStreamsUndo sets a Undo value to be at the specified index
	// for the property "orderedItems". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsUndo(idx int, v ActivityStreamsUndo)
	// SetActivityStreamsUpdate sets a Update value to be at the specified
	// index for the property "orderedItems". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsUpdate(idx int, v ActivityStreamsUpdate)
	// SetActivityStreamsVideo sets a Video value to be at the specified index
	// for the property "orderedItems". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsVideo(idx int, v ActivityStreamsVideo)
	// SetActivityStreamsView sets a View value to be at the specified index
	// for the property "orderedItems". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsView(idx int, v ActivityStreamsView)
	// SetForgeFedBranch sets a Branch value to be at the specified index for
	// the property "orderedItems". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedBranch(idx int, v ForgeFedBranch)
	// SetForgeFedCommit sets a Commit value to be at the specified index for
	// the property "orderedItems". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedCommit(idx int, v ForgeFedCommit)
	// SetForgeFedPush sets a Push value to be at the specified index for the
	// property "orderedItems". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedPush(idx int, v ForgeFedPush)
	// SetForgeFedRepository sets a Repository value to be at the specified
	// index for the property "orderedItems". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetForgeFedRepository(idx int, v ForgeFedRepository)
	// SetForgeFedTicket sets a Ticket value to be at the specified index for
	// the property "orderedItems". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedTicket(idx int, v ForgeFedTicket)
	// SetForgeFedTicketDependency sets a TicketDependency value to be at the
	// specified index for the property "orderedItems". Panics if the
	// index is out of bounds. Invalidates all iterators.
	SetForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
	// SetIRI sets an IRI value to be at the specified index for the property
	// "orderedItems". Panics if the index is out of bounds.
	SetIRI(idx int, v *url.URL)
	// SetTootEmoji sets a Emoji value to be at the specified index for the
	// property "orderedItems". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetTootEmoji(idx int, v TootEmoji)
	// SetTootIdentityProof sets a IdentityProof value to be at the specified
	// index for the property "orderedItems". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetTootIdentityProof(idx int, v TootIdentityProof)
	// SetType sets an arbitrary type value to the specified index of the
	// property "orderedItems". Invalidates all iterators. Returns an
	// error if the type is not a valid one to set for this property.
	// Panics if the index is out of bounds.
	SetType(idx int, t Type) error
	// Swap swaps the location of values at two indices for the "orderedItems"
	// property.
	Swap(i, j int)
}

Identifies the items contained in an ordered collection. The items are ordered.

Example 90 (https://www.w3.org/TR/activitystreams-vocabulary/#ex92-jsonld):

{
  "orderedItems": [
    {
      "name": "Meeting 2016-11-17",
      "type": "Note"
    },
    {
      "name": "Reminder for Going-Away Party",
      "type": "Note"
    }
  ],
  "summary": "Sally's notes",
  "totalItems": 2,
  "type": "OrderedCollection"
}

type ActivityStreamsOrderedItemsPropertyIterator

type ActivityStreamsOrderedItemsPropertyIterator interface {
	// GetActivityStreamsAccept returns the value of this property. When
	// IsActivityStreamsAccept returns false, GetActivityStreamsAccept
	// will return an arbitrary value.
	GetActivityStreamsAccept() ActivityStreamsAccept
	// GetActivityStreamsActivity returns the value of this property. When
	// IsActivityStreamsActivity returns false, GetActivityStreamsActivity
	// will return an arbitrary value.
	GetActivityStreamsActivity() ActivityStreamsActivity
	// GetActivityStreamsAdd returns the value of this property. When
	// IsActivityStreamsAdd returns false, GetActivityStreamsAdd will
	// return an arbitrary value.
	GetActivityStreamsAdd() ActivityStreamsAdd
	// GetActivityStreamsAnnounce returns the value of this property. When
	// IsActivityStreamsAnnounce returns false, GetActivityStreamsAnnounce
	// will return an arbitrary value.
	GetActivityStreamsAnnounce() ActivityStreamsAnnounce
	// GetActivityStreamsApplication returns the value of this property. When
	// IsActivityStreamsApplication returns false,
	// GetActivityStreamsApplication will return an arbitrary value.
	GetActivityStreamsApplication() ActivityStreamsApplication
	// GetActivityStreamsArrive returns the value of this property. When
	// IsActivityStreamsArrive returns false, GetActivityStreamsArrive
	// will return an arbitrary value.
	GetActivityStreamsArrive() ActivityStreamsArrive
	// GetActivityStreamsArticle returns the value of this property. When
	// IsActivityStreamsArticle returns false, GetActivityStreamsArticle
	// will return an arbitrary value.
	GetActivityStreamsArticle() ActivityStreamsArticle
	// GetActivityStreamsAudio returns the value of this property. When
	// IsActivityStreamsAudio returns false, GetActivityStreamsAudio will
	// return an arbitrary value.
	GetActivityStreamsAudio() ActivityStreamsAudio
	// GetActivityStreamsBlock returns the value of this property. When
	// IsActivityStreamsBlock returns false, GetActivityStreamsBlock will
	// return an arbitrary value.
	GetActivityStreamsBlock() ActivityStreamsBlock
	// GetActivityStreamsCollection returns the value of this property. When
	// IsActivityStreamsCollection returns false,
	// GetActivityStreamsCollection will return an arbitrary value.
	GetActivityStreamsCollection() ActivityStreamsCollection
	// GetActivityStreamsCollectionPage returns the value of this property.
	// When IsActivityStreamsCollectionPage returns false,
	// GetActivityStreamsCollectionPage will return an arbitrary value.
	GetActivityStreamsCollectionPage() ActivityStreamsCollectionPage
	// GetActivityStreamsCreate returns the value of this property. When
	// IsActivityStreamsCreate returns false, GetActivityStreamsCreate
	// will return an arbitrary value.
	GetActivityStreamsCreate() ActivityStreamsCreate
	// GetActivityStreamsDelete returns the value of this property. When
	// IsActivityStreamsDelete returns false, GetActivityStreamsDelete
	// will return an arbitrary value.
	GetActivityStreamsDelete() ActivityStreamsDelete
	// GetActivityStreamsDislike returns the value of this property. When
	// IsActivityStreamsDislike returns false, GetActivityStreamsDislike
	// will return an arbitrary value.
	GetActivityStreamsDislike() ActivityStreamsDislike
	// GetActivityStreamsDocument returns the value of this property. When
	// IsActivityStreamsDocument returns false, GetActivityStreamsDocument
	// will return an arbitrary value.
	GetActivityStreamsDocument() ActivityStreamsDocument
	// GetActivityStreamsEvent returns the value of this property. When
	// IsActivityStreamsEvent returns false, GetActivityStreamsEvent will
	// return an arbitrary value.
	GetActivityStreamsEvent() ActivityStreamsEvent
	// GetActivityStreamsFlag returns the value of this property. When
	// IsActivityStreamsFlag returns false, GetActivityStreamsFlag will
	// return an arbitrary value.
	GetActivityStreamsFlag() ActivityStreamsFlag
	// GetActivityStreamsFollow returns the value of this property. When
	// IsActivityStreamsFollow returns false, GetActivityStreamsFollow
	// will return an arbitrary value.
	GetActivityStreamsFollow() ActivityStreamsFollow
	// GetActivityStreamsGroup returns the value of this property. When
	// IsActivityStreamsGroup returns false, GetActivityStreamsGroup will
	// return an arbitrary value.
	GetActivityStreamsGroup() ActivityStreamsGroup
	// GetActivityStreamsIgnore returns the value of this property. When
	// IsActivityStreamsIgnore returns false, GetActivityStreamsIgnore
	// will return an arbitrary value.
	GetActivityStreamsIgnore() ActivityStreamsIgnore
	// GetActivityStreamsImage returns the value of this property. When
	// IsActivityStreamsImage returns false, GetActivityStreamsImage will
	// return an arbitrary value.
	GetActivityStreamsImage() ActivityStreamsImage
	// GetActivityStreamsIntransitiveActivity returns the value of this
	// property. When IsActivityStreamsIntransitiveActivity returns false,
	// GetActivityStreamsIntransitiveActivity will return an arbitrary
	// value.
	GetActivityStreamsIntransitiveActivity() ActivityStreamsIntransitiveActivity
	// GetActivityStreamsInvite returns the value of this property. When
	// IsActivityStreamsInvite returns false, GetActivityStreamsInvite
	// will return an arbitrary value.
	GetActivityStreamsInvite() ActivityStreamsInvite
	// GetActivityStreamsJoin returns the value of this property. When
	// IsActivityStreamsJoin returns false, GetActivityStreamsJoin will
	// return an arbitrary value.
	GetActivityStreamsJoin() ActivityStreamsJoin
	// GetActivityStreamsLeave returns the value of this property. When
	// IsActivityStreamsLeave returns false, GetActivityStreamsLeave will
	// return an arbitrary value.
	GetActivityStreamsLeave() ActivityStreamsLeave
	// GetActivityStreamsLike returns the value of this property. When
	// IsActivityStreamsLike returns false, GetActivityStreamsLike will
	// return an arbitrary value.
	GetActivityStreamsLike() ActivityStreamsLike
	// GetActivityStreamsLink returns the value of this property. When
	// IsActivityStreamsLink returns false, GetActivityStreamsLink will
	// return an arbitrary value.
	GetActivityStreamsLink() ActivityStreamsLink
	// GetActivityStreamsListen returns the value of this property. When
	// IsActivityStreamsListen returns false, GetActivityStreamsListen
	// will return an arbitrary value.
	GetActivityStreamsListen() ActivityStreamsListen
	// GetActivityStreamsMention returns the value of this property. When
	// IsActivityStreamsMention returns false, GetActivityStreamsMention
	// will return an arbitrary value.
	GetActivityStreamsMention() ActivityStreamsMention
	// GetActivityStreamsMove returns the value of this property. When
	// IsActivityStreamsMove returns false, GetActivityStreamsMove will
	// return an arbitrary value.
	GetActivityStreamsMove() ActivityStreamsMove
	// GetActivityStreamsNote returns the value of this property. When
	// IsActivityStreamsNote returns false, GetActivityStreamsNote will
	// return an arbitrary value.
	GetActivityStreamsNote() ActivityStreamsNote
	// GetActivityStreamsObject returns the value of this property. When
	// IsActivityStreamsObject returns false, GetActivityStreamsObject
	// will return an arbitrary value.
	GetActivityStreamsObject() ActivityStreamsObject
	// GetActivityStreamsOffer returns the value of this property. When
	// IsActivityStreamsOffer returns false, GetActivityStreamsOffer will
	// return an arbitrary value.
	GetActivityStreamsOffer() ActivityStreamsOffer
	// GetActivityStreamsOrderedCollection returns the value of this property.
	// When IsActivityStreamsOrderedCollection returns false,
	// GetActivityStreamsOrderedCollection will return an arbitrary value.
	GetActivityStreamsOrderedCollection() ActivityStreamsOrderedCollection
	// GetActivityStreamsOrderedCollectionPage returns the value of this
	// property. When IsActivityStreamsOrderedCollectionPage returns
	// false, GetActivityStreamsOrderedCollectionPage will return an
	// arbitrary value.
	GetActivityStreamsOrderedCollectionPage() ActivityStreamsOrderedCollectionPage
	// GetActivityStreamsOrganization returns the value of this property. When
	// IsActivityStreamsOrganization returns false,
	// GetActivityStreamsOrganization will return an arbitrary value.
	GetActivityStreamsOrganization() ActivityStreamsOrganization
	// GetActivityStreamsPage returns the value of this property. When
	// IsActivityStreamsPage returns false, GetActivityStreamsPage will
	// return an arbitrary value.
	GetActivityStreamsPage() ActivityStreamsPage
	// GetActivityStreamsPerson returns the value of this property. When
	// IsActivityStreamsPerson returns false, GetActivityStreamsPerson
	// will return an arbitrary value.
	GetActivityStreamsPerson() ActivityStreamsPerson
	// GetActivityStreamsPlace returns the value of this property. When
	// IsActivityStreamsPlace returns false, GetActivityStreamsPlace will
	// return an arbitrary value.
	GetActivityStreamsPlace() ActivityStreamsPlace
	// GetActivityStreamsProfile returns the value of this property. When
	// IsActivityStreamsProfile returns false, GetActivityStreamsProfile
	// will return an arbitrary value.
	GetActivityStreamsProfile() ActivityStreamsProfile
	// GetActivityStreamsQuestion returns the value of this property. When
	// IsActivityStreamsQuestion returns false, GetActivityStreamsQuestion
	// will return an arbitrary value.
	GetActivityStreamsQuestion() ActivityStreamsQuestion
	// GetActivityStreamsRead returns the value of this property. When
	// IsActivityStreamsRead returns false, GetActivityStreamsRead will
	// return an arbitrary value.
	GetActivityStreamsRead() ActivityStreamsRead
	// GetActivityStreamsReject returns the value of this property. When
	// IsActivityStreamsReject returns false, GetActivityStreamsReject
	// will return an arbitrary value.
	GetActivityStreamsReject() ActivityStreamsReject
	// GetActivityStreamsRelationship returns the value of this property. When
	// IsActivityStreamsRelationship returns false,
	// GetActivityStreamsRelationship will return an arbitrary value.
	GetActivityStreamsRelationship() ActivityStreamsRelationship
	// GetActivityStreamsRemove returns the value of this property. When
	// IsActivityStreamsRemove returns false, GetActivityStreamsRemove
	// will return an arbitrary value.
	GetActivityStreamsRemove() ActivityStreamsRemove
	// GetActivityStreamsService returns the value of this property. When
	// IsActivityStreamsService returns false, GetActivityStreamsService
	// will return an arbitrary value.
	GetActivityStreamsService() ActivityStreamsService
	// GetActivityStreamsTentativeAccept returns the value of this property.
	// When IsActivityStreamsTentativeAccept returns false,
	// GetActivityStreamsTentativeAccept will return an arbitrary value.
	GetActivityStreamsTentativeAccept() ActivityStreamsTentativeAccept
	// GetActivityStreamsTentativeReject returns the value of this property.
	// When IsActivityStreamsTentativeReject returns false,
	// GetActivityStreamsTentativeReject will return an arbitrary value.
	GetActivityStreamsTentativeReject() ActivityStreamsTentativeReject
	// GetActivityStreamsTombstone returns the value of this property. When
	// IsActivityStreamsTombstone returns false,
	// GetActivityStreamsTombstone will return an arbitrary value.
	GetActivityStreamsTombstone() ActivityStreamsTombstone
	// GetActivityStreamsTravel returns the value of this property. When
	// IsActivityStreamsTravel returns false, GetActivityStreamsTravel
	// will return an arbitrary value.
	GetActivityStreamsTravel() ActivityStreamsTravel
	// GetActivityStreamsUndo returns the value of this property. When
	// IsActivityStreamsUndo returns false, GetActivityStreamsUndo will
	// return an arbitrary value.
	GetActivityStreamsUndo() ActivityStreamsUndo
	// GetActivityStreamsUpdate returns the value of this property. When
	// IsActivityStreamsUpdate returns false, GetActivityStreamsUpdate
	// will return an arbitrary value.
	GetActivityStreamsUpdate() ActivityStreamsUpdate
	// GetActivityStreamsVideo returns the value of this property. When
	// IsActivityStreamsVideo returns false, GetActivityStreamsVideo will
	// return an arbitrary value.
	GetActivityStreamsVideo() ActivityStreamsVideo
	// GetActivityStreamsView returns the value of this property. When
	// IsActivityStreamsView returns false, GetActivityStreamsView will
	// return an arbitrary value.
	GetActivityStreamsView() ActivityStreamsView
	// GetForgeFedBranch returns the value of this property. When
	// IsForgeFedBranch returns false, GetForgeFedBranch will return an
	// arbitrary value.
	GetForgeFedBranch() ForgeFedBranch
	// GetForgeFedCommit returns the value of this property. When
	// IsForgeFedCommit returns false, GetForgeFedCommit will return an
	// arbitrary value.
	GetForgeFedCommit() ForgeFedCommit
	// GetForgeFedPush returns the value of this property. When IsForgeFedPush
	// returns false, GetForgeFedPush will return an arbitrary value.
	GetForgeFedPush() ForgeFedPush
	// GetForgeFedRepository returns the value of this property. When
	// IsForgeFedRepository returns false, GetForgeFedRepository will
	// return an arbitrary value.
	GetForgeFedRepository() ForgeFedRepository
	// GetForgeFedTicket returns the value of this property. When
	// IsForgeFedTicket returns false, GetForgeFedTicket will return an
	// arbitrary value.
	GetForgeFedTicket() ForgeFedTicket
	// GetForgeFedTicketDependency returns the value of this property. When
	// IsForgeFedTicketDependency returns false,
	// GetForgeFedTicketDependency will return an arbitrary value.
	GetForgeFedTicketDependency() ForgeFedTicketDependency
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return an arbitrary value.
	GetIRI() *url.URL
	// GetTootEmoji returns the value of this property. When IsTootEmoji
	// returns false, GetTootEmoji will return an arbitrary value.
	GetTootEmoji() TootEmoji
	// GetTootIdentityProof returns the value of this property. When
	// IsTootIdentityProof returns false, GetTootIdentityProof will return
	// an arbitrary value.
	GetTootIdentityProof() TootIdentityProof
	// GetType returns the value in this property as a Type. Returns nil if
	// the value is not an ActivityStreams type, such as an IRI or another
	// value.
	GetType() Type
	// HasAny returns true if any of the different values is set.
	HasAny() bool
	// IsActivityStreamsAccept returns true if this property has a type of
	// "Accept". When true, use the GetActivityStreamsAccept and
	// SetActivityStreamsAccept methods to access and set this property.
	IsActivityStreamsAccept() bool
	// IsActivityStreamsActivity returns true if this property has a type of
	// "Activity". When true, use the GetActivityStreamsActivity and
	// SetActivityStreamsActivity methods to access and set this property.
	IsActivityStreamsActivity() bool
	// IsActivityStreamsAdd returns true if this property has a type of "Add".
	// When true, use the GetActivityStreamsAdd and SetActivityStreamsAdd
	// methods to access and set this property.
	IsActivityStreamsAdd() bool
	// IsActivityStreamsAnnounce returns true if this property has a type of
	// "Announce". When true, use the GetActivityStreamsAnnounce and
	// SetActivityStreamsAnnounce methods to access and set this property.
	IsActivityStreamsAnnounce() bool
	// IsActivityStreamsApplication returns true if this property has a type
	// of "Application". When true, use the GetActivityStreamsApplication
	// and SetActivityStreamsApplication methods to access and set this
	// property.
	IsActivityStreamsApplication() bool
	// IsActivityStreamsArrive returns true if this property has a type of
	// "Arrive". When true, use the GetActivityStreamsArrive and
	// SetActivityStreamsArrive methods to access and set this property.
	IsActivityStreamsArrive() bool
	// IsActivityStreamsArticle returns true if this property has a type of
	// "Article". When true, use the GetActivityStreamsArticle and
	// SetActivityStreamsArticle methods to access and set this property.
	IsActivityStreamsArticle() bool
	// IsActivityStreamsAudio returns true if this property has a type of
	// "Audio". When true, use the GetActivityStreamsAudio and
	// SetActivityStreamsAudio methods to access and set this property.
	IsActivityStreamsAudio() bool
	// IsActivityStreamsBlock returns true if this property has a type of
	// "Block". When true, use the GetActivityStreamsBlock and
	// SetActivityStreamsBlock methods to access and set this property.
	IsActivityStreamsBlock() bool
	// IsActivityStreamsCollection returns true if this property has a type of
	// "Collection". When true, use the GetActivityStreamsCollection and
	// SetActivityStreamsCollection methods to access and set this
	// property.
	IsActivityStreamsCollection() bool
	// IsActivityStreamsCollectionPage returns true if this property has a
	// type of "CollectionPage". When true, use the
	// GetActivityStreamsCollectionPage and
	// SetActivityStreamsCollectionPage methods to access and set this
	// property.
	IsActivityStreamsCollectionPage() bool
	// IsActivityStreamsCreate returns true if this property has a type of
	// "Create". When true, use the GetActivityStreamsCreate and
	// SetActivityStreamsCreate methods to access and set this property.
	IsActivityStreamsCreate() bool
	// IsActivityStreamsDelete returns true if this property has a type of
	// "Delete". When true, use the GetActivityStreamsDelete and
	// SetActivityStreamsDelete methods to access and set this property.
	IsActivityStreamsDelete() bool
	// IsActivityStreamsDislike returns true if this property has a type of
	// "Dislike". When true, use the GetActivityStreamsDislike and
	// SetActivityStreamsDislike methods to access and set this property.
	IsActivityStreamsDislike() bool
	// IsActivityStreamsDocument returns true if this property has a type of
	// "Document". When true, use the GetActivityStreamsDocument and
	// SetActivityStreamsDocument methods to access and set this property.
	IsActivityStreamsDocument() bool
	// IsActivityStreamsEvent returns true if this property has a type of
	// "Event". When true, use the GetActivityStreamsEvent and
	// SetActivityStreamsEvent methods to access and set this property.
	IsActivityStreamsEvent() bool
	// IsActivityStreamsFlag returns true if this property has a type of
	// "Flag". When true, use the GetActivityStreamsFlag and
	// SetActivityStreamsFlag methods to access and set this property.
	IsActivityStreamsFlag() bool
	// IsActivityStreamsFollow returns true if this property has a type of
	// "Follow". When true, use the GetActivityStreamsFollow and
	// SetActivityStreamsFollow methods to access and set this property.
	IsActivityStreamsFollow() bool
	// IsActivityStreamsGroup returns true if this property has a type of
	// "Group". When true, use the GetActivityStreamsGroup and
	// SetActivityStreamsGroup methods to access and set this property.
	IsActivityStreamsGroup() bool
	// IsActivityStreamsIgnore returns true if this property has a type of
	// "Ignore". When true, use the GetActivityStreamsIgnore and
	// SetActivityStreamsIgnore methods to access and set this property.
	IsActivityStreamsIgnore() bool
	// IsActivityStreamsImage returns true if this property has a type of
	// "Image". When true, use the GetActivityStreamsImage and
	// SetActivityStreamsImage methods to access and set this property.
	IsActivityStreamsImage() bool
	// IsActivityStreamsIntransitiveActivity returns true if this property has
	// a type of "IntransitiveActivity". When true, use the
	// GetActivityStreamsIntransitiveActivity and
	// SetActivityStreamsIntransitiveActivity methods to access and set
	// this property.
	IsActivityStreamsIntransitiveActivity() bool
	// IsActivityStreamsInvite returns true if this property has a type of
	// "Invite". When true, use the GetActivityStreamsInvite and
	// SetActivityStreamsInvite methods to access and set this property.
	IsActivityStreamsInvite() bool
	// IsActivityStreamsJoin returns true if this property has a type of
	// "Join". When true, use the GetActivityStreamsJoin and
	// SetActivityStreamsJoin methods to access and set this property.
	IsActivityStreamsJoin() bool
	// IsActivityStreamsLeave returns true if this property has a type of
	// "Leave". When true, use the GetActivityStreamsLeave and
	// SetActivityStreamsLeave methods to access and set this property.
	IsActivityStreamsLeave() bool
	// IsActivityStreamsLike returns true if this property has a type of
	// "Like". When true, use the GetActivityStreamsLike and
	// SetActivityStreamsLike methods to access and set this property.
	IsActivityStreamsLike() bool
	// IsActivityStreamsLink returns true if this property has a type of
	// "Link". When true, use the GetActivityStreamsLink and
	// SetActivityStreamsLink methods to access and set this property.
	IsActivityStreamsLink() bool
	// IsActivityStreamsListen returns true if this property has a type of
	// "Listen". When true, use the GetActivityStreamsListen and
	// SetActivityStreamsListen methods to access and set this property.
	IsActivityStreamsListen() bool
	// IsActivityStreamsMention returns true if this property has a type of
	// "Mention". When true, use the GetActivityStreamsMention and
	// SetActivityStreamsMention methods to access and set this property.
	IsActivityStreamsMention() bool
	// IsActivityStreamsMove returns true if this property has a type of
	// "Move". When true, use the GetActivityStreamsMove and
	// SetActivityStreamsMove methods to access and set this property.
	IsActivityStreamsMove() bool
	// IsActivityStreamsNote returns true if this property has a type of
	// "Note". When true, use the GetActivityStreamsNote and
	// SetActivityStreamsNote methods to access and set this property.
	IsActivityStreamsNote() bool
	// IsActivityStreamsObject returns true if this property has a type of
	// "Object". When true, use the GetActivityStreamsObject and
	// SetActivityStreamsObject methods to access and set this property.
	IsActivityStreamsObject() bool
	// IsActivityStreamsOffer returns true if this property has a type of
	// "Offer". When true, use the GetActivityStreamsOffer and
	// SetActivityStreamsOffer methods to access and set this property.
	IsActivityStreamsOffer() bool
	// IsActivityStreamsOrderedCollection returns true if this property has a
	// type of "OrderedCollection". When true, use the
	// GetActivityStreamsOrderedCollection and
	// SetActivityStreamsOrderedCollection methods to access and set this
	// property.
	IsActivityStreamsOrderedCollection() bool
	// IsActivityStreamsOrderedCollectionPage returns true if this property
	// has a type of "OrderedCollectionPage". When true, use the
	// GetActivityStreamsOrderedCollectionPage and
	// SetActivityStreamsOrderedCollectionPage methods to access and set
	// this property.
	IsActivityStreamsOrderedCollectionPage() bool
	// IsActivityStreamsOrganization returns true if this property has a type
	// of "Organization". When true, use the
	// GetActivityStreamsOrganization and SetActivityStreamsOrganization
	// methods to access and set this property.
	IsActivityStreamsOrganization() bool
	// IsActivityStreamsPage returns true if this property has a type of
	// "Page". When true, use the GetActivityStreamsPage and
	// SetActivityStreamsPage methods to access and set this property.
	IsActivityStreamsPage() bool
	// IsActivityStreamsPerson returns true if this property has a type of
	// "Person". When true, use the GetActivityStreamsPerson and
	// SetActivityStreamsPerson methods to access and set this property.
	IsActivityStreamsPerson() bool
	// IsActivityStreamsPlace returns true if this property has a type of
	// "Place". When true, use the GetActivityStreamsPlace and
	// SetActivityStreamsPlace methods to access and set this property.
	IsActivityStreamsPlace() bool
	// IsActivityStreamsProfile returns true if this property has a type of
	// "Profile". When true, use the GetActivityStreamsProfile and
	// SetActivityStreamsProfile methods to access and set this property.
	IsActivityStreamsProfile() bool
	// IsActivityStreamsQuestion returns true if this property has a type of
	// "Question". When true, use the GetActivityStreamsQuestion and
	// SetActivityStreamsQuestion methods to access and set this property.
	IsActivityStreamsQuestion() bool
	// IsActivityStreamsRead returns true if this property has a type of
	// "Read". When true, use the GetActivityStreamsRead and
	// SetActivityStreamsRead methods to access and set this property.
	IsActivityStreamsRead() bool
	// IsActivityStreamsReject returns true if this property has a type of
	// "Reject". When true, use the GetActivityStreamsReject and
	// SetActivityStreamsReject methods to access and set this property.
	IsActivityStreamsReject() bool
	// IsActivityStreamsRelationship returns true if this property has a type
	// of "Relationship". When true, use the
	// GetActivityStreamsRelationship and SetActivityStreamsRelationship
	// methods to access and set this property.
	IsActivityStreamsRelationship() bool
	// IsActivityStreamsRemove returns true if this property has a type of
	// "Remove". When true, use the GetActivityStreamsRemove and
	// SetActivityStreamsRemove methods to access and set this property.
	IsActivityStreamsRemove() bool
	// IsActivityStreamsService returns true if this property has a type of
	// "Service". When true, use the GetActivityStreamsService and
	// SetActivityStreamsService methods to access and set this property.
	IsActivityStreamsService() bool
	// IsActivityStreamsTentativeAccept returns true if this property has a
	// type of "TentativeAccept". When true, use the
	// GetActivityStreamsTentativeAccept and
	// SetActivityStreamsTentativeAccept methods to access and set this
	// property.
	IsActivityStreamsTentativeAccept() bool
	// IsActivityStreamsTentativeReject returns true if this property has a
	// type of "TentativeReject". When true, use the
	// GetActivityStreamsTentativeReject and
	// SetActivityStreamsTentativeReject methods to access and set this
	// property.
	IsActivityStreamsTentativeReject() bool
	// IsActivityStreamsTombstone returns true if this property has a type of
	// "Tombstone". When true, use the GetActivityStreamsTombstone and
	// SetActivityStreamsTombstone methods to access and set this property.
	IsActivityStreamsTombstone() bool
	// IsActivityStreamsTravel returns true if this property has a type of
	// "Travel". When true, use the GetActivityStreamsTravel and
	// SetActivityStreamsTravel methods to access and set this property.
	IsActivityStreamsTravel() bool
	// IsActivityStreamsUndo returns true if this property has a type of
	// "Undo". When true, use the GetActivityStreamsUndo and
	// SetActivityStreamsUndo methods to access and set this property.
	IsActivityStreamsUndo() bool
	// IsActivityStreamsUpdate returns true if this property has a type of
	// "Update". When true, use the GetActivityStreamsUpdate and
	// SetActivityStreamsUpdate methods to access and set this property.
	IsActivityStreamsUpdate() bool
	// IsActivityStreamsVideo returns true if this property has a type of
	// "Video". When true, use the GetActivityStreamsVideo and
	// SetActivityStreamsVideo methods to access and set this property.
	IsActivityStreamsVideo() bool
	// IsActivityStreamsView returns true if this property has a type of
	// "View". When true, use the GetActivityStreamsView and
	// SetActivityStreamsView methods to access and set this property.
	IsActivityStreamsView() bool
	// IsForgeFedBranch returns true if this property has a type of "Branch".
	// When true, use the GetForgeFedBranch and SetForgeFedBranch methods
	// to access and set this property.
	IsForgeFedBranch() bool
	// IsForgeFedCommit returns true if this property has a type of "Commit".
	// When true, use the GetForgeFedCommit and SetForgeFedCommit methods
	// to access and set this property.
	IsForgeFedCommit() bool
	// IsForgeFedPush returns true if this property has a type of "Push". When
	// true, use the GetForgeFedPush and SetForgeFedPush methods to access
	// and set this property.
	IsForgeFedPush() bool
	// IsForgeFedRepository returns true if this property has a type of
	// "Repository". When true, use the GetForgeFedRepository and
	// SetForgeFedRepository methods to access and set this property.
	IsForgeFedRepository() bool
	// IsForgeFedTicket returns true if this property has a type of "Ticket".
	// When true, use the GetForgeFedTicket and SetForgeFedTicket methods
	// to access and set this property.
	IsForgeFedTicket() bool
	// IsForgeFedTicketDependency returns true if this property has a type of
	// "TicketDependency". When true, use the GetForgeFedTicketDependency
	// and SetForgeFedTicketDependency methods to access and set this
	// property.
	IsForgeFedTicketDependency() bool
	// IsIRI returns true if this property is an IRI. When true, use GetIRI
	// and SetIRI to access and set this property
	IsIRI() bool
	// IsTootEmoji returns true if this property has a type of "Emoji". When
	// true, use the GetTootEmoji and SetTootEmoji methods to access and
	// set this property.
	IsTootEmoji() bool
	// IsTootIdentityProof returns true if this property has a type of
	// "IdentityProof". When true, use the GetTootIdentityProof and
	// SetTootIdentityProof methods to access and set this property.
	IsTootIdentityProof() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsOrderedItemsPropertyIterator) bool
	// Name returns the name of this property: "ActivityStreamsOrderedItems".
	Name() string
	// Next returns the next iterator, or nil if there is no next iterator.
	Next() ActivityStreamsOrderedItemsPropertyIterator
	// Prev returns the previous iterator, or nil if there is no previous
	// iterator.
	Prev() ActivityStreamsOrderedItemsPropertyIterator
	// SetActivityStreamsAccept sets the value of this property. Calling
	// IsActivityStreamsAccept afterwards returns true.
	SetActivityStreamsAccept(v ActivityStreamsAccept)
	// SetActivityStreamsActivity sets the value of this property. Calling
	// IsActivityStreamsActivity afterwards returns true.
	SetActivityStreamsActivity(v ActivityStreamsActivity)
	// SetActivityStreamsAdd sets the value of this property. Calling
	// IsActivityStreamsAdd afterwards returns true.
	SetActivityStreamsAdd(v ActivityStreamsAdd)
	// SetActivityStreamsAnnounce sets the value of this property. Calling
	// IsActivityStreamsAnnounce afterwards returns true.
	SetActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// SetActivityStreamsApplication sets the value of this property. Calling
	// IsActivityStreamsApplication afterwards returns true.
	SetActivityStreamsApplication(v ActivityStreamsApplication)
	// SetActivityStreamsArrive sets the value of this property. Calling
	// IsActivityStreamsArrive afterwards returns true.
	SetActivityStreamsArrive(v ActivityStreamsArrive)
	// SetActivityStreamsArticle sets the value of this property. Calling
	// IsActivityStreamsArticle afterwards returns true.
	SetActivityStreamsArticle(v ActivityStreamsArticle)
	// SetActivityStreamsAudio sets the value of this property. Calling
	// IsActivityStreamsAudio afterwards returns true.
	SetActivityStreamsAudio(v ActivityStreamsAudio)
	// SetActivityStreamsBlock sets the value of this property. Calling
	// IsActivityStreamsBlock afterwards returns true.
	SetActivityStreamsBlock(v ActivityStreamsBlock)
	// SetActivityStreamsCollection sets the value of this property. Calling
	// IsActivityStreamsCollection afterwards returns true.
	SetActivityStreamsCollection(v ActivityStreamsCollection)
	// SetActivityStreamsCollectionPage sets the value of this property.
	// Calling IsActivityStreamsCollectionPage afterwards returns true.
	SetActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// SetActivityStreamsCreate sets the value of this property. Calling
	// IsActivityStreamsCreate afterwards returns true.
	SetActivityStreamsCreate(v ActivityStreamsCreate)
	// SetActivityStreamsDelete sets the value of this property. Calling
	// IsActivityStreamsDelete afterwards returns true.
	SetActivityStreamsDelete(v ActivityStreamsDelete)
	// SetActivityStreamsDislike sets the value of this property. Calling
	// IsActivityStreamsDislike afterwards returns true.
	SetActivityStreamsDislike(v ActivityStreamsDislike)
	// SetActivityStreamsDocument sets the value of this property. Calling
	// IsActivityStreamsDocument afterwards returns true.
	SetActivityStreamsDocument(v ActivityStreamsDocument)
	// SetActivityStreamsEvent sets the value of this property. Calling
	// IsActivityStreamsEvent afterwards returns true.
	SetActivityStreamsEvent(v ActivityStreamsEvent)
	// SetActivityStreamsFlag sets the value of this property. Calling
	// IsActivityStreamsFlag afterwards returns true.
	SetActivityStreamsFlag(v ActivityStreamsFlag)
	// SetActivityStreamsFollow sets the value of this property. Calling
	// IsActivityStreamsFollow afterwards returns true.
	SetActivityStreamsFollow(v ActivityStreamsFollow)
	// SetActivityStreamsGroup sets the value of this property. Calling
	// IsActivityStreamsGroup afterwards returns true.
	SetActivityStreamsGroup(v ActivityStreamsGroup)
	// SetActivityStreamsIgnore sets the value of this property. Calling
	// IsActivityStreamsIgnore afterwards returns true.
	SetActivityStreamsIgnore(v ActivityStreamsIgnore)
	// SetActivityStreamsImage sets the value of this property. Calling
	// IsActivityStreamsImage afterwards returns true.
	SetActivityStreamsImage(v ActivityStreamsImage)
	// SetActivityStreamsIntransitiveActivity sets the value of this property.
	// Calling IsActivityStreamsIntransitiveActivity afterwards returns
	// true.
	SetActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// SetActivityStreamsInvite sets the value of this property. Calling
	// IsActivityStreamsInvite afterwards returns true.
	SetActivityStreamsInvite(v ActivityStreamsInvite)
	// SetActivityStreamsJoin sets the value of this property. Calling
	// IsActivityStreamsJoin afterwards returns true.
	SetActivityStreamsJoin(v ActivityStreamsJoin)
	// SetActivityStreamsLeave sets the value of this property. Calling
	// IsActivityStreamsLeave afterwards returns true.
	SetActivityStreamsLeave(v ActivityStreamsLeave)
	// SetActivityStreamsLike sets the value of this property. Calling
	// IsActivityStreamsLike afterwards returns true.
	SetActivityStreamsLike(v ActivityStreamsLike)
	// SetActivityStreamsLink sets the value of this property. Calling
	// IsActivityStreamsLink afterwards returns true.
	SetActivityStreamsLink(v ActivityStreamsLink)
	// SetActivityStreamsListen sets the value of this property. Calling
	// IsActivityStreamsListen afterwards returns true.
	SetActivityStreamsListen(v ActivityStreamsListen)
	// SetActivityStreamsMention sets the value of this property. Calling
	// IsActivityStreamsMention afterwards returns true.
	SetActivityStreamsMention(v ActivityStreamsMention)
	// SetActivityStreamsMove sets the value of this property. Calling
	// IsActivityStreamsMove afterwards returns true.
	SetActivityStreamsMove(v ActivityStreamsMove)
	// SetActivityStreamsNote sets the value of this property. Calling
	// IsActivityStreamsNote afterwards returns true.
	SetActivityStreamsNote(v ActivityStreamsNote)
	// SetActivityStreamsObject sets the value of this property. Calling
	// IsActivityStreamsObject afterwards returns true.
	SetActivityStreamsObject(v ActivityStreamsObject)
	// SetActivityStreamsOffer sets the value of this property. Calling
	// IsActivityStreamsOffer afterwards returns true.
	SetActivityStreamsOffer(v ActivityStreamsOffer)
	// SetActivityStreamsOrderedCollection sets the value of this property.
	// Calling IsActivityStreamsOrderedCollection afterwards returns true.
	SetActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// SetActivityStreamsOrderedCollectionPage sets the value of this
	// property. Calling IsActivityStreamsOrderedCollectionPage afterwards
	// returns true.
	SetActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// SetActivityStreamsOrganization sets the value of this property. Calling
	// IsActivityStreamsOrganization afterwards returns true.
	SetActivityStreamsOrganization(v ActivityStreamsOrganization)
	// SetActivityStreamsPage sets the value of this property. Calling
	// IsActivityStreamsPage afterwards returns true.
	SetActivityStreamsPage(v ActivityStreamsPage)
	// SetActivityStreamsPerson sets the value of this property. Calling
	// IsActivityStreamsPerson afterwards returns true.
	SetActivityStreamsPerson(v ActivityStreamsPerson)
	// SetActivityStreamsPlace sets the value of this property. Calling
	// IsActivityStreamsPlace afterwards returns true.
	SetActivityStreamsPlace(v ActivityStreamsPlace)
	// SetActivityStreamsProfile sets the value of this property. Calling
	// IsActivityStreamsProfile afterwards returns true.
	SetActivityStreamsProfile(v ActivityStreamsProfile)
	// SetActivityStreamsQuestion sets the value of this property. Calling
	// IsActivityStreamsQuestion afterwards returns true.
	SetActivityStreamsQuestion(v ActivityStreamsQuestion)
	// SetActivityStreamsRead sets the value of this property. Calling
	// IsActivityStreamsRead afterwards returns true.
	SetActivityStreamsRead(v ActivityStreamsRead)
	// SetActivityStreamsReject sets the value of this property. Calling
	// IsActivityStreamsReject afterwards returns true.
	SetActivityStreamsReject(v ActivityStreamsReject)
	// SetActivityStreamsRelationship sets the value of this property. Calling
	// IsActivityStreamsRelationship afterwards returns true.
	SetActivityStreamsRelationship(v ActivityStreamsRelationship)
	// SetActivityStreamsRemove sets the value of this property. Calling
	// IsActivityStreamsRemove afterwards returns true.
	SetActivityStreamsRemove(v ActivityStreamsRemove)
	// SetActivityStreamsService sets the value of this property. Calling
	// IsActivityStreamsService afterwards returns true.
	SetActivityStreamsService(v ActivityStreamsService)
	// SetActivityStreamsTentativeAccept sets the value of this property.
	// Calling IsActivityStreamsTentativeAccept afterwards returns true.
	SetActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// SetActivityStreamsTentativeReject sets the value of this property.
	// Calling IsActivityStreamsTentativeReject afterwards returns true.
	SetActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// SetActivityStreamsTombstone sets the value of this property. Calling
	// IsActivityStreamsTombstone afterwards returns true.
	SetActivityStreamsTombstone(v ActivityStreamsTombstone)
	// SetActivityStreamsTravel sets the value of this property. Calling
	// IsActivityStreamsTravel afterwards returns true.
	SetActivityStreamsTravel(v ActivityStreamsTravel)
	// SetActivityStreamsUndo sets the value of this property. Calling
	// IsActivityStreamsUndo afterwards returns true.
	SetActivityStreamsUndo(v ActivityStreamsUndo)
	// SetActivityStreamsUpdate sets the value of this property. Calling
	// IsActivityStreamsUpdate afterwards returns true.
	SetActivityStreamsUpdate(v ActivityStreamsUpdate)
	// SetActivityStreamsVideo sets the value of this property. Calling
	// IsActivityStreamsVideo afterwards returns true.
	SetActivityStreamsVideo(v ActivityStreamsVideo)
	// SetActivityStreamsView sets the value of this property. Calling
	// IsActivityStreamsView afterwards returns true.
	SetActivityStreamsView(v ActivityStreamsView)
	// SetForgeFedBranch sets the value of this property. Calling
	// IsForgeFedBranch afterwards returns true.
	SetForgeFedBranch(v ForgeFedBranch)
	// SetForgeFedCommit sets the value of this property. Calling
	// IsForgeFedCommit afterwards returns true.
	SetForgeFedCommit(v ForgeFedCommit)
	// SetForgeFedPush sets the value of this property. Calling IsForgeFedPush
	// afterwards returns true.
	SetForgeFedPush(v ForgeFedPush)
	// SetForgeFedRepository sets the value of this property. Calling
	// IsForgeFedRepository afterwards returns true.
	SetForgeFedRepository(v ForgeFedRepository)
	// SetForgeFedTicket sets the value of this property. Calling
	// IsForgeFedTicket afterwards returns true.
	SetForgeFedTicket(v ForgeFedTicket)
	// SetForgeFedTicketDependency sets the value of this property. Calling
	// IsForgeFedTicketDependency afterwards returns true.
	SetForgeFedTicketDependency(v ForgeFedTicketDependency)
	// SetIRI sets the value of this property. Calling IsIRI afterwards
	// returns true.
	SetIRI(v *url.URL)
	// SetTootEmoji sets the value of this property. Calling IsTootEmoji
	// afterwards returns true.
	SetTootEmoji(v TootEmoji)
	// SetTootIdentityProof sets the value of this property. Calling
	// IsTootIdentityProof afterwards returns true.
	SetTootIdentityProof(v TootIdentityProof)
	// SetType attempts to set the property for the arbitrary type. Returns an
	// error if it is not a valid type to set on this property.
	SetType(t Type) error
}

ActivityStreamsOrderedItemsPropertyIterator represents a single value for the "orderedItems" property.

type ActivityStreamsOrganization

type ActivityStreamsOrganization interface {
	// GetActivityStreamsAltitude returns the "altitude" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAltitude() ActivityStreamsAltitudeProperty
	// GetActivityStreamsAttachment returns the "attachment" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAttachment() ActivityStreamsAttachmentProperty
	// GetActivityStreamsAttributedTo returns the "attributedTo" property if
	// it exists, and nil otherwise.
	GetActivityStreamsAttributedTo() ActivityStreamsAttributedToProperty
	// GetActivityStreamsAudience returns the "audience" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAudience() ActivityStreamsAudienceProperty
	// GetActivityStreamsBcc returns the "bcc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBcc() ActivityStreamsBccProperty
	// GetActivityStreamsBto returns the "bto" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBto() ActivityStreamsBtoProperty
	// GetActivityStreamsCc returns the "cc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsCc() ActivityStreamsCcProperty
	// GetActivityStreamsContent returns the "content" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContent() ActivityStreamsContentProperty
	// GetActivityStreamsContext returns the "context" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContext() ActivityStreamsContextProperty
	// GetActivityStreamsDuration returns the "duration" property if it
	// exists, and nil otherwise.
	GetActivityStreamsDuration() ActivityStreamsDurationProperty
	// GetActivityStreamsEndTime returns the "endTime" property if it exists,
	// and nil otherwise.
	GetActivityStreamsEndTime() ActivityStreamsEndTimeProperty
	// GetActivityStreamsFollowers returns the "followers" property if it
	// exists, and nil otherwise.
	GetActivityStreamsFollowers() ActivityStreamsFollowersProperty
	// GetActivityStreamsFollowing returns the "following" property if it
	// exists, and nil otherwise.
	GetActivityStreamsFollowing() ActivityStreamsFollowingProperty
	// GetActivityStreamsGenerator returns the "generator" property if it
	// exists, and nil otherwise.
	GetActivityStreamsGenerator() ActivityStreamsGeneratorProperty
	// GetActivityStreamsIcon returns the "icon" property if it exists, and
	// nil otherwise.
	GetActivityStreamsIcon() ActivityStreamsIconProperty
	// GetActivityStreamsImage returns the "image" property if it exists, and
	// nil otherwise.
	GetActivityStreamsImage() ActivityStreamsImageProperty
	// GetActivityStreamsInReplyTo returns the "inReplyTo" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInReplyTo() ActivityStreamsInReplyToProperty
	// GetActivityStreamsInbox returns the "inbox" property if it exists, and
	// nil otherwise.
	GetActivityStreamsInbox() ActivityStreamsInboxProperty
	// GetActivityStreamsLiked returns the "liked" property if it exists, and
	// nil otherwise.
	GetActivityStreamsLiked() ActivityStreamsLikedProperty
	// GetActivityStreamsLikes returns the "likes" property if it exists, and
	// nil otherwise.
	GetActivityStreamsLikes() ActivityStreamsLikesProperty
	// GetActivityStreamsLocation returns the "location" property if it
	// exists, and nil otherwise.
	GetActivityStreamsLocation() ActivityStreamsLocationProperty
	// GetActivityStreamsMediaType returns the "mediaType" property if it
	// exists, and nil otherwise.
	GetActivityStreamsMediaType() ActivityStreamsMediaTypeProperty
	// GetActivityStreamsName returns the "name" property if it exists, and
	// nil otherwise.
	GetActivityStreamsName() ActivityStreamsNameProperty
	// GetActivityStreamsObject returns the "object" property if it exists,
	// and nil otherwise.
	GetActivityStreamsObject() ActivityStreamsObjectProperty
	// GetActivityStreamsOutbox returns the "outbox" property if it exists,
	// and nil otherwise.
	GetActivityStreamsOutbox() ActivityStreamsOutboxProperty
	// GetActivityStreamsPreferredUsername returns the "preferredUsername"
	// property if it exists, and nil otherwise.
	GetActivityStreamsPreferredUsername() ActivityStreamsPreferredUsernameProperty
	// GetActivityStreamsPreview returns the "preview" property if it exists,
	// and nil otherwise.
	GetActivityStreamsPreview() ActivityStreamsPreviewProperty
	// GetActivityStreamsPublished returns the "published" property if it
	// exists, and nil otherwise.
	GetActivityStreamsPublished() ActivityStreamsPublishedProperty
	// GetActivityStreamsReplies returns the "replies" property if it exists,
	// and nil otherwise.
	GetActivityStreamsReplies() ActivityStreamsRepliesProperty
	// GetActivityStreamsShares returns the "shares" property if it exists,
	// and nil otherwise.
	GetActivityStreamsShares() ActivityStreamsSharesProperty
	// GetActivityStreamsSource returns the "source" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSource() ActivityStreamsSourceProperty
	// GetActivityStreamsStartTime returns the "startTime" property if it
	// exists, and nil otherwise.
	GetActivityStreamsStartTime() ActivityStreamsStartTimeProperty
	// GetActivityStreamsStreams returns the "streams" property if it exists,
	// and nil otherwise.
	GetActivityStreamsStreams() ActivityStreamsStreamsProperty
	// GetActivityStreamsSummary returns the "summary" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSummary() ActivityStreamsSummaryProperty
	// GetActivityStreamsTag returns the "tag" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTag() ActivityStreamsTagProperty
	// GetActivityStreamsTo returns the "to" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTo() ActivityStreamsToProperty
	// GetActivityStreamsUpdated returns the "updated" property if it exists,
	// and nil otherwise.
	GetActivityStreamsUpdated() ActivityStreamsUpdatedProperty
	// GetActivityStreamsUrl returns the "url" property if it exists, and nil
	// otherwise.
	GetActivityStreamsUrl() ActivityStreamsUrlProperty
	// GetForgeFedTeam returns the "team" property if it exists, and nil
	// otherwise.
	GetForgeFedTeam() ForgeFedTeamProperty
	// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
	// it exists, and nil otherwise.
	GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
	// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
	// it exists, and nil otherwise.
	GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
	// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
	GetJSONLDId() JSONLDIdProperty
	// GetJSONLDType returns the "type" property if it exists, and nil
	// otherwise.
	GetJSONLDType() JSONLDTypeProperty
	// GetTootDiscoverable returns the "discoverable" property if it exists,
	// and nil otherwise.
	GetTootDiscoverable() TootDiscoverableProperty
	// GetTootFeatured returns the "featured" property if it exists, and nil
	// otherwise.
	GetTootFeatured() TootFeaturedProperty
	// GetTypeName returns the name of this type.
	GetTypeName() string
	// GetUnknownProperties returns the unknown properties for the
	// Organization type. Note that this should not be used by app
	// developers. It is only used to help determine which implementation
	// is LessThan the other. Developers who are creating a different
	// implementation of this type's interface can use this method in
	// their LessThan implementation, but routine ActivityPub applications
	// should not use this to bypass the code generation tool.
	GetUnknownProperties() map[string]interface{}
	// GetW3IDSecurityV1PublicKey returns the "publicKey" property if it
	// exists, and nil otherwise.
	GetW3IDSecurityV1PublicKey() W3IDSecurityV1PublicKeyProperty
	// IsExtending returns true if the Organization type extends from the
	// other type.
	IsExtending(other Type) bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this type and the specific properties that are set. The value
	// in the map is the alias used to import the type and its properties.
	JSONLDContext() map[string]string
	// LessThan computes if this Organization is lesser, with an arbitrary but
	// stable determination.
	LessThan(o ActivityStreamsOrganization) bool
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format.
	Serialize() (map[string]interface{}, error)
	// SetActivityStreamsAltitude sets the "altitude" property.
	SetActivityStreamsAltitude(i ActivityStreamsAltitudeProperty)
	// SetActivityStreamsAttachment sets the "attachment" property.
	SetActivityStreamsAttachment(i ActivityStreamsAttachmentProperty)
	// SetActivityStreamsAttributedTo sets the "attributedTo" property.
	SetActivityStreamsAttributedTo(i ActivityStreamsAttributedToProperty)
	// SetActivityStreamsAudience sets the "audience" property.
	SetActivityStreamsAudience(i ActivityStreamsAudienceProperty)
	// SetActivityStreamsBcc sets the "bcc" property.
	SetActivityStreamsBcc(i ActivityStreamsBccProperty)
	// SetActivityStreamsBto sets the "bto" property.
	SetActivityStreamsBto(i ActivityStreamsBtoProperty)
	// SetActivityStreamsCc sets the "cc" property.
	SetActivityStreamsCc(i ActivityStreamsCcProperty)
	// SetActivityStreamsContent sets the "content" property.
	SetActivityStreamsContent(i ActivityStreamsContentProperty)
	// SetActivityStreamsContext sets the "context" property.
	SetActivityStreamsContext(i ActivityStreamsContextProperty)
	// SetActivityStreamsDuration sets the "duration" property.
	SetActivityStreamsDuration(i ActivityStreamsDurationProperty)
	// SetActivityStreamsEndTime sets the "endTime" property.
	SetActivityStreamsEndTime(i ActivityStreamsEndTimeProperty)
	// SetActivityStreamsFollowers sets the "followers" property.
	SetActivityStreamsFollowers(i ActivityStreamsFollowersProperty)
	// SetActivityStreamsFollowing sets the "following" property.
	SetActivityStreamsFollowing(i ActivityStreamsFollowingProperty)
	// SetActivityStreamsGenerator sets the "generator" property.
	SetActivityStreamsGenerator(i ActivityStreamsGeneratorProperty)
	// SetActivityStreamsIcon sets the "icon" property.
	SetActivityStreamsIcon(i ActivityStreamsIconProperty)
	// SetActivityStreamsImage sets the "image" property.
	SetActivityStreamsImage(i ActivityStreamsImageProperty)
	// SetActivityStreamsInReplyTo sets the "inReplyTo" property.
	SetActivityStreamsInReplyTo(i ActivityStreamsInReplyToProperty)
	// SetActivityStreamsInbox sets the "inbox" property.
	SetActivityStreamsInbox(i ActivityStreamsInboxProperty)
	// SetActivityStreamsLiked sets the "liked" property.
	SetActivityStreamsLiked(i ActivityStreamsLikedProperty)
	// SetActivityStreamsLikes sets the "likes" property.
	SetActivityStreamsLikes(i ActivityStreamsLikesProperty)
	// SetActivityStreamsLocation sets the "location" property.
	SetActivityStreamsLocation(i ActivityStreamsLocationProperty)
	// SetActivityStreamsMediaType sets the "mediaType" property.
	SetActivityStreamsMediaType(i ActivityStreamsMediaTypeProperty)
	// SetActivityStreamsName sets the "name" property.
	SetActivityStreamsName(i ActivityStreamsNameProperty)
	// SetActivityStreamsObject sets the "object" property.
	SetActivityStreamsObject(i ActivityStreamsObjectProperty)
	// SetActivityStreamsOutbox sets the "outbox" property.
	SetActivityStreamsOutbox(i ActivityStreamsOutboxProperty)
	// SetActivityStreamsPreferredUsername sets the "preferredUsername"
	// property.
	SetActivityStreamsPreferredUsername(i ActivityStreamsPreferredUsernameProperty)
	// SetActivityStreamsPreview sets the "preview" property.
	SetActivityStreamsPreview(i ActivityStreamsPreviewProperty)
	// SetActivityStreamsPublished sets the "published" property.
	SetActivityStreamsPublished(i ActivityStreamsPublishedProperty)
	// SetActivityStreamsReplies sets the "replies" property.
	SetActivityStreamsReplies(i ActivityStreamsRepliesProperty)
	// SetActivityStreamsShares sets the "shares" property.
	SetActivityStreamsShares(i ActivityStreamsSharesProperty)
	// SetActivityStreamsSource sets the "source" property.
	SetActivityStreamsSource(i ActivityStreamsSourceProperty)
	// SetActivityStreamsStartTime sets the "startTime" property.
	SetActivityStreamsStartTime(i ActivityStreamsStartTimeProperty)
	// SetActivityStreamsStreams sets the "streams" property.
	SetActivityStreamsStreams(i ActivityStreamsStreamsProperty)
	// SetActivityStreamsSummary sets the "summary" property.
	SetActivityStreamsSummary(i ActivityStreamsSummaryProperty)
	// SetActivityStreamsTag sets the "tag" property.
	SetActivityStreamsTag(i ActivityStreamsTagProperty)
	// SetActivityStreamsTo sets the "to" property.
	SetActivityStreamsTo(i ActivityStreamsToProperty)
	// SetActivityStreamsUpdated sets the "updated" property.
	SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
	// SetActivityStreamsUrl sets the "url" property.
	SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
	// SetForgeFedTeam sets the "team" property.
	SetForgeFedTeam(i ForgeFedTeamProperty)
	// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
	SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
	// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
	SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
	// SetJSONLDId sets the "id" property.
	SetJSONLDId(i JSONLDIdProperty)
	// SetJSONLDType sets the "type" property.
	SetJSONLDType(i JSONLDTypeProperty)
	// SetTootDiscoverable sets the "discoverable" property.
	SetTootDiscoverable(i TootDiscoverableProperty)
	// SetTootFeatured sets the "featured" property.
	SetTootFeatured(i TootFeaturedProperty)
	// SetW3IDSecurityV1PublicKey sets the "publicKey" property.
	SetW3IDSecurityV1PublicKey(i W3IDSecurityV1PublicKeyProperty)
	// VocabularyURI returns the vocabulary's URI as a string.
	VocabularyURI() string
}

Represents an organization.

Example 44 (https://www.w3.org/TR/activitystreams-vocabulary/#ex186-jsonld):

{
  "name": "Example Co.",
  "type": "Organization"
}

type ActivityStreamsOriginProperty

type ActivityStreamsOriginProperty interface {
	// AppendActivityStreamsAccept appends a Accept value to the back of a
	// list of the property "origin". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsAccept(v ActivityStreamsAccept)
	// AppendActivityStreamsActivity appends a Activity value to the back of a
	// list of the property "origin". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsActivity(v ActivityStreamsActivity)
	// AppendActivityStreamsAdd appends a Add value to the back of a list of
	// the property "origin". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsAdd(v ActivityStreamsAdd)
	// AppendActivityStreamsAnnounce appends a Announce value to the back of a
	// list of the property "origin". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// AppendActivityStreamsApplication appends a Application value to the
	// back of a list of the property "origin". Invalidates iterators that
	// are traversing using Prev.
	AppendActivityStreamsApplication(v ActivityStreamsApplication)
	// AppendActivityStreamsArrive appends a Arrive value to the back of a
	// list of the property "origin". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsArrive(v ActivityStreamsArrive)
	// AppendActivityStreamsArticle appends a Article value to the back of a
	// list of the property "origin". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsArticle(v ActivityStreamsArticle)
	// AppendActivityStreamsAudio appends a Audio value to the back of a list
	// of the property "origin". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsAudio(v ActivityStreamsAudio)
	// AppendActivityStreamsBlock appends a Block value to the back of a list
	// of the property "origin". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsBlock(v ActivityStreamsBlock)
	// AppendActivityStreamsCollection appends a Collection value to the back
	// of a list of the property "origin". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsCollection(v ActivityStreamsCollection)
	// AppendActivityStreamsCollectionPage appends a CollectionPage value to
	// the back of a list of the property "origin". Invalidates iterators
	// that are traversing using Prev.
	AppendActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// AppendActivityStreamsCreate appends a Create value to the back of a
	// list of the property "origin". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsCreate(v ActivityStreamsCreate)
	// AppendActivityStreamsDelete appends a Delete value to the back of a
	// list of the property "origin". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDelete(v ActivityStreamsDelete)
	// AppendActivityStreamsDislike appends a Dislike value to the back of a
	// list of the property "origin". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDislike(v ActivityStreamsDislike)
	// AppendActivityStreamsDocument appends a Document value to the back of a
	// list of the property "origin". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDocument(v ActivityStreamsDocument)
	// AppendActivityStreamsEvent appends a Event value to the back of a list
	// of the property "origin". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsEvent(v ActivityStreamsEvent)
	// AppendActivityStreamsFlag appends a Flag value to the back of a list of
	// the property "origin". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsFlag(v ActivityStreamsFlag)
	// AppendActivityStreamsFollow appends a Follow value to the back of a
	// list of the property "origin". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsFollow(v ActivityStreamsFollow)
	// AppendActivityStreamsGroup appends a Group value to the back of a list
	// of the property "origin". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsGroup(v ActivityStreamsGroup)
	// AppendActivityStreamsIgnore appends a Ignore value to the back of a
	// list of the property "origin". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsIgnore(v ActivityStreamsIgnore)
	// AppendActivityStreamsImage appends a Image value to the back of a list
	// of the property "origin". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsImage(v ActivityStreamsImage)
	// AppendActivityStreamsIntransitiveActivity appends a
	// IntransitiveActivity value to the back of a list of the property
	// "origin". Invalidates iterators that are traversing using Prev.
	AppendActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// AppendActivityStreamsInvite appends a Invite value to the back of a
	// list of the property "origin". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsInvite(v ActivityStreamsInvite)
	// AppendActivityStreamsJoin appends a Join value to the back of a list of
	// the property "origin". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsJoin(v ActivityStreamsJoin)
	// AppendActivityStreamsLeave appends a Leave value to the back of a list
	// of the property "origin". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsLeave(v ActivityStreamsLeave)
	// AppendActivityStreamsLike appends a Like value to the back of a list of
	// the property "origin". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsLike(v ActivityStreamsLike)
	// AppendActivityStreamsLink appends a Link value to the back of a list of
	// the property "origin". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsLink(v ActivityStreamsLink)
	// AppendActivityStreamsListen appends a Listen value to the back of a
	// list of the property "origin". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsListen(v ActivityStreamsListen)
	// AppendActivityStreamsMention appends a Mention value to the back of a
	// list of the property "origin". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsMention(v ActivityStreamsMention)
	// AppendActivityStreamsMove appends a Move value to the back of a list of
	// the property "origin". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsMove(v ActivityStreamsMove)
	// AppendActivityStreamsNote appends a Note value to the back of a list of
	// the property "origin". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsNote(v ActivityStreamsNote)
	// AppendActivityStreamsObject appends a Object value to the back of a
	// list of the property "origin". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsObject(v ActivityStreamsObject)
	// AppendActivityStreamsOffer appends a Offer value to the back of a list
	// of the property "origin". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsOffer(v ActivityStreamsOffer)
	// AppendActivityStreamsOrderedCollection appends a OrderedCollection
	// value to the back of a list of the property "origin". Invalidates
	// iterators that are traversing using Prev.
	AppendActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// AppendActivityStreamsOrderedCollectionPage appends a
	// OrderedCollectionPage value to the back of a list of the property
	// "origin". Invalidates iterators that are traversing using Prev.
	AppendActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// AppendActivityStreamsOrganization appends a Organization value to the
	// back of a list of the property "origin". Invalidates iterators that
	// are traversing using Prev.
	AppendActivityStreamsOrganization(v ActivityStreamsOrganization)
	// AppendActivityStreamsPage appends a Page value to the back of a list of
	// the property "origin". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsPage(v ActivityStreamsPage)
	// AppendActivityStreamsPerson appends a Person value to the back of a
	// list of the property "origin". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsPerson(v ActivityStreamsPerson)
	// AppendActivityStreamsPlace appends a Place value to the back of a list
	// of the property "origin". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsPlace(v ActivityStreamsPlace)
	// AppendActivityStreamsProfile appends a Profile value to the back of a
	// list of the property "origin". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsProfile(v ActivityStreamsProfile)
	// AppendActivityStreamsQuestion appends a Question value to the back of a
	// list of the property "origin". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsQuestion(v ActivityStreamsQuestion)
	// AppendActivityStreamsRead appends a Read value to the back of a list of
	// the property "origin". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsRead(v ActivityStreamsRead)
	// AppendActivityStreamsReject appends a Reject value to the back of a
	// list of the property "origin". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsReject(v ActivityStreamsReject)
	// AppendActivityStreamsRelationship appends a Relationship value to the
	// back of a list of the property "origin". Invalidates iterators that
	// are traversing using Prev.
	AppendActivityStreamsRelationship(v ActivityStreamsRelationship)
	// AppendActivityStreamsRemove appends a Remove value to the back of a
	// list of the property "origin". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsRemove(v ActivityStreamsRemove)
	// AppendActivityStreamsService appends a Service value to the back of a
	// list of the property "origin". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsService(v ActivityStreamsService)
	// AppendActivityStreamsTentativeAccept appends a TentativeAccept value to
	// the back of a list of the property "origin". Invalidates iterators
	// that are traversing using Prev.
	AppendActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// AppendActivityStreamsTentativeReject appends a TentativeReject value to
	// the back of a list of the property "origin". Invalidates iterators
	// that are traversing using Prev.
	AppendActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// AppendActivityStreamsTombstone appends a Tombstone value to the back of
	// a list of the property "origin". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsTombstone(v ActivityStreamsTombstone)
	// AppendActivityStreamsTravel appends a Travel value to the back of a
	// list of the property "origin". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsTravel(v ActivityStreamsTravel)
	// AppendActivityStreamsUndo appends a Undo value to the back of a list of
	// the property "origin". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsUndo(v ActivityStreamsUndo)
	// AppendActivityStreamsUpdate appends a Update value to the back of a
	// list of the property "origin". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsUpdate(v ActivityStreamsUpdate)
	// AppendActivityStreamsVideo appends a Video value to the back of a list
	// of the property "origin". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsVideo(v ActivityStreamsVideo)
	// AppendActivityStreamsView appends a View value to the back of a list of
	// the property "origin". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsView(v ActivityStreamsView)
	// AppendForgeFedBranch appends a Branch value to the back of a list of
	// the property "origin". Invalidates iterators that are traversing
	// using Prev.
	AppendForgeFedBranch(v ForgeFedBranch)
	// AppendForgeFedCommit appends a Commit value to the back of a list of
	// the property "origin". Invalidates iterators that are traversing
	// using Prev.
	AppendForgeFedCommit(v ForgeFedCommit)
	// AppendForgeFedPush appends a Push value to the back of a list of the
	// property "origin". Invalidates iterators that are traversing using
	// Prev.
	AppendForgeFedPush(v ForgeFedPush)
	// AppendForgeFedRepository appends a Repository value to the back of a
	// list of the property "origin". Invalidates iterators that are
	// traversing using Prev.
	AppendForgeFedRepository(v ForgeFedRepository)
	// AppendForgeFedTicket appends a Ticket value to the back of a list of
	// the property "origin". Invalidates iterators that are traversing
	// using Prev.
	AppendForgeFedTicket(v ForgeFedTicket)
	// AppendForgeFedTicketDependency appends a TicketDependency value to the
	// back of a list of the property "origin". Invalidates iterators that
	// are traversing using Prev.
	AppendForgeFedTicketDependency(v ForgeFedTicketDependency)
	// AppendIRI appends an IRI value to the back of a list of the property
	// "origin"
	AppendIRI(v *url.URL)
	// AppendTootEmoji appends a Emoji value to the back of a list of the
	// property "origin". Invalidates iterators that are traversing using
	// Prev.
	AppendTootEmoji(v TootEmoji)
	// AppendTootIdentityProof appends a IdentityProof value to the back of a
	// list of the property "origin". Invalidates iterators that are
	// traversing using Prev.
	AppendTootIdentityProof(v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "origin". Invalidates iterators that are traversing
	// using Prev. Returns an error if the type is not a valid one to set
	// for this property.
	AppendType(t Type) error
	// At returns the property value for the specified index. Panics if the
	// index is out of bounds.
	At(index int) ActivityStreamsOriginPropertyIterator
	// Begin returns the first iterator, or nil if empty. Can be used with the
	// iterator's Next method and this property's End method to iterate
	// from front to back through all values.
	Begin() ActivityStreamsOriginPropertyIterator
	// Empty returns returns true if there are no elements.
	Empty() bool
	// End returns beyond-the-last iterator, which is nil. Can be used with
	// the iterator's Next method and this property's Begin method to
	// iterate from front to back through all values.
	End() ActivityStreamsOriginPropertyIterator
	// InsertActivityStreamsAccept inserts a Accept value at the specified
	// index for a property "origin". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAccept(idx int, v ActivityStreamsAccept)
	// InsertActivityStreamsActivity inserts a Activity value at the specified
	// index for a property "origin". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsActivity(idx int, v ActivityStreamsActivity)
	// InsertActivityStreamsAdd inserts a Add value at the specified index for
	// a property "origin". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertActivityStreamsAdd(idx int, v ActivityStreamsAdd)
	// InsertActivityStreamsAnnounce inserts a Announce value at the specified
	// index for a property "origin". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAnnounce(idx int, v ActivityStreamsAnnounce)
	// InsertActivityStreamsApplication inserts a Application value at the
	// specified index for a property "origin". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsApplication(idx int, v ActivityStreamsApplication)
	// InsertActivityStreamsArrive inserts a Arrive value at the specified
	// index for a property "origin". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsArrive(idx int, v ActivityStreamsArrive)
	// InsertActivityStreamsArticle inserts a Article value at the specified
	// index for a property "origin". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsArticle(idx int, v ActivityStreamsArticle)
	// InsertActivityStreamsAudio inserts a Audio value at the specified index
	// for a property "origin". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAudio(idx int, v ActivityStreamsAudio)
	// InsertActivityStreamsBlock inserts a Block value at the specified index
	// for a property "origin". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsBlock(idx int, v ActivityStreamsBlock)
	// InsertActivityStreamsCollection inserts a Collection value at the
	// specified index for a property "origin". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsCollection(idx int, v ActivityStreamsCollection)
	// InsertActivityStreamsCollectionPage inserts a CollectionPage value at
	// the specified index for a property "origin". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsCollectionPage(idx int, v ActivityStreamsCollectionPage)
	// InsertActivityStreamsCreate inserts a Create value at the specified
	// index for a property "origin". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsCreate(idx int, v ActivityStreamsCreate)
	// InsertActivityStreamsDelete inserts a Delete value at the specified
	// index for a property "origin". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDelete(idx int, v ActivityStreamsDelete)
	// InsertActivityStreamsDislike inserts a Dislike value at the specified
	// index for a property "origin". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDislike(idx int, v ActivityStreamsDislike)
	// InsertActivityStreamsDocument inserts a Document value at the specified
	// index for a property "origin". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDocument(idx int, v ActivityStreamsDocument)
	// InsertActivityStreamsEvent inserts a Event value at the specified index
	// for a property "origin". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsEvent(idx int, v ActivityStreamsEvent)
	// InsertActivityStreamsFlag inserts a Flag value at the specified index
	// for a property "origin". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsFlag(idx int, v ActivityStreamsFlag)
	// InsertActivityStreamsFollow inserts a Follow value at the specified
	// index for a property "origin". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsFollow(idx int, v ActivityStreamsFollow)
	// InsertActivityStreamsGroup inserts a Group value at the specified index
	// for a property "origin". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsGroup(idx int, v ActivityStreamsGroup)
	// InsertActivityStreamsIgnore inserts a Ignore value at the specified
	// index for a property "origin". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsIgnore(idx int, v ActivityStreamsIgnore)
	// InsertActivityStreamsImage inserts a Image value at the specified index
	// for a property "origin". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsImage(idx int, v ActivityStreamsImage)
	// InsertActivityStreamsIntransitiveActivity inserts a
	// IntransitiveActivity value at the specified index for a property
	// "origin". Existing elements at that index and higher are shifted
	// back once. Invalidates all iterators.
	InsertActivityStreamsIntransitiveActivity(idx int, v ActivityStreamsIntransitiveActivity)
	// InsertActivityStreamsInvite inserts a Invite value at the specified
	// index for a property "origin". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsInvite(idx int, v ActivityStreamsInvite)
	// InsertActivityStreamsJoin inserts a Join value at the specified index
	// for a property "origin". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsJoin(idx int, v ActivityStreamsJoin)
	// InsertActivityStreamsLeave inserts a Leave value at the specified index
	// for a property "origin". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsLeave(idx int, v ActivityStreamsLeave)
	// InsertActivityStreamsLike inserts a Like value at the specified index
	// for a property "origin". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsLike(idx int, v ActivityStreamsLike)
	// InsertActivityStreamsLink inserts a Link value at the specified index
	// for a property "origin". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsLink(idx int, v ActivityStreamsLink)
	// InsertActivityStreamsListen inserts a Listen value at the specified
	// index for a property "origin". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsListen(idx int, v ActivityStreamsListen)
	// InsertActivityStreamsMention inserts a Mention value at the specified
	// index for a property "origin". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsMention(idx int, v ActivityStreamsMention)
	// InsertActivityStreamsMove inserts a Move value at the specified index
	// for a property "origin". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsMove(idx int, v ActivityStreamsMove)
	// InsertActivityStreamsNote inserts a Note value at the specified index
	// for a property "origin". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsNote(idx int, v ActivityStreamsNote)
	// InsertActivityStreamsObject inserts a Object value at the specified
	// index for a property "origin". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsObject(idx int, v ActivityStreamsObject)
	// InsertActivityStreamsOffer inserts a Offer value at the specified index
	// for a property "origin". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsOffer(idx int, v ActivityStreamsOffer)
	// InsertActivityStreamsOrderedCollection inserts a OrderedCollection
	// value at the specified index for a property "origin". Existing
	// elements at that index and higher are shifted back once.
	// Invalidates all iterators.
	InsertActivityStreamsOrderedCollection(idx int, v ActivityStreamsOrderedCollection)
	// InsertActivityStreamsOrderedCollectionPage inserts a
	// OrderedCollectionPage value at the specified index for a property
	// "origin". Existing elements at that index and higher are shifted
	// back once. Invalidates all iterators.
	InsertActivityStreamsOrderedCollectionPage(idx int, v ActivityStreamsOrderedCollectionPage)
	// InsertActivityStreamsOrganization inserts a Organization value at the
	// specified index for a property "origin". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsOrganization(idx int, v ActivityStreamsOrganization)
	// InsertActivityStreamsPage inserts a Page value at the specified index
	// for a property "origin". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsPage(idx int, v ActivityStreamsPage)
	// InsertActivityStreamsPerson inserts a Person value at the specified
	// index for a property "origin". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsPerson(idx int, v ActivityStreamsPerson)
	// InsertActivityStreamsPlace inserts a Place value at the specified index
	// for a property "origin". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsPlace(idx int, v ActivityStreamsPlace)
	// InsertActivityStreamsProfile inserts a Profile value at the specified
	// index for a property "origin". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsProfile(idx int, v ActivityStreamsProfile)
	// InsertActivityStreamsQuestion inserts a Question value at the specified
	// index for a property "origin". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsQuestion(idx int, v ActivityStreamsQuestion)
	// InsertActivityStreamsRead inserts a Read value at the specified index
	// for a property "origin". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsRead(idx int, v ActivityStreamsRead)
	// InsertActivityStreamsReject inserts a Reject value at the specified
	// index for a property "origin". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsReject(idx int, v ActivityStreamsReject)
	// InsertActivityStreamsRelationship inserts a Relationship value at the
	// specified index for a property "origin". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsRelationship(idx int, v ActivityStreamsRelationship)
	// InsertActivityStreamsRemove inserts a Remove value at the specified
	// index for a property "origin". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsRemove(idx int, v ActivityStreamsRemove)
	// InsertActivityStreamsService inserts a Service value at the specified
	// index for a property "origin". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsService(idx int, v ActivityStreamsService)
	// InsertActivityStreamsTentativeAccept inserts a TentativeAccept value at
	// the specified index for a property "origin". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsTentativeAccept(idx int, v ActivityStreamsTentativeAccept)
	// InsertActivityStreamsTentativeReject inserts a TentativeReject value at
	// the specified index for a property "origin". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsTentativeReject(idx int, v ActivityStreamsTentativeReject)
	// InsertActivityStreamsTombstone inserts a Tombstone value at the
	// specified index for a property "origin". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsTombstone(idx int, v ActivityStreamsTombstone)
	// InsertActivityStreamsTravel inserts a Travel value at the specified
	// index for a property "origin". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsTravel(idx int, v ActivityStreamsTravel)
	// InsertActivityStreamsUndo inserts a Undo value at the specified index
	// for a property "origin". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsUndo(idx int, v ActivityStreamsUndo)
	// InsertActivityStreamsUpdate inserts a Update value at the specified
	// index for a property "origin". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsUpdate(idx int, v ActivityStreamsUpdate)
	// InsertActivityStreamsVideo inserts a Video value at the specified index
	// for a property "origin". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsVideo(idx int, v ActivityStreamsVideo)
	// InsertActivityStreamsView inserts a View value at the specified index
	// for a property "origin". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsView(idx int, v ActivityStreamsView)
	// InsertForgeFedBranch inserts a Branch value at the specified index for
	// a property "origin". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertForgeFedBranch(idx int, v ForgeFedBranch)
	// InsertForgeFedCommit inserts a Commit value at the specified index for
	// a property "origin". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertForgeFedCommit(idx int, v ForgeFedCommit)
	// InsertForgeFedPush inserts a Push value at the specified index for a
	// property "origin". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertForgeFedPush(idx int, v ForgeFedPush)
	// InsertForgeFedRepository inserts a Repository value at the specified
	// index for a property "origin". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertForgeFedRepository(idx int, v ForgeFedRepository)
	// InsertForgeFedTicket inserts a Ticket value at the specified index for
	// a property "origin". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertForgeFedTicket(idx int, v ForgeFedTicket)
	// InsertForgeFedTicketDependency inserts a TicketDependency value at the
	// specified index for a property "origin". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
	// Insert inserts an IRI value at the specified index for a property
	// "origin". Existing elements at that index and higher are shifted
	// back once. Invalidates all iterators.
	InsertIRI(idx int, v *url.URL)
	// InsertTootEmoji inserts a Emoji value at the specified index for a
	// property "origin". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertTootEmoji(idx int, v TootEmoji)
	// InsertTootIdentityProof inserts a IdentityProof value at the specified
	// index for a property "origin". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertTootIdentityProof(idx int, v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "origin". Invalidates all iterators. Returns an error
	// if the type is not a valid one to set for this property.
	InsertType(idx int, t Type) error
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API method specifically needed only for alternate
	// implementations for go-fed. Applications should not use this
	// method. Panics if the index is out of bounds.
	KindIndex(idx int) int
	// Len returns the number of values that exist for the "origin" property.
	Len() (length int)
	// Less computes whether another property is less than this one. Mixing
	// types results in a consistent but arbitrary ordering
	Less(i, j int) bool
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsOriginProperty) bool
	// Name returns the name of this property ("origin") with any alias.
	Name() string
	// PrependActivityStreamsAccept prepends a Accept value to the front of a
	// list of the property "origin". Invalidates all iterators.
	PrependActivityStreamsAccept(v ActivityStreamsAccept)
	// PrependActivityStreamsActivity prepends a Activity value to the front
	// of a list of the property "origin". Invalidates all iterators.
	PrependActivityStreamsActivity(v ActivityStreamsActivity)
	// PrependActivityStreamsAdd prepends a Add value to the front of a list
	// of the property "origin". Invalidates all iterators.
	PrependActivityStreamsAdd(v ActivityStreamsAdd)
	// PrependActivityStreamsAnnounce prepends a Announce value to the front
	// of a list of the property "origin". Invalidates all iterators.
	PrependActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// PrependActivityStreamsApplication prepends a Application value to the
	// front of a list of the property "origin". Invalidates all iterators.
	PrependActivityStreamsApplication(v ActivityStreamsApplication)
	// PrependActivityStreamsArrive prepends a Arrive value to the front of a
	// list of the property "origin". Invalidates all iterators.
	PrependActivityStreamsArrive(v ActivityStreamsArrive)
	// PrependActivityStreamsArticle prepends a Article value to the front of
	// a list of the property "origin". Invalidates all iterators.
	PrependActivityStreamsArticle(v ActivityStreamsArticle)
	// PrependActivityStreamsAudio prepends a Audio value to the front of a
	// list of the property "origin". Invalidates all iterators.
	PrependActivityStreamsAudio(v ActivityStreamsAudio)
	// PrependActivityStreamsBlock prepends a Block value to the front of a
	// list of the property "origin". Invalidates all iterators.
	PrependActivityStreamsBlock(v ActivityStreamsBlock)
	// PrependActivityStreamsCollection prepends a Collection value to the
	// front of a list of the property "origin". Invalidates all iterators.
	PrependActivityStreamsCollection(v ActivityStreamsCollection)
	// PrependActivityStreamsCollectionPage prepends a CollectionPage value to
	// the front of a list of the property "origin". Invalidates all
	// iterators.
	PrependActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// PrependActivityStreamsCreate prepends a Create value to the front of a
	// list of the property "origin". Invalidates all iterators.
	PrependActivityStreamsCreate(v ActivityStreamsCreate)
	// PrependActivityStreamsDelete prepends a Delete value to the front of a
	// list of the property "origin". Invalidates all iterators.
	PrependActivityStreamsDelete(v ActivityStreamsDelete)
	// PrependActivityStreamsDislike prepends a Dislike value to the front of
	// a list of the property "origin". Invalidates all iterators.
	PrependActivityStreamsDislike(v ActivityStreamsDislike)
	// PrependActivityStreamsDocument prepends a Document value to the front
	// of a list of the property "origin". Invalidates all iterators.
	PrependActivityStreamsDocument(v ActivityStreamsDocument)
	// PrependActivityStreamsEvent prepends a Event value to the front of a
	// list of the property "origin". Invalidates all iterators.
	PrependActivityStreamsEvent(v ActivityStreamsEvent)
	// PrependActivityStreamsFlag prepends a Flag value to the front of a list
	// of the property "origin". Invalidates all iterators.
	PrependActivityStreamsFlag(v ActivityStreamsFlag)
	// PrependActivityStreamsFollow prepends a Follow value to the front of a
	// list of the property "origin". Invalidates all iterators.
	PrependActivityStreamsFollow(v ActivityStreamsFollow)
	// PrependActivityStreamsGroup prepends a Group value to the front of a
	// list of the property "origin". Invalidates all iterators.
	PrependActivityStreamsGroup(v ActivityStreamsGroup)
	// PrependActivityStreamsIgnore prepends a Ignore value to the front of a
	// list of the property "origin". Invalidates all iterators.
	PrependActivityStreamsIgnore(v ActivityStreamsIgnore)
	// PrependActivityStreamsImage prepends a Image value to the front of a
	// list of the property "origin". Invalidates all iterators.
	PrependActivityStreamsImage(v ActivityStreamsImage)
	// PrependActivityStreamsIntransitiveActivity prepends a
	// IntransitiveActivity value to the front of a list of the property
	// "origin". Invalidates all iterators.
	PrependActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// PrependActivityStreamsInvite prepends a Invite value to the front of a
	// list of the property "origin". Invalidates all iterators.
	PrependActivityStreamsInvite(v ActivityStreamsInvite)
	// PrependActivityStreamsJoin prepends a Join value to the front of a list
	// of the property "origin". Invalidates all iterators.
	PrependActivityStreamsJoin(v ActivityStreamsJoin)
	// PrependActivityStreamsLeave prepends a Leave value to the front of a
	// list of the property "origin". Invalidates all iterators.
	PrependActivityStreamsLeave(v ActivityStreamsLeave)
	// PrependActivityStreamsLike prepends a Like value to the front of a list
	// of the property "origin". Invalidates all iterators.
	PrependActivityStreamsLike(v ActivityStreamsLike)
	// PrependActivityStreamsLink prepends a Link value to the front of a list
	// of the property "origin". Invalidates all iterators.
	PrependActivityStreamsLink(v ActivityStreamsLink)
	// PrependActivityStreamsListen prepends a Listen value to the front of a
	// list of the property "origin". Invalidates all iterators.
	PrependActivityStreamsListen(v ActivityStreamsListen)
	// PrependActivityStreamsMention prepends a Mention value to the front of
	// a list of the property "origin". Invalidates all iterators.
	PrependActivityStreamsMention(v ActivityStreamsMention)
	// PrependActivityStreamsMove prepends a Move value to the front of a list
	// of the property "origin". Invalidates all iterators.
	PrependActivityStreamsMove(v ActivityStreamsMove)
	// PrependActivityStreamsNote prepends a Note value to the front of a list
	// of the property "origin". Invalidates all iterators.
	PrependActivityStreamsNote(v ActivityStreamsNote)
	// PrependActivityStreamsObject prepends a Object value to the front of a
	// list of the property "origin". Invalidates all iterators.
	PrependActivityStreamsObject(v ActivityStreamsObject)
	// PrependActivityStreamsOffer prepends a Offer value to the front of a
	// list of the property "origin". Invalidates all iterators.
	PrependActivityStreamsOffer(v ActivityStreamsOffer)
	// PrependActivityStreamsOrderedCollection prepends a OrderedCollection
	// value to the front of a list of the property "origin". Invalidates
	// all iterators.
	PrependActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// PrependActivityStreamsOrderedCollectionPage prepends a
	// OrderedCollectionPage value to the front of a list of the property
	// "origin". Invalidates all iterators.
	PrependActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// PrependActivityStreamsOrganization prepends a Organization value to the
	// front of a list of the property "origin". Invalidates all iterators.
	PrependActivityStreamsOrganization(v ActivityStreamsOrganization)
	// PrependActivityStreamsPage prepends a Page value to the front of a list
	// of the property "origin". Invalidates all iterators.
	PrependActivityStreamsPage(v ActivityStreamsPage)
	// PrependActivityStreamsPerson prepends a Person value to the front of a
	// list of the property "origin". Invalidates all iterators.
	PrependActivityStreamsPerson(v ActivityStreamsPerson)
	// PrependActivityStreamsPlace prepends a Place value to the front of a
	// list of the property "origin". Invalidates all iterators.
	PrependActivityStreamsPlace(v ActivityStreamsPlace)
	// PrependActivityStreamsProfile prepends a Profile value to the front of
	// a list of the property "origin". Invalidates all iterators.
	PrependActivityStreamsProfile(v ActivityStreamsProfile)
	// PrependActivityStreamsQuestion prepends a Question value to the front
	// of a list of the property "origin". Invalidates all iterators.
	PrependActivityStreamsQuestion(v ActivityStreamsQuestion)
	// PrependActivityStreamsRead prepends a Read value to the front of a list
	// of the property "origin". Invalidates all iterators.
	PrependActivityStreamsRead(v ActivityStreamsRead)
	// PrependActivityStreamsReject prepends a Reject value to the front of a
	// list of the property "origin". Invalidates all iterators.
	PrependActivityStreamsReject(v ActivityStreamsReject)
	// PrependActivityStreamsRelationship prepends a Relationship value to the
	// front of a list of the property "origin". Invalidates all iterators.
	PrependActivityStreamsRelationship(v ActivityStreamsRelationship)
	// PrependActivityStreamsRemove prepends a Remove value to the front of a
	// list of the property "origin". Invalidates all iterators.
	PrependActivityStreamsRemove(v ActivityStreamsRemove)
	// PrependActivityStreamsService prepends a Service value to the front of
	// a list of the property "origin". Invalidates all iterators.
	PrependActivityStreamsService(v ActivityStreamsService)
	// PrependActivityStreamsTentativeAccept prepends a TentativeAccept value
	// to the front of a list of the property "origin". Invalidates all
	// iterators.
	PrependActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// PrependActivityStreamsTentativeReject prepends a TentativeReject value
	// to the front of a list of the property "origin". Invalidates all
	// iterators.
	PrependActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// PrependActivityStreamsTombstone prepends a Tombstone value to the front
	// of a list of the property "origin". Invalidates all iterators.
	PrependActivityStreamsTombstone(v ActivityStreamsTombstone)
	// PrependActivityStreamsTravel prepends a Travel value to the front of a
	// list of the property "origin". Invalidates all iterators.
	PrependActivityStreamsTravel(v ActivityStreamsTravel)
	// PrependActivityStreamsUndo prepends a Undo value to the front of a list
	// of the property "origin". Invalidates all iterators.
	PrependActivityStreamsUndo(v ActivityStreamsUndo)
	// PrependActivityStreamsUpdate prepends a Update value to the front of a
	// list of the property "origin". Invalidates all iterators.
	PrependActivityStreamsUpdate(v ActivityStreamsUpdate)
	// PrependActivityStreamsVideo prepends a Video value to the front of a
	// list of the property "origin". Invalidates all iterators.
	PrependActivityStreamsVideo(v ActivityStreamsVideo)
	// PrependActivityStreamsView prepends a View value to the front of a list
	// of the property "origin". Invalidates all iterators.
	PrependActivityStreamsView(v ActivityStreamsView)
	// PrependForgeFedBranch prepends a Branch value to the front of a list of
	// the property "origin". Invalidates all iterators.
	PrependForgeFedBranch(v ForgeFedBranch)
	// PrependForgeFedCommit prepends a Commit value to the front of a list of
	// the property "origin". Invalidates all iterators.
	PrependForgeFedCommit(v ForgeFedCommit)
	// PrependForgeFedPush prepends a Push value to the front of a list of the
	// property "origin". Invalidates all iterators.
	PrependForgeFedPush(v ForgeFedPush)
	// PrependForgeFedRepository prepends a Repository value to the front of a
	// list of the property "origin". Invalidates all iterators.
	PrependForgeFedRepository(v ForgeFedRepository)
	// PrependForgeFedTicket prepends a Ticket value to the front of a list of
	// the property "origin". Invalidates all iterators.
	PrependForgeFedTicket(v ForgeFedTicket)
	// PrependForgeFedTicketDependency prepends a TicketDependency value to
	// the front of a list of the property "origin". Invalidates all
	// iterators.
	PrependForgeFedTicketDependency(v ForgeFedTicketDependency)
	// PrependIRI prepends an IRI value to the front of a list of the property
	// "origin".
	PrependIRI(v *url.URL)
	// PrependTootEmoji prepends a Emoji value to the front of a list of the
	// property "origin". Invalidates all iterators.
	PrependTootEmoji(v TootEmoji)
	// PrependTootIdentityProof prepends a IdentityProof value to the front of
	// a list of the property "origin". Invalidates all iterators.
	PrependTootIdentityProof(v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "origin". Invalidates all iterators. Returns an error
	// if the type is not a valid one to set for this property.
	PrependType(t Type) error
	// Remove deletes an element at the specified index from a list of the
	// property "origin", regardless of its type. Panics if the index is
	// out of bounds. Invalidates all iterators.
	Remove(idx int)
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// SetActivityStreamsAccept sets a Accept value to be at the specified
	// index for the property "origin". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsAccept(idx int, v ActivityStreamsAccept)
	// SetActivityStreamsActivity sets a Activity value to be at the specified
	// index for the property "origin". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsActivity(idx int, v ActivityStreamsActivity)
	// SetActivityStreamsAdd sets a Add value to be at the specified index for
	// the property "origin". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsAdd(idx int, v ActivityStreamsAdd)
	// SetActivityStreamsAnnounce sets a Announce value to be at the specified
	// index for the property "origin". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsAnnounce(idx int, v ActivityStreamsAnnounce)
	// SetActivityStreamsApplication sets a Application value to be at the
	// specified index for the property "origin". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsApplication(idx int, v ActivityStreamsApplication)
	// SetActivityStreamsArrive sets a Arrive value to be at the specified
	// index for the property "origin". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsArrive(idx int, v ActivityStreamsArrive)
	// SetActivityStreamsArticle sets a Article value to be at the specified
	// index for the property "origin". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsArticle(idx int, v ActivityStreamsArticle)
	// SetActivityStreamsAudio sets a Audio value to be at the specified index
	// for the property "origin". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsAudio(idx int, v ActivityStreamsAudio)
	// SetActivityStreamsBlock sets a Block value to be at the specified index
	// for the property "origin". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsBlock(idx int, v ActivityStreamsBlock)
	// SetActivityStreamsCollection sets a Collection value to be at the
	// specified index for the property "origin". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsCollection(idx int, v ActivityStreamsCollection)
	// SetActivityStreamsCollectionPage sets a CollectionPage value to be at
	// the specified index for the property "origin". Panics if the index
	// is out of bounds. Invalidates all iterators.
	SetActivityStreamsCollectionPage(idx int, v ActivityStreamsCollectionPage)
	// SetActivityStreamsCreate sets a Create value to be at the specified
	// index for the property "origin". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsCreate(idx int, v ActivityStreamsCreate)
	// SetActivityStreamsDelete sets a Delete value to be at the specified
	// index for the property "origin". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsDelete(idx int, v ActivityStreamsDelete)
	// SetActivityStreamsDislike sets a Dislike value to be at the specified
	// index for the property "origin". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsDislike(idx int, v ActivityStreamsDislike)
	// SetActivityStreamsDocument sets a Document value to be at the specified
	// index for the property "origin". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsDocument(idx int, v ActivityStreamsDocument)
	// SetActivityStreamsEvent sets a Event value to be at the specified index
	// for the property "origin". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsEvent(idx int, v ActivityStreamsEvent)
	// SetActivityStreamsFlag sets a Flag value to be at the specified index
	// for the property "origin". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsFlag(idx int, v ActivityStreamsFlag)
	// SetActivityStreamsFollow sets a Follow value to be at the specified
	// index for the property "origin". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsFollow(idx int, v ActivityStreamsFollow)
	// SetActivityStreamsGroup sets a Group value to be at the specified index
	// for the property "origin". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsGroup(idx int, v ActivityStreamsGroup)
	// SetActivityStreamsIgnore sets a Ignore value to be at the specified
	// index for the property "origin". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsIgnore(idx int, v ActivityStreamsIgnore)
	// SetActivityStreamsImage sets a Image value to be at the specified index
	// for the property "origin". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsImage(idx int, v ActivityStreamsImage)
	// SetActivityStreamsIntransitiveActivity sets a IntransitiveActivity
	// value to be at the specified index for the property "origin".
	// Panics if the index is out of bounds. Invalidates all iterators.
	SetActivityStreamsIntransitiveActivity(idx int, v ActivityStreamsIntransitiveActivity)
	// SetActivityStreamsInvite sets a Invite value to be at the specified
	// index for the property "origin". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsInvite(idx int, v ActivityStreamsInvite)
	// SetActivityStreamsJoin sets a Join value to be at the specified index
	// for the property "origin". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsJoin(idx int, v ActivityStreamsJoin)
	// SetActivityStreamsLeave sets a Leave value to be at the specified index
	// for the property "origin". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsLeave(idx int, v ActivityStreamsLeave)
	// SetActivityStreamsLike sets a Like value to be at the specified index
	// for the property "origin". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsLike(idx int, v ActivityStreamsLike)
	// SetActivityStreamsLink sets a Link value to be at the specified index
	// for the property "origin". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsLink(idx int, v ActivityStreamsLink)
	// SetActivityStreamsListen sets a Listen value to be at the specified
	// index for the property "origin". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsListen(idx int, v ActivityStreamsListen)
	// SetActivityStreamsMention sets a Mention value to be at the specified
	// index for the property "origin". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsMention(idx int, v ActivityStreamsMention)
	// SetActivityStreamsMove sets a Move value to be at the specified index
	// for the property "origin". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsMove(idx int, v ActivityStreamsMove)
	// SetActivityStreamsNote sets a Note value to be at the specified index
	// for the property "origin". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsNote(idx int, v ActivityStreamsNote)
	// SetActivityStreamsObject sets a Object value to be at the specified
	// index for the property "origin". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsObject(idx int, v ActivityStreamsObject)
	// SetActivityStreamsOffer sets a Offer value to be at the specified index
	// for the property "origin". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsOffer(idx int, v ActivityStreamsOffer)
	// SetActivityStreamsOrderedCollection sets a OrderedCollection value to
	// be at the specified index for the property "origin". Panics if the
	// index is out of bounds. Invalidates all iterators.
	SetActivityStreamsOrderedCollection(idx int, v ActivityStreamsOrderedCollection)
	// SetActivityStreamsOrderedCollectionPage sets a OrderedCollectionPage
	// value to be at the specified index for the property "origin".
	// Panics if the index is out of bounds. Invalidates all iterators.
	SetActivityStreamsOrderedCollectionPage(idx int, v ActivityStreamsOrderedCollectionPage)
	// SetActivityStreamsOrganization sets a Organization value to be at the
	// specified index for the property "origin". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsOrganization(idx int, v ActivityStreamsOrganization)
	// SetActivityStreamsPage sets a Page value to be at the specified index
	// for the property "origin". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsPage(idx int, v ActivityStreamsPage)
	// SetActivityStreamsPerson sets a Person value to be at the specified
	// index for the property "origin". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsPerson(idx int, v ActivityStreamsPerson)
	// SetActivityStreamsPlace sets a Place value to be at the specified index
	// for the property "origin". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsPlace(idx int, v ActivityStreamsPlace)
	// SetActivityStreamsProfile sets a Profile value to be at the specified
	// index for the property "origin". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsProfile(idx int, v ActivityStreamsProfile)
	// SetActivityStreamsQuestion sets a Question value to be at the specified
	// index for the property "origin". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsQuestion(idx int, v ActivityStreamsQuestion)
	// SetActivityStreamsRead sets a Read value to be at the specified index
	// for the property "origin". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsRead(idx int, v ActivityStreamsRead)
	// SetActivityStreamsReject sets a Reject value to be at the specified
	// index for the property "origin". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsReject(idx int, v ActivityStreamsReject)
	// SetActivityStreamsRelationship sets a Relationship value to be at the
	// specified index for the property "origin". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsRelationship(idx int, v ActivityStreamsRelationship)
	// SetActivityStreamsRemove sets a Remove value to be at the specified
	// index for the property "origin". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsRemove(idx int, v ActivityStreamsRemove)
	// SetActivityStreamsService sets a Service value to be at the specified
	// index for the property "origin". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsService(idx int, v ActivityStreamsService)
	// SetActivityStreamsTentativeAccept sets a TentativeAccept value to be at
	// the specified index for the property "origin". Panics if the index
	// is out of bounds. Invalidates all iterators.
	SetActivityStreamsTentativeAccept(idx int, v ActivityStreamsTentativeAccept)
	// SetActivityStreamsTentativeReject sets a TentativeReject value to be at
	// the specified index for the property "origin". Panics if the index
	// is out of bounds. Invalidates all iterators.
	SetActivityStreamsTentativeReject(idx int, v ActivityStreamsTentativeReject)
	// SetActivityStreamsTombstone sets a Tombstone value to be at the
	// specified index for the property "origin". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsTombstone(idx int, v ActivityStreamsTombstone)
	// SetActivityStreamsTravel sets a Travel value to be at the specified
	// index for the property "origin". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsTravel(idx int, v ActivityStreamsTravel)
	// SetActivityStreamsUndo sets a Undo value to be at the specified index
	// for the property "origin". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsUndo(idx int, v ActivityStreamsUndo)
	// SetActivityStreamsUpdate sets a Update value to be at the specified
	// index for the property "origin". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsUpdate(idx int, v ActivityStreamsUpdate)
	// SetActivityStreamsVideo sets a Video value to be at the specified index
	// for the property "origin". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsVideo(idx int, v ActivityStreamsVideo)
	// SetActivityStreamsView sets a View value to be at the specified index
	// for the property "origin". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsView(idx int, v ActivityStreamsView)
	// SetForgeFedBranch sets a Branch value to be at the specified index for
	// the property "origin". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedBranch(idx int, v ForgeFedBranch)
	// SetForgeFedCommit sets a Commit value to be at the specified index for
	// the property "origin". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedCommit(idx int, v ForgeFedCommit)
	// SetForgeFedPush sets a Push value to be at the specified index for the
	// property "origin". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedPush(idx int, v ForgeFedPush)
	// SetForgeFedRepository sets a Repository value to be at the specified
	// index for the property "origin". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetForgeFedRepository(idx int, v ForgeFedRepository)
	// SetForgeFedTicket sets a Ticket value to be at the specified index for
	// the property "origin". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedTicket(idx int, v ForgeFedTicket)
	// SetForgeFedTicketDependency sets a TicketDependency value to be at the
	// specified index for the property "origin". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
	// SetIRI sets an IRI value to be at the specified index for the property
	// "origin". Panics if the index is out of bounds.
	SetIRI(idx int, v *url.URL)
	// SetTootEmoji sets a Emoji value to be at the specified index for the
	// property "origin". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetTootEmoji(idx int, v TootEmoji)
	// SetTootIdentityProof sets a IdentityProof value to be at the specified
	// index for the property "origin". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetTootIdentityProof(idx int, v TootIdentityProof)
	// SetType sets an arbitrary type value to the specified index of the
	// property "origin". Invalidates all iterators. Returns an error if
	// the type is not a valid one to set for this property. Panics if the
	// index is out of bounds.
	SetType(idx int, t Type) error
	// Swap swaps the location of values at two indices for the "origin"
	// property.
	Swap(i, j int)
}

Describes an indirect object of the activity from which the activity is directed. The precise meaning of the origin is the object of the English preposition "from". For instance, in the activity "John moved an item to List B from List A", the origin of the activity is "List A".

Example 94 (https://www.w3.org/TR/activitystreams-vocabulary/#ex166-jsonld):

{
  "actor": "http://sally.example.org",
  "object": "http://example.org/posts/1",
  "origin": {
    "name": "List A",
    "type": "Collection"
  },
  "summary": "Sally moved a post from List A to List B",
  "target": {
    "name": "List B",
    "type": "Collection"
  },
  "type": "Move"
}

type ActivityStreamsOriginPropertyIterator

type ActivityStreamsOriginPropertyIterator interface {
	// GetActivityStreamsAccept returns the value of this property. When
	// IsActivityStreamsAccept returns false, GetActivityStreamsAccept
	// will return an arbitrary value.
	GetActivityStreamsAccept() ActivityStreamsAccept
	// GetActivityStreamsActivity returns the value of this property. When
	// IsActivityStreamsActivity returns false, GetActivityStreamsActivity
	// will return an arbitrary value.
	GetActivityStreamsActivity() ActivityStreamsActivity
	// GetActivityStreamsAdd returns the value of this property. When
	// IsActivityStreamsAdd returns false, GetActivityStreamsAdd will
	// return an arbitrary value.
	GetActivityStreamsAdd() ActivityStreamsAdd
	// GetActivityStreamsAnnounce returns the value of this property. When
	// IsActivityStreamsAnnounce returns false, GetActivityStreamsAnnounce
	// will return an arbitrary value.
	GetActivityStreamsAnnounce() ActivityStreamsAnnounce
	// GetActivityStreamsApplication returns the value of this property. When
	// IsActivityStreamsApplication returns false,
	// GetActivityStreamsApplication will return an arbitrary value.
	GetActivityStreamsApplication() ActivityStreamsApplication
	// GetActivityStreamsArrive returns the value of this property. When
	// IsActivityStreamsArrive returns false, GetActivityStreamsArrive
	// will return an arbitrary value.
	GetActivityStreamsArrive() ActivityStreamsArrive
	// GetActivityStreamsArticle returns the value of this property. When
	// IsActivityStreamsArticle returns false, GetActivityStreamsArticle
	// will return an arbitrary value.
	GetActivityStreamsArticle() ActivityStreamsArticle
	// GetActivityStreamsAudio returns the value of this property. When
	// IsActivityStreamsAudio returns false, GetActivityStreamsAudio will
	// return an arbitrary value.
	GetActivityStreamsAudio() ActivityStreamsAudio
	// GetActivityStreamsBlock returns the value of this property. When
	// IsActivityStreamsBlock returns false, GetActivityStreamsBlock will
	// return an arbitrary value.
	GetActivityStreamsBlock() ActivityStreamsBlock
	// GetActivityStreamsCollection returns the value of this property. When
	// IsActivityStreamsCollection returns false,
	// GetActivityStreamsCollection will return an arbitrary value.
	GetActivityStreamsCollection() ActivityStreamsCollection
	// GetActivityStreamsCollectionPage returns the value of this property.
	// When IsActivityStreamsCollectionPage returns false,
	// GetActivityStreamsCollectionPage will return an arbitrary value.
	GetActivityStreamsCollectionPage() ActivityStreamsCollectionPage
	// GetActivityStreamsCreate returns the value of this property. When
	// IsActivityStreamsCreate returns false, GetActivityStreamsCreate
	// will return an arbitrary value.
	GetActivityStreamsCreate() ActivityStreamsCreate
	// GetActivityStreamsDelete returns the value of this property. When
	// IsActivityStreamsDelete returns false, GetActivityStreamsDelete
	// will return an arbitrary value.
	GetActivityStreamsDelete() ActivityStreamsDelete
	// GetActivityStreamsDislike returns the value of this property. When
	// IsActivityStreamsDislike returns false, GetActivityStreamsDislike
	// will return an arbitrary value.
	GetActivityStreamsDislike() ActivityStreamsDislike
	// GetActivityStreamsDocument returns the value of this property. When
	// IsActivityStreamsDocument returns false, GetActivityStreamsDocument
	// will return an arbitrary value.
	GetActivityStreamsDocument() ActivityStreamsDocument
	// GetActivityStreamsEvent returns the value of this property. When
	// IsActivityStreamsEvent returns false, GetActivityStreamsEvent will
	// return an arbitrary value.
	GetActivityStreamsEvent() ActivityStreamsEvent
	// GetActivityStreamsFlag returns the value of this property. When
	// IsActivityStreamsFlag returns false, GetActivityStreamsFlag will
	// return an arbitrary value.
	GetActivityStreamsFlag() ActivityStreamsFlag
	// GetActivityStreamsFollow returns the value of this property. When
	// IsActivityStreamsFollow returns false, GetActivityStreamsFollow
	// will return an arbitrary value.
	GetActivityStreamsFollow() ActivityStreamsFollow
	// GetActivityStreamsGroup returns the value of this property. When
	// IsActivityStreamsGroup returns false, GetActivityStreamsGroup will
	// return an arbitrary value.
	GetActivityStreamsGroup() ActivityStreamsGroup
	// GetActivityStreamsIgnore returns the value of this property. When
	// IsActivityStreamsIgnore returns false, GetActivityStreamsIgnore
	// will return an arbitrary value.
	GetActivityStreamsIgnore() ActivityStreamsIgnore
	// GetActivityStreamsImage returns the value of this property. When
	// IsActivityStreamsImage returns false, GetActivityStreamsImage will
	// return an arbitrary value.
	GetActivityStreamsImage() ActivityStreamsImage
	// GetActivityStreamsIntransitiveActivity returns the value of this
	// property. When IsActivityStreamsIntransitiveActivity returns false,
	// GetActivityStreamsIntransitiveActivity will return an arbitrary
	// value.
	GetActivityStreamsIntransitiveActivity() ActivityStreamsIntransitiveActivity
	// GetActivityStreamsInvite returns the value of this property. When
	// IsActivityStreamsInvite returns false, GetActivityStreamsInvite
	// will return an arbitrary value.
	GetActivityStreamsInvite() ActivityStreamsInvite
	// GetActivityStreamsJoin returns the value of this property. When
	// IsActivityStreamsJoin returns false, GetActivityStreamsJoin will
	// return an arbitrary value.
	GetActivityStreamsJoin() ActivityStreamsJoin
	// GetActivityStreamsLeave returns the value of this property. When
	// IsActivityStreamsLeave returns false, GetActivityStreamsLeave will
	// return an arbitrary value.
	GetActivityStreamsLeave() ActivityStreamsLeave
	// GetActivityStreamsLike returns the value of this property. When
	// IsActivityStreamsLike returns false, GetActivityStreamsLike will
	// return an arbitrary value.
	GetActivityStreamsLike() ActivityStreamsLike
	// GetActivityStreamsLink returns the value of this property. When
	// IsActivityStreamsLink returns false, GetActivityStreamsLink will
	// return an arbitrary value.
	GetActivityStreamsLink() ActivityStreamsLink
	// GetActivityStreamsListen returns the value of this property. When
	// IsActivityStreamsListen returns false, GetActivityStreamsListen
	// will return an arbitrary value.
	GetActivityStreamsListen() ActivityStreamsListen
	// GetActivityStreamsMention returns the value of this property. When
	// IsActivityStreamsMention returns false, GetActivityStreamsMention
	// will return an arbitrary value.
	GetActivityStreamsMention() ActivityStreamsMention
	// GetActivityStreamsMove returns the value of this property. When
	// IsActivityStreamsMove returns false, GetActivityStreamsMove will
	// return an arbitrary value.
	GetActivityStreamsMove() ActivityStreamsMove
	// GetActivityStreamsNote returns the value of this property. When
	// IsActivityStreamsNote returns false, GetActivityStreamsNote will
	// return an arbitrary value.
	GetActivityStreamsNote() ActivityStreamsNote
	// GetActivityStreamsObject returns the value of this property. When
	// IsActivityStreamsObject returns false, GetActivityStreamsObject
	// will return an arbitrary value.
	GetActivityStreamsObject() ActivityStreamsObject
	// GetActivityStreamsOffer returns the value of this property. When
	// IsActivityStreamsOffer returns false, GetActivityStreamsOffer will
	// return an arbitrary value.
	GetActivityStreamsOffer() ActivityStreamsOffer
	// GetActivityStreamsOrderedCollection returns the value of this property.
	// When IsActivityStreamsOrderedCollection returns false,
	// GetActivityStreamsOrderedCollection will return an arbitrary value.
	GetActivityStreamsOrderedCollection() ActivityStreamsOrderedCollection
	// GetActivityStreamsOrderedCollectionPage returns the value of this
	// property. When IsActivityStreamsOrderedCollectionPage returns
	// false, GetActivityStreamsOrderedCollectionPage will return an
	// arbitrary value.
	GetActivityStreamsOrderedCollectionPage() ActivityStreamsOrderedCollectionPage
	// GetActivityStreamsOrganization returns the value of this property. When
	// IsActivityStreamsOrganization returns false,
	// GetActivityStreamsOrganization will return an arbitrary value.
	GetActivityStreamsOrganization() ActivityStreamsOrganization
	// GetActivityStreamsPage returns the value of this property. When
	// IsActivityStreamsPage returns false, GetActivityStreamsPage will
	// return an arbitrary value.
	GetActivityStreamsPage() ActivityStreamsPage
	// GetActivityStreamsPerson returns the value of this property. When
	// IsActivityStreamsPerson returns false, GetActivityStreamsPerson
	// will return an arbitrary value.
	GetActivityStreamsPerson() ActivityStreamsPerson
	// GetActivityStreamsPlace returns the value of this property. When
	// IsActivityStreamsPlace returns false, GetActivityStreamsPlace will
	// return an arbitrary value.
	GetActivityStreamsPlace() ActivityStreamsPlace
	// GetActivityStreamsProfile returns the value of this property. When
	// IsActivityStreamsProfile returns false, GetActivityStreamsProfile
	// will return an arbitrary value.
	GetActivityStreamsProfile() ActivityStreamsProfile
	// GetActivityStreamsQuestion returns the value of this property. When
	// IsActivityStreamsQuestion returns false, GetActivityStreamsQuestion
	// will return an arbitrary value.
	GetActivityStreamsQuestion() ActivityStreamsQuestion
	// GetActivityStreamsRead returns the value of this property. When
	// IsActivityStreamsRead returns false, GetActivityStreamsRead will
	// return an arbitrary value.
	GetActivityStreamsRead() ActivityStreamsRead
	// GetActivityStreamsReject returns the value of this property. When
	// IsActivityStreamsReject returns false, GetActivityStreamsReject
	// will return an arbitrary value.
	GetActivityStreamsReject() ActivityStreamsReject
	// GetActivityStreamsRelationship returns the value of this property. When
	// IsActivityStreamsRelationship returns false,
	// GetActivityStreamsRelationship will return an arbitrary value.
	GetActivityStreamsRelationship() ActivityStreamsRelationship
	// GetActivityStreamsRemove returns the value of this property. When
	// IsActivityStreamsRemove returns false, GetActivityStreamsRemove
	// will return an arbitrary value.
	GetActivityStreamsRemove() ActivityStreamsRemove
	// GetActivityStreamsService returns the value of this property. When
	// IsActivityStreamsService returns false, GetActivityStreamsService
	// will return an arbitrary value.
	GetActivityStreamsService() ActivityStreamsService
	// GetActivityStreamsTentativeAccept returns the value of this property.
	// When IsActivityStreamsTentativeAccept returns false,
	// GetActivityStreamsTentativeAccept will return an arbitrary value.
	GetActivityStreamsTentativeAccept() ActivityStreamsTentativeAccept
	// GetActivityStreamsTentativeReject returns the value of this property.
	// When IsActivityStreamsTentativeReject returns false,
	// GetActivityStreamsTentativeReject will return an arbitrary value.
	GetActivityStreamsTentativeReject() ActivityStreamsTentativeReject
	// GetActivityStreamsTombstone returns the value of this property. When
	// IsActivityStreamsTombstone returns false,
	// GetActivityStreamsTombstone will return an arbitrary value.
	GetActivityStreamsTombstone() ActivityStreamsTombstone
	// GetActivityStreamsTravel returns the value of this property. When
	// IsActivityStreamsTravel returns false, GetActivityStreamsTravel
	// will return an arbitrary value.
	GetActivityStreamsTravel() ActivityStreamsTravel
	// GetActivityStreamsUndo returns the value of this property. When
	// IsActivityStreamsUndo returns false, GetActivityStreamsUndo will
	// return an arbitrary value.
	GetActivityStreamsUndo() ActivityStreamsUndo
	// GetActivityStreamsUpdate returns the value of this property. When
	// IsActivityStreamsUpdate returns false, GetActivityStreamsUpdate
	// will return an arbitrary value.
	GetActivityStreamsUpdate() ActivityStreamsUpdate
	// GetActivityStreamsVideo returns the value of this property. When
	// IsActivityStreamsVideo returns false, GetActivityStreamsVideo will
	// return an arbitrary value.
	GetActivityStreamsVideo() ActivityStreamsVideo
	// GetActivityStreamsView returns the value of this property. When
	// IsActivityStreamsView returns false, GetActivityStreamsView will
	// return an arbitrary value.
	GetActivityStreamsView() ActivityStreamsView
	// GetForgeFedBranch returns the value of this property. When
	// IsForgeFedBranch returns false, GetForgeFedBranch will return an
	// arbitrary value.
	GetForgeFedBranch() ForgeFedBranch
	// GetForgeFedCommit returns the value of this property. When
	// IsForgeFedCommit returns false, GetForgeFedCommit will return an
	// arbitrary value.
	GetForgeFedCommit() ForgeFedCommit
	// GetForgeFedPush returns the value of this property. When IsForgeFedPush
	// returns false, GetForgeFedPush will return an arbitrary value.
	GetForgeFedPush() ForgeFedPush
	// GetForgeFedRepository returns the value of this property. When
	// IsForgeFedRepository returns false, GetForgeFedRepository will
	// return an arbitrary value.
	GetForgeFedRepository() ForgeFedRepository
	// GetForgeFedTicket returns the value of this property. When
	// IsForgeFedTicket returns false, GetForgeFedTicket will return an
	// arbitrary value.
	GetForgeFedTicket() ForgeFedTicket
	// GetForgeFedTicketDependency returns the value of this property. When
	// IsForgeFedTicketDependency returns false,
	// GetForgeFedTicketDependency will return an arbitrary value.
	GetForgeFedTicketDependency() ForgeFedTicketDependency
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return an arbitrary value.
	GetIRI() *url.URL
	// GetTootEmoji returns the value of this property. When IsTootEmoji
	// returns false, GetTootEmoji will return an arbitrary value.
	GetTootEmoji() TootEmoji
	// GetTootIdentityProof returns the value of this property. When
	// IsTootIdentityProof returns false, GetTootIdentityProof will return
	// an arbitrary value.
	GetTootIdentityProof() TootIdentityProof
	// GetType returns the value in this property as a Type. Returns nil if
	// the value is not an ActivityStreams type, such as an IRI or another
	// value.
	GetType() Type
	// HasAny returns true if any of the different values is set.
	HasAny() bool
	// IsActivityStreamsAccept returns true if this property has a type of
	// "Accept". When true, use the GetActivityStreamsAccept and
	// SetActivityStreamsAccept methods to access and set this property.
	IsActivityStreamsAccept() bool
	// IsActivityStreamsActivity returns true if this property has a type of
	// "Activity". When true, use the GetActivityStreamsActivity and
	// SetActivityStreamsActivity methods to access and set this property.
	IsActivityStreamsActivity() bool
	// IsActivityStreamsAdd returns true if this property has a type of "Add".
	// When true, use the GetActivityStreamsAdd and SetActivityStreamsAdd
	// methods to access and set this property.
	IsActivityStreamsAdd() bool
	// IsActivityStreamsAnnounce returns true if this property has a type of
	// "Announce". When true, use the GetActivityStreamsAnnounce and
	// SetActivityStreamsAnnounce methods to access and set this property.
	IsActivityStreamsAnnounce() bool
	// IsActivityStreamsApplication returns true if this property has a type
	// of "Application". When true, use the GetActivityStreamsApplication
	// and SetActivityStreamsApplication methods to access and set this
	// property.
	IsActivityStreamsApplication() bool
	// IsActivityStreamsArrive returns true if this property has a type of
	// "Arrive". When true, use the GetActivityStreamsArrive and
	// SetActivityStreamsArrive methods to access and set this property.
	IsActivityStreamsArrive() bool
	// IsActivityStreamsArticle returns true if this property has a type of
	// "Article". When true, use the GetActivityStreamsArticle and
	// SetActivityStreamsArticle methods to access and set this property.
	IsActivityStreamsArticle() bool
	// IsActivityStreamsAudio returns true if this property has a type of
	// "Audio". When true, use the GetActivityStreamsAudio and
	// SetActivityStreamsAudio methods to access and set this property.
	IsActivityStreamsAudio() bool
	// IsActivityStreamsBlock returns true if this property has a type of
	// "Block". When true, use the GetActivityStreamsBlock and
	// SetActivityStreamsBlock methods to access and set this property.
	IsActivityStreamsBlock() bool
	// IsActivityStreamsCollection returns true if this property has a type of
	// "Collection". When true, use the GetActivityStreamsCollection and
	// SetActivityStreamsCollection methods to access and set this
	// property.
	IsActivityStreamsCollection() bool
	// IsActivityStreamsCollectionPage returns true if this property has a
	// type of "CollectionPage". When true, use the
	// GetActivityStreamsCollectionPage and
	// SetActivityStreamsCollectionPage methods to access and set this
	// property.
	IsActivityStreamsCollectionPage() bool
	// IsActivityStreamsCreate returns true if this property has a type of
	// "Create". When true, use the GetActivityStreamsCreate and
	// SetActivityStreamsCreate methods to access and set this property.
	IsActivityStreamsCreate() bool
	// IsActivityStreamsDelete returns true if this property has a type of
	// "Delete". When true, use the GetActivityStreamsDelete and
	// SetActivityStreamsDelete methods to access and set this property.
	IsActivityStreamsDelete() bool
	// IsActivityStreamsDislike returns true if this property has a type of
	// "Dislike". When true, use the GetActivityStreamsDislike and
	// SetActivityStreamsDislike methods to access and set this property.
	IsActivityStreamsDislike() bool
	// IsActivityStreamsDocument returns true if this property has a type of
	// "Document". When true, use the GetActivityStreamsDocument and
	// SetActivityStreamsDocument methods to access and set this property.
	IsActivityStreamsDocument() bool
	// IsActivityStreamsEvent returns true if this property has a type of
	// "Event". When true, use the GetActivityStreamsEvent and
	// SetActivityStreamsEvent methods to access and set this property.
	IsActivityStreamsEvent() bool
	// IsActivityStreamsFlag returns true if this property has a type of
	// "Flag". When true, use the GetActivityStreamsFlag and
	// SetActivityStreamsFlag methods to access and set this property.
	IsActivityStreamsFlag() bool
	// IsActivityStreamsFollow returns true if this property has a type of
	// "Follow". When true, use the GetActivityStreamsFollow and
	// SetActivityStreamsFollow methods to access and set this property.
	IsActivityStreamsFollow() bool
	// IsActivityStreamsGroup returns true if this property has a type of
	// "Group". When true, use the GetActivityStreamsGroup and
	// SetActivityStreamsGroup methods to access and set this property.
	IsActivityStreamsGroup() bool
	// IsActivityStreamsIgnore returns true if this property has a type of
	// "Ignore". When true, use the GetActivityStreamsIgnore and
	// SetActivityStreamsIgnore methods to access and set this property.
	IsActivityStreamsIgnore() bool
	// IsActivityStreamsImage returns true if this property has a type of
	// "Image". When true, use the GetActivityStreamsImage and
	// SetActivityStreamsImage methods to access and set this property.
	IsActivityStreamsImage() bool
	// IsActivityStreamsIntransitiveActivity returns true if this property has
	// a type of "IntransitiveActivity". When true, use the
	// GetActivityStreamsIntransitiveActivity and
	// SetActivityStreamsIntransitiveActivity methods to access and set
	// this property.
	IsActivityStreamsIntransitiveActivity() bool
	// IsActivityStreamsInvite returns true if this property has a type of
	// "Invite". When true, use the GetActivityStreamsInvite and
	// SetActivityStreamsInvite methods to access and set this property.
	IsActivityStreamsInvite() bool
	// IsActivityStreamsJoin returns true if this property has a type of
	// "Join". When true, use the GetActivityStreamsJoin and
	// SetActivityStreamsJoin methods to access and set this property.
	IsActivityStreamsJoin() bool
	// IsActivityStreamsLeave returns true if this property has a type of
	// "Leave". When true, use the GetActivityStreamsLeave and
	// SetActivityStreamsLeave methods to access and set this property.
	IsActivityStreamsLeave() bool
	// IsActivityStreamsLike returns true if this property has a type of
	// "Like". When true, use the GetActivityStreamsLike and
	// SetActivityStreamsLike methods to access and set this property.
	IsActivityStreamsLike() bool
	// IsActivityStreamsLink returns true if this property has a type of
	// "Link". When true, use the GetActivityStreamsLink and
	// SetActivityStreamsLink methods to access and set this property.
	IsActivityStreamsLink() bool
	// IsActivityStreamsListen returns true if this property has a type of
	// "Listen". When true, use the GetActivityStreamsListen and
	// SetActivityStreamsListen methods to access and set this property.
	IsActivityStreamsListen() bool
	// IsActivityStreamsMention returns true if this property has a type of
	// "Mention". When true, use the GetActivityStreamsMention and
	// SetActivityStreamsMention methods to access and set this property.
	IsActivityStreamsMention() bool
	// IsActivityStreamsMove returns true if this property has a type of
	// "Move". When true, use the GetActivityStreamsMove and
	// SetActivityStreamsMove methods to access and set this property.
	IsActivityStreamsMove() bool
	// IsActivityStreamsNote returns true if this property has a type of
	// "Note". When true, use the GetActivityStreamsNote and
	// SetActivityStreamsNote methods to access and set this property.
	IsActivityStreamsNote() bool
	// IsActivityStreamsObject returns true if this property has a type of
	// "Object". When true, use the GetActivityStreamsObject and
	// SetActivityStreamsObject methods to access and set this property.
	IsActivityStreamsObject() bool
	// IsActivityStreamsOffer returns true if this property has a type of
	// "Offer". When true, use the GetActivityStreamsOffer and
	// SetActivityStreamsOffer methods to access and set this property.
	IsActivityStreamsOffer() bool
	// IsActivityStreamsOrderedCollection returns true if this property has a
	// type of "OrderedCollection". When true, use the
	// GetActivityStreamsOrderedCollection and
	// SetActivityStreamsOrderedCollection methods to access and set this
	// property.
	IsActivityStreamsOrderedCollection() bool
	// IsActivityStreamsOrderedCollectionPage returns true if this property
	// has a type of "OrderedCollectionPage". When true, use the
	// GetActivityStreamsOrderedCollectionPage and
	// SetActivityStreamsOrderedCollectionPage methods to access and set
	// this property.
	IsActivityStreamsOrderedCollectionPage() bool
	// IsActivityStreamsOrganization returns true if this property has a type
	// of "Organization". When true, use the
	// GetActivityStreamsOrganization and SetActivityStreamsOrganization
	// methods to access and set this property.
	IsActivityStreamsOrganization() bool
	// IsActivityStreamsPage returns true if this property has a type of
	// "Page". When true, use the GetActivityStreamsPage and
	// SetActivityStreamsPage methods to access and set this property.
	IsActivityStreamsPage() bool
	// IsActivityStreamsPerson returns true if this property has a type of
	// "Person". When true, use the GetActivityStreamsPerson and
	// SetActivityStreamsPerson methods to access and set this property.
	IsActivityStreamsPerson() bool
	// IsActivityStreamsPlace returns true if this property has a type of
	// "Place". When true, use the GetActivityStreamsPlace and
	// SetActivityStreamsPlace methods to access and set this property.
	IsActivityStreamsPlace() bool
	// IsActivityStreamsProfile returns true if this property has a type of
	// "Profile". When true, use the GetActivityStreamsProfile and
	// SetActivityStreamsProfile methods to access and set this property.
	IsActivityStreamsProfile() bool
	// IsActivityStreamsQuestion returns true if this property has a type of
	// "Question". When true, use the GetActivityStreamsQuestion and
	// SetActivityStreamsQuestion methods to access and set this property.
	IsActivityStreamsQuestion() bool
	// IsActivityStreamsRead returns true if this property has a type of
	// "Read". When true, use the GetActivityStreamsRead and
	// SetActivityStreamsRead methods to access and set this property.
	IsActivityStreamsRead() bool
	// IsActivityStreamsReject returns true if this property has a type of
	// "Reject". When true, use the GetActivityStreamsReject and
	// SetActivityStreamsReject methods to access and set this property.
	IsActivityStreamsReject() bool
	// IsActivityStreamsRelationship returns true if this property has a type
	// of "Relationship". When true, use the
	// GetActivityStreamsRelationship and SetActivityStreamsRelationship
	// methods to access and set this property.
	IsActivityStreamsRelationship() bool
	// IsActivityStreamsRemove returns true if this property has a type of
	// "Remove". When true, use the GetActivityStreamsRemove and
	// SetActivityStreamsRemove methods to access and set this property.
	IsActivityStreamsRemove() bool
	// IsActivityStreamsService returns true if this property has a type of
	// "Service". When true, use the GetActivityStreamsService and
	// SetActivityStreamsService methods to access and set this property.
	IsActivityStreamsService() bool
	// IsActivityStreamsTentativeAccept returns true if this property has a
	// type of "TentativeAccept". When true, use the
	// GetActivityStreamsTentativeAccept and
	// SetActivityStreamsTentativeAccept methods to access and set this
	// property.
	IsActivityStreamsTentativeAccept() bool
	// IsActivityStreamsTentativeReject returns true if this property has a
	// type of "TentativeReject". When true, use the
	// GetActivityStreamsTentativeReject and
	// SetActivityStreamsTentativeReject methods to access and set this
	// property.
	IsActivityStreamsTentativeReject() bool
	// IsActivityStreamsTombstone returns true if this property has a type of
	// "Tombstone". When true, use the GetActivityStreamsTombstone and
	// SetActivityStreamsTombstone methods to access and set this property.
	IsActivityStreamsTombstone() bool
	// IsActivityStreamsTravel returns true if this property has a type of
	// "Travel". When true, use the GetActivityStreamsTravel and
	// SetActivityStreamsTravel methods to access and set this property.
	IsActivityStreamsTravel() bool
	// IsActivityStreamsUndo returns true if this property has a type of
	// "Undo". When true, use the GetActivityStreamsUndo and
	// SetActivityStreamsUndo methods to access and set this property.
	IsActivityStreamsUndo() bool
	// IsActivityStreamsUpdate returns true if this property has a type of
	// "Update". When true, use the GetActivityStreamsUpdate and
	// SetActivityStreamsUpdate methods to access and set this property.
	IsActivityStreamsUpdate() bool
	// IsActivityStreamsVideo returns true if this property has a type of
	// "Video". When true, use the GetActivityStreamsVideo and
	// SetActivityStreamsVideo methods to access and set this property.
	IsActivityStreamsVideo() bool
	// IsActivityStreamsView returns true if this property has a type of
	// "View". When true, use the GetActivityStreamsView and
	// SetActivityStreamsView methods to access and set this property.
	IsActivityStreamsView() bool
	// IsForgeFedBranch returns true if this property has a type of "Branch".
	// When true, use the GetForgeFedBranch and SetForgeFedBranch methods
	// to access and set this property.
	IsForgeFedBranch() bool
	// IsForgeFedCommit returns true if this property has a type of "Commit".
	// When true, use the GetForgeFedCommit and SetForgeFedCommit methods
	// to access and set this property.
	IsForgeFedCommit() bool
	// IsForgeFedPush returns true if this property has a type of "Push". When
	// true, use the GetForgeFedPush and SetForgeFedPush methods to access
	// and set this property.
	IsForgeFedPush() bool
	// IsForgeFedRepository returns true if this property has a type of
	// "Repository". When true, use the GetForgeFedRepository and
	// SetForgeFedRepository methods to access and set this property.
	IsForgeFedRepository() bool
	// IsForgeFedTicket returns true if this property has a type of "Ticket".
	// When true, use the GetForgeFedTicket and SetForgeFedTicket methods
	// to access and set this property.
	IsForgeFedTicket() bool
	// IsForgeFedTicketDependency returns true if this property has a type of
	// "TicketDependency". When true, use the GetForgeFedTicketDependency
	// and SetForgeFedTicketDependency methods to access and set this
	// property.
	IsForgeFedTicketDependency() bool
	// IsIRI returns true if this property is an IRI. When true, use GetIRI
	// and SetIRI to access and set this property
	IsIRI() bool
	// IsTootEmoji returns true if this property has a type of "Emoji". When
	// true, use the GetTootEmoji and SetTootEmoji methods to access and
	// set this property.
	IsTootEmoji() bool
	// IsTootIdentityProof returns true if this property has a type of
	// "IdentityProof". When true, use the GetTootIdentityProof and
	// SetTootIdentityProof methods to access and set this property.
	IsTootIdentityProof() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsOriginPropertyIterator) bool
	// Name returns the name of this property: "ActivityStreamsOrigin".
	Name() string
	// Next returns the next iterator, or nil if there is no next iterator.
	Next() ActivityStreamsOriginPropertyIterator
	// Prev returns the previous iterator, or nil if there is no previous
	// iterator.
	Prev() ActivityStreamsOriginPropertyIterator
	// SetActivityStreamsAccept sets the value of this property. Calling
	// IsActivityStreamsAccept afterwards returns true.
	SetActivityStreamsAccept(v ActivityStreamsAccept)
	// SetActivityStreamsActivity sets the value of this property. Calling
	// IsActivityStreamsActivity afterwards returns true.
	SetActivityStreamsActivity(v ActivityStreamsActivity)
	// SetActivityStreamsAdd sets the value of this property. Calling
	// IsActivityStreamsAdd afterwards returns true.
	SetActivityStreamsAdd(v ActivityStreamsAdd)
	// SetActivityStreamsAnnounce sets the value of this property. Calling
	// IsActivityStreamsAnnounce afterwards returns true.
	SetActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// SetActivityStreamsApplication sets the value of this property. Calling
	// IsActivityStreamsApplication afterwards returns true.
	SetActivityStreamsApplication(v ActivityStreamsApplication)
	// SetActivityStreamsArrive sets the value of this property. Calling
	// IsActivityStreamsArrive afterwards returns true.
	SetActivityStreamsArrive(v ActivityStreamsArrive)
	// SetActivityStreamsArticle sets the value of this property. Calling
	// IsActivityStreamsArticle afterwards returns true.
	SetActivityStreamsArticle(v ActivityStreamsArticle)
	// SetActivityStreamsAudio sets the value of this property. Calling
	// IsActivityStreamsAudio afterwards returns true.
	SetActivityStreamsAudio(v ActivityStreamsAudio)
	// SetActivityStreamsBlock sets the value of this property. Calling
	// IsActivityStreamsBlock afterwards returns true.
	SetActivityStreamsBlock(v ActivityStreamsBlock)
	// SetActivityStreamsCollection sets the value of this property. Calling
	// IsActivityStreamsCollection afterwards returns true.
	SetActivityStreamsCollection(v ActivityStreamsCollection)
	// SetActivityStreamsCollectionPage sets the value of this property.
	// Calling IsActivityStreamsCollectionPage afterwards returns true.
	SetActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// SetActivityStreamsCreate sets the value of this property. Calling
	// IsActivityStreamsCreate afterwards returns true.
	SetActivityStreamsCreate(v ActivityStreamsCreate)
	// SetActivityStreamsDelete sets the value of this property. Calling
	// IsActivityStreamsDelete afterwards returns true.
	SetActivityStreamsDelete(v ActivityStreamsDelete)
	// SetActivityStreamsDislike sets the value of this property. Calling
	// IsActivityStreamsDislike afterwards returns true.
	SetActivityStreamsDislike(v ActivityStreamsDislike)
	// SetActivityStreamsDocument sets the value of this property. Calling
	// IsActivityStreamsDocument afterwards returns true.
	SetActivityStreamsDocument(v ActivityStreamsDocument)
	// SetActivityStreamsEvent sets the value of this property. Calling
	// IsActivityStreamsEvent afterwards returns true.
	SetActivityStreamsEvent(v ActivityStreamsEvent)
	// SetActivityStreamsFlag sets the value of this property. Calling
	// IsActivityStreamsFlag afterwards returns true.
	SetActivityStreamsFlag(v ActivityStreamsFlag)
	// SetActivityStreamsFollow sets the value of this property. Calling
	// IsActivityStreamsFollow afterwards returns true.
	SetActivityStreamsFollow(v ActivityStreamsFollow)
	// SetActivityStreamsGroup sets the value of this property. Calling
	// IsActivityStreamsGroup afterwards returns true.
	SetActivityStreamsGroup(v ActivityStreamsGroup)
	// SetActivityStreamsIgnore sets the value of this property. Calling
	// IsActivityStreamsIgnore afterwards returns true.
	SetActivityStreamsIgnore(v ActivityStreamsIgnore)
	// SetActivityStreamsImage sets the value of this property. Calling
	// IsActivityStreamsImage afterwards returns true.
	SetActivityStreamsImage(v ActivityStreamsImage)
	// SetActivityStreamsIntransitiveActivity sets the value of this property.
	// Calling IsActivityStreamsIntransitiveActivity afterwards returns
	// true.
	SetActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// SetActivityStreamsInvite sets the value of this property. Calling
	// IsActivityStreamsInvite afterwards returns true.
	SetActivityStreamsInvite(v ActivityStreamsInvite)
	// SetActivityStreamsJoin sets the value of this property. Calling
	// IsActivityStreamsJoin afterwards returns true.
	SetActivityStreamsJoin(v ActivityStreamsJoin)
	// SetActivityStreamsLeave sets the value of this property. Calling
	// IsActivityStreamsLeave afterwards returns true.
	SetActivityStreamsLeave(v ActivityStreamsLeave)
	// SetActivityStreamsLike sets the value of this property. Calling
	// IsActivityStreamsLike afterwards returns true.
	SetActivityStreamsLike(v ActivityStreamsLike)
	// SetActivityStreamsLink sets the value of this property. Calling
	// IsActivityStreamsLink afterwards returns true.
	SetActivityStreamsLink(v ActivityStreamsLink)
	// SetActivityStreamsListen sets the value of this property. Calling
	// IsActivityStreamsListen afterwards returns true.
	SetActivityStreamsListen(v ActivityStreamsListen)
	// SetActivityStreamsMention sets the value of this property. Calling
	// IsActivityStreamsMention afterwards returns true.
	SetActivityStreamsMention(v ActivityStreamsMention)
	// SetActivityStreamsMove sets the value of this property. Calling
	// IsActivityStreamsMove afterwards returns true.
	SetActivityStreamsMove(v ActivityStreamsMove)
	// SetActivityStreamsNote sets the value of this property. Calling
	// IsActivityStreamsNote afterwards returns true.
	SetActivityStreamsNote(v ActivityStreamsNote)
	// SetActivityStreamsObject sets the value of this property. Calling
	// IsActivityStreamsObject afterwards returns true.
	SetActivityStreamsObject(v ActivityStreamsObject)
	// SetActivityStreamsOffer sets the value of this property. Calling
	// IsActivityStreamsOffer afterwards returns true.
	SetActivityStreamsOffer(v ActivityStreamsOffer)
	// SetActivityStreamsOrderedCollection sets the value of this property.
	// Calling IsActivityStreamsOrderedCollection afterwards returns true.
	SetActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// SetActivityStreamsOrderedCollectionPage sets the value of this
	// property. Calling IsActivityStreamsOrderedCollectionPage afterwards
	// returns true.
	SetActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// SetActivityStreamsOrganization sets the value of this property. Calling
	// IsActivityStreamsOrganization afterwards returns true.
	SetActivityStreamsOrganization(v ActivityStreamsOrganization)
	// SetActivityStreamsPage sets the value of this property. Calling
	// IsActivityStreamsPage afterwards returns true.
	SetActivityStreamsPage(v ActivityStreamsPage)
	// SetActivityStreamsPerson sets the value of this property. Calling
	// IsActivityStreamsPerson afterwards returns true.
	SetActivityStreamsPerson(v ActivityStreamsPerson)
	// SetActivityStreamsPlace sets the value of this property. Calling
	// IsActivityStreamsPlace afterwards returns true.
	SetActivityStreamsPlace(v ActivityStreamsPlace)
	// SetActivityStreamsProfile sets the value of this property. Calling
	// IsActivityStreamsProfile afterwards returns true.
	SetActivityStreamsProfile(v ActivityStreamsProfile)
	// SetActivityStreamsQuestion sets the value of this property. Calling
	// IsActivityStreamsQuestion afterwards returns true.
	SetActivityStreamsQuestion(v ActivityStreamsQuestion)
	// SetActivityStreamsRead sets the value of this property. Calling
	// IsActivityStreamsRead afterwards returns true.
	SetActivityStreamsRead(v ActivityStreamsRead)
	// SetActivityStreamsReject sets the value of this property. Calling
	// IsActivityStreamsReject afterwards returns true.
	SetActivityStreamsReject(v ActivityStreamsReject)
	// SetActivityStreamsRelationship sets the value of this property. Calling
	// IsActivityStreamsRelationship afterwards returns true.
	SetActivityStreamsRelationship(v ActivityStreamsRelationship)
	// SetActivityStreamsRemove sets the value of this property. Calling
	// IsActivityStreamsRemove afterwards returns true.
	SetActivityStreamsRemove(v ActivityStreamsRemove)
	// SetActivityStreamsService sets the value of this property. Calling
	// IsActivityStreamsService afterwards returns true.
	SetActivityStreamsService(v ActivityStreamsService)
	// SetActivityStreamsTentativeAccept sets the value of this property.
	// Calling IsActivityStreamsTentativeAccept afterwards returns true.
	SetActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// SetActivityStreamsTentativeReject sets the value of this property.
	// Calling IsActivityStreamsTentativeReject afterwards returns true.
	SetActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// SetActivityStreamsTombstone sets the value of this property. Calling
	// IsActivityStreamsTombstone afterwards returns true.
	SetActivityStreamsTombstone(v ActivityStreamsTombstone)
	// SetActivityStreamsTravel sets the value of this property. Calling
	// IsActivityStreamsTravel afterwards returns true.
	SetActivityStreamsTravel(v ActivityStreamsTravel)
	// SetActivityStreamsUndo sets the value of this property. Calling
	// IsActivityStreamsUndo afterwards returns true.
	SetActivityStreamsUndo(v ActivityStreamsUndo)
	// SetActivityStreamsUpdate sets the value of this property. Calling
	// IsActivityStreamsUpdate afterwards returns true.
	SetActivityStreamsUpdate(v ActivityStreamsUpdate)
	// SetActivityStreamsVideo sets the value of this property. Calling
	// IsActivityStreamsVideo afterwards returns true.
	SetActivityStreamsVideo(v ActivityStreamsVideo)
	// SetActivityStreamsView sets the value of this property. Calling
	// IsActivityStreamsView afterwards returns true.
	SetActivityStreamsView(v ActivityStreamsView)
	// SetForgeFedBranch sets the value of this property. Calling
	// IsForgeFedBranch afterwards returns true.
	SetForgeFedBranch(v ForgeFedBranch)
	// SetForgeFedCommit sets the value of this property. Calling
	// IsForgeFedCommit afterwards returns true.
	SetForgeFedCommit(v ForgeFedCommit)
	// SetForgeFedPush sets the value of this property. Calling IsForgeFedPush
	// afterwards returns true.
	SetForgeFedPush(v ForgeFedPush)
	// SetForgeFedRepository sets the value of this property. Calling
	// IsForgeFedRepository afterwards returns true.
	SetForgeFedRepository(v ForgeFedRepository)
	// SetForgeFedTicket sets the value of this property. Calling
	// IsForgeFedTicket afterwards returns true.
	SetForgeFedTicket(v ForgeFedTicket)
	// SetForgeFedTicketDependency sets the value of this property. Calling
	// IsForgeFedTicketDependency afterwards returns true.
	SetForgeFedTicketDependency(v ForgeFedTicketDependency)
	// SetIRI sets the value of this property. Calling IsIRI afterwards
	// returns true.
	SetIRI(v *url.URL)
	// SetTootEmoji sets the value of this property. Calling IsTootEmoji
	// afterwards returns true.
	SetTootEmoji(v TootEmoji)
	// SetTootIdentityProof sets the value of this property. Calling
	// IsTootIdentityProof afterwards returns true.
	SetTootIdentityProof(v TootIdentityProof)
	// SetType attempts to set the property for the arbitrary type. Returns an
	// error if it is not a valid type to set on this property.
	SetType(t Type) error
}

ActivityStreamsOriginPropertyIterator represents a single value for the "origin" property.

type ActivityStreamsOutboxProperty

type ActivityStreamsOutboxProperty interface {
	// Clear ensures no value of this property is set. Calling HasAny or any
	// of the 'Is' methods afterwards will return false.
	Clear()
	// GetActivityStreamsOrderedCollection returns the value of this property.
	// When IsActivityStreamsOrderedCollection returns false,
	// GetActivityStreamsOrderedCollection will return an arbitrary value.
	GetActivityStreamsOrderedCollection() ActivityStreamsOrderedCollection
	// GetActivityStreamsOrderedCollectionPage returns the value of this
	// property. When IsActivityStreamsOrderedCollectionPage returns
	// false, GetActivityStreamsOrderedCollectionPage will return an
	// arbitrary value.
	GetActivityStreamsOrderedCollectionPage() ActivityStreamsOrderedCollectionPage
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return an arbitrary value.
	GetIRI() *url.URL
	// GetType returns the value in this property as a Type. Returns nil if
	// the value is not an ActivityStreams type, such as an IRI or another
	// value.
	GetType() Type
	// HasAny returns true if any of the different values is set.
	HasAny() bool
	// IsActivityStreamsOrderedCollection returns true if this property has a
	// type of "OrderedCollection". When true, use the
	// GetActivityStreamsOrderedCollection and
	// SetActivityStreamsOrderedCollection methods to access and set this
	// property.
	IsActivityStreamsOrderedCollection() bool
	// IsActivityStreamsOrderedCollectionPage returns true if this property
	// has a type of "OrderedCollectionPage". When true, use the
	// GetActivityStreamsOrderedCollectionPage and
	// SetActivityStreamsOrderedCollectionPage methods to access and set
	// this property.
	IsActivityStreamsOrderedCollectionPage() bool
	// IsIRI returns true if this property is an IRI. When true, use GetIRI
	// and SetIRI to access and set this property
	IsIRI() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsOutboxProperty) bool
	// Name returns the name of this property: "outbox".
	Name() string
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// SetActivityStreamsOrderedCollection sets the value of this property.
	// Calling IsActivityStreamsOrderedCollection afterwards returns true.
	SetActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// SetActivityStreamsOrderedCollectionPage sets the value of this
	// property. Calling IsActivityStreamsOrderedCollectionPage afterwards
	// returns true.
	SetActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// SetIRI sets the value of this property. Calling IsIRI afterwards
	// returns true.
	SetIRI(v *url.URL)
	// SetType attempts to set the property for the arbitrary type. Returns an
	// error if it is not a valid type to set on this property.
	SetType(t Type) error
}

An ActivityStreams OrderedCollection comprised of all the messages produced by the actor

Example 9 (https://www.w3.org/TR/activitypub/#example9):

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "@language": "ja"
    }
  ],
  "followers": "https://kenzoishii.example.com/followers.json",
  "following": "https://kenzoishii.example.com/following.json",
  "icon": [
    "https://kenzoishii.example.com/image/165987aklre4"
  ],
  "id": "https://kenzoishii.example.com/",
  "inbox": "https://kenzoishii.example.com/inbox.json",
  "liked": "https://kenzoishii.example.com/liked.json",
  "name": "石井健蔵",
  "outbox": "https://kenzoishii.example.com/feed.json",
  "preferredUsername": "kenzoishii",
  "summary": "この方はただの例です",
  "type": "Person"
}

type ActivityStreamsPage

type ActivityStreamsPage interface {
	// GetActivityStreamsAltitude returns the "altitude" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAltitude() ActivityStreamsAltitudeProperty
	// GetActivityStreamsAttachment returns the "attachment" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAttachment() ActivityStreamsAttachmentProperty
	// GetActivityStreamsAttributedTo returns the "attributedTo" property if
	// it exists, and nil otherwise.
	GetActivityStreamsAttributedTo() ActivityStreamsAttributedToProperty
	// GetActivityStreamsAudience returns the "audience" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAudience() ActivityStreamsAudienceProperty
	// GetActivityStreamsBcc returns the "bcc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBcc() ActivityStreamsBccProperty
	// GetActivityStreamsBto returns the "bto" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBto() ActivityStreamsBtoProperty
	// GetActivityStreamsCc returns the "cc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsCc() ActivityStreamsCcProperty
	// GetActivityStreamsContent returns the "content" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContent() ActivityStreamsContentProperty
	// GetActivityStreamsContext returns the "context" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContext() ActivityStreamsContextProperty
	// GetActivityStreamsDuration returns the "duration" property if it
	// exists, and nil otherwise.
	GetActivityStreamsDuration() ActivityStreamsDurationProperty
	// GetActivityStreamsEndTime returns the "endTime" property if it exists,
	// and nil otherwise.
	GetActivityStreamsEndTime() ActivityStreamsEndTimeProperty
	// GetActivityStreamsGenerator returns the "generator" property if it
	// exists, and nil otherwise.
	GetActivityStreamsGenerator() ActivityStreamsGeneratorProperty
	// GetActivityStreamsIcon returns the "icon" property if it exists, and
	// nil otherwise.
	GetActivityStreamsIcon() ActivityStreamsIconProperty
	// GetActivityStreamsImage returns the "image" property if it exists, and
	// nil otherwise.
	GetActivityStreamsImage() ActivityStreamsImageProperty
	// GetActivityStreamsInReplyTo returns the "inReplyTo" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInReplyTo() ActivityStreamsInReplyToProperty
	// GetActivityStreamsLikes returns the "likes" property if it exists, and
	// nil otherwise.
	GetActivityStreamsLikes() ActivityStreamsLikesProperty
	// GetActivityStreamsLocation returns the "location" property if it
	// exists, and nil otherwise.
	GetActivityStreamsLocation() ActivityStreamsLocationProperty
	// GetActivityStreamsMediaType returns the "mediaType" property if it
	// exists, and nil otherwise.
	GetActivityStreamsMediaType() ActivityStreamsMediaTypeProperty
	// GetActivityStreamsName returns the "name" property if it exists, and
	// nil otherwise.
	GetActivityStreamsName() ActivityStreamsNameProperty
	// GetActivityStreamsObject returns the "object" property if it exists,
	// and nil otherwise.
	GetActivityStreamsObject() ActivityStreamsObjectProperty
	// GetActivityStreamsPreview returns the "preview" property if it exists,
	// and nil otherwise.
	GetActivityStreamsPreview() ActivityStreamsPreviewProperty
	// GetActivityStreamsPublished returns the "published" property if it
	// exists, and nil otherwise.
	GetActivityStreamsPublished() ActivityStreamsPublishedProperty
	// GetActivityStreamsReplies returns the "replies" property if it exists,
	// and nil otherwise.
	GetActivityStreamsReplies() ActivityStreamsRepliesProperty
	// GetActivityStreamsShares returns the "shares" property if it exists,
	// and nil otherwise.
	GetActivityStreamsShares() ActivityStreamsSharesProperty
	// GetActivityStreamsSource returns the "source" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSource() ActivityStreamsSourceProperty
	// GetActivityStreamsStartTime returns the "startTime" property if it
	// exists, and nil otherwise.
	GetActivityStreamsStartTime() ActivityStreamsStartTimeProperty
	// GetActivityStreamsSummary returns the "summary" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSummary() ActivityStreamsSummaryProperty
	// GetActivityStreamsTag returns the "tag" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTag() ActivityStreamsTagProperty
	// GetActivityStreamsTo returns the "to" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTo() ActivityStreamsToProperty
	// GetActivityStreamsUpdated returns the "updated" property if it exists,
	// and nil otherwise.
	GetActivityStreamsUpdated() ActivityStreamsUpdatedProperty
	// GetActivityStreamsUrl returns the "url" property if it exists, and nil
	// otherwise.
	GetActivityStreamsUrl() ActivityStreamsUrlProperty
	// GetForgeFedTeam returns the "team" property if it exists, and nil
	// otherwise.
	GetForgeFedTeam() ForgeFedTeamProperty
	// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
	// it exists, and nil otherwise.
	GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
	// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
	// it exists, and nil otherwise.
	GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
	// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
	GetJSONLDId() JSONLDIdProperty
	// GetJSONLDType returns the "type" property if it exists, and nil
	// otherwise.
	GetJSONLDType() JSONLDTypeProperty
	// GetTootBlurhash returns the "blurhash" property if it exists, and nil
	// otherwise.
	GetTootBlurhash() TootBlurhashProperty
	// GetTypeName returns the name of this type.
	GetTypeName() string
	// GetUnknownProperties returns the unknown properties for the Page type.
	// Note that this should not be used by app developers. It is only
	// used to help determine which implementation is LessThan the other.
	// Developers who are creating a different implementation of this
	// type's interface can use this method in their LessThan
	// implementation, but routine ActivityPub applications should not use
	// this to bypass the code generation tool.
	GetUnknownProperties() map[string]interface{}
	// IsExtending returns true if the Page type extends from the other type.
	IsExtending(other Type) bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this type and the specific properties that are set. The value
	// in the map is the alias used to import the type and its properties.
	JSONLDContext() map[string]string
	// LessThan computes if this Page is lesser, with an arbitrary but stable
	// determination.
	LessThan(o ActivityStreamsPage) bool
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format.
	Serialize() (map[string]interface{}, error)
	// SetActivityStreamsAltitude sets the "altitude" property.
	SetActivityStreamsAltitude(i ActivityStreamsAltitudeProperty)
	// SetActivityStreamsAttachment sets the "attachment" property.
	SetActivityStreamsAttachment(i ActivityStreamsAttachmentProperty)
	// SetActivityStreamsAttributedTo sets the "attributedTo" property.
	SetActivityStreamsAttributedTo(i ActivityStreamsAttributedToProperty)
	// SetActivityStreamsAudience sets the "audience" property.
	SetActivityStreamsAudience(i ActivityStreamsAudienceProperty)
	// SetActivityStreamsBcc sets the "bcc" property.
	SetActivityStreamsBcc(i ActivityStreamsBccProperty)
	// SetActivityStreamsBto sets the "bto" property.
	SetActivityStreamsBto(i ActivityStreamsBtoProperty)
	// SetActivityStreamsCc sets the "cc" property.
	SetActivityStreamsCc(i ActivityStreamsCcProperty)
	// SetActivityStreamsContent sets the "content" property.
	SetActivityStreamsContent(i ActivityStreamsContentProperty)
	// SetActivityStreamsContext sets the "context" property.
	SetActivityStreamsContext(i ActivityStreamsContextProperty)
	// SetActivityStreamsDuration sets the "duration" property.
	SetActivityStreamsDuration(i ActivityStreamsDurationProperty)
	// SetActivityStreamsEndTime sets the "endTime" property.
	SetActivityStreamsEndTime(i ActivityStreamsEndTimeProperty)
	// SetActivityStreamsGenerator sets the "generator" property.
	SetActivityStreamsGenerator(i ActivityStreamsGeneratorProperty)
	// SetActivityStreamsIcon sets the "icon" property.
	SetActivityStreamsIcon(i ActivityStreamsIconProperty)
	// SetActivityStreamsImage sets the "image" property.
	SetActivityStreamsImage(i ActivityStreamsImageProperty)
	// SetActivityStreamsInReplyTo sets the "inReplyTo" property.
	SetActivityStreamsInReplyTo(i ActivityStreamsInReplyToProperty)
	// SetActivityStreamsLikes sets the "likes" property.
	SetActivityStreamsLikes(i ActivityStreamsLikesProperty)
	// SetActivityStreamsLocation sets the "location" property.
	SetActivityStreamsLocation(i ActivityStreamsLocationProperty)
	// SetActivityStreamsMediaType sets the "mediaType" property.
	SetActivityStreamsMediaType(i ActivityStreamsMediaTypeProperty)
	// SetActivityStreamsName sets the "name" property.
	SetActivityStreamsName(i ActivityStreamsNameProperty)
	// SetActivityStreamsObject sets the "object" property.
	SetActivityStreamsObject(i ActivityStreamsObjectProperty)
	// SetActivityStreamsPreview sets the "preview" property.
	SetActivityStreamsPreview(i ActivityStreamsPreviewProperty)
	// SetActivityStreamsPublished sets the "published" property.
	SetActivityStreamsPublished(i ActivityStreamsPublishedProperty)
	// SetActivityStreamsReplies sets the "replies" property.
	SetActivityStreamsReplies(i ActivityStreamsRepliesProperty)
	// SetActivityStreamsShares sets the "shares" property.
	SetActivityStreamsShares(i ActivityStreamsSharesProperty)
	// SetActivityStreamsSource sets the "source" property.
	SetActivityStreamsSource(i ActivityStreamsSourceProperty)
	// SetActivityStreamsStartTime sets the "startTime" property.
	SetActivityStreamsStartTime(i ActivityStreamsStartTimeProperty)
	// SetActivityStreamsSummary sets the "summary" property.
	SetActivityStreamsSummary(i ActivityStreamsSummaryProperty)
	// SetActivityStreamsTag sets the "tag" property.
	SetActivityStreamsTag(i ActivityStreamsTagProperty)
	// SetActivityStreamsTo sets the "to" property.
	SetActivityStreamsTo(i ActivityStreamsToProperty)
	// SetActivityStreamsUpdated sets the "updated" property.
	SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
	// SetActivityStreamsUrl sets the "url" property.
	SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
	// SetForgeFedTeam sets the "team" property.
	SetForgeFedTeam(i ForgeFedTeamProperty)
	// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
	SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
	// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
	SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
	// SetJSONLDId sets the "id" property.
	SetJSONLDId(i JSONLDIdProperty)
	// SetJSONLDType sets the "type" property.
	SetJSONLDType(i JSONLDTypeProperty)
	// SetTootBlurhash sets the "blurhash" property.
	SetTootBlurhash(i TootBlurhashProperty)
	// VocabularyURI returns the vocabulary's URI as a string.
	VocabularyURI() string
}

Represents a Web Page.

Example 54 (https://www.w3.org/TR/activitystreams-vocabulary/#ex53-jsonld):

{
  "name": "Omaha Weather Report",
  "type": "Page",
  "url": "http://example.org/weather-in-omaha.html"
}

type ActivityStreamsPartOfProperty

type ActivityStreamsPartOfProperty interface {
	// Clear ensures no value of this property is set. Calling HasAny or any
	// of the 'Is' methods afterwards will return false.
	Clear()
	// GetActivityStreamsCollection returns the value of this property. When
	// IsActivityStreamsCollection returns false,
	// GetActivityStreamsCollection will return an arbitrary value.
	GetActivityStreamsCollection() ActivityStreamsCollection
	// GetActivityStreamsCollectionPage returns the value of this property.
	// When IsActivityStreamsCollectionPage returns false,
	// GetActivityStreamsCollectionPage will return an arbitrary value.
	GetActivityStreamsCollectionPage() ActivityStreamsCollectionPage
	// GetActivityStreamsLink returns the value of this property. When
	// IsActivityStreamsLink returns false, GetActivityStreamsLink will
	// return an arbitrary value.
	GetActivityStreamsLink() ActivityStreamsLink
	// GetActivityStreamsMention returns the value of this property. When
	// IsActivityStreamsMention returns false, GetActivityStreamsMention
	// will return an arbitrary value.
	GetActivityStreamsMention() ActivityStreamsMention
	// GetActivityStreamsOrderedCollection returns the value of this property.
	// When IsActivityStreamsOrderedCollection returns false,
	// GetActivityStreamsOrderedCollection will return an arbitrary value.
	GetActivityStreamsOrderedCollection() ActivityStreamsOrderedCollection
	// GetActivityStreamsOrderedCollectionPage returns the value of this
	// property. When IsActivityStreamsOrderedCollectionPage returns
	// false, GetActivityStreamsOrderedCollectionPage will return an
	// arbitrary value.
	GetActivityStreamsOrderedCollectionPage() ActivityStreamsOrderedCollectionPage
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return an arbitrary value.
	GetIRI() *url.URL
	// GetType returns the value in this property as a Type. Returns nil if
	// the value is not an ActivityStreams type, such as an IRI or another
	// value.
	GetType() Type
	// HasAny returns true if any of the different values is set.
	HasAny() bool
	// IsActivityStreamsCollection returns true if this property has a type of
	// "Collection". When true, use the GetActivityStreamsCollection and
	// SetActivityStreamsCollection methods to access and set this
	// property.
	IsActivityStreamsCollection() bool
	// IsActivityStreamsCollectionPage returns true if this property has a
	// type of "CollectionPage". When true, use the
	// GetActivityStreamsCollectionPage and
	// SetActivityStreamsCollectionPage methods to access and set this
	// property.
	IsActivityStreamsCollectionPage() bool
	// IsActivityStreamsLink returns true if this property has a type of
	// "Link". When true, use the GetActivityStreamsLink and
	// SetActivityStreamsLink methods to access and set this property.
	IsActivityStreamsLink() bool
	// IsActivityStreamsMention returns true if this property has a type of
	// "Mention". When true, use the GetActivityStreamsMention and
	// SetActivityStreamsMention methods to access and set this property.
	IsActivityStreamsMention() bool
	// IsActivityStreamsOrderedCollection returns true if this property has a
	// type of "OrderedCollection". When true, use the
	// GetActivityStreamsOrderedCollection and
	// SetActivityStreamsOrderedCollection methods to access and set this
	// property.
	IsActivityStreamsOrderedCollection() bool
	// IsActivityStreamsOrderedCollectionPage returns true if this property
	// has a type of "OrderedCollectionPage". When true, use the
	// GetActivityStreamsOrderedCollectionPage and
	// SetActivityStreamsOrderedCollectionPage methods to access and set
	// this property.
	IsActivityStreamsOrderedCollectionPage() bool
	// IsIRI returns true if this property is an IRI. When true, use GetIRI
	// and SetIRI to access and set this property
	IsIRI() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsPartOfProperty) bool
	// Name returns the name of this property: "partOf".
	Name() string
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// SetActivityStreamsCollection sets the value of this property. Calling
	// IsActivityStreamsCollection afterwards returns true.
	SetActivityStreamsCollection(v ActivityStreamsCollection)
	// SetActivityStreamsCollectionPage sets the value of this property.
	// Calling IsActivityStreamsCollectionPage afterwards returns true.
	SetActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// SetActivityStreamsLink sets the value of this property. Calling
	// IsActivityStreamsLink afterwards returns true.
	SetActivityStreamsLink(v ActivityStreamsLink)
	// SetActivityStreamsMention sets the value of this property. Calling
	// IsActivityStreamsMention afterwards returns true.
	SetActivityStreamsMention(v ActivityStreamsMention)
	// SetActivityStreamsOrderedCollection sets the value of this property.
	// Calling IsActivityStreamsOrderedCollection afterwards returns true.
	SetActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// SetActivityStreamsOrderedCollectionPage sets the value of this
	// property. Calling IsActivityStreamsOrderedCollectionPage afterwards
	// returns true.
	SetActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// SetIRI sets the value of this property. Calling IsIRI afterwards
	// returns true.
	SetIRI(v *url.URL)
	// SetType attempts to set the property for the arbitrary type. Returns an
	// error if it is not a valid type to set on this property.
	SetType(t Type) error
}

Identifies the Collection to which a CollectionPage objects items belong.

Example 123 (https://www.w3.org/TR/activitystreams-vocabulary/#ex139-jsonld):

{
  "id": "http://example.org/collection?page=1",
  "items": [
    {
      "name": "Pizza Toppings to Try",
      "type": "Note"
    },
    {
      "name": "Thought about California",
      "type": "Note"
    }
  ],
  "partOf": "http://example.org/collection",
  "summary": "Page 1 of Sally's notes",
  "type": "CollectionPage"
}

type ActivityStreamsPerson

type ActivityStreamsPerson interface {
	// GetActivityStreamsAltitude returns the "altitude" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAltitude() ActivityStreamsAltitudeProperty
	// GetActivityStreamsAttachment returns the "attachment" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAttachment() ActivityStreamsAttachmentProperty
	// GetActivityStreamsAttributedTo returns the "attributedTo" property if
	// it exists, and nil otherwise.
	GetActivityStreamsAttributedTo() ActivityStreamsAttributedToProperty
	// GetActivityStreamsAudience returns the "audience" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAudience() ActivityStreamsAudienceProperty
	// GetActivityStreamsBcc returns the "bcc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBcc() ActivityStreamsBccProperty
	// GetActivityStreamsBto returns the "bto" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBto() ActivityStreamsBtoProperty
	// GetActivityStreamsCc returns the "cc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsCc() ActivityStreamsCcProperty
	// GetActivityStreamsContent returns the "content" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContent() ActivityStreamsContentProperty
	// GetActivityStreamsContext returns the "context" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContext() ActivityStreamsContextProperty
	// GetActivityStreamsDuration returns the "duration" property if it
	// exists, and nil otherwise.
	GetActivityStreamsDuration() ActivityStreamsDurationProperty
	// GetActivityStreamsEndTime returns the "endTime" property if it exists,
	// and nil otherwise.
	GetActivityStreamsEndTime() ActivityStreamsEndTimeProperty
	// GetActivityStreamsFollowers returns the "followers" property if it
	// exists, and nil otherwise.
	GetActivityStreamsFollowers() ActivityStreamsFollowersProperty
	// GetActivityStreamsFollowing returns the "following" property if it
	// exists, and nil otherwise.
	GetActivityStreamsFollowing() ActivityStreamsFollowingProperty
	// GetActivityStreamsGenerator returns the "generator" property if it
	// exists, and nil otherwise.
	GetActivityStreamsGenerator() ActivityStreamsGeneratorProperty
	// GetActivityStreamsIcon returns the "icon" property if it exists, and
	// nil otherwise.
	GetActivityStreamsIcon() ActivityStreamsIconProperty
	// GetActivityStreamsImage returns the "image" property if it exists, and
	// nil otherwise.
	GetActivityStreamsImage() ActivityStreamsImageProperty
	// GetActivityStreamsInReplyTo returns the "inReplyTo" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInReplyTo() ActivityStreamsInReplyToProperty
	// GetActivityStreamsInbox returns the "inbox" property if it exists, and
	// nil otherwise.
	GetActivityStreamsInbox() ActivityStreamsInboxProperty
	// GetActivityStreamsLiked returns the "liked" property if it exists, and
	// nil otherwise.
	GetActivityStreamsLiked() ActivityStreamsLikedProperty
	// GetActivityStreamsLikes returns the "likes" property if it exists, and
	// nil otherwise.
	GetActivityStreamsLikes() ActivityStreamsLikesProperty
	// GetActivityStreamsLocation returns the "location" property if it
	// exists, and nil otherwise.
	GetActivityStreamsLocation() ActivityStreamsLocationProperty
	// GetActivityStreamsMediaType returns the "mediaType" property if it
	// exists, and nil otherwise.
	GetActivityStreamsMediaType() ActivityStreamsMediaTypeProperty
	// GetActivityStreamsName returns the "name" property if it exists, and
	// nil otherwise.
	GetActivityStreamsName() ActivityStreamsNameProperty
	// GetActivityStreamsObject returns the "object" property if it exists,
	// and nil otherwise.
	GetActivityStreamsObject() ActivityStreamsObjectProperty
	// GetActivityStreamsOutbox returns the "outbox" property if it exists,
	// and nil otherwise.
	GetActivityStreamsOutbox() ActivityStreamsOutboxProperty
	// GetActivityStreamsPreferredUsername returns the "preferredUsername"
	// property if it exists, and nil otherwise.
	GetActivityStreamsPreferredUsername() ActivityStreamsPreferredUsernameProperty
	// GetActivityStreamsPreview returns the "preview" property if it exists,
	// and nil otherwise.
	GetActivityStreamsPreview() ActivityStreamsPreviewProperty
	// GetActivityStreamsPublished returns the "published" property if it
	// exists, and nil otherwise.
	GetActivityStreamsPublished() ActivityStreamsPublishedProperty
	// GetActivityStreamsReplies returns the "replies" property if it exists,
	// and nil otherwise.
	GetActivityStreamsReplies() ActivityStreamsRepliesProperty
	// GetActivityStreamsShares returns the "shares" property if it exists,
	// and nil otherwise.
	GetActivityStreamsShares() ActivityStreamsSharesProperty
	// GetActivityStreamsSource returns the "source" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSource() ActivityStreamsSourceProperty
	// GetActivityStreamsStartTime returns the "startTime" property if it
	// exists, and nil otherwise.
	GetActivityStreamsStartTime() ActivityStreamsStartTimeProperty
	// GetActivityStreamsStreams returns the "streams" property if it exists,
	// and nil otherwise.
	GetActivityStreamsStreams() ActivityStreamsStreamsProperty
	// GetActivityStreamsSummary returns the "summary" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSummary() ActivityStreamsSummaryProperty
	// GetActivityStreamsTag returns the "tag" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTag() ActivityStreamsTagProperty
	// GetActivityStreamsTo returns the "to" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTo() ActivityStreamsToProperty
	// GetActivityStreamsUpdated returns the "updated" property if it exists,
	// and nil otherwise.
	GetActivityStreamsUpdated() ActivityStreamsUpdatedProperty
	// GetActivityStreamsUrl returns the "url" property if it exists, and nil
	// otherwise.
	GetActivityStreamsUrl() ActivityStreamsUrlProperty
	// GetForgeFedTeam returns the "team" property if it exists, and nil
	// otherwise.
	GetForgeFedTeam() ForgeFedTeamProperty
	// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
	// it exists, and nil otherwise.
	GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
	// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
	// it exists, and nil otherwise.
	GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
	// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
	GetJSONLDId() JSONLDIdProperty
	// GetJSONLDType returns the "type" property if it exists, and nil
	// otherwise.
	GetJSONLDType() JSONLDTypeProperty
	// GetTootDiscoverable returns the "discoverable" property if it exists,
	// and nil otherwise.
	GetTootDiscoverable() TootDiscoverableProperty
	// GetTootFeatured returns the "featured" property if it exists, and nil
	// otherwise.
	GetTootFeatured() TootFeaturedProperty
	// GetTypeName returns the name of this type.
	GetTypeName() string
	// GetUnknownProperties returns the unknown properties for the Person
	// type. Note that this should not be used by app developers. It is
	// only used to help determine which implementation is LessThan the
	// other. Developers who are creating a different implementation of
	// this type's interface can use this method in their LessThan
	// implementation, but routine ActivityPub applications should not use
	// this to bypass the code generation tool.
	GetUnknownProperties() map[string]interface{}
	// GetW3IDSecurityV1PublicKey returns the "publicKey" property if it
	// exists, and nil otherwise.
	GetW3IDSecurityV1PublicKey() W3IDSecurityV1PublicKeyProperty
	// IsExtending returns true if the Person type extends from the other type.
	IsExtending(other Type) bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this type and the specific properties that are set. The value
	// in the map is the alias used to import the type and its properties.
	JSONLDContext() map[string]string
	// LessThan computes if this Person is lesser, with an arbitrary but
	// stable determination.
	LessThan(o ActivityStreamsPerson) bool
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format.
	Serialize() (map[string]interface{}, error)
	// SetActivityStreamsAltitude sets the "altitude" property.
	SetActivityStreamsAltitude(i ActivityStreamsAltitudeProperty)
	// SetActivityStreamsAttachment sets the "attachment" property.
	SetActivityStreamsAttachment(i ActivityStreamsAttachmentProperty)
	// SetActivityStreamsAttributedTo sets the "attributedTo" property.
	SetActivityStreamsAttributedTo(i ActivityStreamsAttributedToProperty)
	// SetActivityStreamsAudience sets the "audience" property.
	SetActivityStreamsAudience(i ActivityStreamsAudienceProperty)
	// SetActivityStreamsBcc sets the "bcc" property.
	SetActivityStreamsBcc(i ActivityStreamsBccProperty)
	// SetActivityStreamsBto sets the "bto" property.
	SetActivityStreamsBto(i ActivityStreamsBtoProperty)
	// SetActivityStreamsCc sets the "cc" property.
	SetActivityStreamsCc(i ActivityStreamsCcProperty)
	// SetActivityStreamsContent sets the "content" property.
	SetActivityStreamsContent(i ActivityStreamsContentProperty)
	// SetActivityStreamsContext sets the "context" property.
	SetActivityStreamsContext(i ActivityStreamsContextProperty)
	// SetActivityStreamsDuration sets the "duration" property.
	SetActivityStreamsDuration(i ActivityStreamsDurationProperty)
	// SetActivityStreamsEndTime sets the "endTime" property.
	SetActivityStreamsEndTime(i ActivityStreamsEndTimeProperty)
	// SetActivityStreamsFollowers sets the "followers" property.
	SetActivityStreamsFollowers(i ActivityStreamsFollowersProperty)
	// SetActivityStreamsFollowing sets the "following" property.
	SetActivityStreamsFollowing(i ActivityStreamsFollowingProperty)
	// SetActivityStreamsGenerator sets the "generator" property.
	SetActivityStreamsGenerator(i ActivityStreamsGeneratorProperty)
	// SetActivityStreamsIcon sets the "icon" property.
	SetActivityStreamsIcon(i ActivityStreamsIconProperty)
	// SetActivityStreamsImage sets the "image" property.
	SetActivityStreamsImage(i ActivityStreamsImageProperty)
	// SetActivityStreamsInReplyTo sets the "inReplyTo" property.
	SetActivityStreamsInReplyTo(i ActivityStreamsInReplyToProperty)
	// SetActivityStreamsInbox sets the "inbox" property.
	SetActivityStreamsInbox(i ActivityStreamsInboxProperty)
	// SetActivityStreamsLiked sets the "liked" property.
	SetActivityStreamsLiked(i ActivityStreamsLikedProperty)
	// SetActivityStreamsLikes sets the "likes" property.
	SetActivityStreamsLikes(i ActivityStreamsLikesProperty)
	// SetActivityStreamsLocation sets the "location" property.
	SetActivityStreamsLocation(i ActivityStreamsLocationProperty)
	// SetActivityStreamsMediaType sets the "mediaType" property.
	SetActivityStreamsMediaType(i ActivityStreamsMediaTypeProperty)
	// SetActivityStreamsName sets the "name" property.
	SetActivityStreamsName(i ActivityStreamsNameProperty)
	// SetActivityStreamsObject sets the "object" property.
	SetActivityStreamsObject(i ActivityStreamsObjectProperty)
	// SetActivityStreamsOutbox sets the "outbox" property.
	SetActivityStreamsOutbox(i ActivityStreamsOutboxProperty)
	// SetActivityStreamsPreferredUsername sets the "preferredUsername"
	// property.
	SetActivityStreamsPreferredUsername(i ActivityStreamsPreferredUsernameProperty)
	// SetActivityStreamsPreview sets the "preview" property.
	SetActivityStreamsPreview(i ActivityStreamsPreviewProperty)
	// SetActivityStreamsPublished sets the "published" property.
	SetActivityStreamsPublished(i ActivityStreamsPublishedProperty)
	// SetActivityStreamsReplies sets the "replies" property.
	SetActivityStreamsReplies(i ActivityStreamsRepliesProperty)
	// SetActivityStreamsShares sets the "shares" property.
	SetActivityStreamsShares(i ActivityStreamsSharesProperty)
	// SetActivityStreamsSource sets the "source" property.
	SetActivityStreamsSource(i ActivityStreamsSourceProperty)
	// SetActivityStreamsStartTime sets the "startTime" property.
	SetActivityStreamsStartTime(i ActivityStreamsStartTimeProperty)
	// SetActivityStreamsStreams sets the "streams" property.
	SetActivityStreamsStreams(i ActivityStreamsStreamsProperty)
	// SetActivityStreamsSummary sets the "summary" property.
	SetActivityStreamsSummary(i ActivityStreamsSummaryProperty)
	// SetActivityStreamsTag sets the "tag" property.
	SetActivityStreamsTag(i ActivityStreamsTagProperty)
	// SetActivityStreamsTo sets the "to" property.
	SetActivityStreamsTo(i ActivityStreamsToProperty)
	// SetActivityStreamsUpdated sets the "updated" property.
	SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
	// SetActivityStreamsUrl sets the "url" property.
	SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
	// SetForgeFedTeam sets the "team" property.
	SetForgeFedTeam(i ForgeFedTeamProperty)
	// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
	SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
	// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
	SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
	// SetJSONLDId sets the "id" property.
	SetJSONLDId(i JSONLDIdProperty)
	// SetJSONLDType sets the "type" property.
	SetJSONLDType(i JSONLDTypeProperty)
	// SetTootDiscoverable sets the "discoverable" property.
	SetTootDiscoverable(i TootDiscoverableProperty)
	// SetTootFeatured sets the "featured" property.
	SetTootFeatured(i TootFeaturedProperty)
	// SetW3IDSecurityV1PublicKey sets the "publicKey" property.
	SetW3IDSecurityV1PublicKey(i W3IDSecurityV1PublicKeyProperty)
	// VocabularyURI returns the vocabulary's URI as a string.
	VocabularyURI() string
}

Represents an individual person.

Example 45 (https://www.w3.org/TR/activitystreams-vocabulary/#ex39-jsonld):

{
  "name": "Sally Smith",
  "type": "Person"
}

type ActivityStreamsPlace

type ActivityStreamsPlace interface {
	// GetActivityStreamsAccuracy returns the "accuracy" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAccuracy() ActivityStreamsAccuracyProperty
	// GetActivityStreamsAltitude returns the "altitude" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAltitude() ActivityStreamsAltitudeProperty
	// GetActivityStreamsAttachment returns the "attachment" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAttachment() ActivityStreamsAttachmentProperty
	// GetActivityStreamsAttributedTo returns the "attributedTo" property if
	// it exists, and nil otherwise.
	GetActivityStreamsAttributedTo() ActivityStreamsAttributedToProperty
	// GetActivityStreamsAudience returns the "audience" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAudience() ActivityStreamsAudienceProperty
	// GetActivityStreamsBcc returns the "bcc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBcc() ActivityStreamsBccProperty
	// GetActivityStreamsBto returns the "bto" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBto() ActivityStreamsBtoProperty
	// GetActivityStreamsCc returns the "cc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsCc() ActivityStreamsCcProperty
	// GetActivityStreamsContent returns the "content" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContent() ActivityStreamsContentProperty
	// GetActivityStreamsContext returns the "context" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContext() ActivityStreamsContextProperty
	// GetActivityStreamsDuration returns the "duration" property if it
	// exists, and nil otherwise.
	GetActivityStreamsDuration() ActivityStreamsDurationProperty
	// GetActivityStreamsEndTime returns the "endTime" property if it exists,
	// and nil otherwise.
	GetActivityStreamsEndTime() ActivityStreamsEndTimeProperty
	// GetActivityStreamsGenerator returns the "generator" property if it
	// exists, and nil otherwise.
	GetActivityStreamsGenerator() ActivityStreamsGeneratorProperty
	// GetActivityStreamsIcon returns the "icon" property if it exists, and
	// nil otherwise.
	GetActivityStreamsIcon() ActivityStreamsIconProperty
	// GetActivityStreamsImage returns the "image" property if it exists, and
	// nil otherwise.
	GetActivityStreamsImage() ActivityStreamsImageProperty
	// GetActivityStreamsInReplyTo returns the "inReplyTo" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInReplyTo() ActivityStreamsInReplyToProperty
	// GetActivityStreamsLatitude returns the "latitude" property if it
	// exists, and nil otherwise.
	GetActivityStreamsLatitude() ActivityStreamsLatitudeProperty
	// GetActivityStreamsLikes returns the "likes" property if it exists, and
	// nil otherwise.
	GetActivityStreamsLikes() ActivityStreamsLikesProperty
	// GetActivityStreamsLocation returns the "location" property if it
	// exists, and nil otherwise.
	GetActivityStreamsLocation() ActivityStreamsLocationProperty
	// GetActivityStreamsLongitude returns the "longitude" property if it
	// exists, and nil otherwise.
	GetActivityStreamsLongitude() ActivityStreamsLongitudeProperty
	// GetActivityStreamsMediaType returns the "mediaType" property if it
	// exists, and nil otherwise.
	GetActivityStreamsMediaType() ActivityStreamsMediaTypeProperty
	// GetActivityStreamsName returns the "name" property if it exists, and
	// nil otherwise.
	GetActivityStreamsName() ActivityStreamsNameProperty
	// GetActivityStreamsObject returns the "object" property if it exists,
	// and nil otherwise.
	GetActivityStreamsObject() ActivityStreamsObjectProperty
	// GetActivityStreamsPreview returns the "preview" property if it exists,
	// and nil otherwise.
	GetActivityStreamsPreview() ActivityStreamsPreviewProperty
	// GetActivityStreamsPublished returns the "published" property if it
	// exists, and nil otherwise.
	GetActivityStreamsPublished() ActivityStreamsPublishedProperty
	// GetActivityStreamsRadius returns the "radius" property if it exists,
	// and nil otherwise.
	GetActivityStreamsRadius() ActivityStreamsRadiusProperty
	// GetActivityStreamsReplies returns the "replies" property if it exists,
	// and nil otherwise.
	GetActivityStreamsReplies() ActivityStreamsRepliesProperty
	// GetActivityStreamsShares returns the "shares" property if it exists,
	// and nil otherwise.
	GetActivityStreamsShares() ActivityStreamsSharesProperty
	// GetActivityStreamsSource returns the "source" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSource() ActivityStreamsSourceProperty
	// GetActivityStreamsStartTime returns the "startTime" property if it
	// exists, and nil otherwise.
	GetActivityStreamsStartTime() ActivityStreamsStartTimeProperty
	// GetActivityStreamsSummary returns the "summary" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSummary() ActivityStreamsSummaryProperty
	// GetActivityStreamsTag returns the "tag" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTag() ActivityStreamsTagProperty
	// GetActivityStreamsTo returns the "to" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTo() ActivityStreamsToProperty
	// GetActivityStreamsUnits returns the "units" property if it exists, and
	// nil otherwise.
	GetActivityStreamsUnits() ActivityStreamsUnitsProperty
	// GetActivityStreamsUpdated returns the "updated" property if it exists,
	// and nil otherwise.
	GetActivityStreamsUpdated() ActivityStreamsUpdatedProperty
	// GetActivityStreamsUrl returns the "url" property if it exists, and nil
	// otherwise.
	GetActivityStreamsUrl() ActivityStreamsUrlProperty
	// GetForgeFedTeam returns the "team" property if it exists, and nil
	// otherwise.
	GetForgeFedTeam() ForgeFedTeamProperty
	// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
	// it exists, and nil otherwise.
	GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
	// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
	// it exists, and nil otherwise.
	GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
	// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
	GetJSONLDId() JSONLDIdProperty
	// GetJSONLDType returns the "type" property if it exists, and nil
	// otherwise.
	GetJSONLDType() JSONLDTypeProperty
	// GetTypeName returns the name of this type.
	GetTypeName() string
	// GetUnknownProperties returns the unknown properties for the Place type.
	// Note that this should not be used by app developers. It is only
	// used to help determine which implementation is LessThan the other.
	// Developers who are creating a different implementation of this
	// type's interface can use this method in their LessThan
	// implementation, but routine ActivityPub applications should not use
	// this to bypass the code generation tool.
	GetUnknownProperties() map[string]interface{}
	// IsExtending returns true if the Place type extends from the other type.
	IsExtending(other Type) bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this type and the specific properties that are set. The value
	// in the map is the alias used to import the type and its properties.
	JSONLDContext() map[string]string
	// LessThan computes if this Place is lesser, with an arbitrary but stable
	// determination.
	LessThan(o ActivityStreamsPlace) bool
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format.
	Serialize() (map[string]interface{}, error)
	// SetActivityStreamsAccuracy sets the "accuracy" property.
	SetActivityStreamsAccuracy(i ActivityStreamsAccuracyProperty)
	// SetActivityStreamsAltitude sets the "altitude" property.
	SetActivityStreamsAltitude(i ActivityStreamsAltitudeProperty)
	// SetActivityStreamsAttachment sets the "attachment" property.
	SetActivityStreamsAttachment(i ActivityStreamsAttachmentProperty)
	// SetActivityStreamsAttributedTo sets the "attributedTo" property.
	SetActivityStreamsAttributedTo(i ActivityStreamsAttributedToProperty)
	// SetActivityStreamsAudience sets the "audience" property.
	SetActivityStreamsAudience(i ActivityStreamsAudienceProperty)
	// SetActivityStreamsBcc sets the "bcc" property.
	SetActivityStreamsBcc(i ActivityStreamsBccProperty)
	// SetActivityStreamsBto sets the "bto" property.
	SetActivityStreamsBto(i ActivityStreamsBtoProperty)
	// SetActivityStreamsCc sets the "cc" property.
	SetActivityStreamsCc(i ActivityStreamsCcProperty)
	// SetActivityStreamsContent sets the "content" property.
	SetActivityStreamsContent(i ActivityStreamsContentProperty)
	// SetActivityStreamsContext sets the "context" property.
	SetActivityStreamsContext(i ActivityStreamsContextProperty)
	// SetActivityStreamsDuration sets the "duration" property.
	SetActivityStreamsDuration(i ActivityStreamsDurationProperty)
	// SetActivityStreamsEndTime sets the "endTime" property.
	SetActivityStreamsEndTime(i ActivityStreamsEndTimeProperty)
	// SetActivityStreamsGenerator sets the "generator" property.
	SetActivityStreamsGenerator(i ActivityStreamsGeneratorProperty)
	// SetActivityStreamsIcon sets the "icon" property.
	SetActivityStreamsIcon(i ActivityStreamsIconProperty)
	// SetActivityStreamsImage sets the "image" property.
	SetActivityStreamsImage(i ActivityStreamsImageProperty)
	// SetActivityStreamsInReplyTo sets the "inReplyTo" property.
	SetActivityStreamsInReplyTo(i ActivityStreamsInReplyToProperty)
	// SetActivityStreamsLatitude sets the "latitude" property.
	SetActivityStreamsLatitude(i ActivityStreamsLatitudeProperty)
	// SetActivityStreamsLikes sets the "likes" property.
	SetActivityStreamsLikes(i ActivityStreamsLikesProperty)
	// SetActivityStreamsLocation sets the "location" property.
	SetActivityStreamsLocation(i ActivityStreamsLocationProperty)
	// SetActivityStreamsLongitude sets the "longitude" property.
	SetActivityStreamsLongitude(i ActivityStreamsLongitudeProperty)
	// SetActivityStreamsMediaType sets the "mediaType" property.
	SetActivityStreamsMediaType(i ActivityStreamsMediaTypeProperty)
	// SetActivityStreamsName sets the "name" property.
	SetActivityStreamsName(i ActivityStreamsNameProperty)
	// SetActivityStreamsObject sets the "object" property.
	SetActivityStreamsObject(i ActivityStreamsObjectProperty)
	// SetActivityStreamsPreview sets the "preview" property.
	SetActivityStreamsPreview(i ActivityStreamsPreviewProperty)
	// SetActivityStreamsPublished sets the "published" property.
	SetActivityStreamsPublished(i ActivityStreamsPublishedProperty)
	// SetActivityStreamsRadius sets the "radius" property.
	SetActivityStreamsRadius(i ActivityStreamsRadiusProperty)
	// SetActivityStreamsReplies sets the "replies" property.
	SetActivityStreamsReplies(i ActivityStreamsRepliesProperty)
	// SetActivityStreamsShares sets the "shares" property.
	SetActivityStreamsShares(i ActivityStreamsSharesProperty)
	// SetActivityStreamsSource sets the "source" property.
	SetActivityStreamsSource(i ActivityStreamsSourceProperty)
	// SetActivityStreamsStartTime sets the "startTime" property.
	SetActivityStreamsStartTime(i ActivityStreamsStartTimeProperty)
	// SetActivityStreamsSummary sets the "summary" property.
	SetActivityStreamsSummary(i ActivityStreamsSummaryProperty)
	// SetActivityStreamsTag sets the "tag" property.
	SetActivityStreamsTag(i ActivityStreamsTagProperty)
	// SetActivityStreamsTo sets the "to" property.
	SetActivityStreamsTo(i ActivityStreamsToProperty)
	// SetActivityStreamsUnits sets the "units" property.
	SetActivityStreamsUnits(i ActivityStreamsUnitsProperty)
	// SetActivityStreamsUpdated sets the "updated" property.
	SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
	// SetActivityStreamsUrl sets the "url" property.
	SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
	// SetForgeFedTeam sets the "team" property.
	SetForgeFedTeam(i ForgeFedTeamProperty)
	// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
	SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
	// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
	SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
	// SetJSONLDId sets the "id" property.
	SetJSONLDId(i JSONLDIdProperty)
	// SetJSONLDType sets the "type" property.
	SetJSONLDType(i JSONLDTypeProperty)
	// VocabularyURI returns the vocabulary's URI as a string.
	VocabularyURI() string
}

Represents a logical or physical location. See 5.3 Representing Places for additional information.

Example 56 (https://www.w3.org/TR/activitystreams-vocabulary/#ex57-jsonld):

{
  "name": "Work",
  "type": "Place"
}

Example 57 (https://www.w3.org/TR/activitystreams-vocabulary/#ex58-jsonld):

{
  "latitude": 36.75,
  "longitude": 119.7667,
  "name": "Fresno Area",
  "radius": 15,
  "type": "Place",
  "units": "miles"
}

type ActivityStreamsPreferredUsernameProperty

type ActivityStreamsPreferredUsernameProperty interface {
	// Clear ensures no value and no language map for this property is set.
	// Calling HasAny or any of the 'Is' methods afterwards will return
	// false.
	Clear()
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return an arbitrary value.
	GetIRI() *url.URL
	// GetLanguage returns the value for the specified BCP47 language code, or
	// an empty string if it is either not a language map or no value is
	// present.
	GetLanguage(bcp47 string) string
	// GetRDFLangString returns the value of this property. When
	// IsRDFLangString returns false, GetRDFLangString will return an
	// arbitrary value.
	GetRDFLangString() map[string]string
	// GetXMLSchemaString returns the value of this property. When
	// IsXMLSchemaString returns false, GetXMLSchemaString will return an
	// arbitrary value.
	GetXMLSchemaString() string
	// HasAny returns true if any of the values are set, except for the
	// natural language map. When true, the specific has, getter, and
	// setter methods may be used to determine what kind of value there is
	// to access and set this property. To determine if the property was
	// set as a natural language map, use the IsRDFLangString method
	// instead.
	HasAny() bool
	// HasLanguage returns true if the natural language map has an entry for
	// the specified BCP47 language code.
	HasLanguage(bcp47 string) bool
	// IsIRI returns true if this property is an IRI. When true, use GetIRI
	// and SetIRI to access and set this property
	IsIRI() bool
	// IsRDFLangString returns true if this property has a type of
	// "langString". When true, use the GetRDFLangString and
	// SetRDFLangString methods to access and set this property.. To
	// determine if the property was set as a natural language map, use
	// the IsRDFLangString method instead.
	IsRDFLangString() bool
	// IsXMLSchemaString returns true if this property has a type of "string".
	// When true, use the GetXMLSchemaString and SetXMLSchemaString
	// methods to access and set this property.. To determine if the
	// property was set as a natural language map, use the IsRDFLangString
	// method instead.
	IsXMLSchemaString() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsPreferredUsernameProperty) bool
	// Name returns the name of this property: "preferredUsername".
	Name() string
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// SetIRI sets the value of this property. Calling IsIRI afterwards
	// returns true.
	SetIRI(v *url.URL)
	// SetLanguage sets the value for the specified BCP47 language code.
	SetLanguage(bcp47, value string)
	// SetRDFLangString sets the value of this property and clears the natural
	// language map. Calling IsRDFLangString afterwards will return true.
	// Calling IsRDFLangString afterwards returns false.
	SetRDFLangString(v map[string]string)
	// SetXMLSchemaString sets the value of this property and clears the
	// natural language map. Calling IsXMLSchemaString afterwards will
	// return true. Calling IsRDFLangString afterwards returns false.
	SetXMLSchemaString(v string)
}

A short username which may be used to refer to the actor, with no uniqueness guarantees

type ActivityStreamsPrevProperty

type ActivityStreamsPrevProperty interface {
	// Clear ensures no value of this property is set. Calling HasAny or any
	// of the 'Is' methods afterwards will return false.
	Clear()
	// GetActivityStreamsCollectionPage returns the value of this property.
	// When IsActivityStreamsCollectionPage returns false,
	// GetActivityStreamsCollectionPage will return an arbitrary value.
	GetActivityStreamsCollectionPage() ActivityStreamsCollectionPage
	// GetActivityStreamsLink returns the value of this property. When
	// IsActivityStreamsLink returns false, GetActivityStreamsLink will
	// return an arbitrary value.
	GetActivityStreamsLink() ActivityStreamsLink
	// GetActivityStreamsMention returns the value of this property. When
	// IsActivityStreamsMention returns false, GetActivityStreamsMention
	// will return an arbitrary value.
	GetActivityStreamsMention() ActivityStreamsMention
	// GetActivityStreamsOrderedCollectionPage returns the value of this
	// property. When IsActivityStreamsOrderedCollectionPage returns
	// false, GetActivityStreamsOrderedCollectionPage will return an
	// arbitrary value.
	GetActivityStreamsOrderedCollectionPage() ActivityStreamsOrderedCollectionPage
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return an arbitrary value.
	GetIRI() *url.URL
	// GetType returns the value in this property as a Type. Returns nil if
	// the value is not an ActivityStreams type, such as an IRI or another
	// value.
	GetType() Type
	// HasAny returns true if any of the different values is set.
	HasAny() bool
	// IsActivityStreamsCollectionPage returns true if this property has a
	// type of "CollectionPage". When true, use the
	// GetActivityStreamsCollectionPage and
	// SetActivityStreamsCollectionPage methods to access and set this
	// property.
	IsActivityStreamsCollectionPage() bool
	// IsActivityStreamsLink returns true if this property has a type of
	// "Link". When true, use the GetActivityStreamsLink and
	// SetActivityStreamsLink methods to access and set this property.
	IsActivityStreamsLink() bool
	// IsActivityStreamsMention returns true if this property has a type of
	// "Mention". When true, use the GetActivityStreamsMention and
	// SetActivityStreamsMention methods to access and set this property.
	IsActivityStreamsMention() bool
	// IsActivityStreamsOrderedCollectionPage returns true if this property
	// has a type of "OrderedCollectionPage". When true, use the
	// GetActivityStreamsOrderedCollectionPage and
	// SetActivityStreamsOrderedCollectionPage methods to access and set
	// this property.
	IsActivityStreamsOrderedCollectionPage() bool
	// IsIRI returns true if this property is an IRI. When true, use GetIRI
	// and SetIRI to access and set this property
	IsIRI() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsPrevProperty) bool
	// Name returns the name of this property: "prev".
	Name() string
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// SetActivityStreamsCollectionPage sets the value of this property.
	// Calling IsActivityStreamsCollectionPage afterwards returns true.
	SetActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// SetActivityStreamsLink sets the value of this property. Calling
	// IsActivityStreamsLink afterwards returns true.
	SetActivityStreamsLink(v ActivityStreamsLink)
	// SetActivityStreamsMention sets the value of this property. Calling
	// IsActivityStreamsMention afterwards returns true.
	SetActivityStreamsMention(v ActivityStreamsMention)
	// SetActivityStreamsOrderedCollectionPage sets the value of this
	// property. Calling IsActivityStreamsOrderedCollectionPage afterwards
	// returns true.
	SetActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// SetIRI sets the value of this property. Calling IsIRI afterwards
	// returns true.
	SetIRI(v *url.URL)
	// SetType attempts to set the property for the arbitrary type. Returns an
	// error if it is not a valid type to set on this property.
	SetType(t Type) error
}

In a paged Collection, identifies the previous page of items.

Example 100 (https://www.w3.org/TR/activitystreams-vocabulary/#ex104-jsonld):

{
  "items": [
    "http://example.org/posts/1",
    "http://example.org/posts/2",
    "http://example.org/posts/3"
  ],
  "prev": "http://example.org/collection?page=1",
  "summary": "Page 1 of Sally's blog posts",
  "type": "CollectionPage"
}

Example 101 (https://www.w3.org/TR/activitystreams-vocabulary/#ex105-jsonld):

{
  "items": [
    "http://example.org/posts/1",
    "http://example.org/posts/2",
    "http://example.org/posts/3"
  ],
  "prev": {
    "name": "Previous Page",
    "type": "owl:Class",
    "url": "http://example.org/collection?page=1"
  },
  "summary": "Page 1 of Sally's blog posts",
  "type": "CollectionPage"
}

type ActivityStreamsPreviewProperty

type ActivityStreamsPreviewProperty interface {
	// AppendActivityStreamsAccept appends a Accept value to the back of a
	// list of the property "preview". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsAccept(v ActivityStreamsAccept)
	// AppendActivityStreamsActivity appends a Activity value to the back of a
	// list of the property "preview". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsActivity(v ActivityStreamsActivity)
	// AppendActivityStreamsAdd appends a Add value to the back of a list of
	// the property "preview". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsAdd(v ActivityStreamsAdd)
	// AppendActivityStreamsAnnounce appends a Announce value to the back of a
	// list of the property "preview". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// AppendActivityStreamsApplication appends a Application value to the
	// back of a list of the property "preview". Invalidates iterators
	// that are traversing using Prev.
	AppendActivityStreamsApplication(v ActivityStreamsApplication)
	// AppendActivityStreamsArrive appends a Arrive value to the back of a
	// list of the property "preview". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsArrive(v ActivityStreamsArrive)
	// AppendActivityStreamsArticle appends a Article value to the back of a
	// list of the property "preview". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsArticle(v ActivityStreamsArticle)
	// AppendActivityStreamsAudio appends a Audio value to the back of a list
	// of the property "preview". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsAudio(v ActivityStreamsAudio)
	// AppendActivityStreamsBlock appends a Block value to the back of a list
	// of the property "preview". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsBlock(v ActivityStreamsBlock)
	// AppendActivityStreamsCollection appends a Collection value to the back
	// of a list of the property "preview". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsCollection(v ActivityStreamsCollection)
	// AppendActivityStreamsCollectionPage appends a CollectionPage value to
	// the back of a list of the property "preview". Invalidates iterators
	// that are traversing using Prev.
	AppendActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// AppendActivityStreamsCreate appends a Create value to the back of a
	// list of the property "preview". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsCreate(v ActivityStreamsCreate)
	// AppendActivityStreamsDelete appends a Delete value to the back of a
	// list of the property "preview". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDelete(v ActivityStreamsDelete)
	// AppendActivityStreamsDislike appends a Dislike value to the back of a
	// list of the property "preview". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDislike(v ActivityStreamsDislike)
	// AppendActivityStreamsDocument appends a Document value to the back of a
	// list of the property "preview". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDocument(v ActivityStreamsDocument)
	// AppendActivityStreamsEvent appends a Event value to the back of a list
	// of the property "preview". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsEvent(v ActivityStreamsEvent)
	// AppendActivityStreamsFlag appends a Flag value to the back of a list of
	// the property "preview". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsFlag(v ActivityStreamsFlag)
	// AppendActivityStreamsFollow appends a Follow value to the back of a
	// list of the property "preview". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsFollow(v ActivityStreamsFollow)
	// AppendActivityStreamsGroup appends a Group value to the back of a list
	// of the property "preview". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsGroup(v ActivityStreamsGroup)
	// AppendActivityStreamsIgnore appends a Ignore value to the back of a
	// list of the property "preview". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsIgnore(v ActivityStreamsIgnore)
	// AppendActivityStreamsImage appends a Image value to the back of a list
	// of the property "preview". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsImage(v ActivityStreamsImage)
	// AppendActivityStreamsIntransitiveActivity appends a
	// IntransitiveActivity value to the back of a list of the property
	// "preview". Invalidates iterators that are traversing using Prev.
	AppendActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// AppendActivityStreamsInvite appends a Invite value to the back of a
	// list of the property "preview". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsInvite(v ActivityStreamsInvite)
	// AppendActivityStreamsJoin appends a Join value to the back of a list of
	// the property "preview". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsJoin(v ActivityStreamsJoin)
	// AppendActivityStreamsLeave appends a Leave value to the back of a list
	// of the property "preview". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsLeave(v ActivityStreamsLeave)
	// AppendActivityStreamsLike appends a Like value to the back of a list of
	// the property "preview". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsLike(v ActivityStreamsLike)
	// AppendActivityStreamsLink appends a Link value to the back of a list of
	// the property "preview". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsLink(v ActivityStreamsLink)
	// AppendActivityStreamsListen appends a Listen value to the back of a
	// list of the property "preview". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsListen(v ActivityStreamsListen)
	// AppendActivityStreamsMention appends a Mention value to the back of a
	// list of the property "preview". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsMention(v ActivityStreamsMention)
	// AppendActivityStreamsMove appends a Move value to the back of a list of
	// the property "preview". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsMove(v ActivityStreamsMove)
	// AppendActivityStreamsNote appends a Note value to the back of a list of
	// the property "preview". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsNote(v ActivityStreamsNote)
	// AppendActivityStreamsObject appends a Object value to the back of a
	// list of the property "preview". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsObject(v ActivityStreamsObject)
	// AppendActivityStreamsOffer appends a Offer value to the back of a list
	// of the property "preview". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsOffer(v ActivityStreamsOffer)
	// AppendActivityStreamsOrderedCollection appends a OrderedCollection
	// value to the back of a list of the property "preview". Invalidates
	// iterators that are traversing using Prev.
	AppendActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// AppendActivityStreamsOrderedCollectionPage appends a
	// OrderedCollectionPage value to the back of a list of the property
	// "preview". Invalidates iterators that are traversing using Prev.
	AppendActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// AppendActivityStreamsOrganization appends a Organization value to the
	// back of a list of the property "preview". Invalidates iterators
	// that are traversing using Prev.
	AppendActivityStreamsOrganization(v ActivityStreamsOrganization)
	// AppendActivityStreamsPage appends a Page value to the back of a list of
	// the property "preview". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsPage(v ActivityStreamsPage)
	// AppendActivityStreamsPerson appends a Person value to the back of a
	// list of the property "preview". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsPerson(v ActivityStreamsPerson)
	// AppendActivityStreamsPlace appends a Place value to the back of a list
	// of the property "preview". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsPlace(v ActivityStreamsPlace)
	// AppendActivityStreamsProfile appends a Profile value to the back of a
	// list of the property "preview". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsProfile(v ActivityStreamsProfile)
	// AppendActivityStreamsQuestion appends a Question value to the back of a
	// list of the property "preview". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsQuestion(v ActivityStreamsQuestion)
	// AppendActivityStreamsRead appends a Read value to the back of a list of
	// the property "preview". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsRead(v ActivityStreamsRead)
	// AppendActivityStreamsReject appends a Reject value to the back of a
	// list of the property "preview". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsReject(v ActivityStreamsReject)
	// AppendActivityStreamsRelationship appends a Relationship value to the
	// back of a list of the property "preview". Invalidates iterators
	// that are traversing using Prev.
	AppendActivityStreamsRelationship(v ActivityStreamsRelationship)
	// AppendActivityStreamsRemove appends a Remove value to the back of a
	// list of the property "preview". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsRemove(v ActivityStreamsRemove)
	// AppendActivityStreamsService appends a Service value to the back of a
	// list of the property "preview". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsService(v ActivityStreamsService)
	// AppendActivityStreamsTentativeAccept appends a TentativeAccept value to
	// the back of a list of the property "preview". Invalidates iterators
	// that are traversing using Prev.
	AppendActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// AppendActivityStreamsTentativeReject appends a TentativeReject value to
	// the back of a list of the property "preview". Invalidates iterators
	// that are traversing using Prev.
	AppendActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// AppendActivityStreamsTombstone appends a Tombstone value to the back of
	// a list of the property "preview". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsTombstone(v ActivityStreamsTombstone)
	// AppendActivityStreamsTravel appends a Travel value to the back of a
	// list of the property "preview". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsTravel(v ActivityStreamsTravel)
	// AppendActivityStreamsUndo appends a Undo value to the back of a list of
	// the property "preview". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsUndo(v ActivityStreamsUndo)
	// AppendActivityStreamsUpdate appends a Update value to the back of a
	// list of the property "preview". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsUpdate(v ActivityStreamsUpdate)
	// AppendActivityStreamsVideo appends a Video value to the back of a list
	// of the property "preview". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsVideo(v ActivityStreamsVideo)
	// AppendActivityStreamsView appends a View value to the back of a list of
	// the property "preview". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsView(v ActivityStreamsView)
	// AppendForgeFedBranch appends a Branch value to the back of a list of
	// the property "preview". Invalidates iterators that are traversing
	// using Prev.
	AppendForgeFedBranch(v ForgeFedBranch)
	// AppendForgeFedCommit appends a Commit value to the back of a list of
	// the property "preview". Invalidates iterators that are traversing
	// using Prev.
	AppendForgeFedCommit(v ForgeFedCommit)
	// AppendForgeFedPush appends a Push value to the back of a list of the
	// property "preview". Invalidates iterators that are traversing using
	// Prev.
	AppendForgeFedPush(v ForgeFedPush)
	// AppendForgeFedRepository appends a Repository value to the back of a
	// list of the property "preview". Invalidates iterators that are
	// traversing using Prev.
	AppendForgeFedRepository(v ForgeFedRepository)
	// AppendForgeFedTicket appends a Ticket value to the back of a list of
	// the property "preview". Invalidates iterators that are traversing
	// using Prev.
	AppendForgeFedTicket(v ForgeFedTicket)
	// AppendForgeFedTicketDependency appends a TicketDependency value to the
	// back of a list of the property "preview". Invalidates iterators
	// that are traversing using Prev.
	AppendForgeFedTicketDependency(v ForgeFedTicketDependency)
	// AppendIRI appends an IRI value to the back of a list of the property
	// "preview"
	AppendIRI(v *url.URL)
	// AppendTootEmoji appends a Emoji value to the back of a list of the
	// property "preview". Invalidates iterators that are traversing using
	// Prev.
	AppendTootEmoji(v TootEmoji)
	// AppendTootIdentityProof appends a IdentityProof value to the back of a
	// list of the property "preview". Invalidates iterators that are
	// traversing using Prev.
	AppendTootIdentityProof(v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "preview". Invalidates iterators that are traversing
	// using Prev. Returns an error if the type is not a valid one to set
	// for this property.
	AppendType(t Type) error
	// At returns the property value for the specified index. Panics if the
	// index is out of bounds.
	At(index int) ActivityStreamsPreviewPropertyIterator
	// Begin returns the first iterator, or nil if empty. Can be used with the
	// iterator's Next method and this property's End method to iterate
	// from front to back through all values.
	Begin() ActivityStreamsPreviewPropertyIterator
	// Empty returns returns true if there are no elements.
	Empty() bool
	// End returns beyond-the-last iterator, which is nil. Can be used with
	// the iterator's Next method and this property's Begin method to
	// iterate from front to back through all values.
	End() ActivityStreamsPreviewPropertyIterator
	// InsertActivityStreamsAccept inserts a Accept value at the specified
	// index for a property "preview". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAccept(idx int, v ActivityStreamsAccept)
	// InsertActivityStreamsActivity inserts a Activity value at the specified
	// index for a property "preview". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsActivity(idx int, v ActivityStreamsActivity)
	// InsertActivityStreamsAdd inserts a Add value at the specified index for
	// a property "preview". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAdd(idx int, v ActivityStreamsAdd)
	// InsertActivityStreamsAnnounce inserts a Announce value at the specified
	// index for a property "preview". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAnnounce(idx int, v ActivityStreamsAnnounce)
	// InsertActivityStreamsApplication inserts a Application value at the
	// specified index for a property "preview". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsApplication(idx int, v ActivityStreamsApplication)
	// InsertActivityStreamsArrive inserts a Arrive value at the specified
	// index for a property "preview". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsArrive(idx int, v ActivityStreamsArrive)
	// InsertActivityStreamsArticle inserts a Article value at the specified
	// index for a property "preview". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsArticle(idx int, v ActivityStreamsArticle)
	// InsertActivityStreamsAudio inserts a Audio value at the specified index
	// for a property "preview". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAudio(idx int, v ActivityStreamsAudio)
	// InsertActivityStreamsBlock inserts a Block value at the specified index
	// for a property "preview". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsBlock(idx int, v ActivityStreamsBlock)
	// InsertActivityStreamsCollection inserts a Collection value at the
	// specified index for a property "preview". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsCollection(idx int, v ActivityStreamsCollection)
	// InsertActivityStreamsCollectionPage inserts a CollectionPage value at
	// the specified index for a property "preview". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsCollectionPage(idx int, v ActivityStreamsCollectionPage)
	// InsertActivityStreamsCreate inserts a Create value at the specified
	// index for a property "preview". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsCreate(idx int, v ActivityStreamsCreate)
	// InsertActivityStreamsDelete inserts a Delete value at the specified
	// index for a property "preview". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDelete(idx int, v ActivityStreamsDelete)
	// InsertActivityStreamsDislike inserts a Dislike value at the specified
	// index for a property "preview". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDislike(idx int, v ActivityStreamsDislike)
	// InsertActivityStreamsDocument inserts a Document value at the specified
	// index for a property "preview". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDocument(idx int, v ActivityStreamsDocument)
	// InsertActivityStreamsEvent inserts a Event value at the specified index
	// for a property "preview". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsEvent(idx int, v ActivityStreamsEvent)
	// InsertActivityStreamsFlag inserts a Flag value at the specified index
	// for a property "preview". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsFlag(idx int, v ActivityStreamsFlag)
	// InsertActivityStreamsFollow inserts a Follow value at the specified
	// index for a property "preview". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsFollow(idx int, v ActivityStreamsFollow)
	// InsertActivityStreamsGroup inserts a Group value at the specified index
	// for a property "preview". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsGroup(idx int, v ActivityStreamsGroup)
	// InsertActivityStreamsIgnore inserts a Ignore value at the specified
	// index for a property "preview". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsIgnore(idx int, v ActivityStreamsIgnore)
	// InsertActivityStreamsImage inserts a Image value at the specified index
	// for a property "preview". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsImage(idx int, v ActivityStreamsImage)
	// InsertActivityStreamsIntransitiveActivity inserts a
	// IntransitiveActivity value at the specified index for a property
	// "preview". Existing elements at that index and higher are shifted
	// back once. Invalidates all iterators.
	InsertActivityStreamsIntransitiveActivity(idx int, v ActivityStreamsIntransitiveActivity)
	// InsertActivityStreamsInvite inserts a Invite value at the specified
	// index for a property "preview". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsInvite(idx int, v ActivityStreamsInvite)
	// InsertActivityStreamsJoin inserts a Join value at the specified index
	// for a property "preview". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsJoin(idx int, v ActivityStreamsJoin)
	// InsertActivityStreamsLeave inserts a Leave value at the specified index
	// for a property "preview". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsLeave(idx int, v ActivityStreamsLeave)
	// InsertActivityStreamsLike inserts a Like value at the specified index
	// for a property "preview". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsLike(idx int, v ActivityStreamsLike)
	// InsertActivityStreamsLink inserts a Link value at the specified index
	// for a property "preview". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsLink(idx int, v ActivityStreamsLink)
	// InsertActivityStreamsListen inserts a Listen value at the specified
	// index for a property "preview". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsListen(idx int, v ActivityStreamsListen)
	// InsertActivityStreamsMention inserts a Mention value at the specified
	// index for a property "preview". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsMention(idx int, v ActivityStreamsMention)
	// InsertActivityStreamsMove inserts a Move value at the specified index
	// for a property "preview". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsMove(idx int, v ActivityStreamsMove)
	// InsertActivityStreamsNote inserts a Note value at the specified index
	// for a property "preview". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsNote(idx int, v ActivityStreamsNote)
	// InsertActivityStreamsObject inserts a Object value at the specified
	// index for a property "preview". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsObject(idx int, v ActivityStreamsObject)
	// InsertActivityStreamsOffer inserts a Offer value at the specified index
	// for a property "preview". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsOffer(idx int, v ActivityStreamsOffer)
	// InsertActivityStreamsOrderedCollection inserts a OrderedCollection
	// value at the specified index for a property "preview". Existing
	// elements at that index and higher are shifted back once.
	// Invalidates all iterators.
	InsertActivityStreamsOrderedCollection(idx int, v ActivityStreamsOrderedCollection)
	// InsertActivityStreamsOrderedCollectionPage inserts a
	// OrderedCollectionPage value at the specified index for a property
	// "preview". Existing elements at that index and higher are shifted
	// back once. Invalidates all iterators.
	InsertActivityStreamsOrderedCollectionPage(idx int, v ActivityStreamsOrderedCollectionPage)
	// InsertActivityStreamsOrganization inserts a Organization value at the
	// specified index for a property "preview". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsOrganization(idx int, v ActivityStreamsOrganization)
	// InsertActivityStreamsPage inserts a Page value at the specified index
	// for a property "preview". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsPage(idx int, v ActivityStreamsPage)
	// InsertActivityStreamsPerson inserts a Person value at the specified
	// index for a property "preview". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsPerson(idx int, v ActivityStreamsPerson)
	// InsertActivityStreamsPlace inserts a Place value at the specified index
	// for a property "preview". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsPlace(idx int, v ActivityStreamsPlace)
	// InsertActivityStreamsProfile inserts a Profile value at the specified
	// index for a property "preview". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsProfile(idx int, v ActivityStreamsProfile)
	// InsertActivityStreamsQuestion inserts a Question value at the specified
	// index for a property "preview". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsQuestion(idx int, v ActivityStreamsQuestion)
	// InsertActivityStreamsRead inserts a Read value at the specified index
	// for a property "preview". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsRead(idx int, v ActivityStreamsRead)
	// InsertActivityStreamsReject inserts a Reject value at the specified
	// index for a property "preview". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsReject(idx int, v ActivityStreamsReject)
	// InsertActivityStreamsRelationship inserts a Relationship value at the
	// specified index for a property "preview". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsRelationship(idx int, v ActivityStreamsRelationship)
	// InsertActivityStreamsRemove inserts a Remove value at the specified
	// index for a property "preview". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsRemove(idx int, v ActivityStreamsRemove)
	// InsertActivityStreamsService inserts a Service value at the specified
	// index for a property "preview". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsService(idx int, v ActivityStreamsService)
	// InsertActivityStreamsTentativeAccept inserts a TentativeAccept value at
	// the specified index for a property "preview". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsTentativeAccept(idx int, v ActivityStreamsTentativeAccept)
	// InsertActivityStreamsTentativeReject inserts a TentativeReject value at
	// the specified index for a property "preview". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsTentativeReject(idx int, v ActivityStreamsTentativeReject)
	// InsertActivityStreamsTombstone inserts a Tombstone value at the
	// specified index for a property "preview". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsTombstone(idx int, v ActivityStreamsTombstone)
	// InsertActivityStreamsTravel inserts a Travel value at the specified
	// index for a property "preview". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsTravel(idx int, v ActivityStreamsTravel)
	// InsertActivityStreamsUndo inserts a Undo value at the specified index
	// for a property "preview". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsUndo(idx int, v ActivityStreamsUndo)
	// InsertActivityStreamsUpdate inserts a Update value at the specified
	// index for a property "preview". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsUpdate(idx int, v ActivityStreamsUpdate)
	// InsertActivityStreamsVideo inserts a Video value at the specified index
	// for a property "preview". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsVideo(idx int, v ActivityStreamsVideo)
	// InsertActivityStreamsView inserts a View value at the specified index
	// for a property "preview". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsView(idx int, v ActivityStreamsView)
	// InsertForgeFedBranch inserts a Branch value at the specified index for
	// a property "preview". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertForgeFedBranch(idx int, v ForgeFedBranch)
	// InsertForgeFedCommit inserts a Commit value at the specified index for
	// a property "preview". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertForgeFedCommit(idx int, v ForgeFedCommit)
	// InsertForgeFedPush inserts a Push value at the specified index for a
	// property "preview". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertForgeFedPush(idx int, v ForgeFedPush)
	// InsertForgeFedRepository inserts a Repository value at the specified
	// index for a property "preview". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertForgeFedRepository(idx int, v ForgeFedRepository)
	// InsertForgeFedTicket inserts a Ticket value at the specified index for
	// a property "preview". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertForgeFedTicket(idx int, v ForgeFedTicket)
	// InsertForgeFedTicketDependency inserts a TicketDependency value at the
	// specified index for a property "preview". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
	// Insert inserts an IRI value at the specified index for a property
	// "preview". Existing elements at that index and higher are shifted
	// back once. Invalidates all iterators.
	InsertIRI(idx int, v *url.URL)
	// InsertTootEmoji inserts a Emoji value at the specified index for a
	// property "preview". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertTootEmoji(idx int, v TootEmoji)
	// InsertTootIdentityProof inserts a IdentityProof value at the specified
	// index for a property "preview". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertTootIdentityProof(idx int, v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "preview". Invalidates all iterators. Returns an error
	// if the type is not a valid one to set for this property.
	InsertType(idx int, t Type) error
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API method specifically needed only for alternate
	// implementations for go-fed. Applications should not use this
	// method. Panics if the index is out of bounds.
	KindIndex(idx int) int
	// Len returns the number of values that exist for the "preview" property.
	Len() (length int)
	// Less computes whether another property is less than this one. Mixing
	// types results in a consistent but arbitrary ordering
	Less(i, j int) bool
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsPreviewProperty) bool
	// Name returns the name of this property ("preview") with any alias.
	Name() string
	// PrependActivityStreamsAccept prepends a Accept value to the front of a
	// list of the property "preview". Invalidates all iterators.
	PrependActivityStreamsAccept(v ActivityStreamsAccept)
	// PrependActivityStreamsActivity prepends a Activity value to the front
	// of a list of the property "preview". Invalidates all iterators.
	PrependActivityStreamsActivity(v ActivityStreamsActivity)
	// PrependActivityStreamsAdd prepends a Add value to the front of a list
	// of the property "preview". Invalidates all iterators.
	PrependActivityStreamsAdd(v ActivityStreamsAdd)
	// PrependActivityStreamsAnnounce prepends a Announce value to the front
	// of a list of the property "preview". Invalidates all iterators.
	PrependActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// PrependActivityStreamsApplication prepends a Application value to the
	// front of a list of the property "preview". Invalidates all
	// iterators.
	PrependActivityStreamsApplication(v ActivityStreamsApplication)
	// PrependActivityStreamsArrive prepends a Arrive value to the front of a
	// list of the property "preview". Invalidates all iterators.
	PrependActivityStreamsArrive(v ActivityStreamsArrive)
	// PrependActivityStreamsArticle prepends a Article value to the front of
	// a list of the property "preview". Invalidates all iterators.
	PrependActivityStreamsArticle(v ActivityStreamsArticle)
	// PrependActivityStreamsAudio prepends a Audio value to the front of a
	// list of the property "preview". Invalidates all iterators.
	PrependActivityStreamsAudio(v ActivityStreamsAudio)
	// PrependActivityStreamsBlock prepends a Block value to the front of a
	// list of the property "preview". Invalidates all iterators.
	PrependActivityStreamsBlock(v ActivityStreamsBlock)
	// PrependActivityStreamsCollection prepends a Collection value to the
	// front of a list of the property "preview". Invalidates all
	// iterators.
	PrependActivityStreamsCollection(v ActivityStreamsCollection)
	// PrependActivityStreamsCollectionPage prepends a CollectionPage value to
	// the front of a list of the property "preview". Invalidates all
	// iterators.
	PrependActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// PrependActivityStreamsCreate prepends a Create value to the front of a
	// list of the property "preview". Invalidates all iterators.
	PrependActivityStreamsCreate(v ActivityStreamsCreate)
	// PrependActivityStreamsDelete prepends a Delete value to the front of a
	// list of the property "preview". Invalidates all iterators.
	PrependActivityStreamsDelete(v ActivityStreamsDelete)
	// PrependActivityStreamsDislike prepends a Dislike value to the front of
	// a list of the property "preview". Invalidates all iterators.
	PrependActivityStreamsDislike(v ActivityStreamsDislike)
	// PrependActivityStreamsDocument prepends a Document value to the front
	// of a list of the property "preview". Invalidates all iterators.
	PrependActivityStreamsDocument(v ActivityStreamsDocument)
	// PrependActivityStreamsEvent prepends a Event value to the front of a
	// list of the property "preview". Invalidates all iterators.
	PrependActivityStreamsEvent(v ActivityStreamsEvent)
	// PrependActivityStreamsFlag prepends a Flag value to the front of a list
	// of the property "preview". Invalidates all iterators.
	PrependActivityStreamsFlag(v ActivityStreamsFlag)
	// PrependActivityStreamsFollow prepends a Follow value to the front of a
	// list of the property "preview". Invalidates all iterators.
	PrependActivityStreamsFollow(v ActivityStreamsFollow)
	// PrependActivityStreamsGroup prepends a Group value to the front of a
	// list of the property "preview". Invalidates all iterators.
	PrependActivityStreamsGroup(v ActivityStreamsGroup)
	// PrependActivityStreamsIgnore prepends a Ignore value to the front of a
	// list of the property "preview". Invalidates all iterators.
	PrependActivityStreamsIgnore(v ActivityStreamsIgnore)
	// PrependActivityStreamsImage prepends a Image value to the front of a
	// list of the property "preview". Invalidates all iterators.
	PrependActivityStreamsImage(v ActivityStreamsImage)
	// PrependActivityStreamsIntransitiveActivity prepends a
	// IntransitiveActivity value to the front of a list of the property
	// "preview". Invalidates all iterators.
	PrependActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// PrependActivityStreamsInvite prepends a Invite value to the front of a
	// list of the property "preview". Invalidates all iterators.
	PrependActivityStreamsInvite(v ActivityStreamsInvite)
	// PrependActivityStreamsJoin prepends a Join value to the front of a list
	// of the property "preview". Invalidates all iterators.
	PrependActivityStreamsJoin(v ActivityStreamsJoin)
	// PrependActivityStreamsLeave prepends a Leave value to the front of a
	// list of the property "preview". Invalidates all iterators.
	PrependActivityStreamsLeave(v ActivityStreamsLeave)
	// PrependActivityStreamsLike prepends a Like value to the front of a list
	// of the property "preview". Invalidates all iterators.
	PrependActivityStreamsLike(v ActivityStreamsLike)
	// PrependActivityStreamsLink prepends a Link value to the front of a list
	// of the property "preview". Invalidates all iterators.
	PrependActivityStreamsLink(v ActivityStreamsLink)
	// PrependActivityStreamsListen prepends a Listen value to the front of a
	// list of the property "preview". Invalidates all iterators.
	PrependActivityStreamsListen(v ActivityStreamsListen)
	// PrependActivityStreamsMention prepends a Mention value to the front of
	// a list of the property "preview". Invalidates all iterators.
	PrependActivityStreamsMention(v ActivityStreamsMention)
	// PrependActivityStreamsMove prepends a Move value to the front of a list
	// of the property "preview". Invalidates all iterators.
	PrependActivityStreamsMove(v ActivityStreamsMove)
	// PrependActivityStreamsNote prepends a Note value to the front of a list
	// of the property "preview". Invalidates all iterators.
	PrependActivityStreamsNote(v ActivityStreamsNote)
	// PrependActivityStreamsObject prepends a Object value to the front of a
	// list of the property "preview". Invalidates all iterators.
	PrependActivityStreamsObject(v ActivityStreamsObject)
	// PrependActivityStreamsOffer prepends a Offer value to the front of a
	// list of the property "preview". Invalidates all iterators.
	PrependActivityStreamsOffer(v ActivityStreamsOffer)
	// PrependActivityStreamsOrderedCollection prepends a OrderedCollection
	// value to the front of a list of the property "preview". Invalidates
	// all iterators.
	PrependActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// PrependActivityStreamsOrderedCollectionPage prepends a
	// OrderedCollectionPage value to the front of a list of the property
	// "preview". Invalidates all iterators.
	PrependActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// PrependActivityStreamsOrganization prepends a Organization value to the
	// front of a list of the property "preview". Invalidates all
	// iterators.
	PrependActivityStreamsOrganization(v ActivityStreamsOrganization)
	// PrependActivityStreamsPage prepends a Page value to the front of a list
	// of the property "preview". Invalidates all iterators.
	PrependActivityStreamsPage(v ActivityStreamsPage)
	// PrependActivityStreamsPerson prepends a Person value to the front of a
	// list of the property "preview". Invalidates all iterators.
	PrependActivityStreamsPerson(v ActivityStreamsPerson)
	// PrependActivityStreamsPlace prepends a Place value to the front of a
	// list of the property "preview". Invalidates all iterators.
	PrependActivityStreamsPlace(v ActivityStreamsPlace)
	// PrependActivityStreamsProfile prepends a Profile value to the front of
	// a list of the property "preview". Invalidates all iterators.
	PrependActivityStreamsProfile(v ActivityStreamsProfile)
	// PrependActivityStreamsQuestion prepends a Question value to the front
	// of a list of the property "preview". Invalidates all iterators.
	PrependActivityStreamsQuestion(v ActivityStreamsQuestion)
	// PrependActivityStreamsRead prepends a Read value to the front of a list
	// of the property "preview". Invalidates all iterators.
	PrependActivityStreamsRead(v ActivityStreamsRead)
	// PrependActivityStreamsReject prepends a Reject value to the front of a
	// list of the property "preview". Invalidates all iterators.
	PrependActivityStreamsReject(v ActivityStreamsReject)
	// PrependActivityStreamsRelationship prepends a Relationship value to the
	// front of a list of the property "preview". Invalidates all
	// iterators.
	PrependActivityStreamsRelationship(v ActivityStreamsRelationship)
	// PrependActivityStreamsRemove prepends a Remove value to the front of a
	// list of the property "preview". Invalidates all iterators.
	PrependActivityStreamsRemove(v ActivityStreamsRemove)
	// PrependActivityStreamsService prepends a Service value to the front of
	// a list of the property "preview". Invalidates all iterators.
	PrependActivityStreamsService(v ActivityStreamsService)
	// PrependActivityStreamsTentativeAccept prepends a TentativeAccept value
	// to the front of a list of the property "preview". Invalidates all
	// iterators.
	PrependActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// PrependActivityStreamsTentativeReject prepends a TentativeReject value
	// to the front of a list of the property "preview". Invalidates all
	// iterators.
	PrependActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// PrependActivityStreamsTombstone prepends a Tombstone value to the front
	// of a list of the property "preview". Invalidates all iterators.
	PrependActivityStreamsTombstone(v ActivityStreamsTombstone)
	// PrependActivityStreamsTravel prepends a Travel value to the front of a
	// list of the property "preview". Invalidates all iterators.
	PrependActivityStreamsTravel(v ActivityStreamsTravel)
	// PrependActivityStreamsUndo prepends a Undo value to the front of a list
	// of the property "preview". Invalidates all iterators.
	PrependActivityStreamsUndo(v ActivityStreamsUndo)
	// PrependActivityStreamsUpdate prepends a Update value to the front of a
	// list of the property "preview". Invalidates all iterators.
	PrependActivityStreamsUpdate(v ActivityStreamsUpdate)
	// PrependActivityStreamsVideo prepends a Video value to the front of a
	// list of the property "preview". Invalidates all iterators.
	PrependActivityStreamsVideo(v ActivityStreamsVideo)
	// PrependActivityStreamsView prepends a View value to the front of a list
	// of the property "preview". Invalidates all iterators.
	PrependActivityStreamsView(v ActivityStreamsView)
	// PrependForgeFedBranch prepends a Branch value to the front of a list of
	// the property "preview". Invalidates all iterators.
	PrependForgeFedBranch(v ForgeFedBranch)
	// PrependForgeFedCommit prepends a Commit value to the front of a list of
	// the property "preview". Invalidates all iterators.
	PrependForgeFedCommit(v ForgeFedCommit)
	// PrependForgeFedPush prepends a Push value to the front of a list of the
	// property "preview". Invalidates all iterators.
	PrependForgeFedPush(v ForgeFedPush)
	// PrependForgeFedRepository prepends a Repository value to the front of a
	// list of the property "preview". Invalidates all iterators.
	PrependForgeFedRepository(v ForgeFedRepository)
	// PrependForgeFedTicket prepends a Ticket value to the front of a list of
	// the property "preview". Invalidates all iterators.
	PrependForgeFedTicket(v ForgeFedTicket)
	// PrependForgeFedTicketDependency prepends a TicketDependency value to
	// the front of a list of the property "preview". Invalidates all
	// iterators.
	PrependForgeFedTicketDependency(v ForgeFedTicketDependency)
	// PrependIRI prepends an IRI value to the front of a list of the property
	// "preview".
	PrependIRI(v *url.URL)
	// PrependTootEmoji prepends a Emoji value to the front of a list of the
	// property "preview". Invalidates all iterators.
	PrependTootEmoji(v TootEmoji)
	// PrependTootIdentityProof prepends a IdentityProof value to the front of
	// a list of the property "preview". Invalidates all iterators.
	PrependTootIdentityProof(v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "preview". Invalidates all iterators. Returns an error
	// if the type is not a valid one to set for this property.
	PrependType(t Type) error
	// Remove deletes an element at the specified index from a list of the
	// property "preview", regardless of its type. Panics if the index is
	// out of bounds. Invalidates all iterators.
	Remove(idx int)
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// SetActivityStreamsAccept sets a Accept value to be at the specified
	// index for the property "preview". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsAccept(idx int, v ActivityStreamsAccept)
	// SetActivityStreamsActivity sets a Activity value to be at the specified
	// index for the property "preview". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsActivity(idx int, v ActivityStreamsActivity)
	// SetActivityStreamsAdd sets a Add value to be at the specified index for
	// the property "preview". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsAdd(idx int, v ActivityStreamsAdd)
	// SetActivityStreamsAnnounce sets a Announce value to be at the specified
	// index for the property "preview". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsAnnounce(idx int, v ActivityStreamsAnnounce)
	// SetActivityStreamsApplication sets a Application value to be at the
	// specified index for the property "preview". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsApplication(idx int, v ActivityStreamsApplication)
	// SetActivityStreamsArrive sets a Arrive value to be at the specified
	// index for the property "preview". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsArrive(idx int, v ActivityStreamsArrive)
	// SetActivityStreamsArticle sets a Article value to be at the specified
	// index for the property "preview". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsArticle(idx int, v ActivityStreamsArticle)
	// SetActivityStreamsAudio sets a Audio value to be at the specified index
	// for the property "preview". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsAudio(idx int, v ActivityStreamsAudio)
	// SetActivityStreamsBlock sets a Block value to be at the specified index
	// for the property "preview". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsBlock(idx int, v ActivityStreamsBlock)
	// SetActivityStreamsCollection sets a Collection value to be at the
	// specified index for the property "preview". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsCollection(idx int, v ActivityStreamsCollection)
	// SetActivityStreamsCollectionPage sets a CollectionPage value to be at
	// the specified index for the property "preview". Panics if the index
	// is out of bounds. Invalidates all iterators.
	SetActivityStreamsCollectionPage(idx int, v ActivityStreamsCollectionPage)
	// SetActivityStreamsCreate sets a Create value to be at the specified
	// index for the property "preview". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsCreate(idx int, v ActivityStreamsCreate)
	// SetActivityStreamsDelete sets a Delete value to be at the specified
	// index for the property "preview". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsDelete(idx int, v ActivityStreamsDelete)
	// SetActivityStreamsDislike sets a Dislike value to be at the specified
	// index for the property "preview". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsDislike(idx int, v ActivityStreamsDislike)
	// SetActivityStreamsDocument sets a Document value to be at the specified
	// index for the property "preview". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsDocument(idx int, v ActivityStreamsDocument)
	// SetActivityStreamsEvent sets a Event value to be at the specified index
	// for the property "preview". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsEvent(idx int, v ActivityStreamsEvent)
	// SetActivityStreamsFlag sets a Flag value to be at the specified index
	// for the property "preview". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsFlag(idx int, v ActivityStreamsFlag)
	// SetActivityStreamsFollow sets a Follow value to be at the specified
	// index for the property "preview". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsFollow(idx int, v ActivityStreamsFollow)
	// SetActivityStreamsGroup sets a Group value to be at the specified index
	// for the property "preview". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsGroup(idx int, v ActivityStreamsGroup)
	// SetActivityStreamsIgnore sets a Ignore value to be at the specified
	// index for the property "preview". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsIgnore(idx int, v ActivityStreamsIgnore)
	// SetActivityStreamsImage sets a Image value to be at the specified index
	// for the property "preview". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsImage(idx int, v ActivityStreamsImage)
	// SetActivityStreamsIntransitiveActivity sets a IntransitiveActivity
	// value to be at the specified index for the property "preview".
	// Panics if the index is out of bounds. Invalidates all iterators.
	SetActivityStreamsIntransitiveActivity(idx int, v ActivityStreamsIntransitiveActivity)
	// SetActivityStreamsInvite sets a Invite value to be at the specified
	// index for the property "preview". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsInvite(idx int, v ActivityStreamsInvite)
	// SetActivityStreamsJoin sets a Join value to be at the specified index
	// for the property "preview". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsJoin(idx int, v ActivityStreamsJoin)
	// SetActivityStreamsLeave sets a Leave value to be at the specified index
	// for the property "preview". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsLeave(idx int, v ActivityStreamsLeave)
	// SetActivityStreamsLike sets a Like value to be at the specified index
	// for the property "preview". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsLike(idx int, v ActivityStreamsLike)
	// SetActivityStreamsLink sets a Link value to be at the specified index
	// for the property "preview". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsLink(idx int, v ActivityStreamsLink)
	// SetActivityStreamsListen sets a Listen value to be at the specified
	// index for the property "preview". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsListen(idx int, v ActivityStreamsListen)
	// SetActivityStreamsMention sets a Mention value to be at the specified
	// index for the property "preview". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsMention(idx int, v ActivityStreamsMention)
	// SetActivityStreamsMove sets a Move value to be at the specified index
	// for the property "preview". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsMove(idx int, v ActivityStreamsMove)
	// SetActivityStreamsNote sets a Note value to be at the specified index
	// for the property "preview". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsNote(idx int, v ActivityStreamsNote)
	// SetActivityStreamsObject sets a Object value to be at the specified
	// index for the property "preview". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsObject(idx int, v ActivityStreamsObject)
	// SetActivityStreamsOffer sets a Offer value to be at the specified index
	// for the property "preview". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsOffer(idx int, v ActivityStreamsOffer)
	// SetActivityStreamsOrderedCollection sets a OrderedCollection value to
	// be at the specified index for the property "preview". Panics if the
	// index is out of bounds. Invalidates all iterators.
	SetActivityStreamsOrderedCollection(idx int, v ActivityStreamsOrderedCollection)
	// SetActivityStreamsOrderedCollectionPage sets a OrderedCollectionPage
	// value to be at the specified index for the property "preview".
	// Panics if the index is out of bounds. Invalidates all iterators.
	SetActivityStreamsOrderedCollectionPage(idx int, v ActivityStreamsOrderedCollectionPage)
	// SetActivityStreamsOrganization sets a Organization value to be at the
	// specified index for the property "preview". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsOrganization(idx int, v ActivityStreamsOrganization)
	// SetActivityStreamsPage sets a Page value to be at the specified index
	// for the property "preview". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsPage(idx int, v ActivityStreamsPage)
	// SetActivityStreamsPerson sets a Person value to be at the specified
	// index for the property "preview". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsPerson(idx int, v ActivityStreamsPerson)
	// SetActivityStreamsPlace sets a Place value to be at the specified index
	// for the property "preview". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsPlace(idx int, v ActivityStreamsPlace)
	// SetActivityStreamsProfile sets a Profile value to be at the specified
	// index for the property "preview". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsProfile(idx int, v ActivityStreamsProfile)
	// SetActivityStreamsQuestion sets a Question value to be at the specified
	// index for the property "preview". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsQuestion(idx int, v ActivityStreamsQuestion)
	// SetActivityStreamsRead sets a Read value to be at the specified index
	// for the property "preview". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsRead(idx int, v ActivityStreamsRead)
	// SetActivityStreamsReject sets a Reject value to be at the specified
	// index for the property "preview". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsReject(idx int, v ActivityStreamsReject)
	// SetActivityStreamsRelationship sets a Relationship value to be at the
	// specified index for the property "preview". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsRelationship(idx int, v ActivityStreamsRelationship)
	// SetActivityStreamsRemove sets a Remove value to be at the specified
	// index for the property "preview". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsRemove(idx int, v ActivityStreamsRemove)
	// SetActivityStreamsService sets a Service value to be at the specified
	// index for the property "preview". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsService(idx int, v ActivityStreamsService)
	// SetActivityStreamsTentativeAccept sets a TentativeAccept value to be at
	// the specified index for the property "preview". Panics if the index
	// is out of bounds. Invalidates all iterators.
	SetActivityStreamsTentativeAccept(idx int, v ActivityStreamsTentativeAccept)
	// SetActivityStreamsTentativeReject sets a TentativeReject value to be at
	// the specified index for the property "preview". Panics if the index
	// is out of bounds. Invalidates all iterators.
	SetActivityStreamsTentativeReject(idx int, v ActivityStreamsTentativeReject)
	// SetActivityStreamsTombstone sets a Tombstone value to be at the
	// specified index for the property "preview". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsTombstone(idx int, v ActivityStreamsTombstone)
	// SetActivityStreamsTravel sets a Travel value to be at the specified
	// index for the property "preview". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsTravel(idx int, v ActivityStreamsTravel)
	// SetActivityStreamsUndo sets a Undo value to be at the specified index
	// for the property "preview". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsUndo(idx int, v ActivityStreamsUndo)
	// SetActivityStreamsUpdate sets a Update value to be at the specified
	// index for the property "preview". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsUpdate(idx int, v ActivityStreamsUpdate)
	// SetActivityStreamsVideo sets a Video value to be at the specified index
	// for the property "preview". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsVideo(idx int, v ActivityStreamsVideo)
	// SetActivityStreamsView sets a View value to be at the specified index
	// for the property "preview". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsView(idx int, v ActivityStreamsView)
	// SetForgeFedBranch sets a Branch value to be at the specified index for
	// the property "preview". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedBranch(idx int, v ForgeFedBranch)
	// SetForgeFedCommit sets a Commit value to be at the specified index for
	// the property "preview". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedCommit(idx int, v ForgeFedCommit)
	// SetForgeFedPush sets a Push value to be at the specified index for the
	// property "preview". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedPush(idx int, v ForgeFedPush)
	// SetForgeFedRepository sets a Repository value to be at the specified
	// index for the property "preview". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetForgeFedRepository(idx int, v ForgeFedRepository)
	// SetForgeFedTicket sets a Ticket value to be at the specified index for
	// the property "preview". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedTicket(idx int, v ForgeFedTicket)
	// SetForgeFedTicketDependency sets a TicketDependency value to be at the
	// specified index for the property "preview". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
	// SetIRI sets an IRI value to be at the specified index for the property
	// "preview". Panics if the index is out of bounds.
	SetIRI(idx int, v *url.URL)
	// SetTootEmoji sets a Emoji value to be at the specified index for the
	// property "preview". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetTootEmoji(idx int, v TootEmoji)
	// SetTootIdentityProof sets a IdentityProof value to be at the specified
	// index for the property "preview". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetTootIdentityProof(idx int, v TootIdentityProof)
	// SetType sets an arbitrary type value to the specified index of the
	// property "preview". Invalidates all iterators. Returns an error if
	// the type is not a valid one to set for this property. Panics if the
	// index is out of bounds.
	SetType(idx int, t Type) error
	// Swap swaps the location of values at two indices for the "preview"
	// property.
	Swap(i, j int)
}

Identifies an entity that provides a preview of this object.

Example 102 (https://www.w3.org/TR/activitystreams-vocabulary/#ex106-jsonld):

{
  "duration": "PT2H30M",
  "name": "Cool New Movie",
  "preview": {
    "duration": "PT1M",
    "name": "Trailer",
    "type": "Video",
    "url": {
      "mediaType": "video/mkv",
      "url": "http://example.org/trailer.mkv"
    }
  },
  "type": "Video"
}

type ActivityStreamsPreviewPropertyIterator

type ActivityStreamsPreviewPropertyIterator interface {
	// GetActivityStreamsAccept returns the value of this property. When
	// IsActivityStreamsAccept returns false, GetActivityStreamsAccept
	// will return an arbitrary value.
	GetActivityStreamsAccept() ActivityStreamsAccept
	// GetActivityStreamsActivity returns the value of this property. When
	// IsActivityStreamsActivity returns false, GetActivityStreamsActivity
	// will return an arbitrary value.
	GetActivityStreamsActivity() ActivityStreamsActivity
	// GetActivityStreamsAdd returns the value of this property. When
	// IsActivityStreamsAdd returns false, GetActivityStreamsAdd will
	// return an arbitrary value.
	GetActivityStreamsAdd() ActivityStreamsAdd
	// GetActivityStreamsAnnounce returns the value of this property. When
	// IsActivityStreamsAnnounce returns false, GetActivityStreamsAnnounce
	// will return an arbitrary value.
	GetActivityStreamsAnnounce() ActivityStreamsAnnounce
	// GetActivityStreamsApplication returns the value of this property. When
	// IsActivityStreamsApplication returns false,
	// GetActivityStreamsApplication will return an arbitrary value.
	GetActivityStreamsApplication() ActivityStreamsApplication
	// GetActivityStreamsArrive returns the value of this property. When
	// IsActivityStreamsArrive returns false, GetActivityStreamsArrive
	// will return an arbitrary value.
	GetActivityStreamsArrive() ActivityStreamsArrive
	// GetActivityStreamsArticle returns the value of this property. When
	// IsActivityStreamsArticle returns false, GetActivityStreamsArticle
	// will return an arbitrary value.
	GetActivityStreamsArticle() ActivityStreamsArticle
	// GetActivityStreamsAudio returns the value of this property. When
	// IsActivityStreamsAudio returns false, GetActivityStreamsAudio will
	// return an arbitrary value.
	GetActivityStreamsAudio() ActivityStreamsAudio
	// GetActivityStreamsBlock returns the value of this property. When
	// IsActivityStreamsBlock returns false, GetActivityStreamsBlock will
	// return an arbitrary value.
	GetActivityStreamsBlock() ActivityStreamsBlock
	// GetActivityStreamsCollection returns the value of this property. When
	// IsActivityStreamsCollection returns false,
	// GetActivityStreamsCollection will return an arbitrary value.
	GetActivityStreamsCollection() ActivityStreamsCollection
	// GetActivityStreamsCollectionPage returns the value of this property.
	// When IsActivityStreamsCollectionPage returns false,
	// GetActivityStreamsCollectionPage will return an arbitrary value.
	GetActivityStreamsCollectionPage() ActivityStreamsCollectionPage
	// GetActivityStreamsCreate returns the value of this property. When
	// IsActivityStreamsCreate returns false, GetActivityStreamsCreate
	// will return an arbitrary value.
	GetActivityStreamsCreate() ActivityStreamsCreate
	// GetActivityStreamsDelete returns the value of this property. When
	// IsActivityStreamsDelete returns false, GetActivityStreamsDelete
	// will return an arbitrary value.
	GetActivityStreamsDelete() ActivityStreamsDelete
	// GetActivityStreamsDislike returns the value of this property. When
	// IsActivityStreamsDislike returns false, GetActivityStreamsDislike
	// will return an arbitrary value.
	GetActivityStreamsDislike() ActivityStreamsDislike
	// GetActivityStreamsDocument returns the value of this property. When
	// IsActivityStreamsDocument returns false, GetActivityStreamsDocument
	// will return an arbitrary value.
	GetActivityStreamsDocument() ActivityStreamsDocument
	// GetActivityStreamsEvent returns the value of this property. When
	// IsActivityStreamsEvent returns false, GetActivityStreamsEvent will
	// return an arbitrary value.
	GetActivityStreamsEvent() ActivityStreamsEvent
	// GetActivityStreamsFlag returns the value of this property. When
	// IsActivityStreamsFlag returns false, GetActivityStreamsFlag will
	// return an arbitrary value.
	GetActivityStreamsFlag() ActivityStreamsFlag
	// GetActivityStreamsFollow returns the value of this property. When
	// IsActivityStreamsFollow returns false, GetActivityStreamsFollow
	// will return an arbitrary value.
	GetActivityStreamsFollow() ActivityStreamsFollow
	// GetActivityStreamsGroup returns the value of this property. When
	// IsActivityStreamsGroup returns false, GetActivityStreamsGroup will
	// return an arbitrary value.
	GetActivityStreamsGroup() ActivityStreamsGroup
	// GetActivityStreamsIgnore returns the value of this property. When
	// IsActivityStreamsIgnore returns false, GetActivityStreamsIgnore
	// will return an arbitrary value.
	GetActivityStreamsIgnore() ActivityStreamsIgnore
	// GetActivityStreamsImage returns the value of this property. When
	// IsActivityStreamsImage returns false, GetActivityStreamsImage will
	// return an arbitrary value.
	GetActivityStreamsImage() ActivityStreamsImage
	// GetActivityStreamsIntransitiveActivity returns the value of this
	// property. When IsActivityStreamsIntransitiveActivity returns false,
	// GetActivityStreamsIntransitiveActivity will return an arbitrary
	// value.
	GetActivityStreamsIntransitiveActivity() ActivityStreamsIntransitiveActivity
	// GetActivityStreamsInvite returns the value of this property. When
	// IsActivityStreamsInvite returns false, GetActivityStreamsInvite
	// will return an arbitrary value.
	GetActivityStreamsInvite() ActivityStreamsInvite
	// GetActivityStreamsJoin returns the value of this property. When
	// IsActivityStreamsJoin returns false, GetActivityStreamsJoin will
	// return an arbitrary value.
	GetActivityStreamsJoin() ActivityStreamsJoin
	// GetActivityStreamsLeave returns the value of this property. When
	// IsActivityStreamsLeave returns false, GetActivityStreamsLeave will
	// return an arbitrary value.
	GetActivityStreamsLeave() ActivityStreamsLeave
	// GetActivityStreamsLike returns the value of this property. When
	// IsActivityStreamsLike returns false, GetActivityStreamsLike will
	// return an arbitrary value.
	GetActivityStreamsLike() ActivityStreamsLike
	// GetActivityStreamsLink returns the value of this property. When
	// IsActivityStreamsLink returns false, GetActivityStreamsLink will
	// return an arbitrary value.
	GetActivityStreamsLink() ActivityStreamsLink
	// GetActivityStreamsListen returns the value of this property. When
	// IsActivityStreamsListen returns false, GetActivityStreamsListen
	// will return an arbitrary value.
	GetActivityStreamsListen() ActivityStreamsListen
	// GetActivityStreamsMention returns the value of this property. When
	// IsActivityStreamsMention returns false, GetActivityStreamsMention
	// will return an arbitrary value.
	GetActivityStreamsMention() ActivityStreamsMention
	// GetActivityStreamsMove returns the value of this property. When
	// IsActivityStreamsMove returns false, GetActivityStreamsMove will
	// return an arbitrary value.
	GetActivityStreamsMove() ActivityStreamsMove
	// GetActivityStreamsNote returns the value of this property. When
	// IsActivityStreamsNote returns false, GetActivityStreamsNote will
	// return an arbitrary value.
	GetActivityStreamsNote() ActivityStreamsNote
	// GetActivityStreamsObject returns the value of this property. When
	// IsActivityStreamsObject returns false, GetActivityStreamsObject
	// will return an arbitrary value.
	GetActivityStreamsObject() ActivityStreamsObject
	// GetActivityStreamsOffer returns the value of this property. When
	// IsActivityStreamsOffer returns false, GetActivityStreamsOffer will
	// return an arbitrary value.
	GetActivityStreamsOffer() ActivityStreamsOffer
	// GetActivityStreamsOrderedCollection returns the value of this property.
	// When IsActivityStreamsOrderedCollection returns false,
	// GetActivityStreamsOrderedCollection will return an arbitrary value.
	GetActivityStreamsOrderedCollection() ActivityStreamsOrderedCollection
	// GetActivityStreamsOrderedCollectionPage returns the value of this
	// property. When IsActivityStreamsOrderedCollectionPage returns
	// false, GetActivityStreamsOrderedCollectionPage will return an
	// arbitrary value.
	GetActivityStreamsOrderedCollectionPage() ActivityStreamsOrderedCollectionPage
	// GetActivityStreamsOrganization returns the value of this property. When
	// IsActivityStreamsOrganization returns false,
	// GetActivityStreamsOrganization will return an arbitrary value.
	GetActivityStreamsOrganization() ActivityStreamsOrganization
	// GetActivityStreamsPage returns the value of this property. When
	// IsActivityStreamsPage returns false, GetActivityStreamsPage will
	// return an arbitrary value.
	GetActivityStreamsPage() ActivityStreamsPage
	// GetActivityStreamsPerson returns the value of this property. When
	// IsActivityStreamsPerson returns false, GetActivityStreamsPerson
	// will return an arbitrary value.
	GetActivityStreamsPerson() ActivityStreamsPerson
	// GetActivityStreamsPlace returns the value of this property. When
	// IsActivityStreamsPlace returns false, GetActivityStreamsPlace will
	// return an arbitrary value.
	GetActivityStreamsPlace() ActivityStreamsPlace
	// GetActivityStreamsProfile returns the value of this property. When
	// IsActivityStreamsProfile returns false, GetActivityStreamsProfile
	// will return an arbitrary value.
	GetActivityStreamsProfile() ActivityStreamsProfile
	// GetActivityStreamsQuestion returns the value of this property. When
	// IsActivityStreamsQuestion returns false, GetActivityStreamsQuestion
	// will return an arbitrary value.
	GetActivityStreamsQuestion() ActivityStreamsQuestion
	// GetActivityStreamsRead returns the value of this property. When
	// IsActivityStreamsRead returns false, GetActivityStreamsRead will
	// return an arbitrary value.
	GetActivityStreamsRead() ActivityStreamsRead
	// GetActivityStreamsReject returns the value of this property. When
	// IsActivityStreamsReject returns false, GetActivityStreamsReject
	// will return an arbitrary value.
	GetActivityStreamsReject() ActivityStreamsReject
	// GetActivityStreamsRelationship returns the value of this property. When
	// IsActivityStreamsRelationship returns false,
	// GetActivityStreamsRelationship will return an arbitrary value.
	GetActivityStreamsRelationship() ActivityStreamsRelationship
	// GetActivityStreamsRemove returns the value of this property. When
	// IsActivityStreamsRemove returns false, GetActivityStreamsRemove
	// will return an arbitrary value.
	GetActivityStreamsRemove() ActivityStreamsRemove
	// GetActivityStreamsService returns the value of this property. When
	// IsActivityStreamsService returns false, GetActivityStreamsService
	// will return an arbitrary value.
	GetActivityStreamsService() ActivityStreamsService
	// GetActivityStreamsTentativeAccept returns the value of this property.
	// When IsActivityStreamsTentativeAccept returns false,
	// GetActivityStreamsTentativeAccept will return an arbitrary value.
	GetActivityStreamsTentativeAccept() ActivityStreamsTentativeAccept
	// GetActivityStreamsTentativeReject returns the value of this property.
	// When IsActivityStreamsTentativeReject returns false,
	// GetActivityStreamsTentativeReject will return an arbitrary value.
	GetActivityStreamsTentativeReject() ActivityStreamsTentativeReject
	// GetActivityStreamsTombstone returns the value of this property. When
	// IsActivityStreamsTombstone returns false,
	// GetActivityStreamsTombstone will return an arbitrary value.
	GetActivityStreamsTombstone() ActivityStreamsTombstone
	// GetActivityStreamsTravel returns the value of this property. When
	// IsActivityStreamsTravel returns false, GetActivityStreamsTravel
	// will return an arbitrary value.
	GetActivityStreamsTravel() ActivityStreamsTravel
	// GetActivityStreamsUndo returns the value of this property. When
	// IsActivityStreamsUndo returns false, GetActivityStreamsUndo will
	// return an arbitrary value.
	GetActivityStreamsUndo() ActivityStreamsUndo
	// GetActivityStreamsUpdate returns the value of this property. When
	// IsActivityStreamsUpdate returns false, GetActivityStreamsUpdate
	// will return an arbitrary value.
	GetActivityStreamsUpdate() ActivityStreamsUpdate
	// GetActivityStreamsVideo returns the value of this property. When
	// IsActivityStreamsVideo returns false, GetActivityStreamsVideo will
	// return an arbitrary value.
	GetActivityStreamsVideo() ActivityStreamsVideo
	// GetActivityStreamsView returns the value of this property. When
	// IsActivityStreamsView returns false, GetActivityStreamsView will
	// return an arbitrary value.
	GetActivityStreamsView() ActivityStreamsView
	// GetForgeFedBranch returns the value of this property. When
	// IsForgeFedBranch returns false, GetForgeFedBranch will return an
	// arbitrary value.
	GetForgeFedBranch() ForgeFedBranch
	// GetForgeFedCommit returns the value of this property. When
	// IsForgeFedCommit returns false, GetForgeFedCommit will return an
	// arbitrary value.
	GetForgeFedCommit() ForgeFedCommit
	// GetForgeFedPush returns the value of this property. When IsForgeFedPush
	// returns false, GetForgeFedPush will return an arbitrary value.
	GetForgeFedPush() ForgeFedPush
	// GetForgeFedRepository returns the value of this property. When
	// IsForgeFedRepository returns false, GetForgeFedRepository will
	// return an arbitrary value.
	GetForgeFedRepository() ForgeFedRepository
	// GetForgeFedTicket returns the value of this property. When
	// IsForgeFedTicket returns false, GetForgeFedTicket will return an
	// arbitrary value.
	GetForgeFedTicket() ForgeFedTicket
	// GetForgeFedTicketDependency returns the value of this property. When
	// IsForgeFedTicketDependency returns false,
	// GetForgeFedTicketDependency will return an arbitrary value.
	GetForgeFedTicketDependency() ForgeFedTicketDependency
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return an arbitrary value.
	GetIRI() *url.URL
	// GetTootEmoji returns the value of this property. When IsTootEmoji
	// returns false, GetTootEmoji will return an arbitrary value.
	GetTootEmoji() TootEmoji
	// GetTootIdentityProof returns the value of this property. When
	// IsTootIdentityProof returns false, GetTootIdentityProof will return
	// an arbitrary value.
	GetTootIdentityProof() TootIdentityProof
	// GetType returns the value in this property as a Type. Returns nil if
	// the value is not an ActivityStreams type, such as an IRI or another
	// value.
	GetType() Type
	// HasAny returns true if any of the different values is set.
	HasAny() bool
	// IsActivityStreamsAccept returns true if this property has a type of
	// "Accept". When true, use the GetActivityStreamsAccept and
	// SetActivityStreamsAccept methods to access and set this property.
	IsActivityStreamsAccept() bool
	// IsActivityStreamsActivity returns true if this property has a type of
	// "Activity". When true, use the GetActivityStreamsActivity and
	// SetActivityStreamsActivity methods to access and set this property.
	IsActivityStreamsActivity() bool
	// IsActivityStreamsAdd returns true if this property has a type of "Add".
	// When true, use the GetActivityStreamsAdd and SetActivityStreamsAdd
	// methods to access and set this property.
	IsActivityStreamsAdd() bool
	// IsActivityStreamsAnnounce returns true if this property has a type of
	// "Announce". When true, use the GetActivityStreamsAnnounce and
	// SetActivityStreamsAnnounce methods to access and set this property.
	IsActivityStreamsAnnounce() bool
	// IsActivityStreamsApplication returns true if this property has a type
	// of "Application". When true, use the GetActivityStreamsApplication
	// and SetActivityStreamsApplication methods to access and set this
	// property.
	IsActivityStreamsApplication() bool
	// IsActivityStreamsArrive returns true if this property has a type of
	// "Arrive". When true, use the GetActivityStreamsArrive and
	// SetActivityStreamsArrive methods to access and set this property.
	IsActivityStreamsArrive() bool
	// IsActivityStreamsArticle returns true if this property has a type of
	// "Article". When true, use the GetActivityStreamsArticle and
	// SetActivityStreamsArticle methods to access and set this property.
	IsActivityStreamsArticle() bool
	// IsActivityStreamsAudio returns true if this property has a type of
	// "Audio". When true, use the GetActivityStreamsAudio and
	// SetActivityStreamsAudio methods to access and set this property.
	IsActivityStreamsAudio() bool
	// IsActivityStreamsBlock returns true if this property has a type of
	// "Block". When true, use the GetActivityStreamsBlock and
	// SetActivityStreamsBlock methods to access and set this property.
	IsActivityStreamsBlock() bool
	// IsActivityStreamsCollection returns true if this property has a type of
	// "Collection". When true, use the GetActivityStreamsCollection and
	// SetActivityStreamsCollection methods to access and set this
	// property.
	IsActivityStreamsCollection() bool
	// IsActivityStreamsCollectionPage returns true if this property has a
	// type of "CollectionPage". When true, use the
	// GetActivityStreamsCollectionPage and
	// SetActivityStreamsCollectionPage methods to access and set this
	// property.
	IsActivityStreamsCollectionPage() bool
	// IsActivityStreamsCreate returns true if this property has a type of
	// "Create". When true, use the GetActivityStreamsCreate and
	// SetActivityStreamsCreate methods to access and set this property.
	IsActivityStreamsCreate() bool
	// IsActivityStreamsDelete returns true if this property has a type of
	// "Delete". When true, use the GetActivityStreamsDelete and
	// SetActivityStreamsDelete methods to access and set this property.
	IsActivityStreamsDelete() bool
	// IsActivityStreamsDislike returns true if this property has a type of
	// "Dislike". When true, use the GetActivityStreamsDislike and
	// SetActivityStreamsDislike methods to access and set this property.
	IsActivityStreamsDislike() bool
	// IsActivityStreamsDocument returns true if this property has a type of
	// "Document". When true, use the GetActivityStreamsDocument and
	// SetActivityStreamsDocument methods to access and set this property.
	IsActivityStreamsDocument() bool
	// IsActivityStreamsEvent returns true if this property has a type of
	// "Event". When true, use the GetActivityStreamsEvent and
	// SetActivityStreamsEvent methods to access and set this property.
	IsActivityStreamsEvent() bool
	// IsActivityStreamsFlag returns true if this property has a type of
	// "Flag". When true, use the GetActivityStreamsFlag and
	// SetActivityStreamsFlag methods to access and set this property.
	IsActivityStreamsFlag() bool
	// IsActivityStreamsFollow returns true if this property has a type of
	// "Follow". When true, use the GetActivityStreamsFollow and
	// SetActivityStreamsFollow methods to access and set this property.
	IsActivityStreamsFollow() bool
	// IsActivityStreamsGroup returns true if this property has a type of
	// "Group". When true, use the GetActivityStreamsGroup and
	// SetActivityStreamsGroup methods to access and set this property.
	IsActivityStreamsGroup() bool
	// IsActivityStreamsIgnore returns true if this property has a type of
	// "Ignore". When true, use the GetActivityStreamsIgnore and
	// SetActivityStreamsIgnore methods to access and set this property.
	IsActivityStreamsIgnore() bool
	// IsActivityStreamsImage returns true if this property has a type of
	// "Image". When true, use the GetActivityStreamsImage and
	// SetActivityStreamsImage methods to access and set this property.
	IsActivityStreamsImage() bool
	// IsActivityStreamsIntransitiveActivity returns true if this property has
	// a type of "IntransitiveActivity". When true, use the
	// GetActivityStreamsIntransitiveActivity and
	// SetActivityStreamsIntransitiveActivity methods to access and set
	// this property.
	IsActivityStreamsIntransitiveActivity() bool
	// IsActivityStreamsInvite returns true if this property has a type of
	// "Invite". When true, use the GetActivityStreamsInvite and
	// SetActivityStreamsInvite methods to access and set this property.
	IsActivityStreamsInvite() bool
	// IsActivityStreamsJoin returns true if this property has a type of
	// "Join". When true, use the GetActivityStreamsJoin and
	// SetActivityStreamsJoin methods to access and set this property.
	IsActivityStreamsJoin() bool
	// IsActivityStreamsLeave returns true if this property has a type of
	// "Leave". When true, use the GetActivityStreamsLeave and
	// SetActivityStreamsLeave methods to access and set this property.
	IsActivityStreamsLeave() bool
	// IsActivityStreamsLike returns true if this property has a type of
	// "Like". When true, use the GetActivityStreamsLike and
	// SetActivityStreamsLike methods to access and set this property.
	IsActivityStreamsLike() bool
	// IsActivityStreamsLink returns true if this property has a type of
	// "Link". When true, use the GetActivityStreamsLink and
	// SetActivityStreamsLink methods to access and set this property.
	IsActivityStreamsLink() bool
	// IsActivityStreamsListen returns true if this property has a type of
	// "Listen". When true, use the GetActivityStreamsListen and
	// SetActivityStreamsListen methods to access and set this property.
	IsActivityStreamsListen() bool
	// IsActivityStreamsMention returns true if this property has a type of
	// "Mention". When true, use the GetActivityStreamsMention and
	// SetActivityStreamsMention methods to access and set this property.
	IsActivityStreamsMention() bool
	// IsActivityStreamsMove returns true if this property has a type of
	// "Move". When true, use the GetActivityStreamsMove and
	// SetActivityStreamsMove methods to access and set this property.
	IsActivityStreamsMove() bool
	// IsActivityStreamsNote returns true if this property has a type of
	// "Note". When true, use the GetActivityStreamsNote and
	// SetActivityStreamsNote methods to access and set this property.
	IsActivityStreamsNote() bool
	// IsActivityStreamsObject returns true if this property has a type of
	// "Object". When true, use the GetActivityStreamsObject and
	// SetActivityStreamsObject methods to access and set this property.
	IsActivityStreamsObject() bool
	// IsActivityStreamsOffer returns true if this property has a type of
	// "Offer". When true, use the GetActivityStreamsOffer and
	// SetActivityStreamsOffer methods to access and set this property.
	IsActivityStreamsOffer() bool
	// IsActivityStreamsOrderedCollection returns true if this property has a
	// type of "OrderedCollection". When true, use the
	// GetActivityStreamsOrderedCollection and
	// SetActivityStreamsOrderedCollection methods to access and set this
	// property.
	IsActivityStreamsOrderedCollection() bool
	// IsActivityStreamsOrderedCollectionPage returns true if this property
	// has a type of "OrderedCollectionPage". When true, use the
	// GetActivityStreamsOrderedCollectionPage and
	// SetActivityStreamsOrderedCollectionPage methods to access and set
	// this property.
	IsActivityStreamsOrderedCollectionPage() bool
	// IsActivityStreamsOrganization returns true if this property has a type
	// of "Organization". When true, use the
	// GetActivityStreamsOrganization and SetActivityStreamsOrganization
	// methods to access and set this property.
	IsActivityStreamsOrganization() bool
	// IsActivityStreamsPage returns true if this property has a type of
	// "Page". When true, use the GetActivityStreamsPage and
	// SetActivityStreamsPage methods to access and set this property.
	IsActivityStreamsPage() bool
	// IsActivityStreamsPerson returns true if this property has a type of
	// "Person". When true, use the GetActivityStreamsPerson and
	// SetActivityStreamsPerson methods to access and set this property.
	IsActivityStreamsPerson() bool
	// IsActivityStreamsPlace returns true if this property has a type of
	// "Place". When true, use the GetActivityStreamsPlace and
	// SetActivityStreamsPlace methods to access and set this property.
	IsActivityStreamsPlace() bool
	// IsActivityStreamsProfile returns true if this property has a type of
	// "Profile". When true, use the GetActivityStreamsProfile and
	// SetActivityStreamsProfile methods to access and set this property.
	IsActivityStreamsProfile() bool
	// IsActivityStreamsQuestion returns true if this property has a type of
	// "Question". When true, use the GetActivityStreamsQuestion and
	// SetActivityStreamsQuestion methods to access and set this property.
	IsActivityStreamsQuestion() bool
	// IsActivityStreamsRead returns true if this property has a type of
	// "Read". When true, use the GetActivityStreamsRead and
	// SetActivityStreamsRead methods to access and set this property.
	IsActivityStreamsRead() bool
	// IsActivityStreamsReject returns true if this property has a type of
	// "Reject". When true, use the GetActivityStreamsReject and
	// SetActivityStreamsReject methods to access and set this property.
	IsActivityStreamsReject() bool
	// IsActivityStreamsRelationship returns true if this property has a type
	// of "Relationship". When true, use the
	// GetActivityStreamsRelationship and SetActivityStreamsRelationship
	// methods to access and set this property.
	IsActivityStreamsRelationship() bool
	// IsActivityStreamsRemove returns true if this property has a type of
	// "Remove". When true, use the GetActivityStreamsRemove and
	// SetActivityStreamsRemove methods to access and set this property.
	IsActivityStreamsRemove() bool
	// IsActivityStreamsService returns true if this property has a type of
	// "Service". When true, use the GetActivityStreamsService and
	// SetActivityStreamsService methods to access and set this property.
	IsActivityStreamsService() bool
	// IsActivityStreamsTentativeAccept returns true if this property has a
	// type of "TentativeAccept". When true, use the
	// GetActivityStreamsTentativeAccept and
	// SetActivityStreamsTentativeAccept methods to access and set this
	// property.
	IsActivityStreamsTentativeAccept() bool
	// IsActivityStreamsTentativeReject returns true if this property has a
	// type of "TentativeReject". When true, use the
	// GetActivityStreamsTentativeReject and
	// SetActivityStreamsTentativeReject methods to access and set this
	// property.
	IsActivityStreamsTentativeReject() bool
	// IsActivityStreamsTombstone returns true if this property has a type of
	// "Tombstone". When true, use the GetActivityStreamsTombstone and
	// SetActivityStreamsTombstone methods to access and set this property.
	IsActivityStreamsTombstone() bool
	// IsActivityStreamsTravel returns true if this property has a type of
	// "Travel". When true, use the GetActivityStreamsTravel and
	// SetActivityStreamsTravel methods to access and set this property.
	IsActivityStreamsTravel() bool
	// IsActivityStreamsUndo returns true if this property has a type of
	// "Undo". When true, use the GetActivityStreamsUndo and
	// SetActivityStreamsUndo methods to access and set this property.
	IsActivityStreamsUndo() bool
	// IsActivityStreamsUpdate returns true if this property has a type of
	// "Update". When true, use the GetActivityStreamsUpdate and
	// SetActivityStreamsUpdate methods to access and set this property.
	IsActivityStreamsUpdate() bool
	// IsActivityStreamsVideo returns true if this property has a type of
	// "Video". When true, use the GetActivityStreamsVideo and
	// SetActivityStreamsVideo methods to access and set this property.
	IsActivityStreamsVideo() bool
	// IsActivityStreamsView returns true if this property has a type of
	// "View". When true, use the GetActivityStreamsView and
	// SetActivityStreamsView methods to access and set this property.
	IsActivityStreamsView() bool
	// IsForgeFedBranch returns true if this property has a type of "Branch".
	// When true, use the GetForgeFedBranch and SetForgeFedBranch methods
	// to access and set this property.
	IsForgeFedBranch() bool
	// IsForgeFedCommit returns true if this property has a type of "Commit".
	// When true, use the GetForgeFedCommit and SetForgeFedCommit methods
	// to access and set this property.
	IsForgeFedCommit() bool
	// IsForgeFedPush returns true if this property has a type of "Push". When
	// true, use the GetForgeFedPush and SetForgeFedPush methods to access
	// and set this property.
	IsForgeFedPush() bool
	// IsForgeFedRepository returns true if this property has a type of
	// "Repository". When true, use the GetForgeFedRepository and
	// SetForgeFedRepository methods to access and set this property.
	IsForgeFedRepository() bool
	// IsForgeFedTicket returns true if this property has a type of "Ticket".
	// When true, use the GetForgeFedTicket and SetForgeFedTicket methods
	// to access and set this property.
	IsForgeFedTicket() bool
	// IsForgeFedTicketDependency returns true if this property has a type of
	// "TicketDependency". When true, use the GetForgeFedTicketDependency
	// and SetForgeFedTicketDependency methods to access and set this
	// property.
	IsForgeFedTicketDependency() bool
	// IsIRI returns true if this property is an IRI. When true, use GetIRI
	// and SetIRI to access and set this property
	IsIRI() bool
	// IsTootEmoji returns true if this property has a type of "Emoji". When
	// true, use the GetTootEmoji and SetTootEmoji methods to access and
	// set this property.
	IsTootEmoji() bool
	// IsTootIdentityProof returns true if this property has a type of
	// "IdentityProof". When true, use the GetTootIdentityProof and
	// SetTootIdentityProof methods to access and set this property.
	IsTootIdentityProof() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsPreviewPropertyIterator) bool
	// Name returns the name of this property: "ActivityStreamsPreview".
	Name() string
	// Next returns the next iterator, or nil if there is no next iterator.
	Next() ActivityStreamsPreviewPropertyIterator
	// Prev returns the previous iterator, or nil if there is no previous
	// iterator.
	Prev() ActivityStreamsPreviewPropertyIterator
	// SetActivityStreamsAccept sets the value of this property. Calling
	// IsActivityStreamsAccept afterwards returns true.
	SetActivityStreamsAccept(v ActivityStreamsAccept)
	// SetActivityStreamsActivity sets the value of this property. Calling
	// IsActivityStreamsActivity afterwards returns true.
	SetActivityStreamsActivity(v ActivityStreamsActivity)
	// SetActivityStreamsAdd sets the value of this property. Calling
	// IsActivityStreamsAdd afterwards returns true.
	SetActivityStreamsAdd(v ActivityStreamsAdd)
	// SetActivityStreamsAnnounce sets the value of this property. Calling
	// IsActivityStreamsAnnounce afterwards returns true.
	SetActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// SetActivityStreamsApplication sets the value of this property. Calling
	// IsActivityStreamsApplication afterwards returns true.
	SetActivityStreamsApplication(v ActivityStreamsApplication)
	// SetActivityStreamsArrive sets the value of this property. Calling
	// IsActivityStreamsArrive afterwards returns true.
	SetActivityStreamsArrive(v ActivityStreamsArrive)
	// SetActivityStreamsArticle sets the value of this property. Calling
	// IsActivityStreamsArticle afterwards returns true.
	SetActivityStreamsArticle(v ActivityStreamsArticle)
	// SetActivityStreamsAudio sets the value of this property. Calling
	// IsActivityStreamsAudio afterwards returns true.
	SetActivityStreamsAudio(v ActivityStreamsAudio)
	// SetActivityStreamsBlock sets the value of this property. Calling
	// IsActivityStreamsBlock afterwards returns true.
	SetActivityStreamsBlock(v ActivityStreamsBlock)
	// SetActivityStreamsCollection sets the value of this property. Calling
	// IsActivityStreamsCollection afterwards returns true.
	SetActivityStreamsCollection(v ActivityStreamsCollection)
	// SetActivityStreamsCollectionPage sets the value of this property.
	// Calling IsActivityStreamsCollectionPage afterwards returns true.
	SetActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// SetActivityStreamsCreate sets the value of this property. Calling
	// IsActivityStreamsCreate afterwards returns true.
	SetActivityStreamsCreate(v ActivityStreamsCreate)
	// SetActivityStreamsDelete sets the value of this property. Calling
	// IsActivityStreamsDelete afterwards returns true.
	SetActivityStreamsDelete(v ActivityStreamsDelete)
	// SetActivityStreamsDislike sets the value of this property. Calling
	// IsActivityStreamsDislike afterwards returns true.
	SetActivityStreamsDislike(v ActivityStreamsDislike)
	// SetActivityStreamsDocument sets the value of this property. Calling
	// IsActivityStreamsDocument afterwards returns true.
	SetActivityStreamsDocument(v ActivityStreamsDocument)
	// SetActivityStreamsEvent sets the value of this property. Calling
	// IsActivityStreamsEvent afterwards returns true.
	SetActivityStreamsEvent(v ActivityStreamsEvent)
	// SetActivityStreamsFlag sets the value of this property. Calling
	// IsActivityStreamsFlag afterwards returns true.
	SetActivityStreamsFlag(v ActivityStreamsFlag)
	// SetActivityStreamsFollow sets the value of this property. Calling
	// IsActivityStreamsFollow afterwards returns true.
	SetActivityStreamsFollow(v ActivityStreamsFollow)
	// SetActivityStreamsGroup sets the value of this property. Calling
	// IsActivityStreamsGroup afterwards returns true.
	SetActivityStreamsGroup(v ActivityStreamsGroup)
	// SetActivityStreamsIgnore sets the value of this property. Calling
	// IsActivityStreamsIgnore afterwards returns true.
	SetActivityStreamsIgnore(v ActivityStreamsIgnore)
	// SetActivityStreamsImage sets the value of this property. Calling
	// IsActivityStreamsImage afterwards returns true.
	SetActivityStreamsImage(v ActivityStreamsImage)
	// SetActivityStreamsIntransitiveActivity sets the value of this property.
	// Calling IsActivityStreamsIntransitiveActivity afterwards returns
	// true.
	SetActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// SetActivityStreamsInvite sets the value of this property. Calling
	// IsActivityStreamsInvite afterwards returns true.
	SetActivityStreamsInvite(v ActivityStreamsInvite)
	// SetActivityStreamsJoin sets the value of this property. Calling
	// IsActivityStreamsJoin afterwards returns true.
	SetActivityStreamsJoin(v ActivityStreamsJoin)
	// SetActivityStreamsLeave sets the value of this property. Calling
	// IsActivityStreamsLeave afterwards returns true.
	SetActivityStreamsLeave(v ActivityStreamsLeave)
	// SetActivityStreamsLike sets the value of this property. Calling
	// IsActivityStreamsLike afterwards returns true.
	SetActivityStreamsLike(v ActivityStreamsLike)
	// SetActivityStreamsLink sets the value of this property. Calling
	// IsActivityStreamsLink afterwards returns true.
	SetActivityStreamsLink(v ActivityStreamsLink)
	// SetActivityStreamsListen sets the value of this property. Calling
	// IsActivityStreamsListen afterwards returns true.
	SetActivityStreamsListen(v ActivityStreamsListen)
	// SetActivityStreamsMention sets the value of this property. Calling
	// IsActivityStreamsMention afterwards returns true.
	SetActivityStreamsMention(v ActivityStreamsMention)
	// SetActivityStreamsMove sets the value of this property. Calling
	// IsActivityStreamsMove afterwards returns true.
	SetActivityStreamsMove(v ActivityStreamsMove)
	// SetActivityStreamsNote sets the value of this property. Calling
	// IsActivityStreamsNote afterwards returns true.
	SetActivityStreamsNote(v ActivityStreamsNote)
	// SetActivityStreamsObject sets the value of this property. Calling
	// IsActivityStreamsObject afterwards returns true.
	SetActivityStreamsObject(v ActivityStreamsObject)
	// SetActivityStreamsOffer sets the value of this property. Calling
	// IsActivityStreamsOffer afterwards returns true.
	SetActivityStreamsOffer(v ActivityStreamsOffer)
	// SetActivityStreamsOrderedCollection sets the value of this property.
	// Calling IsActivityStreamsOrderedCollection afterwards returns true.
	SetActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// SetActivityStreamsOrderedCollectionPage sets the value of this
	// property. Calling IsActivityStreamsOrderedCollectionPage afterwards
	// returns true.
	SetActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// SetActivityStreamsOrganization sets the value of this property. Calling
	// IsActivityStreamsOrganization afterwards returns true.
	SetActivityStreamsOrganization(v ActivityStreamsOrganization)
	// SetActivityStreamsPage sets the value of this property. Calling
	// IsActivityStreamsPage afterwards returns true.
	SetActivityStreamsPage(v ActivityStreamsPage)
	// SetActivityStreamsPerson sets the value of this property. Calling
	// IsActivityStreamsPerson afterwards returns true.
	SetActivityStreamsPerson(v ActivityStreamsPerson)
	// SetActivityStreamsPlace sets the value of this property. Calling
	// IsActivityStreamsPlace afterwards returns true.
	SetActivityStreamsPlace(v ActivityStreamsPlace)
	// SetActivityStreamsProfile sets the value of this property. Calling
	// IsActivityStreamsProfile afterwards returns true.
	SetActivityStreamsProfile(v ActivityStreamsProfile)
	// SetActivityStreamsQuestion sets the value of this property. Calling
	// IsActivityStreamsQuestion afterwards returns true.
	SetActivityStreamsQuestion(v ActivityStreamsQuestion)
	// SetActivityStreamsRead sets the value of this property. Calling
	// IsActivityStreamsRead afterwards returns true.
	SetActivityStreamsRead(v ActivityStreamsRead)
	// SetActivityStreamsReject sets the value of this property. Calling
	// IsActivityStreamsReject afterwards returns true.
	SetActivityStreamsReject(v ActivityStreamsReject)
	// SetActivityStreamsRelationship sets the value of this property. Calling
	// IsActivityStreamsRelationship afterwards returns true.
	SetActivityStreamsRelationship(v ActivityStreamsRelationship)
	// SetActivityStreamsRemove sets the value of this property. Calling
	// IsActivityStreamsRemove afterwards returns true.
	SetActivityStreamsRemove(v ActivityStreamsRemove)
	// SetActivityStreamsService sets the value of this property. Calling
	// IsActivityStreamsService afterwards returns true.
	SetActivityStreamsService(v ActivityStreamsService)
	// SetActivityStreamsTentativeAccept sets the value of this property.
	// Calling IsActivityStreamsTentativeAccept afterwards returns true.
	SetActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// SetActivityStreamsTentativeReject sets the value of this property.
	// Calling IsActivityStreamsTentativeReject afterwards returns true.
	SetActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// SetActivityStreamsTombstone sets the value of this property. Calling
	// IsActivityStreamsTombstone afterwards returns true.
	SetActivityStreamsTombstone(v ActivityStreamsTombstone)
	// SetActivityStreamsTravel sets the value of this property. Calling
	// IsActivityStreamsTravel afterwards returns true.
	SetActivityStreamsTravel(v ActivityStreamsTravel)
	// SetActivityStreamsUndo sets the value of this property. Calling
	// IsActivityStreamsUndo afterwards returns true.
	SetActivityStreamsUndo(v ActivityStreamsUndo)
	// SetActivityStreamsUpdate sets the value of this property. Calling
	// IsActivityStreamsUpdate afterwards returns true.
	SetActivityStreamsUpdate(v ActivityStreamsUpdate)
	// SetActivityStreamsVideo sets the value of this property. Calling
	// IsActivityStreamsVideo afterwards returns true.
	SetActivityStreamsVideo(v ActivityStreamsVideo)
	// SetActivityStreamsView sets the value of this property. Calling
	// IsActivityStreamsView afterwards returns true.
	SetActivityStreamsView(v ActivityStreamsView)
	// SetForgeFedBranch sets the value of this property. Calling
	// IsForgeFedBranch afterwards returns true.
	SetForgeFedBranch(v ForgeFedBranch)
	// SetForgeFedCommit sets the value of this property. Calling
	// IsForgeFedCommit afterwards returns true.
	SetForgeFedCommit(v ForgeFedCommit)
	// SetForgeFedPush sets the value of this property. Calling IsForgeFedPush
	// afterwards returns true.
	SetForgeFedPush(v ForgeFedPush)
	// SetForgeFedRepository sets the value of this property. Calling
	// IsForgeFedRepository afterwards returns true.
	SetForgeFedRepository(v ForgeFedRepository)
	// SetForgeFedTicket sets the value of this property. Calling
	// IsForgeFedTicket afterwards returns true.
	SetForgeFedTicket(v ForgeFedTicket)
	// SetForgeFedTicketDependency sets the value of this property. Calling
	// IsForgeFedTicketDependency afterwards returns true.
	SetForgeFedTicketDependency(v ForgeFedTicketDependency)
	// SetIRI sets the value of this property. Calling IsIRI afterwards
	// returns true.
	SetIRI(v *url.URL)
	// SetTootEmoji sets the value of this property. Calling IsTootEmoji
	// afterwards returns true.
	SetTootEmoji(v TootEmoji)
	// SetTootIdentityProof sets the value of this property. Calling
	// IsTootIdentityProof afterwards returns true.
	SetTootIdentityProof(v TootIdentityProof)
	// SetType attempts to set the property for the arbitrary type. Returns an
	// error if it is not a valid type to set on this property.
	SetType(t Type) error
}

ActivityStreamsPreviewPropertyIterator represents a single value for the "preview" property.

type ActivityStreamsProfile

type ActivityStreamsProfile interface {
	// GetActivityStreamsAltitude returns the "altitude" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAltitude() ActivityStreamsAltitudeProperty
	// GetActivityStreamsAttachment returns the "attachment" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAttachment() ActivityStreamsAttachmentProperty
	// GetActivityStreamsAttributedTo returns the "attributedTo" property if
	// it exists, and nil otherwise.
	GetActivityStreamsAttributedTo() ActivityStreamsAttributedToProperty
	// GetActivityStreamsAudience returns the "audience" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAudience() ActivityStreamsAudienceProperty
	// GetActivityStreamsBcc returns the "bcc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBcc() ActivityStreamsBccProperty
	// GetActivityStreamsBto returns the "bto" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBto() ActivityStreamsBtoProperty
	// GetActivityStreamsCc returns the "cc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsCc() ActivityStreamsCcProperty
	// GetActivityStreamsContent returns the "content" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContent() ActivityStreamsContentProperty
	// GetActivityStreamsContext returns the "context" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContext() ActivityStreamsContextProperty
	// GetActivityStreamsDescribes returns the "describes" property if it
	// exists, and nil otherwise.
	GetActivityStreamsDescribes() ActivityStreamsDescribesProperty
	// GetActivityStreamsDuration returns the "duration" property if it
	// exists, and nil otherwise.
	GetActivityStreamsDuration() ActivityStreamsDurationProperty
	// GetActivityStreamsEndTime returns the "endTime" property if it exists,
	// and nil otherwise.
	GetActivityStreamsEndTime() ActivityStreamsEndTimeProperty
	// GetActivityStreamsGenerator returns the "generator" property if it
	// exists, and nil otherwise.
	GetActivityStreamsGenerator() ActivityStreamsGeneratorProperty
	// GetActivityStreamsIcon returns the "icon" property if it exists, and
	// nil otherwise.
	GetActivityStreamsIcon() ActivityStreamsIconProperty
	// GetActivityStreamsImage returns the "image" property if it exists, and
	// nil otherwise.
	GetActivityStreamsImage() ActivityStreamsImageProperty
	// GetActivityStreamsInReplyTo returns the "inReplyTo" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInReplyTo() ActivityStreamsInReplyToProperty
	// GetActivityStreamsLikes returns the "likes" property if it exists, and
	// nil otherwise.
	GetActivityStreamsLikes() ActivityStreamsLikesProperty
	// GetActivityStreamsLocation returns the "location" property if it
	// exists, and nil otherwise.
	GetActivityStreamsLocation() ActivityStreamsLocationProperty
	// GetActivityStreamsMediaType returns the "mediaType" property if it
	// exists, and nil otherwise.
	GetActivityStreamsMediaType() ActivityStreamsMediaTypeProperty
	// GetActivityStreamsName returns the "name" property if it exists, and
	// nil otherwise.
	GetActivityStreamsName() ActivityStreamsNameProperty
	// GetActivityStreamsObject returns the "object" property if it exists,
	// and nil otherwise.
	GetActivityStreamsObject() ActivityStreamsObjectProperty
	// GetActivityStreamsPreview returns the "preview" property if it exists,
	// and nil otherwise.
	GetActivityStreamsPreview() ActivityStreamsPreviewProperty
	// GetActivityStreamsPublished returns the "published" property if it
	// exists, and nil otherwise.
	GetActivityStreamsPublished() ActivityStreamsPublishedProperty
	// GetActivityStreamsReplies returns the "replies" property if it exists,
	// and nil otherwise.
	GetActivityStreamsReplies() ActivityStreamsRepliesProperty
	// GetActivityStreamsShares returns the "shares" property if it exists,
	// and nil otherwise.
	GetActivityStreamsShares() ActivityStreamsSharesProperty
	// GetActivityStreamsSource returns the "source" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSource() ActivityStreamsSourceProperty
	// GetActivityStreamsStartTime returns the "startTime" property if it
	// exists, and nil otherwise.
	GetActivityStreamsStartTime() ActivityStreamsStartTimeProperty
	// GetActivityStreamsSummary returns the "summary" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSummary() ActivityStreamsSummaryProperty
	// GetActivityStreamsTag returns the "tag" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTag() ActivityStreamsTagProperty
	// GetActivityStreamsTo returns the "to" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTo() ActivityStreamsToProperty
	// GetActivityStreamsUpdated returns the "updated" property if it exists,
	// and nil otherwise.
	GetActivityStreamsUpdated() ActivityStreamsUpdatedProperty
	// GetActivityStreamsUrl returns the "url" property if it exists, and nil
	// otherwise.
	GetActivityStreamsUrl() ActivityStreamsUrlProperty
	// GetForgeFedTeam returns the "team" property if it exists, and nil
	// otherwise.
	GetForgeFedTeam() ForgeFedTeamProperty
	// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
	// it exists, and nil otherwise.
	GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
	// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
	// it exists, and nil otherwise.
	GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
	// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
	GetJSONLDId() JSONLDIdProperty
	// GetJSONLDType returns the "type" property if it exists, and nil
	// otherwise.
	GetJSONLDType() JSONLDTypeProperty
	// GetTypeName returns the name of this type.
	GetTypeName() string
	// GetUnknownProperties returns the unknown properties for the Profile
	// type. Note that this should not be used by app developers. It is
	// only used to help determine which implementation is LessThan the
	// other. Developers who are creating a different implementation of
	// this type's interface can use this method in their LessThan
	// implementation, but routine ActivityPub applications should not use
	// this to bypass the code generation tool.
	GetUnknownProperties() map[string]interface{}
	// IsExtending returns true if the Profile type extends from the other
	// type.
	IsExtending(other Type) bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this type and the specific properties that are set. The value
	// in the map is the alias used to import the type and its properties.
	JSONLDContext() map[string]string
	// LessThan computes if this Profile is lesser, with an arbitrary but
	// stable determination.
	LessThan(o ActivityStreamsProfile) bool
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format.
	Serialize() (map[string]interface{}, error)
	// SetActivityStreamsAltitude sets the "altitude" property.
	SetActivityStreamsAltitude(i ActivityStreamsAltitudeProperty)
	// SetActivityStreamsAttachment sets the "attachment" property.
	SetActivityStreamsAttachment(i ActivityStreamsAttachmentProperty)
	// SetActivityStreamsAttributedTo sets the "attributedTo" property.
	SetActivityStreamsAttributedTo(i ActivityStreamsAttributedToProperty)
	// SetActivityStreamsAudience sets the "audience" property.
	SetActivityStreamsAudience(i ActivityStreamsAudienceProperty)
	// SetActivityStreamsBcc sets the "bcc" property.
	SetActivityStreamsBcc(i ActivityStreamsBccProperty)
	// SetActivityStreamsBto sets the "bto" property.
	SetActivityStreamsBto(i ActivityStreamsBtoProperty)
	// SetActivityStreamsCc sets the "cc" property.
	SetActivityStreamsCc(i ActivityStreamsCcProperty)
	// SetActivityStreamsContent sets the "content" property.
	SetActivityStreamsContent(i ActivityStreamsContentProperty)
	// SetActivityStreamsContext sets the "context" property.
	SetActivityStreamsContext(i ActivityStreamsContextProperty)
	// SetActivityStreamsDescribes sets the "describes" property.
	SetActivityStreamsDescribes(i ActivityStreamsDescribesProperty)
	// SetActivityStreamsDuration sets the "duration" property.
	SetActivityStreamsDuration(i ActivityStreamsDurationProperty)
	// SetActivityStreamsEndTime sets the "endTime" property.
	SetActivityStreamsEndTime(i ActivityStreamsEndTimeProperty)
	// SetActivityStreamsGenerator sets the "generator" property.
	SetActivityStreamsGenerator(i ActivityStreamsGeneratorProperty)
	// SetActivityStreamsIcon sets the "icon" property.
	SetActivityStreamsIcon(i ActivityStreamsIconProperty)
	// SetActivityStreamsImage sets the "image" property.
	SetActivityStreamsImage(i ActivityStreamsImageProperty)
	// SetActivityStreamsInReplyTo sets the "inReplyTo" property.
	SetActivityStreamsInReplyTo(i ActivityStreamsInReplyToProperty)
	// SetActivityStreamsLikes sets the "likes" property.
	SetActivityStreamsLikes(i ActivityStreamsLikesProperty)
	// SetActivityStreamsLocation sets the "location" property.
	SetActivityStreamsLocation(i ActivityStreamsLocationProperty)
	// SetActivityStreamsMediaType sets the "mediaType" property.
	SetActivityStreamsMediaType(i ActivityStreamsMediaTypeProperty)
	// SetActivityStreamsName sets the "name" property.
	SetActivityStreamsName(i ActivityStreamsNameProperty)
	// SetActivityStreamsObject sets the "object" property.
	SetActivityStreamsObject(i ActivityStreamsObjectProperty)
	// SetActivityStreamsPreview sets the "preview" property.
	SetActivityStreamsPreview(i ActivityStreamsPreviewProperty)
	// SetActivityStreamsPublished sets the "published" property.
	SetActivityStreamsPublished(i ActivityStreamsPublishedProperty)
	// SetActivityStreamsReplies sets the "replies" property.
	SetActivityStreamsReplies(i ActivityStreamsRepliesProperty)
	// SetActivityStreamsShares sets the "shares" property.
	SetActivityStreamsShares(i ActivityStreamsSharesProperty)
	// SetActivityStreamsSource sets the "source" property.
	SetActivityStreamsSource(i ActivityStreamsSourceProperty)
	// SetActivityStreamsStartTime sets the "startTime" property.
	SetActivityStreamsStartTime(i ActivityStreamsStartTimeProperty)
	// SetActivityStreamsSummary sets the "summary" property.
	SetActivityStreamsSummary(i ActivityStreamsSummaryProperty)
	// SetActivityStreamsTag sets the "tag" property.
	SetActivityStreamsTag(i ActivityStreamsTagProperty)
	// SetActivityStreamsTo sets the "to" property.
	SetActivityStreamsTo(i ActivityStreamsToProperty)
	// SetActivityStreamsUpdated sets the "updated" property.
	SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
	// SetActivityStreamsUrl sets the "url" property.
	SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
	// SetForgeFedTeam sets the "team" property.
	SetForgeFedTeam(i ForgeFedTeamProperty)
	// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
	SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
	// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
	SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
	// SetJSONLDId sets the "id" property.
	SetJSONLDId(i JSONLDIdProperty)
	// SetJSONLDType sets the "type" property.
	SetJSONLDType(i JSONLDTypeProperty)
	// VocabularyURI returns the vocabulary's URI as a string.
	VocabularyURI() string
}

A Profile is a content object that describes another Object, typically used to describe Actor Type objects. The describes property is used to reference the object being described by the profile.

Example 59 (https://www.w3.org/TR/activitystreams-vocabulary/#ex184a-jsonld):

{
  "describes": {
    "name": "Sally Smith",
    "type": "Person"
  },
  "summary": "Sally's Profile",
  "type": "Profile"
}

type ActivityStreamsPublishedProperty

type ActivityStreamsPublishedProperty interface {
	// Clear ensures no value of this property is set. Calling
	// IsXMLSchemaDateTime afterwards will return false.
	Clear()
	// Get returns the value of this property. When IsXMLSchemaDateTime
	// returns false, Get will return any arbitrary value.
	Get() time.Time
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return any arbitrary value.
	GetIRI() *url.URL
	// HasAny returns true if the value or IRI is set.
	HasAny() bool
	// IsIRI returns true if this property is an IRI.
	IsIRI() bool
	// IsXMLSchemaDateTime returns true if this property is set and not an IRI.
	IsXMLSchemaDateTime() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsPublishedProperty) bool
	// Name returns the name of this property: "published".
	Name() string
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// Set sets the value of this property. Calling IsXMLSchemaDateTime
	// afterwards will return true.
	Set(v time.Time)
	// SetIRI sets the value of this property. Calling IsIRI afterwards will
	// return true.
	SetIRI(v *url.URL)
}

The date and time at which the object was published

Example 128 (https://www.w3.org/TR/activitystreams-vocabulary/#ex145-jsonld):

{
  "content": "Fish swim.",
  "published": "2014-12-12T12:12:12Z",
  "summary": "A simple note",
  "type": "Note"
}

type ActivityStreamsQuestion

type ActivityStreamsQuestion interface {
	// GetActivityStreamsActor returns the "actor" property if it exists, and
	// nil otherwise.
	GetActivityStreamsActor() ActivityStreamsActorProperty
	// GetActivityStreamsAltitude returns the "altitude" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAltitude() ActivityStreamsAltitudeProperty
	// GetActivityStreamsAnyOf returns the "anyOf" property if it exists, and
	// nil otherwise.
	GetActivityStreamsAnyOf() ActivityStreamsAnyOfProperty
	// GetActivityStreamsAttachment returns the "attachment" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAttachment() ActivityStreamsAttachmentProperty
	// GetActivityStreamsAttributedTo returns the "attributedTo" property if
	// it exists, and nil otherwise.
	GetActivityStreamsAttributedTo() ActivityStreamsAttributedToProperty
	// GetActivityStreamsAudience returns the "audience" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAudience() ActivityStreamsAudienceProperty
	// GetActivityStreamsBcc returns the "bcc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBcc() ActivityStreamsBccProperty
	// GetActivityStreamsBto returns the "bto" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBto() ActivityStreamsBtoProperty
	// GetActivityStreamsCc returns the "cc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsCc() ActivityStreamsCcProperty
	// GetActivityStreamsClosed returns the "closed" property if it exists,
	// and nil otherwise.
	GetActivityStreamsClosed() ActivityStreamsClosedProperty
	// GetActivityStreamsContent returns the "content" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContent() ActivityStreamsContentProperty
	// GetActivityStreamsContext returns the "context" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContext() ActivityStreamsContextProperty
	// GetActivityStreamsDuration returns the "duration" property if it
	// exists, and nil otherwise.
	GetActivityStreamsDuration() ActivityStreamsDurationProperty
	// GetActivityStreamsEndTime returns the "endTime" property if it exists,
	// and nil otherwise.
	GetActivityStreamsEndTime() ActivityStreamsEndTimeProperty
	// GetActivityStreamsGenerator returns the "generator" property if it
	// exists, and nil otherwise.
	GetActivityStreamsGenerator() ActivityStreamsGeneratorProperty
	// GetActivityStreamsIcon returns the "icon" property if it exists, and
	// nil otherwise.
	GetActivityStreamsIcon() ActivityStreamsIconProperty
	// GetActivityStreamsImage returns the "image" property if it exists, and
	// nil otherwise.
	GetActivityStreamsImage() ActivityStreamsImageProperty
	// GetActivityStreamsInReplyTo returns the "inReplyTo" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInReplyTo() ActivityStreamsInReplyToProperty
	// GetActivityStreamsInstrument returns the "instrument" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInstrument() ActivityStreamsInstrumentProperty
	// GetActivityStreamsLikes returns the "likes" property if it exists, and
	// nil otherwise.
	GetActivityStreamsLikes() ActivityStreamsLikesProperty
	// GetActivityStreamsLocation returns the "location" property if it
	// exists, and nil otherwise.
	GetActivityStreamsLocation() ActivityStreamsLocationProperty
	// GetActivityStreamsMediaType returns the "mediaType" property if it
	// exists, and nil otherwise.
	GetActivityStreamsMediaType() ActivityStreamsMediaTypeProperty
	// GetActivityStreamsName returns the "name" property if it exists, and
	// nil otherwise.
	GetActivityStreamsName() ActivityStreamsNameProperty
	// GetActivityStreamsOneOf returns the "oneOf" property if it exists, and
	// nil otherwise.
	GetActivityStreamsOneOf() ActivityStreamsOneOfProperty
	// GetActivityStreamsOrigin returns the "origin" property if it exists,
	// and nil otherwise.
	GetActivityStreamsOrigin() ActivityStreamsOriginProperty
	// GetActivityStreamsPreview returns the "preview" property if it exists,
	// and nil otherwise.
	GetActivityStreamsPreview() ActivityStreamsPreviewProperty
	// GetActivityStreamsPublished returns the "published" property if it
	// exists, and nil otherwise.
	GetActivityStreamsPublished() ActivityStreamsPublishedProperty
	// GetActivityStreamsReplies returns the "replies" property if it exists,
	// and nil otherwise.
	GetActivityStreamsReplies() ActivityStreamsRepliesProperty
	// GetActivityStreamsResult returns the "result" property if it exists,
	// and nil otherwise.
	GetActivityStreamsResult() ActivityStreamsResultProperty
	// GetActivityStreamsShares returns the "shares" property if it exists,
	// and nil otherwise.
	GetActivityStreamsShares() ActivityStreamsSharesProperty
	// GetActivityStreamsSource returns the "source" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSource() ActivityStreamsSourceProperty
	// GetActivityStreamsStartTime returns the "startTime" property if it
	// exists, and nil otherwise.
	GetActivityStreamsStartTime() ActivityStreamsStartTimeProperty
	// GetActivityStreamsSummary returns the "summary" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSummary() ActivityStreamsSummaryProperty
	// GetActivityStreamsTag returns the "tag" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTag() ActivityStreamsTagProperty
	// GetActivityStreamsTarget returns the "target" property if it exists,
	// and nil otherwise.
	GetActivityStreamsTarget() ActivityStreamsTargetProperty
	// GetActivityStreamsTo returns the "to" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTo() ActivityStreamsToProperty
	// GetActivityStreamsUpdated returns the "updated" property if it exists,
	// and nil otherwise.
	GetActivityStreamsUpdated() ActivityStreamsUpdatedProperty
	// GetActivityStreamsUrl returns the "url" property if it exists, and nil
	// otherwise.
	GetActivityStreamsUrl() ActivityStreamsUrlProperty
	// GetForgeFedTeam returns the "team" property if it exists, and nil
	// otherwise.
	GetForgeFedTeam() ForgeFedTeamProperty
	// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
	// it exists, and nil otherwise.
	GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
	// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
	// it exists, and nil otherwise.
	GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
	// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
	GetJSONLDId() JSONLDIdProperty
	// GetJSONLDType returns the "type" property if it exists, and nil
	// otherwise.
	GetJSONLDType() JSONLDTypeProperty
	// GetTootVotersCount returns the "votersCount" property if it exists, and
	// nil otherwise.
	GetTootVotersCount() TootVotersCountProperty
	// GetTypeName returns the name of this type.
	GetTypeName() string
	// GetUnknownProperties returns the unknown properties for the Question
	// type. Note that this should not be used by app developers. It is
	// only used to help determine which implementation is LessThan the
	// other. Developers who are creating a different implementation of
	// this type's interface can use this method in their LessThan
	// implementation, but routine ActivityPub applications should not use
	// this to bypass the code generation tool.
	GetUnknownProperties() map[string]interface{}
	// IsExtending returns true if the Question type extends from the other
	// type.
	IsExtending(other Type) bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this type and the specific properties that are set. The value
	// in the map is the alias used to import the type and its properties.
	JSONLDContext() map[string]string
	// LessThan computes if this Question is lesser, with an arbitrary but
	// stable determination.
	LessThan(o ActivityStreamsQuestion) bool
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format.
	Serialize() (map[string]interface{}, error)
	// SetActivityStreamsActor sets the "actor" property.
	SetActivityStreamsActor(i ActivityStreamsActorProperty)
	// SetActivityStreamsAltitude sets the "altitude" property.
	SetActivityStreamsAltitude(i ActivityStreamsAltitudeProperty)
	// SetActivityStreamsAnyOf sets the "anyOf" property.
	SetActivityStreamsAnyOf(i ActivityStreamsAnyOfProperty)
	// SetActivityStreamsAttachment sets the "attachment" property.
	SetActivityStreamsAttachment(i ActivityStreamsAttachmentProperty)
	// SetActivityStreamsAttributedTo sets the "attributedTo" property.
	SetActivityStreamsAttributedTo(i ActivityStreamsAttributedToProperty)
	// SetActivityStreamsAudience sets the "audience" property.
	SetActivityStreamsAudience(i ActivityStreamsAudienceProperty)
	// SetActivityStreamsBcc sets the "bcc" property.
	SetActivityStreamsBcc(i ActivityStreamsBccProperty)
	// SetActivityStreamsBto sets the "bto" property.
	SetActivityStreamsBto(i ActivityStreamsBtoProperty)
	// SetActivityStreamsCc sets the "cc" property.
	SetActivityStreamsCc(i ActivityStreamsCcProperty)
	// SetActivityStreamsClosed sets the "closed" property.
	SetActivityStreamsClosed(i ActivityStreamsClosedProperty)
	// SetActivityStreamsContent sets the "content" property.
	SetActivityStreamsContent(i ActivityStreamsContentProperty)
	// SetActivityStreamsContext sets the "context" property.
	SetActivityStreamsContext(i ActivityStreamsContextProperty)
	// SetActivityStreamsDuration sets the "duration" property.
	SetActivityStreamsDuration(i ActivityStreamsDurationProperty)
	// SetActivityStreamsEndTime sets the "endTime" property.
	SetActivityStreamsEndTime(i ActivityStreamsEndTimeProperty)
	// SetActivityStreamsGenerator sets the "generator" property.
	SetActivityStreamsGenerator(i ActivityStreamsGeneratorProperty)
	// SetActivityStreamsIcon sets the "icon" property.
	SetActivityStreamsIcon(i ActivityStreamsIconProperty)
	// SetActivityStreamsImage sets the "image" property.
	SetActivityStreamsImage(i ActivityStreamsImageProperty)
	// SetActivityStreamsInReplyTo sets the "inReplyTo" property.
	SetActivityStreamsInReplyTo(i ActivityStreamsInReplyToProperty)
	// SetActivityStreamsInstrument sets the "instrument" property.
	SetActivityStreamsInstrument(i ActivityStreamsInstrumentProperty)
	// SetActivityStreamsLikes sets the "likes" property.
	SetActivityStreamsLikes(i ActivityStreamsLikesProperty)
	// SetActivityStreamsLocation sets the "location" property.
	SetActivityStreamsLocation(i ActivityStreamsLocationProperty)
	// SetActivityStreamsMediaType sets the "mediaType" property.
	SetActivityStreamsMediaType(i ActivityStreamsMediaTypeProperty)
	// SetActivityStreamsName sets the "name" property.
	SetActivityStreamsName(i ActivityStreamsNameProperty)
	// SetActivityStreamsOneOf sets the "oneOf" property.
	SetActivityStreamsOneOf(i ActivityStreamsOneOfProperty)
	// SetActivityStreamsOrigin sets the "origin" property.
	SetActivityStreamsOrigin(i ActivityStreamsOriginProperty)
	// SetActivityStreamsPreview sets the "preview" property.
	SetActivityStreamsPreview(i ActivityStreamsPreviewProperty)
	// SetActivityStreamsPublished sets the "published" property.
	SetActivityStreamsPublished(i ActivityStreamsPublishedProperty)
	// SetActivityStreamsReplies sets the "replies" property.
	SetActivityStreamsReplies(i ActivityStreamsRepliesProperty)
	// SetActivityStreamsResult sets the "result" property.
	SetActivityStreamsResult(i ActivityStreamsResultProperty)
	// SetActivityStreamsShares sets the "shares" property.
	SetActivityStreamsShares(i ActivityStreamsSharesProperty)
	// SetActivityStreamsSource sets the "source" property.
	SetActivityStreamsSource(i ActivityStreamsSourceProperty)
	// SetActivityStreamsStartTime sets the "startTime" property.
	SetActivityStreamsStartTime(i ActivityStreamsStartTimeProperty)
	// SetActivityStreamsSummary sets the "summary" property.
	SetActivityStreamsSummary(i ActivityStreamsSummaryProperty)
	// SetActivityStreamsTag sets the "tag" property.
	SetActivityStreamsTag(i ActivityStreamsTagProperty)
	// SetActivityStreamsTarget sets the "target" property.
	SetActivityStreamsTarget(i ActivityStreamsTargetProperty)
	// SetActivityStreamsTo sets the "to" property.
	SetActivityStreamsTo(i ActivityStreamsToProperty)
	// SetActivityStreamsUpdated sets the "updated" property.
	SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
	// SetActivityStreamsUrl sets the "url" property.
	SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
	// SetForgeFedTeam sets the "team" property.
	SetForgeFedTeam(i ForgeFedTeamProperty)
	// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
	SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
	// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
	SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
	// SetJSONLDId sets the "id" property.
	SetJSONLDId(i JSONLDIdProperty)
	// SetJSONLDType sets the "type" property.
	SetJSONLDType(i JSONLDTypeProperty)
	// SetTootVotersCount sets the "votersCount" property.
	SetTootVotersCount(i TootVotersCountProperty)
	// VocabularyURI returns the vocabulary's URI as a string.
	VocabularyURI() string
}

Represents a question being asked. Question objects are an extension of IntransitiveActivity. That is, the Question object is an Activity, but the direct object is the question itself and therefore it would not contain an object property. Either of the anyOf and oneOf properties MAY be used to express possible answers, but a Question object MUST NOT have both properties.

Example 40 (https://www.w3.org/TR/activitystreams-vocabulary/#ex55a-jsonld):

{
  "name": "What is the answer?",
  "oneOf": [
    {
      "name": "Option A",
      "type": "Note"
    },
    {
      "name": "Option B",
      "type": "Note"
    }
  ],
  "type": "Question"
}

Example 41 (https://www.w3.org/TR/activitystreams-vocabulary/#ex55b-jsonld):

{
  "closed": "2016-05-10T00:00:00Z",
  "name": "What is the answer?",
  "type": "Question"
}

type ActivityStreamsRadiusProperty

type ActivityStreamsRadiusProperty interface {
	// Clear ensures no value of this property is set. Calling
	// IsXMLSchemaFloat afterwards will return false.
	Clear()
	// Get returns the value of this property. When IsXMLSchemaFloat returns
	// false, Get will return any arbitrary value.
	Get() float64
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return any arbitrary value.
	GetIRI() *url.URL
	// HasAny returns true if the value or IRI is set.
	HasAny() bool
	// IsIRI returns true if this property is an IRI.
	IsIRI() bool
	// IsXMLSchemaFloat returns true if this property is set and not an IRI.
	IsXMLSchemaFloat() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsRadiusProperty) bool
	// Name returns the name of this property: "radius".
	Name() string
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// Set sets the value of this property. Calling IsXMLSchemaFloat
	// afterwards will return true.
	Set(v float64)
	// SetIRI sets the value of this property. Calling IsIRI afterwards will
	// return true.
	SetIRI(v *url.URL)
}

The radius from the given latitude and longitude for a Place. The units is expressed by the units property. If units is not specified, the default is assumed to be "m" indicating "meters".

Example 130 (https://www.w3.org/TR/activitystreams-vocabulary/#ex147-jsonld):

{
  "latitude": 36.75,
  "longitude": 119.7667,
  "name": "Fresno Area",
  "radius": 15,
  "type": "Place",
  "units": "miles"
}

type ActivityStreamsRead

type ActivityStreamsRead interface {
	// GetActivityStreamsActor returns the "actor" property if it exists, and
	// nil otherwise.
	GetActivityStreamsActor() ActivityStreamsActorProperty
	// GetActivityStreamsAltitude returns the "altitude" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAltitude() ActivityStreamsAltitudeProperty
	// GetActivityStreamsAttachment returns the "attachment" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAttachment() ActivityStreamsAttachmentProperty
	// GetActivityStreamsAttributedTo returns the "attributedTo" property if
	// it exists, and nil otherwise.
	GetActivityStreamsAttributedTo() ActivityStreamsAttributedToProperty
	// GetActivityStreamsAudience returns the "audience" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAudience() ActivityStreamsAudienceProperty
	// GetActivityStreamsBcc returns the "bcc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBcc() ActivityStreamsBccProperty
	// GetActivityStreamsBto returns the "bto" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBto() ActivityStreamsBtoProperty
	// GetActivityStreamsCc returns the "cc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsCc() ActivityStreamsCcProperty
	// GetActivityStreamsContent returns the "content" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContent() ActivityStreamsContentProperty
	// GetActivityStreamsContext returns the "context" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContext() ActivityStreamsContextProperty
	// GetActivityStreamsDuration returns the "duration" property if it
	// exists, and nil otherwise.
	GetActivityStreamsDuration() ActivityStreamsDurationProperty
	// GetActivityStreamsEndTime returns the "endTime" property if it exists,
	// and nil otherwise.
	GetActivityStreamsEndTime() ActivityStreamsEndTimeProperty
	// GetActivityStreamsGenerator returns the "generator" property if it
	// exists, and nil otherwise.
	GetActivityStreamsGenerator() ActivityStreamsGeneratorProperty
	// GetActivityStreamsIcon returns the "icon" property if it exists, and
	// nil otherwise.
	GetActivityStreamsIcon() ActivityStreamsIconProperty
	// GetActivityStreamsImage returns the "image" property if it exists, and
	// nil otherwise.
	GetActivityStreamsImage() ActivityStreamsImageProperty
	// GetActivityStreamsInReplyTo returns the "inReplyTo" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInReplyTo() ActivityStreamsInReplyToProperty
	// GetActivityStreamsInstrument returns the "instrument" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInstrument() ActivityStreamsInstrumentProperty
	// GetActivityStreamsLikes returns the "likes" property if it exists, and
	// nil otherwise.
	GetActivityStreamsLikes() ActivityStreamsLikesProperty
	// GetActivityStreamsLocation returns the "location" property if it
	// exists, and nil otherwise.
	GetActivityStreamsLocation() ActivityStreamsLocationProperty
	// GetActivityStreamsMediaType returns the "mediaType" property if it
	// exists, and nil otherwise.
	GetActivityStreamsMediaType() ActivityStreamsMediaTypeProperty
	// GetActivityStreamsName returns the "name" property if it exists, and
	// nil otherwise.
	GetActivityStreamsName() ActivityStreamsNameProperty
	// GetActivityStreamsObject returns the "object" property if it exists,
	// and nil otherwise.
	GetActivityStreamsObject() ActivityStreamsObjectProperty
	// GetActivityStreamsOrigin returns the "origin" property if it exists,
	// and nil otherwise.
	GetActivityStreamsOrigin() ActivityStreamsOriginProperty
	// GetActivityStreamsPreview returns the "preview" property if it exists,
	// and nil otherwise.
	GetActivityStreamsPreview() ActivityStreamsPreviewProperty
	// GetActivityStreamsPublished returns the "published" property if it
	// exists, and nil otherwise.
	GetActivityStreamsPublished() ActivityStreamsPublishedProperty
	// GetActivityStreamsReplies returns the "replies" property if it exists,
	// and nil otherwise.
	GetActivityStreamsReplies() ActivityStreamsRepliesProperty
	// GetActivityStreamsResult returns the "result" property if it exists,
	// and nil otherwise.
	GetActivityStreamsResult() ActivityStreamsResultProperty
	// GetActivityStreamsShares returns the "shares" property if it exists,
	// and nil otherwise.
	GetActivityStreamsShares() ActivityStreamsSharesProperty
	// GetActivityStreamsSource returns the "source" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSource() ActivityStreamsSourceProperty
	// GetActivityStreamsStartTime returns the "startTime" property if it
	// exists, and nil otherwise.
	GetActivityStreamsStartTime() ActivityStreamsStartTimeProperty
	// GetActivityStreamsSummary returns the "summary" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSummary() ActivityStreamsSummaryProperty
	// GetActivityStreamsTag returns the "tag" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTag() ActivityStreamsTagProperty
	// GetActivityStreamsTarget returns the "target" property if it exists,
	// and nil otherwise.
	GetActivityStreamsTarget() ActivityStreamsTargetProperty
	// GetActivityStreamsTo returns the "to" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTo() ActivityStreamsToProperty
	// GetActivityStreamsUpdated returns the "updated" property if it exists,
	// and nil otherwise.
	GetActivityStreamsUpdated() ActivityStreamsUpdatedProperty
	// GetActivityStreamsUrl returns the "url" property if it exists, and nil
	// otherwise.
	GetActivityStreamsUrl() ActivityStreamsUrlProperty
	// GetForgeFedTeam returns the "team" property if it exists, and nil
	// otherwise.
	GetForgeFedTeam() ForgeFedTeamProperty
	// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
	// it exists, and nil otherwise.
	GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
	// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
	// it exists, and nil otherwise.
	GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
	// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
	GetJSONLDId() JSONLDIdProperty
	// GetJSONLDType returns the "type" property if it exists, and nil
	// otherwise.
	GetJSONLDType() JSONLDTypeProperty
	// GetTypeName returns the name of this type.
	GetTypeName() string
	// GetUnknownProperties returns the unknown properties for the Read type.
	// Note that this should not be used by app developers. It is only
	// used to help determine which implementation is LessThan the other.
	// Developers who are creating a different implementation of this
	// type's interface can use this method in their LessThan
	// implementation, but routine ActivityPub applications should not use
	// this to bypass the code generation tool.
	GetUnknownProperties() map[string]interface{}
	// IsExtending returns true if the Read type extends from the other type.
	IsExtending(other Type) bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this type and the specific properties that are set. The value
	// in the map is the alias used to import the type and its properties.
	JSONLDContext() map[string]string
	// LessThan computes if this Read is lesser, with an arbitrary but stable
	// determination.
	LessThan(o ActivityStreamsRead) bool
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format.
	Serialize() (map[string]interface{}, error)
	// SetActivityStreamsActor sets the "actor" property.
	SetActivityStreamsActor(i ActivityStreamsActorProperty)
	// SetActivityStreamsAltitude sets the "altitude" property.
	SetActivityStreamsAltitude(i ActivityStreamsAltitudeProperty)
	// SetActivityStreamsAttachment sets the "attachment" property.
	SetActivityStreamsAttachment(i ActivityStreamsAttachmentProperty)
	// SetActivityStreamsAttributedTo sets the "attributedTo" property.
	SetActivityStreamsAttributedTo(i ActivityStreamsAttributedToProperty)
	// SetActivityStreamsAudience sets the "audience" property.
	SetActivityStreamsAudience(i ActivityStreamsAudienceProperty)
	// SetActivityStreamsBcc sets the "bcc" property.
	SetActivityStreamsBcc(i ActivityStreamsBccProperty)
	// SetActivityStreamsBto sets the "bto" property.
	SetActivityStreamsBto(i ActivityStreamsBtoProperty)
	// SetActivityStreamsCc sets the "cc" property.
	SetActivityStreamsCc(i ActivityStreamsCcProperty)
	// SetActivityStreamsContent sets the "content" property.
	SetActivityStreamsContent(i ActivityStreamsContentProperty)
	// SetActivityStreamsContext sets the "context" property.
	SetActivityStreamsContext(i ActivityStreamsContextProperty)
	// SetActivityStreamsDuration sets the "duration" property.
	SetActivityStreamsDuration(i ActivityStreamsDurationProperty)
	// SetActivityStreamsEndTime sets the "endTime" property.
	SetActivityStreamsEndTime(i ActivityStreamsEndTimeProperty)
	// SetActivityStreamsGenerator sets the "generator" property.
	SetActivityStreamsGenerator(i ActivityStreamsGeneratorProperty)
	// SetActivityStreamsIcon sets the "icon" property.
	SetActivityStreamsIcon(i ActivityStreamsIconProperty)
	// SetActivityStreamsImage sets the "image" property.
	SetActivityStreamsImage(i ActivityStreamsImageProperty)
	// SetActivityStreamsInReplyTo sets the "inReplyTo" property.
	SetActivityStreamsInReplyTo(i ActivityStreamsInReplyToProperty)
	// SetActivityStreamsInstrument sets the "instrument" property.
	SetActivityStreamsInstrument(i ActivityStreamsInstrumentProperty)
	// SetActivityStreamsLikes sets the "likes" property.
	SetActivityStreamsLikes(i ActivityStreamsLikesProperty)
	// SetActivityStreamsLocation sets the "location" property.
	SetActivityStreamsLocation(i ActivityStreamsLocationProperty)
	// SetActivityStreamsMediaType sets the "mediaType" property.
	SetActivityStreamsMediaType(i ActivityStreamsMediaTypeProperty)
	// SetActivityStreamsName sets the "name" property.
	SetActivityStreamsName(i ActivityStreamsNameProperty)
	// SetActivityStreamsObject sets the "object" property.
	SetActivityStreamsObject(i ActivityStreamsObjectProperty)
	// SetActivityStreamsOrigin sets the "origin" property.
	SetActivityStreamsOrigin(i ActivityStreamsOriginProperty)
	// SetActivityStreamsPreview sets the "preview" property.
	SetActivityStreamsPreview(i ActivityStreamsPreviewProperty)
	// SetActivityStreamsPublished sets the "published" property.
	SetActivityStreamsPublished(i ActivityStreamsPublishedProperty)
	// SetActivityStreamsReplies sets the "replies" property.
	SetActivityStreamsReplies(i ActivityStreamsRepliesProperty)
	// SetActivityStreamsResult sets the "result" property.
	SetActivityStreamsResult(i ActivityStreamsResultProperty)
	// SetActivityStreamsShares sets the "shares" property.
	SetActivityStreamsShares(i ActivityStreamsSharesProperty)
	// SetActivityStreamsSource sets the "source" property.
	SetActivityStreamsSource(i ActivityStreamsSourceProperty)
	// SetActivityStreamsStartTime sets the "startTime" property.
	SetActivityStreamsStartTime(i ActivityStreamsStartTimeProperty)
	// SetActivityStreamsSummary sets the "summary" property.
	SetActivityStreamsSummary(i ActivityStreamsSummaryProperty)
	// SetActivityStreamsTag sets the "tag" property.
	SetActivityStreamsTag(i ActivityStreamsTagProperty)
	// SetActivityStreamsTarget sets the "target" property.
	SetActivityStreamsTarget(i ActivityStreamsTargetProperty)
	// SetActivityStreamsTo sets the "to" property.
	SetActivityStreamsTo(i ActivityStreamsToProperty)
	// SetActivityStreamsUpdated sets the "updated" property.
	SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
	// SetActivityStreamsUrl sets the "url" property.
	SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
	// SetForgeFedTeam sets the "team" property.
	SetForgeFedTeam(i ForgeFedTeamProperty)
	// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
	SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
	// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
	SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
	// SetJSONLDId sets the "id" property.
	SetJSONLDId(i JSONLDIdProperty)
	// SetJSONLDType sets the "type" property.
	SetJSONLDType(i JSONLDTypeProperty)
	// VocabularyURI returns the vocabulary's URI as a string.
	VocabularyURI() string
}

Indicates that the actor has read the object.

Example 33 (https://www.w3.org/TR/activitystreams-vocabulary/#ex164-jsonld):

{
  "actor": {
    "name": "Sally",
    "type": "Person"
  },
  "object": "http://example.org/posts/1",
  "summary": "Sally read a blog post",
  "type": "Read"
}

type ActivityStreamsReject

type ActivityStreamsReject interface {
	// GetActivityStreamsActor returns the "actor" property if it exists, and
	// nil otherwise.
	GetActivityStreamsActor() ActivityStreamsActorProperty
	// GetActivityStreamsAltitude returns the "altitude" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAltitude() ActivityStreamsAltitudeProperty
	// GetActivityStreamsAttachment returns the "attachment" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAttachment() ActivityStreamsAttachmentProperty
	// GetActivityStreamsAttributedTo returns the "attributedTo" property if
	// it exists, and nil otherwise.
	GetActivityStreamsAttributedTo() ActivityStreamsAttributedToProperty
	// GetActivityStreamsAudience returns the "audience" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAudience() ActivityStreamsAudienceProperty
	// GetActivityStreamsBcc returns the "bcc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBcc() ActivityStreamsBccProperty
	// GetActivityStreamsBto returns the "bto" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBto() ActivityStreamsBtoProperty
	// GetActivityStreamsCc returns the "cc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsCc() ActivityStreamsCcProperty
	// GetActivityStreamsContent returns the "content" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContent() ActivityStreamsContentProperty
	// GetActivityStreamsContext returns the "context" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContext() ActivityStreamsContextProperty
	// GetActivityStreamsDuration returns the "duration" property if it
	// exists, and nil otherwise.
	GetActivityStreamsDuration() ActivityStreamsDurationProperty
	// GetActivityStreamsEndTime returns the "endTime" property if it exists,
	// and nil otherwise.
	GetActivityStreamsEndTime() ActivityStreamsEndTimeProperty
	// GetActivityStreamsGenerator returns the "generator" property if it
	// exists, and nil otherwise.
	GetActivityStreamsGenerator() ActivityStreamsGeneratorProperty
	// GetActivityStreamsIcon returns the "icon" property if it exists, and
	// nil otherwise.
	GetActivityStreamsIcon() ActivityStreamsIconProperty
	// GetActivityStreamsImage returns the "image" property if it exists, and
	// nil otherwise.
	GetActivityStreamsImage() ActivityStreamsImageProperty
	// GetActivityStreamsInReplyTo returns the "inReplyTo" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInReplyTo() ActivityStreamsInReplyToProperty
	// GetActivityStreamsInstrument returns the "instrument" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInstrument() ActivityStreamsInstrumentProperty
	// GetActivityStreamsLikes returns the "likes" property if it exists, and
	// nil otherwise.
	GetActivityStreamsLikes() ActivityStreamsLikesProperty
	// GetActivityStreamsLocation returns the "location" property if it
	// exists, and nil otherwise.
	GetActivityStreamsLocation() ActivityStreamsLocationProperty
	// GetActivityStreamsMediaType returns the "mediaType" property if it
	// exists, and nil otherwise.
	GetActivityStreamsMediaType() ActivityStreamsMediaTypeProperty
	// GetActivityStreamsName returns the "name" property if it exists, and
	// nil otherwise.
	GetActivityStreamsName() ActivityStreamsNameProperty
	// GetActivityStreamsObject returns the "object" property if it exists,
	// and nil otherwise.
	GetActivityStreamsObject() ActivityStreamsObjectProperty
	// GetActivityStreamsOrigin returns the "origin" property if it exists,
	// and nil otherwise.
	GetActivityStreamsOrigin() ActivityStreamsOriginProperty
	// GetActivityStreamsPreview returns the "preview" property if it exists,
	// and nil otherwise.
	GetActivityStreamsPreview() ActivityStreamsPreviewProperty
	// GetActivityStreamsPublished returns the "published" property if it
	// exists, and nil otherwise.
	GetActivityStreamsPublished() ActivityStreamsPublishedProperty
	// GetActivityStreamsReplies returns the "replies" property if it exists,
	// and nil otherwise.
	GetActivityStreamsReplies() ActivityStreamsRepliesProperty
	// GetActivityStreamsResult returns the "result" property if it exists,
	// and nil otherwise.
	GetActivityStreamsResult() ActivityStreamsResultProperty
	// GetActivityStreamsShares returns the "shares" property if it exists,
	// and nil otherwise.
	GetActivityStreamsShares() ActivityStreamsSharesProperty
	// GetActivityStreamsSource returns the "source" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSource() ActivityStreamsSourceProperty
	// GetActivityStreamsStartTime returns the "startTime" property if it
	// exists, and nil otherwise.
	GetActivityStreamsStartTime() ActivityStreamsStartTimeProperty
	// GetActivityStreamsSummary returns the "summary" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSummary() ActivityStreamsSummaryProperty
	// GetActivityStreamsTag returns the "tag" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTag() ActivityStreamsTagProperty
	// GetActivityStreamsTarget returns the "target" property if it exists,
	// and nil otherwise.
	GetActivityStreamsTarget() ActivityStreamsTargetProperty
	// GetActivityStreamsTo returns the "to" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTo() ActivityStreamsToProperty
	// GetActivityStreamsUpdated returns the "updated" property if it exists,
	// and nil otherwise.
	GetActivityStreamsUpdated() ActivityStreamsUpdatedProperty
	// GetActivityStreamsUrl returns the "url" property if it exists, and nil
	// otherwise.
	GetActivityStreamsUrl() ActivityStreamsUrlProperty
	// GetForgeFedTeam returns the "team" property if it exists, and nil
	// otherwise.
	GetForgeFedTeam() ForgeFedTeamProperty
	// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
	// it exists, and nil otherwise.
	GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
	// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
	// it exists, and nil otherwise.
	GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
	// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
	GetJSONLDId() JSONLDIdProperty
	// GetJSONLDType returns the "type" property if it exists, and nil
	// otherwise.
	GetJSONLDType() JSONLDTypeProperty
	// GetTypeName returns the name of this type.
	GetTypeName() string
	// GetUnknownProperties returns the unknown properties for the Reject
	// type. Note that this should not be used by app developers. It is
	// only used to help determine which implementation is LessThan the
	// other. Developers who are creating a different implementation of
	// this type's interface can use this method in their LessThan
	// implementation, but routine ActivityPub applications should not use
	// this to bypass the code generation tool.
	GetUnknownProperties() map[string]interface{}
	// IsExtending returns true if the Reject type extends from the other type.
	IsExtending(other Type) bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this type and the specific properties that are set. The value
	// in the map is the alias used to import the type and its properties.
	JSONLDContext() map[string]string
	// LessThan computes if this Reject is lesser, with an arbitrary but
	// stable determination.
	LessThan(o ActivityStreamsReject) bool
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format.
	Serialize() (map[string]interface{}, error)
	// SetActivityStreamsActor sets the "actor" property.
	SetActivityStreamsActor(i ActivityStreamsActorProperty)
	// SetActivityStreamsAltitude sets the "altitude" property.
	SetActivityStreamsAltitude(i ActivityStreamsAltitudeProperty)
	// SetActivityStreamsAttachment sets the "attachment" property.
	SetActivityStreamsAttachment(i ActivityStreamsAttachmentProperty)
	// SetActivityStreamsAttributedTo sets the "attributedTo" property.
	SetActivityStreamsAttributedTo(i ActivityStreamsAttributedToProperty)
	// SetActivityStreamsAudience sets the "audience" property.
	SetActivityStreamsAudience(i ActivityStreamsAudienceProperty)
	// SetActivityStreamsBcc sets the "bcc" property.
	SetActivityStreamsBcc(i ActivityStreamsBccProperty)
	// SetActivityStreamsBto sets the "bto" property.
	SetActivityStreamsBto(i ActivityStreamsBtoProperty)
	// SetActivityStreamsCc sets the "cc" property.
	SetActivityStreamsCc(i ActivityStreamsCcProperty)
	// SetActivityStreamsContent sets the "content" property.
	SetActivityStreamsContent(i ActivityStreamsContentProperty)
	// SetActivityStreamsContext sets the "context" property.
	SetActivityStreamsContext(i ActivityStreamsContextProperty)
	// SetActivityStreamsDuration sets the "duration" property.
	SetActivityStreamsDuration(i ActivityStreamsDurationProperty)
	// SetActivityStreamsEndTime sets the "endTime" property.
	SetActivityStreamsEndTime(i ActivityStreamsEndTimeProperty)
	// SetActivityStreamsGenerator sets the "generator" property.
	SetActivityStreamsGenerator(i ActivityStreamsGeneratorProperty)
	// SetActivityStreamsIcon sets the "icon" property.
	SetActivityStreamsIcon(i ActivityStreamsIconProperty)
	// SetActivityStreamsImage sets the "image" property.
	SetActivityStreamsImage(i ActivityStreamsImageProperty)
	// SetActivityStreamsInReplyTo sets the "inReplyTo" property.
	SetActivityStreamsInReplyTo(i ActivityStreamsInReplyToProperty)
	// SetActivityStreamsInstrument sets the "instrument" property.
	SetActivityStreamsInstrument(i ActivityStreamsInstrumentProperty)
	// SetActivityStreamsLikes sets the "likes" property.
	SetActivityStreamsLikes(i ActivityStreamsLikesProperty)
	// SetActivityStreamsLocation sets the "location" property.
	SetActivityStreamsLocation(i ActivityStreamsLocationProperty)
	// SetActivityStreamsMediaType sets the "mediaType" property.
	SetActivityStreamsMediaType(i ActivityStreamsMediaTypeProperty)
	// SetActivityStreamsName sets the "name" property.
	SetActivityStreamsName(i ActivityStreamsNameProperty)
	// SetActivityStreamsObject sets the "object" property.
	SetActivityStreamsObject(i ActivityStreamsObjectProperty)
	// SetActivityStreamsOrigin sets the "origin" property.
	SetActivityStreamsOrigin(i ActivityStreamsOriginProperty)
	// SetActivityStreamsPreview sets the "preview" property.
	SetActivityStreamsPreview(i ActivityStreamsPreviewProperty)
	// SetActivityStreamsPublished sets the "published" property.
	SetActivityStreamsPublished(i ActivityStreamsPublishedProperty)
	// SetActivityStreamsReplies sets the "replies" property.
	SetActivityStreamsReplies(i ActivityStreamsRepliesProperty)
	// SetActivityStreamsResult sets the "result" property.
	SetActivityStreamsResult(i ActivityStreamsResultProperty)
	// SetActivityStreamsShares sets the "shares" property.
	SetActivityStreamsShares(i ActivityStreamsSharesProperty)
	// SetActivityStreamsSource sets the "source" property.
	SetActivityStreamsSource(i ActivityStreamsSourceProperty)
	// SetActivityStreamsStartTime sets the "startTime" property.
	SetActivityStreamsStartTime(i ActivityStreamsStartTimeProperty)
	// SetActivityStreamsSummary sets the "summary" property.
	SetActivityStreamsSummary(i ActivityStreamsSummaryProperty)
	// SetActivityStreamsTag sets the "tag" property.
	SetActivityStreamsTag(i ActivityStreamsTagProperty)
	// SetActivityStreamsTarget sets the "target" property.
	SetActivityStreamsTarget(i ActivityStreamsTargetProperty)
	// SetActivityStreamsTo sets the "to" property.
	SetActivityStreamsTo(i ActivityStreamsToProperty)
	// SetActivityStreamsUpdated sets the "updated" property.
	SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
	// SetActivityStreamsUrl sets the "url" property.
	SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
	// SetForgeFedTeam sets the "team" property.
	SetForgeFedTeam(i ForgeFedTeamProperty)
	// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
	SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
	// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
	SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
	// SetJSONLDId sets the "id" property.
	SetJSONLDId(i JSONLDIdProperty)
	// SetJSONLDType sets the "type" property.
	SetJSONLDType(i JSONLDTypeProperty)
	// VocabularyURI returns the vocabulary's URI as a string.
	VocabularyURI() string
}

Indicates that the actor is rejecting the object. The target and origin typically have no defined meaning.

Example 25 (https://www.w3.org/TR/activitystreams-vocabulary/#ex26-jsonld):

{
  "actor": {
    "name": "Sally",
    "type": "Person"
  },
  "object": {
    "actor": "http://john.example.org",
    "object": {
      "name": "Going-Away Party for Jim",
      "type": "Event"
    },
    "type": "Invite"
  },
  "summary": "Sally rejected an invitation to a party",
  "type": "Reject"
}

type ActivityStreamsRelProperty

type ActivityStreamsRelProperty interface {
	// AppendIRI appends an IRI value to the back of a list of the property
	// "rel"
	AppendIRI(v *url.URL)
	// AppendRFCRfc5988 appends a rfc5988 value to the back of a list of the
	// property "rel". Invalidates iterators that are traversing using
	// Prev.
	AppendRFCRfc5988(v string)
	// At returns the property value for the specified index. Panics if the
	// index is out of bounds.
	At(index int) ActivityStreamsRelPropertyIterator
	// Begin returns the first iterator, or nil if empty. Can be used with the
	// iterator's Next method and this property's End method to iterate
	// from front to back through all values.
	Begin() ActivityStreamsRelPropertyIterator
	// Empty returns returns true if there are no elements.
	Empty() bool
	// End returns beyond-the-last iterator, which is nil. Can be used with
	// the iterator's Next method and this property's Begin method to
	// iterate from front to back through all values.
	End() ActivityStreamsRelPropertyIterator
	// Insert inserts an IRI value at the specified index for a property
	// "rel". Existing elements at that index and higher are shifted back
	// once. Invalidates all iterators.
	InsertIRI(idx int, v *url.URL)
	// InsertRFCRfc5988 inserts a rfc5988 value at the specified index for a
	// property "rel". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertRFCRfc5988(idx int, v string)
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API method specifically needed only for alternate
	// implementations for go-fed. Applications should not use this
	// method. Panics if the index is out of bounds.
	KindIndex(idx int) int
	// Len returns the number of values that exist for the "rel" property.
	Len() (length int)
	// Less computes whether another property is less than this one. Mixing
	// types results in a consistent but arbitrary ordering
	Less(i, j int) bool
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsRelProperty) bool
	// Name returns the name of this property ("rel") with any alias.
	Name() string
	// PrependIRI prepends an IRI value to the front of a list of the property
	// "rel".
	PrependIRI(v *url.URL)
	// PrependRFCRfc5988 prepends a rfc5988 value to the front of a list of
	// the property "rel". Invalidates all iterators.
	PrependRFCRfc5988(v string)
	// Remove deletes an element at the specified index from a list of the
	// property "rel", regardless of its type. Panics if the index is out
	// of bounds. Invalidates all iterators.
	Remove(idx int)
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// Set sets a rfc5988 value to be at the specified index for the property
	// "rel". Panics if the index is out of bounds. Invalidates all
	// iterators.
	Set(idx int, v string)
	// SetIRI sets an IRI value to be at the specified index for the property
	// "rel". Panics if the index is out of bounds.
	SetIRI(idx int, v *url.URL)
	// Swap swaps the location of values at two indices for the "rel" property.
	Swap(i, j int)
}

A link relation associated with a Link. The value MUST conform to both the [HTML5] and [RFC5988] "link relation" definitions. In the [HTML5], any string not containing the "space" U+0020, "tab" (U+0009), "LF" (U+000A), "FF" (U+000C), "CR" (U+000D) or "," (U+002C) characters can be used as a valid link relation.

Example 131 (https://www.w3.org/TR/activitystreams-vocabulary/#ex149-jsonld):

{
  "hreflang": "en",
  "mediaType": "text/html",
  "name": "Preview",
  "rel": [
    "canonical",
    "preview"
  ],
  "type": "Link",
  "url": "http://example.org/abc"
}

type ActivityStreamsRelPropertyIterator

type ActivityStreamsRelPropertyIterator interface {
	// Get returns the value of this property. When IsRFCRfc5988 returns
	// false, Get will return any arbitrary value.
	Get() string
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return any arbitrary value.
	GetIRI() *url.URL
	// HasAny returns true if the value or IRI is set.
	HasAny() bool
	// IsIRI returns true if this property is an IRI.
	IsIRI() bool
	// IsRFCRfc5988 returns true if this property is set and not an IRI.
	IsRFCRfc5988() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsRelPropertyIterator) bool
	// Name returns the name of this property: "ActivityStreamsRel".
	Name() string
	// Next returns the next iterator, or nil if there is no next iterator.
	Next() ActivityStreamsRelPropertyIterator
	// Prev returns the previous iterator, or nil if there is no previous
	// iterator.
	Prev() ActivityStreamsRelPropertyIterator
	// Set sets the value of this property. Calling IsRFCRfc5988 afterwards
	// will return true.
	Set(v string)
	// SetIRI sets the value of this property. Calling IsIRI afterwards will
	// return true.
	SetIRI(v *url.URL)
}

ActivityStreamsRelPropertyIterator represents a single value for the "rel" property.

type ActivityStreamsRelationship

type ActivityStreamsRelationship interface {
	// GetActivityStreamsAltitude returns the "altitude" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAltitude() ActivityStreamsAltitudeProperty
	// GetActivityStreamsAttachment returns the "attachment" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAttachment() ActivityStreamsAttachmentProperty
	// GetActivityStreamsAttributedTo returns the "attributedTo" property if
	// it exists, and nil otherwise.
	GetActivityStreamsAttributedTo() ActivityStreamsAttributedToProperty
	// GetActivityStreamsAudience returns the "audience" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAudience() ActivityStreamsAudienceProperty
	// GetActivityStreamsBcc returns the "bcc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBcc() ActivityStreamsBccProperty
	// GetActivityStreamsBto returns the "bto" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBto() ActivityStreamsBtoProperty
	// GetActivityStreamsCc returns the "cc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsCc() ActivityStreamsCcProperty
	// GetActivityStreamsContent returns the "content" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContent() ActivityStreamsContentProperty
	// GetActivityStreamsContext returns the "context" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContext() ActivityStreamsContextProperty
	// GetActivityStreamsDuration returns the "duration" property if it
	// exists, and nil otherwise.
	GetActivityStreamsDuration() ActivityStreamsDurationProperty
	// GetActivityStreamsEndTime returns the "endTime" property if it exists,
	// and nil otherwise.
	GetActivityStreamsEndTime() ActivityStreamsEndTimeProperty
	// GetActivityStreamsGenerator returns the "generator" property if it
	// exists, and nil otherwise.
	GetActivityStreamsGenerator() ActivityStreamsGeneratorProperty
	// GetActivityStreamsIcon returns the "icon" property if it exists, and
	// nil otherwise.
	GetActivityStreamsIcon() ActivityStreamsIconProperty
	// GetActivityStreamsImage returns the "image" property if it exists, and
	// nil otherwise.
	GetActivityStreamsImage() ActivityStreamsImageProperty
	// GetActivityStreamsInReplyTo returns the "inReplyTo" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInReplyTo() ActivityStreamsInReplyToProperty
	// GetActivityStreamsLikes returns the "likes" property if it exists, and
	// nil otherwise.
	GetActivityStreamsLikes() ActivityStreamsLikesProperty
	// GetActivityStreamsLocation returns the "location" property if it
	// exists, and nil otherwise.
	GetActivityStreamsLocation() ActivityStreamsLocationProperty
	// GetActivityStreamsMediaType returns the "mediaType" property if it
	// exists, and nil otherwise.
	GetActivityStreamsMediaType() ActivityStreamsMediaTypeProperty
	// GetActivityStreamsName returns the "name" property if it exists, and
	// nil otherwise.
	GetActivityStreamsName() ActivityStreamsNameProperty
	// GetActivityStreamsObject returns the "object" property if it exists,
	// and nil otherwise.
	GetActivityStreamsObject() ActivityStreamsObjectProperty
	// GetActivityStreamsPreview returns the "preview" property if it exists,
	// and nil otherwise.
	GetActivityStreamsPreview() ActivityStreamsPreviewProperty
	// GetActivityStreamsPublished returns the "published" property if it
	// exists, and nil otherwise.
	GetActivityStreamsPublished() ActivityStreamsPublishedProperty
	// GetActivityStreamsRelationship returns the "relationship" property if
	// it exists, and nil otherwise.
	GetActivityStreamsRelationship() ActivityStreamsRelationshipProperty
	// GetActivityStreamsReplies returns the "replies" property if it exists,
	// and nil otherwise.
	GetActivityStreamsReplies() ActivityStreamsRepliesProperty
	// GetActivityStreamsShares returns the "shares" property if it exists,
	// and nil otherwise.
	GetActivityStreamsShares() ActivityStreamsSharesProperty
	// GetActivityStreamsSource returns the "source" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSource() ActivityStreamsSourceProperty
	// GetActivityStreamsStartTime returns the "startTime" property if it
	// exists, and nil otherwise.
	GetActivityStreamsStartTime() ActivityStreamsStartTimeProperty
	// GetActivityStreamsSubject returns the "subject" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSubject() ActivityStreamsSubjectProperty
	// GetActivityStreamsSummary returns the "summary" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSummary() ActivityStreamsSummaryProperty
	// GetActivityStreamsTag returns the "tag" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTag() ActivityStreamsTagProperty
	// GetActivityStreamsTo returns the "to" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTo() ActivityStreamsToProperty
	// GetActivityStreamsUpdated returns the "updated" property if it exists,
	// and nil otherwise.
	GetActivityStreamsUpdated() ActivityStreamsUpdatedProperty
	// GetActivityStreamsUrl returns the "url" property if it exists, and nil
	// otherwise.
	GetActivityStreamsUrl() ActivityStreamsUrlProperty
	// GetForgeFedTeam returns the "team" property if it exists, and nil
	// otherwise.
	GetForgeFedTeam() ForgeFedTeamProperty
	// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
	// it exists, and nil otherwise.
	GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
	// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
	// it exists, and nil otherwise.
	GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
	// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
	GetJSONLDId() JSONLDIdProperty
	// GetJSONLDType returns the "type" property if it exists, and nil
	// otherwise.
	GetJSONLDType() JSONLDTypeProperty
	// GetTypeName returns the name of this type.
	GetTypeName() string
	// GetUnknownProperties returns the unknown properties for the
	// Relationship type. Note that this should not be used by app
	// developers. It is only used to help determine which implementation
	// is LessThan the other. Developers who are creating a different
	// implementation of this type's interface can use this method in
	// their LessThan implementation, but routine ActivityPub applications
	// should not use this to bypass the code generation tool.
	GetUnknownProperties() map[string]interface{}
	// IsExtending returns true if the Relationship type extends from the
	// other type.
	IsExtending(other Type) bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this type and the specific properties that are set. The value
	// in the map is the alias used to import the type and its properties.
	JSONLDContext() map[string]string
	// LessThan computes if this Relationship is lesser, with an arbitrary but
	// stable determination.
	LessThan(o ActivityStreamsRelationship) bool
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format.
	Serialize() (map[string]interface{}, error)
	// SetActivityStreamsAltitude sets the "altitude" property.
	SetActivityStreamsAltitude(i ActivityStreamsAltitudeProperty)
	// SetActivityStreamsAttachment sets the "attachment" property.
	SetActivityStreamsAttachment(i ActivityStreamsAttachmentProperty)
	// SetActivityStreamsAttributedTo sets the "attributedTo" property.
	SetActivityStreamsAttributedTo(i ActivityStreamsAttributedToProperty)
	// SetActivityStreamsAudience sets the "audience" property.
	SetActivityStreamsAudience(i ActivityStreamsAudienceProperty)
	// SetActivityStreamsBcc sets the "bcc" property.
	SetActivityStreamsBcc(i ActivityStreamsBccProperty)
	// SetActivityStreamsBto sets the "bto" property.
	SetActivityStreamsBto(i ActivityStreamsBtoProperty)
	// SetActivityStreamsCc sets the "cc" property.
	SetActivityStreamsCc(i ActivityStreamsCcProperty)
	// SetActivityStreamsContent sets the "content" property.
	SetActivityStreamsContent(i ActivityStreamsContentProperty)
	// SetActivityStreamsContext sets the "context" property.
	SetActivityStreamsContext(i ActivityStreamsContextProperty)
	// SetActivityStreamsDuration sets the "duration" property.
	SetActivityStreamsDuration(i ActivityStreamsDurationProperty)
	// SetActivityStreamsEndTime sets the "endTime" property.
	SetActivityStreamsEndTime(i ActivityStreamsEndTimeProperty)
	// SetActivityStreamsGenerator sets the "generator" property.
	SetActivityStreamsGenerator(i ActivityStreamsGeneratorProperty)
	// SetActivityStreamsIcon sets the "icon" property.
	SetActivityStreamsIcon(i ActivityStreamsIconProperty)
	// SetActivityStreamsImage sets the "image" property.
	SetActivityStreamsImage(i ActivityStreamsImageProperty)
	// SetActivityStreamsInReplyTo sets the "inReplyTo" property.
	SetActivityStreamsInReplyTo(i ActivityStreamsInReplyToProperty)
	// SetActivityStreamsLikes sets the "likes" property.
	SetActivityStreamsLikes(i ActivityStreamsLikesProperty)
	// SetActivityStreamsLocation sets the "location" property.
	SetActivityStreamsLocation(i ActivityStreamsLocationProperty)
	// SetActivityStreamsMediaType sets the "mediaType" property.
	SetActivityStreamsMediaType(i ActivityStreamsMediaTypeProperty)
	// SetActivityStreamsName sets the "name" property.
	SetActivityStreamsName(i ActivityStreamsNameProperty)
	// SetActivityStreamsObject sets the "object" property.
	SetActivityStreamsObject(i ActivityStreamsObjectProperty)
	// SetActivityStreamsPreview sets the "preview" property.
	SetActivityStreamsPreview(i ActivityStreamsPreviewProperty)
	// SetActivityStreamsPublished sets the "published" property.
	SetActivityStreamsPublished(i ActivityStreamsPublishedProperty)
	// SetActivityStreamsRelationship sets the "relationship" property.
	SetActivityStreamsRelationship(i ActivityStreamsRelationshipProperty)
	// SetActivityStreamsReplies sets the "replies" property.
	SetActivityStreamsReplies(i ActivityStreamsRepliesProperty)
	// SetActivityStreamsShares sets the "shares" property.
	SetActivityStreamsShares(i ActivityStreamsSharesProperty)
	// SetActivityStreamsSource sets the "source" property.
	SetActivityStreamsSource(i ActivityStreamsSourceProperty)
	// SetActivityStreamsStartTime sets the "startTime" property.
	SetActivityStreamsStartTime(i ActivityStreamsStartTimeProperty)
	// SetActivityStreamsSubject sets the "subject" property.
	SetActivityStreamsSubject(i ActivityStreamsSubjectProperty)
	// SetActivityStreamsSummary sets the "summary" property.
	SetActivityStreamsSummary(i ActivityStreamsSummaryProperty)
	// SetActivityStreamsTag sets the "tag" property.
	SetActivityStreamsTag(i ActivityStreamsTagProperty)
	// SetActivityStreamsTo sets the "to" property.
	SetActivityStreamsTo(i ActivityStreamsToProperty)
	// SetActivityStreamsUpdated sets the "updated" property.
	SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
	// SetActivityStreamsUrl sets the "url" property.
	SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
	// SetForgeFedTeam sets the "team" property.
	SetForgeFedTeam(i ForgeFedTeamProperty)
	// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
	SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
	// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
	SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
	// SetJSONLDId sets the "id" property.
	SetJSONLDId(i JSONLDIdProperty)
	// SetJSONLDType sets the "type" property.
	SetJSONLDType(i JSONLDTypeProperty)
	// VocabularyURI returns the vocabulary's URI as a string.
	VocabularyURI() string
}

Describes a relationship between two individuals. The subject and object properties are used to identify the connected individuals. See 5.2 Representing Relationships Between Entities for additional information.

Example 47 (https://www.w3.org/TR/activitystreams-vocabulary/#ex22-jsonld):

{
  "object": {
    "name": "John",
    "type": "Person"
  },
  "relationship": "http://purl.org/vocab/relationship/acquaintanceOf",
  "subject": {
    "name": "Sally",
    "type": "Person"
  },
  "summary": "Sally is an acquaintance of John",
  "type": "Relationship"
}

type ActivityStreamsRelationshipProperty

type ActivityStreamsRelationshipProperty interface {
	// AppendActivityStreamsAccept appends a Accept value to the back of a
	// list of the property "relationship". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsAccept(v ActivityStreamsAccept)
	// AppendActivityStreamsActivity appends a Activity value to the back of a
	// list of the property "relationship". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsActivity(v ActivityStreamsActivity)
	// AppendActivityStreamsAdd appends a Add value to the back of a list of
	// the property "relationship". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsAdd(v ActivityStreamsAdd)
	// AppendActivityStreamsAnnounce appends a Announce value to the back of a
	// list of the property "relationship". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// AppendActivityStreamsApplication appends a Application value to the
	// back of a list of the property "relationship". Invalidates
	// iterators that are traversing using Prev.
	AppendActivityStreamsApplication(v ActivityStreamsApplication)
	// AppendActivityStreamsArrive appends a Arrive value to the back of a
	// list of the property "relationship". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsArrive(v ActivityStreamsArrive)
	// AppendActivityStreamsArticle appends a Article value to the back of a
	// list of the property "relationship". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsArticle(v ActivityStreamsArticle)
	// AppendActivityStreamsAudio appends a Audio value to the back of a list
	// of the property "relationship". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsAudio(v ActivityStreamsAudio)
	// AppendActivityStreamsBlock appends a Block value to the back of a list
	// of the property "relationship". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsBlock(v ActivityStreamsBlock)
	// AppendActivityStreamsCollection appends a Collection value to the back
	// of a list of the property "relationship". Invalidates iterators
	// that are traversing using Prev.
	AppendActivityStreamsCollection(v ActivityStreamsCollection)
	// AppendActivityStreamsCollectionPage appends a CollectionPage value to
	// the back of a list of the property "relationship". Invalidates
	// iterators that are traversing using Prev.
	AppendActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// AppendActivityStreamsCreate appends a Create value to the back of a
	// list of the property "relationship". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsCreate(v ActivityStreamsCreate)
	// AppendActivityStreamsDelete appends a Delete value to the back of a
	// list of the property "relationship". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDelete(v ActivityStreamsDelete)
	// AppendActivityStreamsDislike appends a Dislike value to the back of a
	// list of the property "relationship". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDislike(v ActivityStreamsDislike)
	// AppendActivityStreamsDocument appends a Document value to the back of a
	// list of the property "relationship". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDocument(v ActivityStreamsDocument)
	// AppendActivityStreamsEvent appends a Event value to the back of a list
	// of the property "relationship". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsEvent(v ActivityStreamsEvent)
	// AppendActivityStreamsFlag appends a Flag value to the back of a list of
	// the property "relationship". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsFlag(v ActivityStreamsFlag)
	// AppendActivityStreamsFollow appends a Follow value to the back of a
	// list of the property "relationship". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsFollow(v ActivityStreamsFollow)
	// AppendActivityStreamsGroup appends a Group value to the back of a list
	// of the property "relationship". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsGroup(v ActivityStreamsGroup)
	// AppendActivityStreamsIgnore appends a Ignore value to the back of a
	// list of the property "relationship". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsIgnore(v ActivityStreamsIgnore)
	// AppendActivityStreamsImage appends a Image value to the back of a list
	// of the property "relationship". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsImage(v ActivityStreamsImage)
	// AppendActivityStreamsIntransitiveActivity appends a
	// IntransitiveActivity value to the back of a list of the property
	// "relationship". Invalidates iterators that are traversing using
	// Prev.
	AppendActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// AppendActivityStreamsInvite appends a Invite value to the back of a
	// list of the property "relationship". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsInvite(v ActivityStreamsInvite)
	// AppendActivityStreamsJoin appends a Join value to the back of a list of
	// the property "relationship". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsJoin(v ActivityStreamsJoin)
	// AppendActivityStreamsLeave appends a Leave value to the back of a list
	// of the property "relationship". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsLeave(v ActivityStreamsLeave)
	// AppendActivityStreamsLike appends a Like value to the back of a list of
	// the property "relationship". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsLike(v ActivityStreamsLike)
	// AppendActivityStreamsListen appends a Listen value to the back of a
	// list of the property "relationship". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsListen(v ActivityStreamsListen)
	// AppendActivityStreamsMove appends a Move value to the back of a list of
	// the property "relationship". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsMove(v ActivityStreamsMove)
	// AppendActivityStreamsNote appends a Note value to the back of a list of
	// the property "relationship". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsNote(v ActivityStreamsNote)
	// AppendActivityStreamsObject appends a Object value to the back of a
	// list of the property "relationship". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsObject(v ActivityStreamsObject)
	// AppendActivityStreamsOffer appends a Offer value to the back of a list
	// of the property "relationship". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsOffer(v ActivityStreamsOffer)
	// AppendActivityStreamsOrderedCollection appends a OrderedCollection
	// value to the back of a list of the property "relationship".
	// Invalidates iterators that are traversing using Prev.
	AppendActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// AppendActivityStreamsOrderedCollectionPage appends a
	// OrderedCollectionPage value to the back of a list of the property
	// "relationship". Invalidates iterators that are traversing using
	// Prev.
	AppendActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// AppendActivityStreamsOrganization appends a Organization value to the
	// back of a list of the property "relationship". Invalidates
	// iterators that are traversing using Prev.
	AppendActivityStreamsOrganization(v ActivityStreamsOrganization)
	// AppendActivityStreamsPage appends a Page value to the back of a list of
	// the property "relationship". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsPage(v ActivityStreamsPage)
	// AppendActivityStreamsPerson appends a Person value to the back of a
	// list of the property "relationship". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsPerson(v ActivityStreamsPerson)
	// AppendActivityStreamsPlace appends a Place value to the back of a list
	// of the property "relationship". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsPlace(v ActivityStreamsPlace)
	// AppendActivityStreamsProfile appends a Profile value to the back of a
	// list of the property "relationship". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsProfile(v ActivityStreamsProfile)
	// AppendActivityStreamsQuestion appends a Question value to the back of a
	// list of the property "relationship". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsQuestion(v ActivityStreamsQuestion)
	// AppendActivityStreamsRead appends a Read value to the back of a list of
	// the property "relationship". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsRead(v ActivityStreamsRead)
	// AppendActivityStreamsReject appends a Reject value to the back of a
	// list of the property "relationship". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsReject(v ActivityStreamsReject)
	// AppendActivityStreamsRelationship appends a Relationship value to the
	// back of a list of the property "relationship". Invalidates
	// iterators that are traversing using Prev.
	AppendActivityStreamsRelationship(v ActivityStreamsRelationship)
	// AppendActivityStreamsRemove appends a Remove value to the back of a
	// list of the property "relationship". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsRemove(v ActivityStreamsRemove)
	// AppendActivityStreamsService appends a Service value to the back of a
	// list of the property "relationship". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsService(v ActivityStreamsService)
	// AppendActivityStreamsTentativeAccept appends a TentativeAccept value to
	// the back of a list of the property "relationship". Invalidates
	// iterators that are traversing using Prev.
	AppendActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// AppendActivityStreamsTentativeReject appends a TentativeReject value to
	// the back of a list of the property "relationship". Invalidates
	// iterators that are traversing using Prev.
	AppendActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// AppendActivityStreamsTombstone appends a Tombstone value to the back of
	// a list of the property "relationship". Invalidates iterators that
	// are traversing using Prev.
	AppendActivityStreamsTombstone(v ActivityStreamsTombstone)
	// AppendActivityStreamsTravel appends a Travel value to the back of a
	// list of the property "relationship". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsTravel(v ActivityStreamsTravel)
	// AppendActivityStreamsUndo appends a Undo value to the back of a list of
	// the property "relationship". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsUndo(v ActivityStreamsUndo)
	// AppendActivityStreamsUpdate appends a Update value to the back of a
	// list of the property "relationship". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsUpdate(v ActivityStreamsUpdate)
	// AppendActivityStreamsVideo appends a Video value to the back of a list
	// of the property "relationship". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsVideo(v ActivityStreamsVideo)
	// AppendActivityStreamsView appends a View value to the back of a list of
	// the property "relationship". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsView(v ActivityStreamsView)
	// AppendForgeFedBranch appends a Branch value to the back of a list of
	// the property "relationship". Invalidates iterators that are
	// traversing using Prev.
	AppendForgeFedBranch(v ForgeFedBranch)
	// AppendForgeFedCommit appends a Commit value to the back of a list of
	// the property "relationship". Invalidates iterators that are
	// traversing using Prev.
	AppendForgeFedCommit(v ForgeFedCommit)
	// AppendForgeFedPush appends a Push value to the back of a list of the
	// property "relationship". Invalidates iterators that are traversing
	// using Prev.
	AppendForgeFedPush(v ForgeFedPush)
	// AppendForgeFedRepository appends a Repository value to the back of a
	// list of the property "relationship". Invalidates iterators that are
	// traversing using Prev.
	AppendForgeFedRepository(v ForgeFedRepository)
	// AppendForgeFedTicket appends a Ticket value to the back of a list of
	// the property "relationship". Invalidates iterators that are
	// traversing using Prev.
	AppendForgeFedTicket(v ForgeFedTicket)
	// AppendForgeFedTicketDependency appends a TicketDependency value to the
	// back of a list of the property "relationship". Invalidates
	// iterators that are traversing using Prev.
	AppendForgeFedTicketDependency(v ForgeFedTicketDependency)
	// AppendIRI appends an IRI value to the back of a list of the property
	// "relationship"
	AppendIRI(v *url.URL)
	// AppendTootEmoji appends a Emoji value to the back of a list of the
	// property "relationship". Invalidates iterators that are traversing
	// using Prev.
	AppendTootEmoji(v TootEmoji)
	// AppendTootIdentityProof appends a IdentityProof value to the back of a
	// list of the property "relationship". Invalidates iterators that are
	// traversing using Prev.
	AppendTootIdentityProof(v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "relationship". Invalidates iterators that are
	// traversing using Prev. Returns an error if the type is not a valid
	// one to set for this property.
	AppendType(t Type) error
	// At returns the property value for the specified index. Panics if the
	// index is out of bounds.
	At(index int) ActivityStreamsRelationshipPropertyIterator
	// Begin returns the first iterator, or nil if empty. Can be used with the
	// iterator's Next method and this property's End method to iterate
	// from front to back through all values.
	Begin() ActivityStreamsRelationshipPropertyIterator
	// Empty returns returns true if there are no elements.
	Empty() bool
	// End returns beyond-the-last iterator, which is nil. Can be used with
	// the iterator's Next method and this property's Begin method to
	// iterate from front to back through all values.
	End() ActivityStreamsRelationshipPropertyIterator
	// InsertActivityStreamsAccept inserts a Accept value at the specified
	// index for a property "relationship". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAccept(idx int, v ActivityStreamsAccept)
	// InsertActivityStreamsActivity inserts a Activity value at the specified
	// index for a property "relationship". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsActivity(idx int, v ActivityStreamsActivity)
	// InsertActivityStreamsAdd inserts a Add value at the specified index for
	// a property "relationship". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAdd(idx int, v ActivityStreamsAdd)
	// InsertActivityStreamsAnnounce inserts a Announce value at the specified
	// index for a property "relationship". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAnnounce(idx int, v ActivityStreamsAnnounce)
	// InsertActivityStreamsApplication inserts a Application value at the
	// specified index for a property "relationship". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsApplication(idx int, v ActivityStreamsApplication)
	// InsertActivityStreamsArrive inserts a Arrive value at the specified
	// index for a property "relationship". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsArrive(idx int, v ActivityStreamsArrive)
	// InsertActivityStreamsArticle inserts a Article value at the specified
	// index for a property "relationship". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsArticle(idx int, v ActivityStreamsArticle)
	// InsertActivityStreamsAudio inserts a Audio value at the specified index
	// for a property "relationship". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAudio(idx int, v ActivityStreamsAudio)
	// InsertActivityStreamsBlock inserts a Block value at the specified index
	// for a property "relationship". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsBlock(idx int, v ActivityStreamsBlock)
	// InsertActivityStreamsCollection inserts a Collection value at the
	// specified index for a property "relationship". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsCollection(idx int, v ActivityStreamsCollection)
	// InsertActivityStreamsCollectionPage inserts a CollectionPage value at
	// the specified index for a property "relationship". Existing
	// elements at that index and higher are shifted back once.
	// Invalidates all iterators.
	InsertActivityStreamsCollectionPage(idx int, v ActivityStreamsCollectionPage)
	// InsertActivityStreamsCreate inserts a Create value at the specified
	// index for a property "relationship". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsCreate(idx int, v ActivityStreamsCreate)
	// InsertActivityStreamsDelete inserts a Delete value at the specified
	// index for a property "relationship". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDelete(idx int, v ActivityStreamsDelete)
	// InsertActivityStreamsDislike inserts a Dislike value at the specified
	// index for a property "relationship". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDislike(idx int, v ActivityStreamsDislike)
	// InsertActivityStreamsDocument inserts a Document value at the specified
	// index for a property "relationship". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDocument(idx int, v ActivityStreamsDocument)
	// InsertActivityStreamsEvent inserts a Event value at the specified index
	// for a property "relationship". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsEvent(idx int, v ActivityStreamsEvent)
	// InsertActivityStreamsFlag inserts a Flag value at the specified index
	// for a property "relationship". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsFlag(idx int, v ActivityStreamsFlag)
	// InsertActivityStreamsFollow inserts a Follow value at the specified
	// index for a property "relationship". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsFollow(idx int, v ActivityStreamsFollow)
	// InsertActivityStreamsGroup inserts a Group value at the specified index
	// for a property "relationship". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsGroup(idx int, v ActivityStreamsGroup)
	// InsertActivityStreamsIgnore inserts a Ignore value at the specified
	// index for a property "relationship". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsIgnore(idx int, v ActivityStreamsIgnore)
	// InsertActivityStreamsImage inserts a Image value at the specified index
	// for a property "relationship". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsImage(idx int, v ActivityStreamsImage)
	// InsertActivityStreamsIntransitiveActivity inserts a
	// IntransitiveActivity value at the specified index for a property
	// "relationship". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertActivityStreamsIntransitiveActivity(idx int, v ActivityStreamsIntransitiveActivity)
	// InsertActivityStreamsInvite inserts a Invite value at the specified
	// index for a property "relationship". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsInvite(idx int, v ActivityStreamsInvite)
	// InsertActivityStreamsJoin inserts a Join value at the specified index
	// for a property "relationship". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsJoin(idx int, v ActivityStreamsJoin)
	// InsertActivityStreamsLeave inserts a Leave value at the specified index
	// for a property "relationship". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsLeave(idx int, v ActivityStreamsLeave)
	// InsertActivityStreamsLike inserts a Like value at the specified index
	// for a property "relationship". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsLike(idx int, v ActivityStreamsLike)
	// InsertActivityStreamsListen inserts a Listen value at the specified
	// index for a property "relationship". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsListen(idx int, v ActivityStreamsListen)
	// InsertActivityStreamsMove inserts a Move value at the specified index
	// for a property "relationship". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsMove(idx int, v ActivityStreamsMove)
	// InsertActivityStreamsNote inserts a Note value at the specified index
	// for a property "relationship". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsNote(idx int, v ActivityStreamsNote)
	// InsertActivityStreamsObject inserts a Object value at the specified
	// index for a property "relationship". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsObject(idx int, v ActivityStreamsObject)
	// InsertActivityStreamsOffer inserts a Offer value at the specified index
	// for a property "relationship". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsOffer(idx int, v ActivityStreamsOffer)
	// InsertActivityStreamsOrderedCollection inserts a OrderedCollection
	// value at the specified index for a property "relationship".
	// Existing elements at that index and higher are shifted back once.
	// Invalidates all iterators.
	InsertActivityStreamsOrderedCollection(idx int, v ActivityStreamsOrderedCollection)
	// InsertActivityStreamsOrderedCollectionPage inserts a
	// OrderedCollectionPage value at the specified index for a property
	// "relationship". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertActivityStreamsOrderedCollectionPage(idx int, v ActivityStreamsOrderedCollectionPage)
	// InsertActivityStreamsOrganization inserts a Organization value at the
	// specified index for a property "relationship". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsOrganization(idx int, v ActivityStreamsOrganization)
	// InsertActivityStreamsPage inserts a Page value at the specified index
	// for a property "relationship". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsPage(idx int, v ActivityStreamsPage)
	// InsertActivityStreamsPerson inserts a Person value at the specified
	// index for a property "relationship". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsPerson(idx int, v ActivityStreamsPerson)
	// InsertActivityStreamsPlace inserts a Place value at the specified index
	// for a property "relationship". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsPlace(idx int, v ActivityStreamsPlace)
	// InsertActivityStreamsProfile inserts a Profile value at the specified
	// index for a property "relationship". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsProfile(idx int, v ActivityStreamsProfile)
	// InsertActivityStreamsQuestion inserts a Question value at the specified
	// index for a property "relationship". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsQuestion(idx int, v ActivityStreamsQuestion)
	// InsertActivityStreamsRead inserts a Read value at the specified index
	// for a property "relationship". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsRead(idx int, v ActivityStreamsRead)
	// InsertActivityStreamsReject inserts a Reject value at the specified
	// index for a property "relationship". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsReject(idx int, v ActivityStreamsReject)
	// InsertActivityStreamsRelationship inserts a Relationship value at the
	// specified index for a property "relationship". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsRelationship(idx int, v ActivityStreamsRelationship)
	// InsertActivityStreamsRemove inserts a Remove value at the specified
	// index for a property "relationship". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsRemove(idx int, v ActivityStreamsRemove)
	// InsertActivityStreamsService inserts a Service value at the specified
	// index for a property "relationship". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsService(idx int, v ActivityStreamsService)
	// InsertActivityStreamsTentativeAccept inserts a TentativeAccept value at
	// the specified index for a property "relationship". Existing
	// elements at that index and higher are shifted back once.
	// Invalidates all iterators.
	InsertActivityStreamsTentativeAccept(idx int, v ActivityStreamsTentativeAccept)
	// InsertActivityStreamsTentativeReject inserts a TentativeReject value at
	// the specified index for a property "relationship". Existing
	// elements at that index and higher are shifted back once.
	// Invalidates all iterators.
	InsertActivityStreamsTentativeReject(idx int, v ActivityStreamsTentativeReject)
	// InsertActivityStreamsTombstone inserts a Tombstone value at the
	// specified index for a property "relationship". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsTombstone(idx int, v ActivityStreamsTombstone)
	// InsertActivityStreamsTravel inserts a Travel value at the specified
	// index for a property "relationship". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsTravel(idx int, v ActivityStreamsTravel)
	// InsertActivityStreamsUndo inserts a Undo value at the specified index
	// for a property "relationship". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsUndo(idx int, v ActivityStreamsUndo)
	// InsertActivityStreamsUpdate inserts a Update value at the specified
	// index for a property "relationship". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsUpdate(idx int, v ActivityStreamsUpdate)
	// InsertActivityStreamsVideo inserts a Video value at the specified index
	// for a property "relationship". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsVideo(idx int, v ActivityStreamsVideo)
	// InsertActivityStreamsView inserts a View value at the specified index
	// for a property "relationship". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsView(idx int, v ActivityStreamsView)
	// InsertForgeFedBranch inserts a Branch value at the specified index for
	// a property "relationship". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertForgeFedBranch(idx int, v ForgeFedBranch)
	// InsertForgeFedCommit inserts a Commit value at the specified index for
	// a property "relationship". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertForgeFedCommit(idx int, v ForgeFedCommit)
	// InsertForgeFedPush inserts a Push value at the specified index for a
	// property "relationship". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertForgeFedPush(idx int, v ForgeFedPush)
	// InsertForgeFedRepository inserts a Repository value at the specified
	// index for a property "relationship". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertForgeFedRepository(idx int, v ForgeFedRepository)
	// InsertForgeFedTicket inserts a Ticket value at the specified index for
	// a property "relationship". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertForgeFedTicket(idx int, v ForgeFedTicket)
	// InsertForgeFedTicketDependency inserts a TicketDependency value at the
	// specified index for a property "relationship". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
	// Insert inserts an IRI value at the specified index for a property
	// "relationship". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertIRI(idx int, v *url.URL)
	// InsertTootEmoji inserts a Emoji value at the specified index for a
	// property "relationship". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertTootEmoji(idx int, v TootEmoji)
	// InsertTootIdentityProof inserts a IdentityProof value at the specified
	// index for a property "relationship". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertTootIdentityProof(idx int, v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "relationship". Invalidates all iterators. Returns an
	// error if the type is not a valid one to set for this property.
	InsertType(idx int, t Type) error
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API method specifically needed only for alternate
	// implementations for go-fed. Applications should not use this
	// method. Panics if the index is out of bounds.
	KindIndex(idx int) int
	// Len returns the number of values that exist for the "relationship"
	// property.
	Len() (length int)
	// Less computes whether another property is less than this one. Mixing
	// types results in a consistent but arbitrary ordering
	Less(i, j int) bool
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsRelationshipProperty) bool
	// Name returns the name of this property ("relationship") with any alias.
	Name() string
	// PrependActivityStreamsAccept prepends a Accept value to the front of a
	// list of the property "relationship". Invalidates all iterators.
	PrependActivityStreamsAccept(v ActivityStreamsAccept)
	// PrependActivityStreamsActivity prepends a Activity value to the front
	// of a list of the property "relationship". Invalidates all iterators.
	PrependActivityStreamsActivity(v ActivityStreamsActivity)
	// PrependActivityStreamsAdd prepends a Add value to the front of a list
	// of the property "relationship". Invalidates all iterators.
	PrependActivityStreamsAdd(v ActivityStreamsAdd)
	// PrependActivityStreamsAnnounce prepends a Announce value to the front
	// of a list of the property "relationship". Invalidates all iterators.
	PrependActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// PrependActivityStreamsApplication prepends a Application value to the
	// front of a list of the property "relationship". Invalidates all
	// iterators.
	PrependActivityStreamsApplication(v ActivityStreamsApplication)
	// PrependActivityStreamsArrive prepends a Arrive value to the front of a
	// list of the property "relationship". Invalidates all iterators.
	PrependActivityStreamsArrive(v ActivityStreamsArrive)
	// PrependActivityStreamsArticle prepends a Article value to the front of
	// a list of the property "relationship". Invalidates all iterators.
	PrependActivityStreamsArticle(v ActivityStreamsArticle)
	// PrependActivityStreamsAudio prepends a Audio value to the front of a
	// list of the property "relationship". Invalidates all iterators.
	PrependActivityStreamsAudio(v ActivityStreamsAudio)
	// PrependActivityStreamsBlock prepends a Block value to the front of a
	// list of the property "relationship". Invalidates all iterators.
	PrependActivityStreamsBlock(v ActivityStreamsBlock)
	// PrependActivityStreamsCollection prepends a Collection value to the
	// front of a list of the property "relationship". Invalidates all
	// iterators.
	PrependActivityStreamsCollection(v ActivityStreamsCollection)
	// PrependActivityStreamsCollectionPage prepends a CollectionPage value to
	// the front of a list of the property "relationship". Invalidates all
	// iterators.
	PrependActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// PrependActivityStreamsCreate prepends a Create value to the front of a
	// list of the property "relationship". Invalidates all iterators.
	PrependActivityStreamsCreate(v ActivityStreamsCreate)
	// PrependActivityStreamsDelete prepends a Delete value to the front of a
	// list of the property "relationship". Invalidates all iterators.
	PrependActivityStreamsDelete(v ActivityStreamsDelete)
	// PrependActivityStreamsDislike prepends a Dislike value to the front of
	// a list of the property "relationship". Invalidates all iterators.
	PrependActivityStreamsDislike(v ActivityStreamsDislike)
	// PrependActivityStreamsDocument prepends a Document value to the front
	// of a list of the property "relationship". Invalidates all iterators.
	PrependActivityStreamsDocument(v ActivityStreamsDocument)
	// PrependActivityStreamsEvent prepends a Event value to the front of a
	// list of the property "relationship". Invalidates all iterators.
	PrependActivityStreamsEvent(v ActivityStreamsEvent)
	// PrependActivityStreamsFlag prepends a Flag value to the front of a list
	// of the property "relationship". Invalidates all iterators.
	PrependActivityStreamsFlag(v ActivityStreamsFlag)
	// PrependActivityStreamsFollow prepends a Follow value to the front of a
	// list of the property "relationship". Invalidates all iterators.
	PrependActivityStreamsFollow(v ActivityStreamsFollow)
	// PrependActivityStreamsGroup prepends a Group value to the front of a
	// list of the property "relationship". Invalidates all iterators.
	PrependActivityStreamsGroup(v ActivityStreamsGroup)
	// PrependActivityStreamsIgnore prepends a Ignore value to the front of a
	// list of the property "relationship". Invalidates all iterators.
	PrependActivityStreamsIgnore(v ActivityStreamsIgnore)
	// PrependActivityStreamsImage prepends a Image value to the front of a
	// list of the property "relationship". Invalidates all iterators.
	PrependActivityStreamsImage(v ActivityStreamsImage)
	// PrependActivityStreamsIntransitiveActivity prepends a
	// IntransitiveActivity value to the front of a list of the property
	// "relationship". Invalidates all iterators.
	PrependActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// PrependActivityStreamsInvite prepends a Invite value to the front of a
	// list of the property "relationship". Invalidates all iterators.
	PrependActivityStreamsInvite(v ActivityStreamsInvite)
	// PrependActivityStreamsJoin prepends a Join value to the front of a list
	// of the property "relationship". Invalidates all iterators.
	PrependActivityStreamsJoin(v ActivityStreamsJoin)
	// PrependActivityStreamsLeave prepends a Leave value to the front of a
	// list of the property "relationship". Invalidates all iterators.
	PrependActivityStreamsLeave(v ActivityStreamsLeave)
	// PrependActivityStreamsLike prepends a Like value to the front of a list
	// of the property "relationship". Invalidates all iterators.
	PrependActivityStreamsLike(v ActivityStreamsLike)
	// PrependActivityStreamsListen prepends a Listen value to the front of a
	// list of the property "relationship". Invalidates all iterators.
	PrependActivityStreamsListen(v ActivityStreamsListen)
	// PrependActivityStreamsMove prepends a Move value to the front of a list
	// of the property "relationship". Invalidates all iterators.
	PrependActivityStreamsMove(v ActivityStreamsMove)
	// PrependActivityStreamsNote prepends a Note value to the front of a list
	// of the property "relationship". Invalidates all iterators.
	PrependActivityStreamsNote(v ActivityStreamsNote)
	// PrependActivityStreamsObject prepends a Object value to the front of a
	// list of the property "relationship". Invalidates all iterators.
	PrependActivityStreamsObject(v ActivityStreamsObject)
	// PrependActivityStreamsOffer prepends a Offer value to the front of a
	// list of the property "relationship". Invalidates all iterators.
	PrependActivityStreamsOffer(v ActivityStreamsOffer)
	// PrependActivityStreamsOrderedCollection prepends a OrderedCollection
	// value to the front of a list of the property "relationship".
	// Invalidates all iterators.
	PrependActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// PrependActivityStreamsOrderedCollectionPage prepends a
	// OrderedCollectionPage value to the front of a list of the property
	// "relationship". Invalidates all iterators.
	PrependActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// PrependActivityStreamsOrganization prepends a Organization value to the
	// front of a list of the property "relationship". Invalidates all
	// iterators.
	PrependActivityStreamsOrganization(v ActivityStreamsOrganization)
	// PrependActivityStreamsPage prepends a Page value to the front of a list
	// of the property "relationship". Invalidates all iterators.
	PrependActivityStreamsPage(v ActivityStreamsPage)
	// PrependActivityStreamsPerson prepends a Person value to the front of a
	// list of the property "relationship". Invalidates all iterators.
	PrependActivityStreamsPerson(v ActivityStreamsPerson)
	// PrependActivityStreamsPlace prepends a Place value to the front of a
	// list of the property "relationship". Invalidates all iterators.
	PrependActivityStreamsPlace(v ActivityStreamsPlace)
	// PrependActivityStreamsProfile prepends a Profile value to the front of
	// a list of the property "relationship". Invalidates all iterators.
	PrependActivityStreamsProfile(v ActivityStreamsProfile)
	// PrependActivityStreamsQuestion prepends a Question value to the front
	// of a list of the property "relationship". Invalidates all iterators.
	PrependActivityStreamsQuestion(v ActivityStreamsQuestion)
	// PrependActivityStreamsRead prepends a Read value to the front of a list
	// of the property "relationship". Invalidates all iterators.
	PrependActivityStreamsRead(v ActivityStreamsRead)
	// PrependActivityStreamsReject prepends a Reject value to the front of a
	// list of the property "relationship". Invalidates all iterators.
	PrependActivityStreamsReject(v ActivityStreamsReject)
	// PrependActivityStreamsRelationship prepends a Relationship value to the
	// front of a list of the property "relationship". Invalidates all
	// iterators.
	PrependActivityStreamsRelationship(v ActivityStreamsRelationship)
	// PrependActivityStreamsRemove prepends a Remove value to the front of a
	// list of the property "relationship". Invalidates all iterators.
	PrependActivityStreamsRemove(v ActivityStreamsRemove)
	// PrependActivityStreamsService prepends a Service value to the front of
	// a list of the property "relationship". Invalidates all iterators.
	PrependActivityStreamsService(v ActivityStreamsService)
	// PrependActivityStreamsTentativeAccept prepends a TentativeAccept value
	// to the front of a list of the property "relationship". Invalidates
	// all iterators.
	PrependActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// PrependActivityStreamsTentativeReject prepends a TentativeReject value
	// to the front of a list of the property "relationship". Invalidates
	// all iterators.
	PrependActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// PrependActivityStreamsTombstone prepends a Tombstone value to the front
	// of a list of the property "relationship". Invalidates all iterators.
	PrependActivityStreamsTombstone(v ActivityStreamsTombstone)
	// PrependActivityStreamsTravel prepends a Travel value to the front of a
	// list of the property "relationship". Invalidates all iterators.
	PrependActivityStreamsTravel(v ActivityStreamsTravel)
	// PrependActivityStreamsUndo prepends a Undo value to the front of a list
	// of the property "relationship". Invalidates all iterators.
	PrependActivityStreamsUndo(v ActivityStreamsUndo)
	// PrependActivityStreamsUpdate prepends a Update value to the front of a
	// list of the property "relationship". Invalidates all iterators.
	PrependActivityStreamsUpdate(v ActivityStreamsUpdate)
	// PrependActivityStreamsVideo prepends a Video value to the front of a
	// list of the property "relationship". Invalidates all iterators.
	PrependActivityStreamsVideo(v ActivityStreamsVideo)
	// PrependActivityStreamsView prepends a View value to the front of a list
	// of the property "relationship". Invalidates all iterators.
	PrependActivityStreamsView(v ActivityStreamsView)
	// PrependForgeFedBranch prepends a Branch value to the front of a list of
	// the property "relationship". Invalidates all iterators.
	PrependForgeFedBranch(v ForgeFedBranch)
	// PrependForgeFedCommit prepends a Commit value to the front of a list of
	// the property "relationship". Invalidates all iterators.
	PrependForgeFedCommit(v ForgeFedCommit)
	// PrependForgeFedPush prepends a Push value to the front of a list of the
	// property "relationship". Invalidates all iterators.
	PrependForgeFedPush(v ForgeFedPush)
	// PrependForgeFedRepository prepends a Repository value to the front of a
	// list of the property "relationship". Invalidates all iterators.
	PrependForgeFedRepository(v ForgeFedRepository)
	// PrependForgeFedTicket prepends a Ticket value to the front of a list of
	// the property "relationship". Invalidates all iterators.
	PrependForgeFedTicket(v ForgeFedTicket)
	// PrependForgeFedTicketDependency prepends a TicketDependency value to
	// the front of a list of the property "relationship". Invalidates all
	// iterators.
	PrependForgeFedTicketDependency(v ForgeFedTicketDependency)
	// PrependIRI prepends an IRI value to the front of a list of the property
	// "relationship".
	PrependIRI(v *url.URL)
	// PrependTootEmoji prepends a Emoji value to the front of a list of the
	// property "relationship". Invalidates all iterators.
	PrependTootEmoji(v TootEmoji)
	// PrependTootIdentityProof prepends a IdentityProof value to the front of
	// a list of the property "relationship". Invalidates all iterators.
	PrependTootIdentityProof(v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "relationship". Invalidates all iterators. Returns an
	// error if the type is not a valid one to set for this property.
	PrependType(t Type) error
	// Remove deletes an element at the specified index from a list of the
	// property "relationship", regardless of its type. Panics if the
	// index is out of bounds. Invalidates all iterators.
	Remove(idx int)
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// SetActivityStreamsAccept sets a Accept value to be at the specified
	// index for the property "relationship". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsAccept(idx int, v ActivityStreamsAccept)
	// SetActivityStreamsActivity sets a Activity value to be at the specified
	// index for the property "relationship". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsActivity(idx int, v ActivityStreamsActivity)
	// SetActivityStreamsAdd sets a Add value to be at the specified index for
	// the property "relationship". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsAdd(idx int, v ActivityStreamsAdd)
	// SetActivityStreamsAnnounce sets a Announce value to be at the specified
	// index for the property "relationship". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsAnnounce(idx int, v ActivityStreamsAnnounce)
	// SetActivityStreamsApplication sets a Application value to be at the
	// specified index for the property "relationship". Panics if the
	// index is out of bounds. Invalidates all iterators.
	SetActivityStreamsApplication(idx int, v ActivityStreamsApplication)
	// SetActivityStreamsArrive sets a Arrive value to be at the specified
	// index for the property "relationship". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsArrive(idx int, v ActivityStreamsArrive)
	// SetActivityStreamsArticle sets a Article value to be at the specified
	// index for the property "relationship". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsArticle(idx int, v ActivityStreamsArticle)
	// SetActivityStreamsAudio sets a Audio value to be at the specified index
	// for the property "relationship". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsAudio(idx int, v ActivityStreamsAudio)
	// SetActivityStreamsBlock sets a Block value to be at the specified index
	// for the property "relationship". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsBlock(idx int, v ActivityStreamsBlock)
	// SetActivityStreamsCollection sets a Collection value to be at the
	// specified index for the property "relationship". Panics if the
	// index is out of bounds. Invalidates all iterators.
	SetActivityStreamsCollection(idx int, v ActivityStreamsCollection)
	// SetActivityStreamsCollectionPage sets a CollectionPage value to be at
	// the specified index for the property "relationship". Panics if the
	// index is out of bounds. Invalidates all iterators.
	SetActivityStreamsCollectionPage(idx int, v ActivityStreamsCollectionPage)
	// SetActivityStreamsCreate sets a Create value to be at the specified
	// index for the property "relationship". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsCreate(idx int, v ActivityStreamsCreate)
	// SetActivityStreamsDelete sets a Delete value to be at the specified
	// index for the property "relationship". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsDelete(idx int, v ActivityStreamsDelete)
	// SetActivityStreamsDislike sets a Dislike value to be at the specified
	// index for the property "relationship". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsDislike(idx int, v ActivityStreamsDislike)
	// SetActivityStreamsDocument sets a Document value to be at the specified
	// index for the property "relationship". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsDocument(idx int, v ActivityStreamsDocument)
	// SetActivityStreamsEvent sets a Event value to be at the specified index
	// for the property "relationship". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsEvent(idx int, v ActivityStreamsEvent)
	// SetActivityStreamsFlag sets a Flag value to be at the specified index
	// for the property "relationship". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsFlag(idx int, v ActivityStreamsFlag)
	// SetActivityStreamsFollow sets a Follow value to be at the specified
	// index for the property "relationship". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsFollow(idx int, v ActivityStreamsFollow)
	// SetActivityStreamsGroup sets a Group value to be at the specified index
	// for the property "relationship". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsGroup(idx int, v ActivityStreamsGroup)
	// SetActivityStreamsIgnore sets a Ignore value to be at the specified
	// index for the property "relationship". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsIgnore(idx int, v ActivityStreamsIgnore)
	// SetActivityStreamsImage sets a Image value to be at the specified index
	// for the property "relationship". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsImage(idx int, v ActivityStreamsImage)
	// SetActivityStreamsIntransitiveActivity sets a IntransitiveActivity
	// value to be at the specified index for the property "relationship".
	// Panics if the index is out of bounds. Invalidates all iterators.
	SetActivityStreamsIntransitiveActivity(idx int, v ActivityStreamsIntransitiveActivity)
	// SetActivityStreamsInvite sets a Invite value to be at the specified
	// index for the property "relationship". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsInvite(idx int, v ActivityStreamsInvite)
	// SetActivityStreamsJoin sets a Join value to be at the specified index
	// for the property "relationship". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsJoin(idx int, v ActivityStreamsJoin)
	// SetActivityStreamsLeave sets a Leave value to be at the specified index
	// for the property "relationship". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsLeave(idx int, v ActivityStreamsLeave)
	// SetActivityStreamsLike sets a Like value to be at the specified index
	// for the property "relationship". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsLike(idx int, v ActivityStreamsLike)
	// SetActivityStreamsListen sets a Listen value to be at the specified
	// index for the property "relationship". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsListen(idx int, v ActivityStreamsListen)
	// SetActivityStreamsMove sets a Move value to be at the specified index
	// for the property "relationship". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsMove(idx int, v ActivityStreamsMove)
	// SetActivityStreamsNote sets a Note value to be at the specified index
	// for the property "relationship". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsNote(idx int, v ActivityStreamsNote)
	// SetActivityStreamsObject sets a Object value to be at the specified
	// index for the property "relationship". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsObject(idx int, v ActivityStreamsObject)
	// SetActivityStreamsOffer sets a Offer value to be at the specified index
	// for the property "relationship". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsOffer(idx int, v ActivityStreamsOffer)
	// SetActivityStreamsOrderedCollection sets a OrderedCollection value to
	// be at the specified index for the property "relationship". Panics
	// if the index is out of bounds. Invalidates all iterators.
	SetActivityStreamsOrderedCollection(idx int, v ActivityStreamsOrderedCollection)
	// SetActivityStreamsOrderedCollectionPage sets a OrderedCollectionPage
	// value to be at the specified index for the property "relationship".
	// Panics if the index is out of bounds. Invalidates all iterators.
	SetActivityStreamsOrderedCollectionPage(idx int, v ActivityStreamsOrderedCollectionPage)
	// SetActivityStreamsOrganization sets a Organization value to be at the
	// specified index for the property "relationship". Panics if the
	// index is out of bounds. Invalidates all iterators.
	SetActivityStreamsOrganization(idx int, v ActivityStreamsOrganization)
	// SetActivityStreamsPage sets a Page value to be at the specified index
	// for the property "relationship". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsPage(idx int, v ActivityStreamsPage)
	// SetActivityStreamsPerson sets a Person value to be at the specified
	// index for the property "relationship". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsPerson(idx int, v ActivityStreamsPerson)
	// SetActivityStreamsPlace sets a Place value to be at the specified index
	// for the property "relationship". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsPlace(idx int, v ActivityStreamsPlace)
	// SetActivityStreamsProfile sets a Profile value to be at the specified
	// index for the property "relationship". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsProfile(idx int, v ActivityStreamsProfile)
	// SetActivityStreamsQuestion sets a Question value to be at the specified
	// index for the property "relationship". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsQuestion(idx int, v ActivityStreamsQuestion)
	// SetActivityStreamsRead sets a Read value to be at the specified index
	// for the property "relationship". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsRead(idx int, v ActivityStreamsRead)
	// SetActivityStreamsReject sets a Reject value to be at the specified
	// index for the property "relationship". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsReject(idx int, v ActivityStreamsReject)
	// SetActivityStreamsRelationship sets a Relationship value to be at the
	// specified index for the property "relationship". Panics if the
	// index is out of bounds. Invalidates all iterators.
	SetActivityStreamsRelationship(idx int, v ActivityStreamsRelationship)
	// SetActivityStreamsRemove sets a Remove value to be at the specified
	// index for the property "relationship". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsRemove(idx int, v ActivityStreamsRemove)
	// SetActivityStreamsService sets a Service value to be at the specified
	// index for the property "relationship". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsService(idx int, v ActivityStreamsService)
	// SetActivityStreamsTentativeAccept sets a TentativeAccept value to be at
	// the specified index for the property "relationship". Panics if the
	// index is out of bounds. Invalidates all iterators.
	SetActivityStreamsTentativeAccept(idx int, v ActivityStreamsTentativeAccept)
	// SetActivityStreamsTentativeReject sets a TentativeReject value to be at
	// the specified index for the property "relationship". Panics if the
	// index is out of bounds. Invalidates all iterators.
	SetActivityStreamsTentativeReject(idx int, v ActivityStreamsTentativeReject)
	// SetActivityStreamsTombstone sets a Tombstone value to be at the
	// specified index for the property "relationship". Panics if the
	// index is out of bounds. Invalidates all iterators.
	SetActivityStreamsTombstone(idx int, v ActivityStreamsTombstone)
	// SetActivityStreamsTravel sets a Travel value to be at the specified
	// index for the property "relationship". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsTravel(idx int, v ActivityStreamsTravel)
	// SetActivityStreamsUndo sets a Undo value to be at the specified index
	// for the property "relationship". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsUndo(idx int, v ActivityStreamsUndo)
	// SetActivityStreamsUpdate sets a Update value to be at the specified
	// index for the property "relationship". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsUpdate(idx int, v ActivityStreamsUpdate)
	// SetActivityStreamsVideo sets a Video value to be at the specified index
	// for the property "relationship". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsVideo(idx int, v ActivityStreamsVideo)
	// SetActivityStreamsView sets a View value to be at the specified index
	// for the property "relationship". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsView(idx int, v ActivityStreamsView)
	// SetForgeFedBranch sets a Branch value to be at the specified index for
	// the property "relationship". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedBranch(idx int, v ForgeFedBranch)
	// SetForgeFedCommit sets a Commit value to be at the specified index for
	// the property "relationship". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedCommit(idx int, v ForgeFedCommit)
	// SetForgeFedPush sets a Push value to be at the specified index for the
	// property "relationship". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedPush(idx int, v ForgeFedPush)
	// SetForgeFedRepository sets a Repository value to be at the specified
	// index for the property "relationship". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetForgeFedRepository(idx int, v ForgeFedRepository)
	// SetForgeFedTicket sets a Ticket value to be at the specified index for
	// the property "relationship". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedTicket(idx int, v ForgeFedTicket)
	// SetForgeFedTicketDependency sets a TicketDependency value to be at the
	// specified index for the property "relationship". Panics if the
	// index is out of bounds. Invalidates all iterators.
	SetForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
	// SetIRI sets an IRI value to be at the specified index for the property
	// "relationship". Panics if the index is out of bounds.
	SetIRI(idx int, v *url.URL)
	// SetTootEmoji sets a Emoji value to be at the specified index for the
	// property "relationship". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetTootEmoji(idx int, v TootEmoji)
	// SetTootIdentityProof sets a IdentityProof value to be at the specified
	// index for the property "relationship". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetTootIdentityProof(idx int, v TootIdentityProof)
	// SetType sets an arbitrary type value to the specified index of the
	// property "relationship". Invalidates all iterators. Returns an
	// error if the type is not a valid one to set for this property.
	// Panics if the index is out of bounds.
	SetType(idx int, t Type) error
	// Swap swaps the location of values at two indices for the "relationship"
	// property.
	Swap(i, j int)
}

On a Relationship object, the relationship property identifies the kind of relationship that exists between subject and object.

Example 140 (https://www.w3.org/TR/activitystreams-vocabulary/#ex22c-jsonld):

{
  "object": {
    "name": "John",
    "type": "Person"
  },
  "relationship": "http://purl.org/vocab/relationship/acquaintanceOf",
  "subject": {
    "name": "Sally",
    "type": "Person"
  },
  "summary": "Sally is an acquaintance of John's",
  "type": "Relationship"
}

type ActivityStreamsRelationshipPropertyIterator

type ActivityStreamsRelationshipPropertyIterator interface {
	// GetActivityStreamsAccept returns the value of this property. When
	// IsActivityStreamsAccept returns false, GetActivityStreamsAccept
	// will return an arbitrary value.
	GetActivityStreamsAccept() ActivityStreamsAccept
	// GetActivityStreamsActivity returns the value of this property. When
	// IsActivityStreamsActivity returns false, GetActivityStreamsActivity
	// will return an arbitrary value.
	GetActivityStreamsActivity() ActivityStreamsActivity
	// GetActivityStreamsAdd returns the value of this property. When
	// IsActivityStreamsAdd returns false, GetActivityStreamsAdd will
	// return an arbitrary value.
	GetActivityStreamsAdd() ActivityStreamsAdd
	// GetActivityStreamsAnnounce returns the value of this property. When
	// IsActivityStreamsAnnounce returns false, GetActivityStreamsAnnounce
	// will return an arbitrary value.
	GetActivityStreamsAnnounce() ActivityStreamsAnnounce
	// GetActivityStreamsApplication returns the value of this property. When
	// IsActivityStreamsApplication returns false,
	// GetActivityStreamsApplication will return an arbitrary value.
	GetActivityStreamsApplication() ActivityStreamsApplication
	// GetActivityStreamsArrive returns the value of this property. When
	// IsActivityStreamsArrive returns false, GetActivityStreamsArrive
	// will return an arbitrary value.
	GetActivityStreamsArrive() ActivityStreamsArrive
	// GetActivityStreamsArticle returns the value of this property. When
	// IsActivityStreamsArticle returns false, GetActivityStreamsArticle
	// will return an arbitrary value.
	GetActivityStreamsArticle() ActivityStreamsArticle
	// GetActivityStreamsAudio returns the value of this property. When
	// IsActivityStreamsAudio returns false, GetActivityStreamsAudio will
	// return an arbitrary value.
	GetActivityStreamsAudio() ActivityStreamsAudio
	// GetActivityStreamsBlock returns the value of this property. When
	// IsActivityStreamsBlock returns false, GetActivityStreamsBlock will
	// return an arbitrary value.
	GetActivityStreamsBlock() ActivityStreamsBlock
	// GetActivityStreamsCollection returns the value of this property. When
	// IsActivityStreamsCollection returns false,
	// GetActivityStreamsCollection will return an arbitrary value.
	GetActivityStreamsCollection() ActivityStreamsCollection
	// GetActivityStreamsCollectionPage returns the value of this property.
	// When IsActivityStreamsCollectionPage returns false,
	// GetActivityStreamsCollectionPage will return an arbitrary value.
	GetActivityStreamsCollectionPage() ActivityStreamsCollectionPage
	// GetActivityStreamsCreate returns the value of this property. When
	// IsActivityStreamsCreate returns false, GetActivityStreamsCreate
	// will return an arbitrary value.
	GetActivityStreamsCreate() ActivityStreamsCreate
	// GetActivityStreamsDelete returns the value of this property. When
	// IsActivityStreamsDelete returns false, GetActivityStreamsDelete
	// will return an arbitrary value.
	GetActivityStreamsDelete() ActivityStreamsDelete
	// GetActivityStreamsDislike returns the value of this property. When
	// IsActivityStreamsDislike returns false, GetActivityStreamsDislike
	// will return an arbitrary value.
	GetActivityStreamsDislike() ActivityStreamsDislike
	// GetActivityStreamsDocument returns the value of this property. When
	// IsActivityStreamsDocument returns false, GetActivityStreamsDocument
	// will return an arbitrary value.
	GetActivityStreamsDocument() ActivityStreamsDocument
	// GetActivityStreamsEvent returns the value of this property. When
	// IsActivityStreamsEvent returns false, GetActivityStreamsEvent will
	// return an arbitrary value.
	GetActivityStreamsEvent() ActivityStreamsEvent
	// GetActivityStreamsFlag returns the value of this property. When
	// IsActivityStreamsFlag returns false, GetActivityStreamsFlag will
	// return an arbitrary value.
	GetActivityStreamsFlag() ActivityStreamsFlag
	// GetActivityStreamsFollow returns the value of this property. When
	// IsActivityStreamsFollow returns false, GetActivityStreamsFollow
	// will return an arbitrary value.
	GetActivityStreamsFollow() ActivityStreamsFollow
	// GetActivityStreamsGroup returns the value of this property. When
	// IsActivityStreamsGroup returns false, GetActivityStreamsGroup will
	// return an arbitrary value.
	GetActivityStreamsGroup() ActivityStreamsGroup
	// GetActivityStreamsIgnore returns the value of this property. When
	// IsActivityStreamsIgnore returns false, GetActivityStreamsIgnore
	// will return an arbitrary value.
	GetActivityStreamsIgnore() ActivityStreamsIgnore
	// GetActivityStreamsImage returns the value of this property. When
	// IsActivityStreamsImage returns false, GetActivityStreamsImage will
	// return an arbitrary value.
	GetActivityStreamsImage() ActivityStreamsImage
	// GetActivityStreamsIntransitiveActivity returns the value of this
	// property. When IsActivityStreamsIntransitiveActivity returns false,
	// GetActivityStreamsIntransitiveActivity will return an arbitrary
	// value.
	GetActivityStreamsIntransitiveActivity() ActivityStreamsIntransitiveActivity
	// GetActivityStreamsInvite returns the value of this property. When
	// IsActivityStreamsInvite returns false, GetActivityStreamsInvite
	// will return an arbitrary value.
	GetActivityStreamsInvite() ActivityStreamsInvite
	// GetActivityStreamsJoin returns the value of this property. When
	// IsActivityStreamsJoin returns false, GetActivityStreamsJoin will
	// return an arbitrary value.
	GetActivityStreamsJoin() ActivityStreamsJoin
	// GetActivityStreamsLeave returns the value of this property. When
	// IsActivityStreamsLeave returns false, GetActivityStreamsLeave will
	// return an arbitrary value.
	GetActivityStreamsLeave() ActivityStreamsLeave
	// GetActivityStreamsLike returns the value of this property. When
	// IsActivityStreamsLike returns false, GetActivityStreamsLike will
	// return an arbitrary value.
	GetActivityStreamsLike() ActivityStreamsLike
	// GetActivityStreamsListen returns the value of this property. When
	// IsActivityStreamsListen returns false, GetActivityStreamsListen
	// will return an arbitrary value.
	GetActivityStreamsListen() ActivityStreamsListen
	// GetActivityStreamsMove returns the value of this property. When
	// IsActivityStreamsMove returns false, GetActivityStreamsMove will
	// return an arbitrary value.
	GetActivityStreamsMove() ActivityStreamsMove
	// GetActivityStreamsNote returns the value of this property. When
	// IsActivityStreamsNote returns false, GetActivityStreamsNote will
	// return an arbitrary value.
	GetActivityStreamsNote() ActivityStreamsNote
	// GetActivityStreamsObject returns the value of this property. When
	// IsActivityStreamsObject returns false, GetActivityStreamsObject
	// will return an arbitrary value.
	GetActivityStreamsObject() ActivityStreamsObject
	// GetActivityStreamsOffer returns the value of this property. When
	// IsActivityStreamsOffer returns false, GetActivityStreamsOffer will
	// return an arbitrary value.
	GetActivityStreamsOffer() ActivityStreamsOffer
	// GetActivityStreamsOrderedCollection returns the value of this property.
	// When IsActivityStreamsOrderedCollection returns false,
	// GetActivityStreamsOrderedCollection will return an arbitrary value.
	GetActivityStreamsOrderedCollection() ActivityStreamsOrderedCollection
	// GetActivityStreamsOrderedCollectionPage returns the value of this
	// property. When IsActivityStreamsOrderedCollectionPage returns
	// false, GetActivityStreamsOrderedCollectionPage will return an
	// arbitrary value.
	GetActivityStreamsOrderedCollectionPage() ActivityStreamsOrderedCollectionPage
	// GetActivityStreamsOrganization returns the value of this property. When
	// IsActivityStreamsOrganization returns false,
	// GetActivityStreamsOrganization will return an arbitrary value.
	GetActivityStreamsOrganization() ActivityStreamsOrganization
	// GetActivityStreamsPage returns the value of this property. When
	// IsActivityStreamsPage returns false, GetActivityStreamsPage will
	// return an arbitrary value.
	GetActivityStreamsPage() ActivityStreamsPage
	// GetActivityStreamsPerson returns the value of this property. When
	// IsActivityStreamsPerson returns false, GetActivityStreamsPerson
	// will return an arbitrary value.
	GetActivityStreamsPerson() ActivityStreamsPerson
	// GetActivityStreamsPlace returns the value of this property. When
	// IsActivityStreamsPlace returns false, GetActivityStreamsPlace will
	// return an arbitrary value.
	GetActivityStreamsPlace() ActivityStreamsPlace
	// GetActivityStreamsProfile returns the value of this property. When
	// IsActivityStreamsProfile returns false, GetActivityStreamsProfile
	// will return an arbitrary value.
	GetActivityStreamsProfile() ActivityStreamsProfile
	// GetActivityStreamsQuestion returns the value of this property. When
	// IsActivityStreamsQuestion returns false, GetActivityStreamsQuestion
	// will return an arbitrary value.
	GetActivityStreamsQuestion() ActivityStreamsQuestion
	// GetActivityStreamsRead returns the value of this property. When
	// IsActivityStreamsRead returns false, GetActivityStreamsRead will
	// return an arbitrary value.
	GetActivityStreamsRead() ActivityStreamsRead
	// GetActivityStreamsReject returns the value of this property. When
	// IsActivityStreamsReject returns false, GetActivityStreamsReject
	// will return an arbitrary value.
	GetActivityStreamsReject() ActivityStreamsReject
	// GetActivityStreamsRelationship returns the value of this property. When
	// IsActivityStreamsRelationship returns false,
	// GetActivityStreamsRelationship will return an arbitrary value.
	GetActivityStreamsRelationship() ActivityStreamsRelationship
	// GetActivityStreamsRemove returns the value of this property. When
	// IsActivityStreamsRemove returns false, GetActivityStreamsRemove
	// will return an arbitrary value.
	GetActivityStreamsRemove() ActivityStreamsRemove
	// GetActivityStreamsService returns the value of this property. When
	// IsActivityStreamsService returns false, GetActivityStreamsService
	// will return an arbitrary value.
	GetActivityStreamsService() ActivityStreamsService
	// GetActivityStreamsTentativeAccept returns the value of this property.
	// When IsActivityStreamsTentativeAccept returns false,
	// GetActivityStreamsTentativeAccept will return an arbitrary value.
	GetActivityStreamsTentativeAccept() ActivityStreamsTentativeAccept
	// GetActivityStreamsTentativeReject returns the value of this property.
	// When IsActivityStreamsTentativeReject returns false,
	// GetActivityStreamsTentativeReject will return an arbitrary value.
	GetActivityStreamsTentativeReject() ActivityStreamsTentativeReject
	// GetActivityStreamsTombstone returns the value of this property. When
	// IsActivityStreamsTombstone returns false,
	// GetActivityStreamsTombstone will return an arbitrary value.
	GetActivityStreamsTombstone() ActivityStreamsTombstone
	// GetActivityStreamsTravel returns the value of this property. When
	// IsActivityStreamsTravel returns false, GetActivityStreamsTravel
	// will return an arbitrary value.
	GetActivityStreamsTravel() ActivityStreamsTravel
	// GetActivityStreamsUndo returns the value of this property. When
	// IsActivityStreamsUndo returns false, GetActivityStreamsUndo will
	// return an arbitrary value.
	GetActivityStreamsUndo() ActivityStreamsUndo
	// GetActivityStreamsUpdate returns the value of this property. When
	// IsActivityStreamsUpdate returns false, GetActivityStreamsUpdate
	// will return an arbitrary value.
	GetActivityStreamsUpdate() ActivityStreamsUpdate
	// GetActivityStreamsVideo returns the value of this property. When
	// IsActivityStreamsVideo returns false, GetActivityStreamsVideo will
	// return an arbitrary value.
	GetActivityStreamsVideo() ActivityStreamsVideo
	// GetActivityStreamsView returns the value of this property. When
	// IsActivityStreamsView returns false, GetActivityStreamsView will
	// return an arbitrary value.
	GetActivityStreamsView() ActivityStreamsView
	// GetForgeFedBranch returns the value of this property. When
	// IsForgeFedBranch returns false, GetForgeFedBranch will return an
	// arbitrary value.
	GetForgeFedBranch() ForgeFedBranch
	// GetForgeFedCommit returns the value of this property. When
	// IsForgeFedCommit returns false, GetForgeFedCommit will return an
	// arbitrary value.
	GetForgeFedCommit() ForgeFedCommit
	// GetForgeFedPush returns the value of this property. When IsForgeFedPush
	// returns false, GetForgeFedPush will return an arbitrary value.
	GetForgeFedPush() ForgeFedPush
	// GetForgeFedRepository returns the value of this property. When
	// IsForgeFedRepository returns false, GetForgeFedRepository will
	// return an arbitrary value.
	GetForgeFedRepository() ForgeFedRepository
	// GetForgeFedTicket returns the value of this property. When
	// IsForgeFedTicket returns false, GetForgeFedTicket will return an
	// arbitrary value.
	GetForgeFedTicket() ForgeFedTicket
	// GetForgeFedTicketDependency returns the value of this property. When
	// IsForgeFedTicketDependency returns false,
	// GetForgeFedTicketDependency will return an arbitrary value.
	GetForgeFedTicketDependency() ForgeFedTicketDependency
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return an arbitrary value.
	GetIRI() *url.URL
	// GetTootEmoji returns the value of this property. When IsTootEmoji
	// returns false, GetTootEmoji will return an arbitrary value.
	GetTootEmoji() TootEmoji
	// GetTootIdentityProof returns the value of this property. When
	// IsTootIdentityProof returns false, GetTootIdentityProof will return
	// an arbitrary value.
	GetTootIdentityProof() TootIdentityProof
	// GetType returns the value in this property as a Type. Returns nil if
	// the value is not an ActivityStreams type, such as an IRI or another
	// value.
	GetType() Type
	// HasAny returns true if any of the different values is set.
	HasAny() bool
	// IsActivityStreamsAccept returns true if this property has a type of
	// "Accept". When true, use the GetActivityStreamsAccept and
	// SetActivityStreamsAccept methods to access and set this property.
	IsActivityStreamsAccept() bool
	// IsActivityStreamsActivity returns true if this property has a type of
	// "Activity". When true, use the GetActivityStreamsActivity and
	// SetActivityStreamsActivity methods to access and set this property.
	IsActivityStreamsActivity() bool
	// IsActivityStreamsAdd returns true if this property has a type of "Add".
	// When true, use the GetActivityStreamsAdd and SetActivityStreamsAdd
	// methods to access and set this property.
	IsActivityStreamsAdd() bool
	// IsActivityStreamsAnnounce returns true if this property has a type of
	// "Announce". When true, use the GetActivityStreamsAnnounce and
	// SetActivityStreamsAnnounce methods to access and set this property.
	IsActivityStreamsAnnounce() bool
	// IsActivityStreamsApplication returns true if this property has a type
	// of "Application". When true, use the GetActivityStreamsApplication
	// and SetActivityStreamsApplication methods to access and set this
	// property.
	IsActivityStreamsApplication() bool
	// IsActivityStreamsArrive returns true if this property has a type of
	// "Arrive". When true, use the GetActivityStreamsArrive and
	// SetActivityStreamsArrive methods to access and set this property.
	IsActivityStreamsArrive() bool
	// IsActivityStreamsArticle returns true if this property has a type of
	// "Article". When true, use the GetActivityStreamsArticle and
	// SetActivityStreamsArticle methods to access and set this property.
	IsActivityStreamsArticle() bool
	// IsActivityStreamsAudio returns true if this property has a type of
	// "Audio". When true, use the GetActivityStreamsAudio and
	// SetActivityStreamsAudio methods to access and set this property.
	IsActivityStreamsAudio() bool
	// IsActivityStreamsBlock returns true if this property has a type of
	// "Block". When true, use the GetActivityStreamsBlock and
	// SetActivityStreamsBlock methods to access and set this property.
	IsActivityStreamsBlock() bool
	// IsActivityStreamsCollection returns true if this property has a type of
	// "Collection". When true, use the GetActivityStreamsCollection and
	// SetActivityStreamsCollection methods to access and set this
	// property.
	IsActivityStreamsCollection() bool
	// IsActivityStreamsCollectionPage returns true if this property has a
	// type of "CollectionPage". When true, use the
	// GetActivityStreamsCollectionPage and
	// SetActivityStreamsCollectionPage methods to access and set this
	// property.
	IsActivityStreamsCollectionPage() bool
	// IsActivityStreamsCreate returns true if this property has a type of
	// "Create". When true, use the GetActivityStreamsCreate and
	// SetActivityStreamsCreate methods to access and set this property.
	IsActivityStreamsCreate() bool
	// IsActivityStreamsDelete returns true if this property has a type of
	// "Delete". When true, use the GetActivityStreamsDelete and
	// SetActivityStreamsDelete methods to access and set this property.
	IsActivityStreamsDelete() bool
	// IsActivityStreamsDislike returns true if this property has a type of
	// "Dislike". When true, use the GetActivityStreamsDislike and
	// SetActivityStreamsDislike methods to access and set this property.
	IsActivityStreamsDislike() bool
	// IsActivityStreamsDocument returns true if this property has a type of
	// "Document". When true, use the GetActivityStreamsDocument and
	// SetActivityStreamsDocument methods to access and set this property.
	IsActivityStreamsDocument() bool
	// IsActivityStreamsEvent returns true if this property has a type of
	// "Event". When true, use the GetActivityStreamsEvent and
	// SetActivityStreamsEvent methods to access and set this property.
	IsActivityStreamsEvent() bool
	// IsActivityStreamsFlag returns true if this property has a type of
	// "Flag". When true, use the GetActivityStreamsFlag and
	// SetActivityStreamsFlag methods to access and set this property.
	IsActivityStreamsFlag() bool
	// IsActivityStreamsFollow returns true if this property has a type of
	// "Follow". When true, use the GetActivityStreamsFollow and
	// SetActivityStreamsFollow methods to access and set this property.
	IsActivityStreamsFollow() bool
	// IsActivityStreamsGroup returns true if this property has a type of
	// "Group". When true, use the GetActivityStreamsGroup and
	// SetActivityStreamsGroup methods to access and set this property.
	IsActivityStreamsGroup() bool
	// IsActivityStreamsIgnore returns true if this property has a type of
	// "Ignore". When true, use the GetActivityStreamsIgnore and
	// SetActivityStreamsIgnore methods to access and set this property.
	IsActivityStreamsIgnore() bool
	// IsActivityStreamsImage returns true if this property has a type of
	// "Image". When true, use the GetActivityStreamsImage and
	// SetActivityStreamsImage methods to access and set this property.
	IsActivityStreamsImage() bool
	// IsActivityStreamsIntransitiveActivity returns true if this property has
	// a type of "IntransitiveActivity". When true, use the
	// GetActivityStreamsIntransitiveActivity and
	// SetActivityStreamsIntransitiveActivity methods to access and set
	// this property.
	IsActivityStreamsIntransitiveActivity() bool
	// IsActivityStreamsInvite returns true if this property has a type of
	// "Invite". When true, use the GetActivityStreamsInvite and
	// SetActivityStreamsInvite methods to access and set this property.
	IsActivityStreamsInvite() bool
	// IsActivityStreamsJoin returns true if this property has a type of
	// "Join". When true, use the GetActivityStreamsJoin and
	// SetActivityStreamsJoin methods to access and set this property.
	IsActivityStreamsJoin() bool
	// IsActivityStreamsLeave returns true if this property has a type of
	// "Leave". When true, use the GetActivityStreamsLeave and
	// SetActivityStreamsLeave methods to access and set this property.
	IsActivityStreamsLeave() bool
	// IsActivityStreamsLike returns true if this property has a type of
	// "Like". When true, use the GetActivityStreamsLike and
	// SetActivityStreamsLike methods to access and set this property.
	IsActivityStreamsLike() bool
	// IsActivityStreamsListen returns true if this property has a type of
	// "Listen". When true, use the GetActivityStreamsListen and
	// SetActivityStreamsListen methods to access and set this property.
	IsActivityStreamsListen() bool
	// IsActivityStreamsMove returns true if this property has a type of
	// "Move". When true, use the GetActivityStreamsMove and
	// SetActivityStreamsMove methods to access and set this property.
	IsActivityStreamsMove() bool
	// IsActivityStreamsNote returns true if this property has a type of
	// "Note". When true, use the GetActivityStreamsNote and
	// SetActivityStreamsNote methods to access and set this property.
	IsActivityStreamsNote() bool
	// IsActivityStreamsObject returns true if this property has a type of
	// "Object". When true, use the GetActivityStreamsObject and
	// SetActivityStreamsObject methods to access and set this property.
	IsActivityStreamsObject() bool
	// IsActivityStreamsOffer returns true if this property has a type of
	// "Offer". When true, use the GetActivityStreamsOffer and
	// SetActivityStreamsOffer methods to access and set this property.
	IsActivityStreamsOffer() bool
	// IsActivityStreamsOrderedCollection returns true if this property has a
	// type of "OrderedCollection". When true, use the
	// GetActivityStreamsOrderedCollection and
	// SetActivityStreamsOrderedCollection methods to access and set this
	// property.
	IsActivityStreamsOrderedCollection() bool
	// IsActivityStreamsOrderedCollectionPage returns true if this property
	// has a type of "OrderedCollectionPage". When true, use the
	// GetActivityStreamsOrderedCollectionPage and
	// SetActivityStreamsOrderedCollectionPage methods to access and set
	// this property.
	IsActivityStreamsOrderedCollectionPage() bool
	// IsActivityStreamsOrganization returns true if this property has a type
	// of "Organization". When true, use the
	// GetActivityStreamsOrganization and SetActivityStreamsOrganization
	// methods to access and set this property.
	IsActivityStreamsOrganization() bool
	// IsActivityStreamsPage returns true if this property has a type of
	// "Page". When true, use the GetActivityStreamsPage and
	// SetActivityStreamsPage methods to access and set this property.
	IsActivityStreamsPage() bool
	// IsActivityStreamsPerson returns true if this property has a type of
	// "Person". When true, use the GetActivityStreamsPerson and
	// SetActivityStreamsPerson methods to access and set this property.
	IsActivityStreamsPerson() bool
	// IsActivityStreamsPlace returns true if this property has a type of
	// "Place". When true, use the GetActivityStreamsPlace and
	// SetActivityStreamsPlace methods to access and set this property.
	IsActivityStreamsPlace() bool
	// IsActivityStreamsProfile returns true if this property has a type of
	// "Profile". When true, use the GetActivityStreamsProfile and
	// SetActivityStreamsProfile methods to access and set this property.
	IsActivityStreamsProfile() bool
	// IsActivityStreamsQuestion returns true if this property has a type of
	// "Question". When true, use the GetActivityStreamsQuestion and
	// SetActivityStreamsQuestion methods to access and set this property.
	IsActivityStreamsQuestion() bool
	// IsActivityStreamsRead returns true if this property has a type of
	// "Read". When true, use the GetActivityStreamsRead and
	// SetActivityStreamsRead methods to access and set this property.
	IsActivityStreamsRead() bool
	// IsActivityStreamsReject returns true if this property has a type of
	// "Reject". When true, use the GetActivityStreamsReject and
	// SetActivityStreamsReject methods to access and set this property.
	IsActivityStreamsReject() bool
	// IsActivityStreamsRelationship returns true if this property has a type
	// of "Relationship". When true, use the
	// GetActivityStreamsRelationship and SetActivityStreamsRelationship
	// methods to access and set this property.
	IsActivityStreamsRelationship() bool
	// IsActivityStreamsRemove returns true if this property has a type of
	// "Remove". When true, use the GetActivityStreamsRemove and
	// SetActivityStreamsRemove methods to access and set this property.
	IsActivityStreamsRemove() bool
	// IsActivityStreamsService returns true if this property has a type of
	// "Service". When true, use the GetActivityStreamsService and
	// SetActivityStreamsService methods to access and set this property.
	IsActivityStreamsService() bool
	// IsActivityStreamsTentativeAccept returns true if this property has a
	// type of "TentativeAccept". When true, use the
	// GetActivityStreamsTentativeAccept and
	// SetActivityStreamsTentativeAccept methods to access and set this
	// property.
	IsActivityStreamsTentativeAccept() bool
	// IsActivityStreamsTentativeReject returns true if this property has a
	// type of "TentativeReject". When true, use the
	// GetActivityStreamsTentativeReject and
	// SetActivityStreamsTentativeReject methods to access and set this
	// property.
	IsActivityStreamsTentativeReject() bool
	// IsActivityStreamsTombstone returns true if this property has a type of
	// "Tombstone". When true, use the GetActivityStreamsTombstone and
	// SetActivityStreamsTombstone methods to access and set this property.
	IsActivityStreamsTombstone() bool
	// IsActivityStreamsTravel returns true if this property has a type of
	// "Travel". When true, use the GetActivityStreamsTravel and
	// SetActivityStreamsTravel methods to access and set this property.
	IsActivityStreamsTravel() bool
	// IsActivityStreamsUndo returns true if this property has a type of
	// "Undo". When true, use the GetActivityStreamsUndo and
	// SetActivityStreamsUndo methods to access and set this property.
	IsActivityStreamsUndo() bool
	// IsActivityStreamsUpdate returns true if this property has a type of
	// "Update". When true, use the GetActivityStreamsUpdate and
	// SetActivityStreamsUpdate methods to access and set this property.
	IsActivityStreamsUpdate() bool
	// IsActivityStreamsVideo returns true if this property has a type of
	// "Video". When true, use the GetActivityStreamsVideo and
	// SetActivityStreamsVideo methods to access and set this property.
	IsActivityStreamsVideo() bool
	// IsActivityStreamsView returns true if this property has a type of
	// "View". When true, use the GetActivityStreamsView and
	// SetActivityStreamsView methods to access and set this property.
	IsActivityStreamsView() bool
	// IsForgeFedBranch returns true if this property has a type of "Branch".
	// When true, use the GetForgeFedBranch and SetForgeFedBranch methods
	// to access and set this property.
	IsForgeFedBranch() bool
	// IsForgeFedCommit returns true if this property has a type of "Commit".
	// When true, use the GetForgeFedCommit and SetForgeFedCommit methods
	// to access and set this property.
	IsForgeFedCommit() bool
	// IsForgeFedPush returns true if this property has a type of "Push". When
	// true, use the GetForgeFedPush and SetForgeFedPush methods to access
	// and set this property.
	IsForgeFedPush() bool
	// IsForgeFedRepository returns true if this property has a type of
	// "Repository". When true, use the GetForgeFedRepository and
	// SetForgeFedRepository methods to access and set this property.
	IsForgeFedRepository() bool
	// IsForgeFedTicket returns true if this property has a type of "Ticket".
	// When true, use the GetForgeFedTicket and SetForgeFedTicket methods
	// to access and set this property.
	IsForgeFedTicket() bool
	// IsForgeFedTicketDependency returns true if this property has a type of
	// "TicketDependency". When true, use the GetForgeFedTicketDependency
	// and SetForgeFedTicketDependency methods to access and set this
	// property.
	IsForgeFedTicketDependency() bool
	// IsIRI returns true if this property is an IRI. When true, use GetIRI
	// and SetIRI to access and set this property
	IsIRI() bool
	// IsTootEmoji returns true if this property has a type of "Emoji". When
	// true, use the GetTootEmoji and SetTootEmoji methods to access and
	// set this property.
	IsTootEmoji() bool
	// IsTootIdentityProof returns true if this property has a type of
	// "IdentityProof". When true, use the GetTootIdentityProof and
	// SetTootIdentityProof methods to access and set this property.
	IsTootIdentityProof() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsRelationshipPropertyIterator) bool
	// Name returns the name of this property: "ActivityStreamsRelationship".
	Name() string
	// Next returns the next iterator, or nil if there is no next iterator.
	Next() ActivityStreamsRelationshipPropertyIterator
	// Prev returns the previous iterator, or nil if there is no previous
	// iterator.
	Prev() ActivityStreamsRelationshipPropertyIterator
	// SetActivityStreamsAccept sets the value of this property. Calling
	// IsActivityStreamsAccept afterwards returns true.
	SetActivityStreamsAccept(v ActivityStreamsAccept)
	// SetActivityStreamsActivity sets the value of this property. Calling
	// IsActivityStreamsActivity afterwards returns true.
	SetActivityStreamsActivity(v ActivityStreamsActivity)
	// SetActivityStreamsAdd sets the value of this property. Calling
	// IsActivityStreamsAdd afterwards returns true.
	SetActivityStreamsAdd(v ActivityStreamsAdd)
	// SetActivityStreamsAnnounce sets the value of this property. Calling
	// IsActivityStreamsAnnounce afterwards returns true.
	SetActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// SetActivityStreamsApplication sets the value of this property. Calling
	// IsActivityStreamsApplication afterwards returns true.
	SetActivityStreamsApplication(v ActivityStreamsApplication)
	// SetActivityStreamsArrive sets the value of this property. Calling
	// IsActivityStreamsArrive afterwards returns true.
	SetActivityStreamsArrive(v ActivityStreamsArrive)
	// SetActivityStreamsArticle sets the value of this property. Calling
	// IsActivityStreamsArticle afterwards returns true.
	SetActivityStreamsArticle(v ActivityStreamsArticle)
	// SetActivityStreamsAudio sets the value of this property. Calling
	// IsActivityStreamsAudio afterwards returns true.
	SetActivityStreamsAudio(v ActivityStreamsAudio)
	// SetActivityStreamsBlock sets the value of this property. Calling
	// IsActivityStreamsBlock afterwards returns true.
	SetActivityStreamsBlock(v ActivityStreamsBlock)
	// SetActivityStreamsCollection sets the value of this property. Calling
	// IsActivityStreamsCollection afterwards returns true.
	SetActivityStreamsCollection(v ActivityStreamsCollection)
	// SetActivityStreamsCollectionPage sets the value of this property.
	// Calling IsActivityStreamsCollectionPage afterwards returns true.
	SetActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// SetActivityStreamsCreate sets the value of this property. Calling
	// IsActivityStreamsCreate afterwards returns true.
	SetActivityStreamsCreate(v ActivityStreamsCreate)
	// SetActivityStreamsDelete sets the value of this property. Calling
	// IsActivityStreamsDelete afterwards returns true.
	SetActivityStreamsDelete(v ActivityStreamsDelete)
	// SetActivityStreamsDislike sets the value of this property. Calling
	// IsActivityStreamsDislike afterwards returns true.
	SetActivityStreamsDislike(v ActivityStreamsDislike)
	// SetActivityStreamsDocument sets the value of this property. Calling
	// IsActivityStreamsDocument afterwards returns true.
	SetActivityStreamsDocument(v ActivityStreamsDocument)
	// SetActivityStreamsEvent sets the value of this property. Calling
	// IsActivityStreamsEvent afterwards returns true.
	SetActivityStreamsEvent(v ActivityStreamsEvent)
	// SetActivityStreamsFlag sets the value of this property. Calling
	// IsActivityStreamsFlag afterwards returns true.
	SetActivityStreamsFlag(v ActivityStreamsFlag)
	// SetActivityStreamsFollow sets the value of this property. Calling
	// IsActivityStreamsFollow afterwards returns true.
	SetActivityStreamsFollow(v ActivityStreamsFollow)
	// SetActivityStreamsGroup sets the value of this property. Calling
	// IsActivityStreamsGroup afterwards returns true.
	SetActivityStreamsGroup(v ActivityStreamsGroup)
	// SetActivityStreamsIgnore sets the value of this property. Calling
	// IsActivityStreamsIgnore afterwards returns true.
	SetActivityStreamsIgnore(v ActivityStreamsIgnore)
	// SetActivityStreamsImage sets the value of this property. Calling
	// IsActivityStreamsImage afterwards returns true.
	SetActivityStreamsImage(v ActivityStreamsImage)
	// SetActivityStreamsIntransitiveActivity sets the value of this property.
	// Calling IsActivityStreamsIntransitiveActivity afterwards returns
	// true.
	SetActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// SetActivityStreamsInvite sets the value of this property. Calling
	// IsActivityStreamsInvite afterwards returns true.
	SetActivityStreamsInvite(v ActivityStreamsInvite)
	// SetActivityStreamsJoin sets the value of this property. Calling
	// IsActivityStreamsJoin afterwards returns true.
	SetActivityStreamsJoin(v ActivityStreamsJoin)
	// SetActivityStreamsLeave sets the value of this property. Calling
	// IsActivityStreamsLeave afterwards returns true.
	SetActivityStreamsLeave(v ActivityStreamsLeave)
	// SetActivityStreamsLike sets the value of this property. Calling
	// IsActivityStreamsLike afterwards returns true.
	SetActivityStreamsLike(v ActivityStreamsLike)
	// SetActivityStreamsListen sets the value of this property. Calling
	// IsActivityStreamsListen afterwards returns true.
	SetActivityStreamsListen(v ActivityStreamsListen)
	// SetActivityStreamsMove sets the value of this property. Calling
	// IsActivityStreamsMove afterwards returns true.
	SetActivityStreamsMove(v ActivityStreamsMove)
	// SetActivityStreamsNote sets the value of this property. Calling
	// IsActivityStreamsNote afterwards returns true.
	SetActivityStreamsNote(v ActivityStreamsNote)
	// SetActivityStreamsObject sets the value of this property. Calling
	// IsActivityStreamsObject afterwards returns true.
	SetActivityStreamsObject(v ActivityStreamsObject)
	// SetActivityStreamsOffer sets the value of this property. Calling
	// IsActivityStreamsOffer afterwards returns true.
	SetActivityStreamsOffer(v ActivityStreamsOffer)
	// SetActivityStreamsOrderedCollection sets the value of this property.
	// Calling IsActivityStreamsOrderedCollection afterwards returns true.
	SetActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// SetActivityStreamsOrderedCollectionPage sets the value of this
	// property. Calling IsActivityStreamsOrderedCollectionPage afterwards
	// returns true.
	SetActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// SetActivityStreamsOrganization sets the value of this property. Calling
	// IsActivityStreamsOrganization afterwards returns true.
	SetActivityStreamsOrganization(v ActivityStreamsOrganization)
	// SetActivityStreamsPage sets the value of this property. Calling
	// IsActivityStreamsPage afterwards returns true.
	SetActivityStreamsPage(v ActivityStreamsPage)
	// SetActivityStreamsPerson sets the value of this property. Calling
	// IsActivityStreamsPerson afterwards returns true.
	SetActivityStreamsPerson(v ActivityStreamsPerson)
	// SetActivityStreamsPlace sets the value of this property. Calling
	// IsActivityStreamsPlace afterwards returns true.
	SetActivityStreamsPlace(v ActivityStreamsPlace)
	// SetActivityStreamsProfile sets the value of this property. Calling
	// IsActivityStreamsProfile afterwards returns true.
	SetActivityStreamsProfile(v ActivityStreamsProfile)
	// SetActivityStreamsQuestion sets the value of this property. Calling
	// IsActivityStreamsQuestion afterwards returns true.
	SetActivityStreamsQuestion(v ActivityStreamsQuestion)
	// SetActivityStreamsRead sets the value of this property. Calling
	// IsActivityStreamsRead afterwards returns true.
	SetActivityStreamsRead(v ActivityStreamsRead)
	// SetActivityStreamsReject sets the value of this property. Calling
	// IsActivityStreamsReject afterwards returns true.
	SetActivityStreamsReject(v ActivityStreamsReject)
	// SetActivityStreamsRelationship sets the value of this property. Calling
	// IsActivityStreamsRelationship afterwards returns true.
	SetActivityStreamsRelationship(v ActivityStreamsRelationship)
	// SetActivityStreamsRemove sets the value of this property. Calling
	// IsActivityStreamsRemove afterwards returns true.
	SetActivityStreamsRemove(v ActivityStreamsRemove)
	// SetActivityStreamsService sets the value of this property. Calling
	// IsActivityStreamsService afterwards returns true.
	SetActivityStreamsService(v ActivityStreamsService)
	// SetActivityStreamsTentativeAccept sets the value of this property.
	// Calling IsActivityStreamsTentativeAccept afterwards returns true.
	SetActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// SetActivityStreamsTentativeReject sets the value of this property.
	// Calling IsActivityStreamsTentativeReject afterwards returns true.
	SetActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// SetActivityStreamsTombstone sets the value of this property. Calling
	// IsActivityStreamsTombstone afterwards returns true.
	SetActivityStreamsTombstone(v ActivityStreamsTombstone)
	// SetActivityStreamsTravel sets the value of this property. Calling
	// IsActivityStreamsTravel afterwards returns true.
	SetActivityStreamsTravel(v ActivityStreamsTravel)
	// SetActivityStreamsUndo sets the value of this property. Calling
	// IsActivityStreamsUndo afterwards returns true.
	SetActivityStreamsUndo(v ActivityStreamsUndo)
	// SetActivityStreamsUpdate sets the value of this property. Calling
	// IsActivityStreamsUpdate afterwards returns true.
	SetActivityStreamsUpdate(v ActivityStreamsUpdate)
	// SetActivityStreamsVideo sets the value of this property. Calling
	// IsActivityStreamsVideo afterwards returns true.
	SetActivityStreamsVideo(v ActivityStreamsVideo)
	// SetActivityStreamsView sets the value of this property. Calling
	// IsActivityStreamsView afterwards returns true.
	SetActivityStreamsView(v ActivityStreamsView)
	// SetForgeFedBranch sets the value of this property. Calling
	// IsForgeFedBranch afterwards returns true.
	SetForgeFedBranch(v ForgeFedBranch)
	// SetForgeFedCommit sets the value of this property. Calling
	// IsForgeFedCommit afterwards returns true.
	SetForgeFedCommit(v ForgeFedCommit)
	// SetForgeFedPush sets the value of this property. Calling IsForgeFedPush
	// afterwards returns true.
	SetForgeFedPush(v ForgeFedPush)
	// SetForgeFedRepository sets the value of this property. Calling
	// IsForgeFedRepository afterwards returns true.
	SetForgeFedRepository(v ForgeFedRepository)
	// SetForgeFedTicket sets the value of this property. Calling
	// IsForgeFedTicket afterwards returns true.
	SetForgeFedTicket(v ForgeFedTicket)
	// SetForgeFedTicketDependency sets the value of this property. Calling
	// IsForgeFedTicketDependency afterwards returns true.
	SetForgeFedTicketDependency(v ForgeFedTicketDependency)
	// SetIRI sets the value of this property. Calling IsIRI afterwards
	// returns true.
	SetIRI(v *url.URL)
	// SetTootEmoji sets the value of this property. Calling IsTootEmoji
	// afterwards returns true.
	SetTootEmoji(v TootEmoji)
	// SetTootIdentityProof sets the value of this property. Calling
	// IsTootIdentityProof afterwards returns true.
	SetTootIdentityProof(v TootIdentityProof)
	// SetType attempts to set the property for the arbitrary type. Returns an
	// error if it is not a valid type to set on this property.
	SetType(t Type) error
}

ActivityStreamsRelationshipPropertyIterator represents a single value for the "relationship" property.

type ActivityStreamsRemove

type ActivityStreamsRemove interface {
	// GetActivityStreamsActor returns the "actor" property if it exists, and
	// nil otherwise.
	GetActivityStreamsActor() ActivityStreamsActorProperty
	// GetActivityStreamsAltitude returns the "altitude" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAltitude() ActivityStreamsAltitudeProperty
	// GetActivityStreamsAttachment returns the "attachment" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAttachment() ActivityStreamsAttachmentProperty
	// GetActivityStreamsAttributedTo returns the "attributedTo" property if
	// it exists, and nil otherwise.
	GetActivityStreamsAttributedTo() ActivityStreamsAttributedToProperty
	// GetActivityStreamsAudience returns the "audience" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAudience() ActivityStreamsAudienceProperty
	// GetActivityStreamsBcc returns the "bcc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBcc() ActivityStreamsBccProperty
	// GetActivityStreamsBto returns the "bto" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBto() ActivityStreamsBtoProperty
	// GetActivityStreamsCc returns the "cc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsCc() ActivityStreamsCcProperty
	// GetActivityStreamsContent returns the "content" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContent() ActivityStreamsContentProperty
	// GetActivityStreamsContext returns the "context" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContext() ActivityStreamsContextProperty
	// GetActivityStreamsDuration returns the "duration" property if it
	// exists, and nil otherwise.
	GetActivityStreamsDuration() ActivityStreamsDurationProperty
	// GetActivityStreamsEndTime returns the "endTime" property if it exists,
	// and nil otherwise.
	GetActivityStreamsEndTime() ActivityStreamsEndTimeProperty
	// GetActivityStreamsGenerator returns the "generator" property if it
	// exists, and nil otherwise.
	GetActivityStreamsGenerator() ActivityStreamsGeneratorProperty
	// GetActivityStreamsIcon returns the "icon" property if it exists, and
	// nil otherwise.
	GetActivityStreamsIcon() ActivityStreamsIconProperty
	// GetActivityStreamsImage returns the "image" property if it exists, and
	// nil otherwise.
	GetActivityStreamsImage() ActivityStreamsImageProperty
	// GetActivityStreamsInReplyTo returns the "inReplyTo" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInReplyTo() ActivityStreamsInReplyToProperty
	// GetActivityStreamsInstrument returns the "instrument" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInstrument() ActivityStreamsInstrumentProperty
	// GetActivityStreamsLikes returns the "likes" property if it exists, and
	// nil otherwise.
	GetActivityStreamsLikes() ActivityStreamsLikesProperty
	// GetActivityStreamsLocation returns the "location" property if it
	// exists, and nil otherwise.
	GetActivityStreamsLocation() ActivityStreamsLocationProperty
	// GetActivityStreamsMediaType returns the "mediaType" property if it
	// exists, and nil otherwise.
	GetActivityStreamsMediaType() ActivityStreamsMediaTypeProperty
	// GetActivityStreamsName returns the "name" property if it exists, and
	// nil otherwise.
	GetActivityStreamsName() ActivityStreamsNameProperty
	// GetActivityStreamsObject returns the "object" property if it exists,
	// and nil otherwise.
	GetActivityStreamsObject() ActivityStreamsObjectProperty
	// GetActivityStreamsOrigin returns the "origin" property if it exists,
	// and nil otherwise.
	GetActivityStreamsOrigin() ActivityStreamsOriginProperty
	// GetActivityStreamsPreview returns the "preview" property if it exists,
	// and nil otherwise.
	GetActivityStreamsPreview() ActivityStreamsPreviewProperty
	// GetActivityStreamsPublished returns the "published" property if it
	// exists, and nil otherwise.
	GetActivityStreamsPublished() ActivityStreamsPublishedProperty
	// GetActivityStreamsReplies returns the "replies" property if it exists,
	// and nil otherwise.
	GetActivityStreamsReplies() ActivityStreamsRepliesProperty
	// GetActivityStreamsResult returns the "result" property if it exists,
	// and nil otherwise.
	GetActivityStreamsResult() ActivityStreamsResultProperty
	// GetActivityStreamsShares returns the "shares" property if it exists,
	// and nil otherwise.
	GetActivityStreamsShares() ActivityStreamsSharesProperty
	// GetActivityStreamsSource returns the "source" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSource() ActivityStreamsSourceProperty
	// GetActivityStreamsStartTime returns the "startTime" property if it
	// exists, and nil otherwise.
	GetActivityStreamsStartTime() ActivityStreamsStartTimeProperty
	// GetActivityStreamsSummary returns the "summary" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSummary() ActivityStreamsSummaryProperty
	// GetActivityStreamsTag returns the "tag" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTag() ActivityStreamsTagProperty
	// GetActivityStreamsTarget returns the "target" property if it exists,
	// and nil otherwise.
	GetActivityStreamsTarget() ActivityStreamsTargetProperty
	// GetActivityStreamsTo returns the "to" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTo() ActivityStreamsToProperty
	// GetActivityStreamsUpdated returns the "updated" property if it exists,
	// and nil otherwise.
	GetActivityStreamsUpdated() ActivityStreamsUpdatedProperty
	// GetActivityStreamsUrl returns the "url" property if it exists, and nil
	// otherwise.
	GetActivityStreamsUrl() ActivityStreamsUrlProperty
	// GetForgeFedTeam returns the "team" property if it exists, and nil
	// otherwise.
	GetForgeFedTeam() ForgeFedTeamProperty
	// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
	// it exists, and nil otherwise.
	GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
	// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
	// it exists, and nil otherwise.
	GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
	// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
	GetJSONLDId() JSONLDIdProperty
	// GetJSONLDType returns the "type" property if it exists, and nil
	// otherwise.
	GetJSONLDType() JSONLDTypeProperty
	// GetTypeName returns the name of this type.
	GetTypeName() string
	// GetUnknownProperties returns the unknown properties for the Remove
	// type. Note that this should not be used by app developers. It is
	// only used to help determine which implementation is LessThan the
	// other. Developers who are creating a different implementation of
	// this type's interface can use this method in their LessThan
	// implementation, but routine ActivityPub applications should not use
	// this to bypass the code generation tool.
	GetUnknownProperties() map[string]interface{}
	// IsExtending returns true if the Remove type extends from the other type.
	IsExtending(other Type) bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this type and the specific properties that are set. The value
	// in the map is the alias used to import the type and its properties.
	JSONLDContext() map[string]string
	// LessThan computes if this Remove is lesser, with an arbitrary but
	// stable determination.
	LessThan(o ActivityStreamsRemove) bool
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format.
	Serialize() (map[string]interface{}, error)
	// SetActivityStreamsActor sets the "actor" property.
	SetActivityStreamsActor(i ActivityStreamsActorProperty)
	// SetActivityStreamsAltitude sets the "altitude" property.
	SetActivityStreamsAltitude(i ActivityStreamsAltitudeProperty)
	// SetActivityStreamsAttachment sets the "attachment" property.
	SetActivityStreamsAttachment(i ActivityStreamsAttachmentProperty)
	// SetActivityStreamsAttributedTo sets the "attributedTo" property.
	SetActivityStreamsAttributedTo(i ActivityStreamsAttributedToProperty)
	// SetActivityStreamsAudience sets the "audience" property.
	SetActivityStreamsAudience(i ActivityStreamsAudienceProperty)
	// SetActivityStreamsBcc sets the "bcc" property.
	SetActivityStreamsBcc(i ActivityStreamsBccProperty)
	// SetActivityStreamsBto sets the "bto" property.
	SetActivityStreamsBto(i ActivityStreamsBtoProperty)
	// SetActivityStreamsCc sets the "cc" property.
	SetActivityStreamsCc(i ActivityStreamsCcProperty)
	// SetActivityStreamsContent sets the "content" property.
	SetActivityStreamsContent(i ActivityStreamsContentProperty)
	// SetActivityStreamsContext sets the "context" property.
	SetActivityStreamsContext(i ActivityStreamsContextProperty)
	// SetActivityStreamsDuration sets the "duration" property.
	SetActivityStreamsDuration(i ActivityStreamsDurationProperty)
	// SetActivityStreamsEndTime sets the "endTime" property.
	SetActivityStreamsEndTime(i ActivityStreamsEndTimeProperty)
	// SetActivityStreamsGenerator sets the "generator" property.
	SetActivityStreamsGenerator(i ActivityStreamsGeneratorProperty)
	// SetActivityStreamsIcon sets the "icon" property.
	SetActivityStreamsIcon(i ActivityStreamsIconProperty)
	// SetActivityStreamsImage sets the "image" property.
	SetActivityStreamsImage(i ActivityStreamsImageProperty)
	// SetActivityStreamsInReplyTo sets the "inReplyTo" property.
	SetActivityStreamsInReplyTo(i ActivityStreamsInReplyToProperty)
	// SetActivityStreamsInstrument sets the "instrument" property.
	SetActivityStreamsInstrument(i ActivityStreamsInstrumentProperty)
	// SetActivityStreamsLikes sets the "likes" property.
	SetActivityStreamsLikes(i ActivityStreamsLikesProperty)
	// SetActivityStreamsLocation sets the "location" property.
	SetActivityStreamsLocation(i ActivityStreamsLocationProperty)
	// SetActivityStreamsMediaType sets the "mediaType" property.
	SetActivityStreamsMediaType(i ActivityStreamsMediaTypeProperty)
	// SetActivityStreamsName sets the "name" property.
	SetActivityStreamsName(i ActivityStreamsNameProperty)
	// SetActivityStreamsObject sets the "object" property.
	SetActivityStreamsObject(i ActivityStreamsObjectProperty)
	// SetActivityStreamsOrigin sets the "origin" property.
	SetActivityStreamsOrigin(i ActivityStreamsOriginProperty)
	// SetActivityStreamsPreview sets the "preview" property.
	SetActivityStreamsPreview(i ActivityStreamsPreviewProperty)
	// SetActivityStreamsPublished sets the "published" property.
	SetActivityStreamsPublished(i ActivityStreamsPublishedProperty)
	// SetActivityStreamsReplies sets the "replies" property.
	SetActivityStreamsReplies(i ActivityStreamsRepliesProperty)
	// SetActivityStreamsResult sets the "result" property.
	SetActivityStreamsResult(i ActivityStreamsResultProperty)
	// SetActivityStreamsShares sets the "shares" property.
	SetActivityStreamsShares(i ActivityStreamsSharesProperty)
	// SetActivityStreamsSource sets the "source" property.
	SetActivityStreamsSource(i ActivityStreamsSourceProperty)
	// SetActivityStreamsStartTime sets the "startTime" property.
	SetActivityStreamsStartTime(i ActivityStreamsStartTimeProperty)
	// SetActivityStreamsSummary sets the "summary" property.
	SetActivityStreamsSummary(i ActivityStreamsSummaryProperty)
	// SetActivityStreamsTag sets the "tag" property.
	SetActivityStreamsTag(i ActivityStreamsTagProperty)
	// SetActivityStreamsTarget sets the "target" property.
	SetActivityStreamsTarget(i ActivityStreamsTargetProperty)
	// SetActivityStreamsTo sets the "to" property.
	SetActivityStreamsTo(i ActivityStreamsToProperty)
	// SetActivityStreamsUpdated sets the "updated" property.
	SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
	// SetActivityStreamsUrl sets the "url" property.
	SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
	// SetForgeFedTeam sets the "team" property.
	SetForgeFedTeam(i ForgeFedTeamProperty)
	// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
	SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
	// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
	SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
	// SetJSONLDId sets the "id" property.
	SetJSONLDId(i JSONLDIdProperty)
	// SetJSONLDType sets the "type" property.
	SetJSONLDType(i JSONLDTypeProperty)
	// VocabularyURI returns the vocabulary's URI as a string.
	VocabularyURI() string
}

Indicates that the actor is removing the object. If specified, the origin indicates the context from which the object is being removed.

Example 27 (https://www.w3.org/TR/activitystreams-vocabulary/#ex28-jsonld):

{
  "actor": {
    "name": "Sally",
    "type": "Person"
  },
  "object": "http://example.org/notes/1",
  "summary": "Sally removed a note from her notes folder",
  "target": {
    "name": "Notes Folder",
    "type": "Collection"
  },
  "type": "Remove"
}

Example 28 (https://www.w3.org/TR/activitystreams-vocabulary/#ex29-jsonld):

{
  "actor": {
    "name": "The Moderator",
    "type": "http://example.org/Role"
  },
  "object": {
    "name": "Sally",
    "type": "Person"
  },
  "origin": {
    "name": "A Simple Group",
    "type": "Group"
  },
  "summary": "The moderator removed Sally from a group",
  "type": "Remove"
}

type ActivityStreamsRepliesProperty

type ActivityStreamsRepliesProperty interface {
	// Clear ensures no value of this property is set. Calling HasAny or any
	// of the 'Is' methods afterwards will return false.
	Clear()
	// GetActivityStreamsCollection returns the value of this property. When
	// IsActivityStreamsCollection returns false,
	// GetActivityStreamsCollection will return an arbitrary value.
	GetActivityStreamsCollection() ActivityStreamsCollection
	// GetActivityStreamsCollectionPage returns the value of this property.
	// When IsActivityStreamsCollectionPage returns false,
	// GetActivityStreamsCollectionPage will return an arbitrary value.
	GetActivityStreamsCollectionPage() ActivityStreamsCollectionPage
	// GetActivityStreamsOrderedCollection returns the value of this property.
	// When IsActivityStreamsOrderedCollection returns false,
	// GetActivityStreamsOrderedCollection will return an arbitrary value.
	GetActivityStreamsOrderedCollection() ActivityStreamsOrderedCollection
	// GetActivityStreamsOrderedCollectionPage returns the value of this
	// property. When IsActivityStreamsOrderedCollectionPage returns
	// false, GetActivityStreamsOrderedCollectionPage will return an
	// arbitrary value.
	GetActivityStreamsOrderedCollectionPage() ActivityStreamsOrderedCollectionPage
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return an arbitrary value.
	GetIRI() *url.URL
	// GetType returns the value in this property as a Type. Returns nil if
	// the value is not an ActivityStreams type, such as an IRI or another
	// value.
	GetType() Type
	// HasAny returns true if any of the different values is set.
	HasAny() bool
	// IsActivityStreamsCollection returns true if this property has a type of
	// "Collection". When true, use the GetActivityStreamsCollection and
	// SetActivityStreamsCollection methods to access and set this
	// property.
	IsActivityStreamsCollection() bool
	// IsActivityStreamsCollectionPage returns true if this property has a
	// type of "CollectionPage". When true, use the
	// GetActivityStreamsCollectionPage and
	// SetActivityStreamsCollectionPage methods to access and set this
	// property.
	IsActivityStreamsCollectionPage() bool
	// IsActivityStreamsOrderedCollection returns true if this property has a
	// type of "OrderedCollection". When true, use the
	// GetActivityStreamsOrderedCollection and
	// SetActivityStreamsOrderedCollection methods to access and set this
	// property.
	IsActivityStreamsOrderedCollection() bool
	// IsActivityStreamsOrderedCollectionPage returns true if this property
	// has a type of "OrderedCollectionPage". When true, use the
	// GetActivityStreamsOrderedCollectionPage and
	// SetActivityStreamsOrderedCollectionPage methods to access and set
	// this property.
	IsActivityStreamsOrderedCollectionPage() bool
	// IsIRI returns true if this property is an IRI. When true, use GetIRI
	// and SetIRI to access and set this property
	IsIRI() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsRepliesProperty) bool
	// Name returns the name of this property: "replies".
	Name() string
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// SetActivityStreamsCollection sets the value of this property. Calling
	// IsActivityStreamsCollection afterwards returns true.
	SetActivityStreamsCollection(v ActivityStreamsCollection)
	// SetActivityStreamsCollectionPage sets the value of this property.
	// Calling IsActivityStreamsCollectionPage afterwards returns true.
	SetActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// SetActivityStreamsOrderedCollection sets the value of this property.
	// Calling IsActivityStreamsOrderedCollection afterwards returns true.
	SetActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// SetActivityStreamsOrderedCollectionPage sets the value of this
	// property. Calling IsActivityStreamsOrderedCollectionPage afterwards
	// returns true.
	SetActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// SetIRI sets the value of this property. Calling IsIRI afterwards
	// returns true.
	SetIRI(v *url.URL)
	// SetType attempts to set the property for the arbitrary type. Returns an
	// error if it is not a valid type to set on this property.
	SetType(t Type) error
}

Identifies a Collection containing objects considered to be responses to this object.

Example 104 (https://www.w3.org/TR/activitystreams-vocabulary/#ex112-jsonld):

{
  "content": "I am fine.",
  "id": "http://www.test.example/notes/1",
  "replies": {
    "items": {
      "content": "I am glad to hear it.",
      "inReplyTo": "http://www.test.example/notes/1",
      "summary": "A response to the note",
      "type": "Note"
    },
    "totalItems": 1,
    "type": "Collection"
  },
  "summary": "A simple note",
  "type": "Note"
}

type ActivityStreamsResultProperty

type ActivityStreamsResultProperty interface {
	// AppendActivityStreamsAccept appends a Accept value to the back of a
	// list of the property "result". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsAccept(v ActivityStreamsAccept)
	// AppendActivityStreamsActivity appends a Activity value to the back of a
	// list of the property "result". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsActivity(v ActivityStreamsActivity)
	// AppendActivityStreamsAdd appends a Add value to the back of a list of
	// the property "result". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsAdd(v ActivityStreamsAdd)
	// AppendActivityStreamsAnnounce appends a Announce value to the back of a
	// list of the property "result". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// AppendActivityStreamsApplication appends a Application value to the
	// back of a list of the property "result". Invalidates iterators that
	// are traversing using Prev.
	AppendActivityStreamsApplication(v ActivityStreamsApplication)
	// AppendActivityStreamsArrive appends a Arrive value to the back of a
	// list of the property "result". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsArrive(v ActivityStreamsArrive)
	// AppendActivityStreamsArticle appends a Article value to the back of a
	// list of the property "result". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsArticle(v ActivityStreamsArticle)
	// AppendActivityStreamsAudio appends a Audio value to the back of a list
	// of the property "result". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsAudio(v ActivityStreamsAudio)
	// AppendActivityStreamsBlock appends a Block value to the back of a list
	// of the property "result". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsBlock(v ActivityStreamsBlock)
	// AppendActivityStreamsCollection appends a Collection value to the back
	// of a list of the property "result". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsCollection(v ActivityStreamsCollection)
	// AppendActivityStreamsCollectionPage appends a CollectionPage value to
	// the back of a list of the property "result". Invalidates iterators
	// that are traversing using Prev.
	AppendActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// AppendActivityStreamsCreate appends a Create value to the back of a
	// list of the property "result". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsCreate(v ActivityStreamsCreate)
	// AppendActivityStreamsDelete appends a Delete value to the back of a
	// list of the property "result". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDelete(v ActivityStreamsDelete)
	// AppendActivityStreamsDislike appends a Dislike value to the back of a
	// list of the property "result". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDislike(v ActivityStreamsDislike)
	// AppendActivityStreamsDocument appends a Document value to the back of a
	// list of the property "result". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDocument(v ActivityStreamsDocument)
	// AppendActivityStreamsEvent appends a Event value to the back of a list
	// of the property "result". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsEvent(v ActivityStreamsEvent)
	// AppendActivityStreamsFlag appends a Flag value to the back of a list of
	// the property "result". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsFlag(v ActivityStreamsFlag)
	// AppendActivityStreamsFollow appends a Follow value to the back of a
	// list of the property "result". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsFollow(v ActivityStreamsFollow)
	// AppendActivityStreamsGroup appends a Group value to the back of a list
	// of the property "result". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsGroup(v ActivityStreamsGroup)
	// AppendActivityStreamsIgnore appends a Ignore value to the back of a
	// list of the property "result". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsIgnore(v ActivityStreamsIgnore)
	// AppendActivityStreamsImage appends a Image value to the back of a list
	// of the property "result". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsImage(v ActivityStreamsImage)
	// AppendActivityStreamsIntransitiveActivity appends a
	// IntransitiveActivity value to the back of a list of the property
	// "result". Invalidates iterators that are traversing using Prev.
	AppendActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// AppendActivityStreamsInvite appends a Invite value to the back of a
	// list of the property "result". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsInvite(v ActivityStreamsInvite)
	// AppendActivityStreamsJoin appends a Join value to the back of a list of
	// the property "result". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsJoin(v ActivityStreamsJoin)
	// AppendActivityStreamsLeave appends a Leave value to the back of a list
	// of the property "result". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsLeave(v ActivityStreamsLeave)
	// AppendActivityStreamsLike appends a Like value to the back of a list of
	// the property "result". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsLike(v ActivityStreamsLike)
	// AppendActivityStreamsLink appends a Link value to the back of a list of
	// the property "result". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsLink(v ActivityStreamsLink)
	// AppendActivityStreamsListen appends a Listen value to the back of a
	// list of the property "result". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsListen(v ActivityStreamsListen)
	// AppendActivityStreamsMention appends a Mention value to the back of a
	// list of the property "result". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsMention(v ActivityStreamsMention)
	// AppendActivityStreamsMove appends a Move value to the back of a list of
	// the property "result". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsMove(v ActivityStreamsMove)
	// AppendActivityStreamsNote appends a Note value to the back of a list of
	// the property "result". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsNote(v ActivityStreamsNote)
	// AppendActivityStreamsObject appends a Object value to the back of a
	// list of the property "result". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsObject(v ActivityStreamsObject)
	// AppendActivityStreamsOffer appends a Offer value to the back of a list
	// of the property "result". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsOffer(v ActivityStreamsOffer)
	// AppendActivityStreamsOrderedCollection appends a OrderedCollection
	// value to the back of a list of the property "result". Invalidates
	// iterators that are traversing using Prev.
	AppendActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// AppendActivityStreamsOrderedCollectionPage appends a
	// OrderedCollectionPage value to the back of a list of the property
	// "result". Invalidates iterators that are traversing using Prev.
	AppendActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// AppendActivityStreamsOrganization appends a Organization value to the
	// back of a list of the property "result". Invalidates iterators that
	// are traversing using Prev.
	AppendActivityStreamsOrganization(v ActivityStreamsOrganization)
	// AppendActivityStreamsPage appends a Page value to the back of a list of
	// the property "result". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsPage(v ActivityStreamsPage)
	// AppendActivityStreamsPerson appends a Person value to the back of a
	// list of the property "result". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsPerson(v ActivityStreamsPerson)
	// AppendActivityStreamsPlace appends a Place value to the back of a list
	// of the property "result". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsPlace(v ActivityStreamsPlace)
	// AppendActivityStreamsProfile appends a Profile value to the back of a
	// list of the property "result". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsProfile(v ActivityStreamsProfile)
	// AppendActivityStreamsQuestion appends a Question value to the back of a
	// list of the property "result". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsQuestion(v ActivityStreamsQuestion)
	// AppendActivityStreamsRead appends a Read value to the back of a list of
	// the property "result". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsRead(v ActivityStreamsRead)
	// AppendActivityStreamsReject appends a Reject value to the back of a
	// list of the property "result". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsReject(v ActivityStreamsReject)
	// AppendActivityStreamsRelationship appends a Relationship value to the
	// back of a list of the property "result". Invalidates iterators that
	// are traversing using Prev.
	AppendActivityStreamsRelationship(v ActivityStreamsRelationship)
	// AppendActivityStreamsRemove appends a Remove value to the back of a
	// list of the property "result". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsRemove(v ActivityStreamsRemove)
	// AppendActivityStreamsService appends a Service value to the back of a
	// list of the property "result". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsService(v ActivityStreamsService)
	// AppendActivityStreamsTentativeAccept appends a TentativeAccept value to
	// the back of a list of the property "result". Invalidates iterators
	// that are traversing using Prev.
	AppendActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// AppendActivityStreamsTentativeReject appends a TentativeReject value to
	// the back of a list of the property "result". Invalidates iterators
	// that are traversing using Prev.
	AppendActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// AppendActivityStreamsTombstone appends a Tombstone value to the back of
	// a list of the property "result". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsTombstone(v ActivityStreamsTombstone)
	// AppendActivityStreamsTravel appends a Travel value to the back of a
	// list of the property "result". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsTravel(v ActivityStreamsTravel)
	// AppendActivityStreamsUndo appends a Undo value to the back of a list of
	// the property "result". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsUndo(v ActivityStreamsUndo)
	// AppendActivityStreamsUpdate appends a Update value to the back of a
	// list of the property "result". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsUpdate(v ActivityStreamsUpdate)
	// AppendActivityStreamsVideo appends a Video value to the back of a list
	// of the property "result". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsVideo(v ActivityStreamsVideo)
	// AppendActivityStreamsView appends a View value to the back of a list of
	// the property "result". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsView(v ActivityStreamsView)
	// AppendForgeFedBranch appends a Branch value to the back of a list of
	// the property "result". Invalidates iterators that are traversing
	// using Prev.
	AppendForgeFedBranch(v ForgeFedBranch)
	// AppendForgeFedCommit appends a Commit value to the back of a list of
	// the property "result". Invalidates iterators that are traversing
	// using Prev.
	AppendForgeFedCommit(v ForgeFedCommit)
	// AppendForgeFedPush appends a Push value to the back of a list of the
	// property "result". Invalidates iterators that are traversing using
	// Prev.
	AppendForgeFedPush(v ForgeFedPush)
	// AppendForgeFedRepository appends a Repository value to the back of a
	// list of the property "result". Invalidates iterators that are
	// traversing using Prev.
	AppendForgeFedRepository(v ForgeFedRepository)
	// AppendForgeFedTicket appends a Ticket value to the back of a list of
	// the property "result". Invalidates iterators that are traversing
	// using Prev.
	AppendForgeFedTicket(v ForgeFedTicket)
	// AppendForgeFedTicketDependency appends a TicketDependency value to the
	// back of a list of the property "result". Invalidates iterators that
	// are traversing using Prev.
	AppendForgeFedTicketDependency(v ForgeFedTicketDependency)
	// AppendIRI appends an IRI value to the back of a list of the property
	// "result"
	AppendIRI(v *url.URL)
	// AppendTootEmoji appends a Emoji value to the back of a list of the
	// property "result". Invalidates iterators that are traversing using
	// Prev.
	AppendTootEmoji(v TootEmoji)
	// AppendTootIdentityProof appends a IdentityProof value to the back of a
	// list of the property "result". Invalidates iterators that are
	// traversing using Prev.
	AppendTootIdentityProof(v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "result". Invalidates iterators that are traversing
	// using Prev. Returns an error if the type is not a valid one to set
	// for this property.
	AppendType(t Type) error
	// At returns the property value for the specified index. Panics if the
	// index is out of bounds.
	At(index int) ActivityStreamsResultPropertyIterator
	// Begin returns the first iterator, or nil if empty. Can be used with the
	// iterator's Next method and this property's End method to iterate
	// from front to back through all values.
	Begin() ActivityStreamsResultPropertyIterator
	// Empty returns returns true if there are no elements.
	Empty() bool
	// End returns beyond-the-last iterator, which is nil. Can be used with
	// the iterator's Next method and this property's Begin method to
	// iterate from front to back through all values.
	End() ActivityStreamsResultPropertyIterator
	// InsertActivityStreamsAccept inserts a Accept value at the specified
	// index for a property "result". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAccept(idx int, v ActivityStreamsAccept)
	// InsertActivityStreamsActivity inserts a Activity value at the specified
	// index for a property "result". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsActivity(idx int, v ActivityStreamsActivity)
	// InsertActivityStreamsAdd inserts a Add value at the specified index for
	// a property "result". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertActivityStreamsAdd(idx int, v ActivityStreamsAdd)
	// InsertActivityStreamsAnnounce inserts a Announce value at the specified
	// index for a property "result". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAnnounce(idx int, v ActivityStreamsAnnounce)
	// InsertActivityStreamsApplication inserts a Application value at the
	// specified index for a property "result". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsApplication(idx int, v ActivityStreamsApplication)
	// InsertActivityStreamsArrive inserts a Arrive value at the specified
	// index for a property "result". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsArrive(idx int, v ActivityStreamsArrive)
	// InsertActivityStreamsArticle inserts a Article value at the specified
	// index for a property "result". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsArticle(idx int, v ActivityStreamsArticle)
	// InsertActivityStreamsAudio inserts a Audio value at the specified index
	// for a property "result". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAudio(idx int, v ActivityStreamsAudio)
	// InsertActivityStreamsBlock inserts a Block value at the specified index
	// for a property "result". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsBlock(idx int, v ActivityStreamsBlock)
	// InsertActivityStreamsCollection inserts a Collection value at the
	// specified index for a property "result". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsCollection(idx int, v ActivityStreamsCollection)
	// InsertActivityStreamsCollectionPage inserts a CollectionPage value at
	// the specified index for a property "result". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsCollectionPage(idx int, v ActivityStreamsCollectionPage)
	// InsertActivityStreamsCreate inserts a Create value at the specified
	// index for a property "result". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsCreate(idx int, v ActivityStreamsCreate)
	// InsertActivityStreamsDelete inserts a Delete value at the specified
	// index for a property "result". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDelete(idx int, v ActivityStreamsDelete)
	// InsertActivityStreamsDislike inserts a Dislike value at the specified
	// index for a property "result". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDislike(idx int, v ActivityStreamsDislike)
	// InsertActivityStreamsDocument inserts a Document value at the specified
	// index for a property "result". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDocument(idx int, v ActivityStreamsDocument)
	// InsertActivityStreamsEvent inserts a Event value at the specified index
	// for a property "result". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsEvent(idx int, v ActivityStreamsEvent)
	// InsertActivityStreamsFlag inserts a Flag value at the specified index
	// for a property "result". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsFlag(idx int, v ActivityStreamsFlag)
	// InsertActivityStreamsFollow inserts a Follow value at the specified
	// index for a property "result". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsFollow(idx int, v ActivityStreamsFollow)
	// InsertActivityStreamsGroup inserts a Group value at the specified index
	// for a property "result". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsGroup(idx int, v ActivityStreamsGroup)
	// InsertActivityStreamsIgnore inserts a Ignore value at the specified
	// index for a property "result". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsIgnore(idx int, v ActivityStreamsIgnore)
	// InsertActivityStreamsImage inserts a Image value at the specified index
	// for a property "result". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsImage(idx int, v ActivityStreamsImage)
	// InsertActivityStreamsIntransitiveActivity inserts a
	// IntransitiveActivity value at the specified index for a property
	// "result". Existing elements at that index and higher are shifted
	// back once. Invalidates all iterators.
	InsertActivityStreamsIntransitiveActivity(idx int, v ActivityStreamsIntransitiveActivity)
	// InsertActivityStreamsInvite inserts a Invite value at the specified
	// index for a property "result". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsInvite(idx int, v ActivityStreamsInvite)
	// InsertActivityStreamsJoin inserts a Join value at the specified index
	// for a property "result". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsJoin(idx int, v ActivityStreamsJoin)
	// InsertActivityStreamsLeave inserts a Leave value at the specified index
	// for a property "result". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsLeave(idx int, v ActivityStreamsLeave)
	// InsertActivityStreamsLike inserts a Like value at the specified index
	// for a property "result". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsLike(idx int, v ActivityStreamsLike)
	// InsertActivityStreamsLink inserts a Link value at the specified index
	// for a property "result". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsLink(idx int, v ActivityStreamsLink)
	// InsertActivityStreamsListen inserts a Listen value at the specified
	// index for a property "result". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsListen(idx int, v ActivityStreamsListen)
	// InsertActivityStreamsMention inserts a Mention value at the specified
	// index for a property "result". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsMention(idx int, v ActivityStreamsMention)
	// InsertActivityStreamsMove inserts a Move value at the specified index
	// for a property "result". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsMove(idx int, v ActivityStreamsMove)
	// InsertActivityStreamsNote inserts a Note value at the specified index
	// for a property "result". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsNote(idx int, v ActivityStreamsNote)
	// InsertActivityStreamsObject inserts a Object value at the specified
	// index for a property "result". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsObject(idx int, v ActivityStreamsObject)
	// InsertActivityStreamsOffer inserts a Offer value at the specified index
	// for a property "result". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsOffer(idx int, v ActivityStreamsOffer)
	// InsertActivityStreamsOrderedCollection inserts a OrderedCollection
	// value at the specified index for a property "result". Existing
	// elements at that index and higher are shifted back once.
	// Invalidates all iterators.
	InsertActivityStreamsOrderedCollection(idx int, v ActivityStreamsOrderedCollection)
	// InsertActivityStreamsOrderedCollectionPage inserts a
	// OrderedCollectionPage value at the specified index for a property
	// "result". Existing elements at that index and higher are shifted
	// back once. Invalidates all iterators.
	InsertActivityStreamsOrderedCollectionPage(idx int, v ActivityStreamsOrderedCollectionPage)
	// InsertActivityStreamsOrganization inserts a Organization value at the
	// specified index for a property "result". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsOrganization(idx int, v ActivityStreamsOrganization)
	// InsertActivityStreamsPage inserts a Page value at the specified index
	// for a property "result". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsPage(idx int, v ActivityStreamsPage)
	// InsertActivityStreamsPerson inserts a Person value at the specified
	// index for a property "result". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsPerson(idx int, v ActivityStreamsPerson)
	// InsertActivityStreamsPlace inserts a Place value at the specified index
	// for a property "result". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsPlace(idx int, v ActivityStreamsPlace)
	// InsertActivityStreamsProfile inserts a Profile value at the specified
	// index for a property "result". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsProfile(idx int, v ActivityStreamsProfile)
	// InsertActivityStreamsQuestion inserts a Question value at the specified
	// index for a property "result". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsQuestion(idx int, v ActivityStreamsQuestion)
	// InsertActivityStreamsRead inserts a Read value at the specified index
	// for a property "result". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsRead(idx int, v ActivityStreamsRead)
	// InsertActivityStreamsReject inserts a Reject value at the specified
	// index for a property "result". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsReject(idx int, v ActivityStreamsReject)
	// InsertActivityStreamsRelationship inserts a Relationship value at the
	// specified index for a property "result". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsRelationship(idx int, v ActivityStreamsRelationship)
	// InsertActivityStreamsRemove inserts a Remove value at the specified
	// index for a property "result". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsRemove(idx int, v ActivityStreamsRemove)
	// InsertActivityStreamsService inserts a Service value at the specified
	// index for a property "result". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsService(idx int, v ActivityStreamsService)
	// InsertActivityStreamsTentativeAccept inserts a TentativeAccept value at
	// the specified index for a property "result". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsTentativeAccept(idx int, v ActivityStreamsTentativeAccept)
	// InsertActivityStreamsTentativeReject inserts a TentativeReject value at
	// the specified index for a property "result". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsTentativeReject(idx int, v ActivityStreamsTentativeReject)
	// InsertActivityStreamsTombstone inserts a Tombstone value at the
	// specified index for a property "result". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsTombstone(idx int, v ActivityStreamsTombstone)
	// InsertActivityStreamsTravel inserts a Travel value at the specified
	// index for a property "result". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsTravel(idx int, v ActivityStreamsTravel)
	// InsertActivityStreamsUndo inserts a Undo value at the specified index
	// for a property "result". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsUndo(idx int, v ActivityStreamsUndo)
	// InsertActivityStreamsUpdate inserts a Update value at the specified
	// index for a property "result". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsUpdate(idx int, v ActivityStreamsUpdate)
	// InsertActivityStreamsVideo inserts a Video value at the specified index
	// for a property "result". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsVideo(idx int, v ActivityStreamsVideo)
	// InsertActivityStreamsView inserts a View value at the specified index
	// for a property "result". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsView(idx int, v ActivityStreamsView)
	// InsertForgeFedBranch inserts a Branch value at the specified index for
	// a property "result". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertForgeFedBranch(idx int, v ForgeFedBranch)
	// InsertForgeFedCommit inserts a Commit value at the specified index for
	// a property "result". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertForgeFedCommit(idx int, v ForgeFedCommit)
	// InsertForgeFedPush inserts a Push value at the specified index for a
	// property "result". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertForgeFedPush(idx int, v ForgeFedPush)
	// InsertForgeFedRepository inserts a Repository value at the specified
	// index for a property "result". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertForgeFedRepository(idx int, v ForgeFedRepository)
	// InsertForgeFedTicket inserts a Ticket value at the specified index for
	// a property "result". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertForgeFedTicket(idx int, v ForgeFedTicket)
	// InsertForgeFedTicketDependency inserts a TicketDependency value at the
	// specified index for a property "result". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
	// Insert inserts an IRI value at the specified index for a property
	// "result". Existing elements at that index and higher are shifted
	// back once. Invalidates all iterators.
	InsertIRI(idx int, v *url.URL)
	// InsertTootEmoji inserts a Emoji value at the specified index for a
	// property "result". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertTootEmoji(idx int, v TootEmoji)
	// InsertTootIdentityProof inserts a IdentityProof value at the specified
	// index for a property "result". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertTootIdentityProof(idx int, v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "result". Invalidates all iterators. Returns an error
	// if the type is not a valid one to set for this property.
	InsertType(idx int, t Type) error
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API method specifically needed only for alternate
	// implementations for go-fed. Applications should not use this
	// method. Panics if the index is out of bounds.
	KindIndex(idx int) int
	// Len returns the number of values that exist for the "result" property.
	Len() (length int)
	// Less computes whether another property is less than this one. Mixing
	// types results in a consistent but arbitrary ordering
	Less(i, j int) bool
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsResultProperty) bool
	// Name returns the name of this property ("result") with any alias.
	Name() string
	// PrependActivityStreamsAccept prepends a Accept value to the front of a
	// list of the property "result". Invalidates all iterators.
	PrependActivityStreamsAccept(v ActivityStreamsAccept)
	// PrependActivityStreamsActivity prepends a Activity value to the front
	// of a list of the property "result". Invalidates all iterators.
	PrependActivityStreamsActivity(v ActivityStreamsActivity)
	// PrependActivityStreamsAdd prepends a Add value to the front of a list
	// of the property "result". Invalidates all iterators.
	PrependActivityStreamsAdd(v ActivityStreamsAdd)
	// PrependActivityStreamsAnnounce prepends a Announce value to the front
	// of a list of the property "result". Invalidates all iterators.
	PrependActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// PrependActivityStreamsApplication prepends a Application value to the
	// front of a list of the property "result". Invalidates all iterators.
	PrependActivityStreamsApplication(v ActivityStreamsApplication)
	// PrependActivityStreamsArrive prepends a Arrive value to the front of a
	// list of the property "result". Invalidates all iterators.
	PrependActivityStreamsArrive(v ActivityStreamsArrive)
	// PrependActivityStreamsArticle prepends a Article value to the front of
	// a list of the property "result". Invalidates all iterators.
	PrependActivityStreamsArticle(v ActivityStreamsArticle)
	// PrependActivityStreamsAudio prepends a Audio value to the front of a
	// list of the property "result". Invalidates all iterators.
	PrependActivityStreamsAudio(v ActivityStreamsAudio)
	// PrependActivityStreamsBlock prepends a Block value to the front of a
	// list of the property "result". Invalidates all iterators.
	PrependActivityStreamsBlock(v ActivityStreamsBlock)
	// PrependActivityStreamsCollection prepends a Collection value to the
	// front of a list of the property "result". Invalidates all iterators.
	PrependActivityStreamsCollection(v ActivityStreamsCollection)
	// PrependActivityStreamsCollectionPage prepends a CollectionPage value to
	// the front of a list of the property "result". Invalidates all
	// iterators.
	PrependActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// PrependActivityStreamsCreate prepends a Create value to the front of a
	// list of the property "result". Invalidates all iterators.
	PrependActivityStreamsCreate(v ActivityStreamsCreate)
	// PrependActivityStreamsDelete prepends a Delete value to the front of a
	// list of the property "result". Invalidates all iterators.
	PrependActivityStreamsDelete(v ActivityStreamsDelete)
	// PrependActivityStreamsDislike prepends a Dislike value to the front of
	// a list of the property "result". Invalidates all iterators.
	PrependActivityStreamsDislike(v ActivityStreamsDislike)
	// PrependActivityStreamsDocument prepends a Document value to the front
	// of a list of the property "result". Invalidates all iterators.
	PrependActivityStreamsDocument(v ActivityStreamsDocument)
	// PrependActivityStreamsEvent prepends a Event value to the front of a
	// list of the property "result". Invalidates all iterators.
	PrependActivityStreamsEvent(v ActivityStreamsEvent)
	// PrependActivityStreamsFlag prepends a Flag value to the front of a list
	// of the property "result". Invalidates all iterators.
	PrependActivityStreamsFlag(v ActivityStreamsFlag)
	// PrependActivityStreamsFollow prepends a Follow value to the front of a
	// list of the property "result". Invalidates all iterators.
	PrependActivityStreamsFollow(v ActivityStreamsFollow)
	// PrependActivityStreamsGroup prepends a Group value to the front of a
	// list of the property "result". Invalidates all iterators.
	PrependActivityStreamsGroup(v ActivityStreamsGroup)
	// PrependActivityStreamsIgnore prepends a Ignore value to the front of a
	// list of the property "result". Invalidates all iterators.
	PrependActivityStreamsIgnore(v ActivityStreamsIgnore)
	// PrependActivityStreamsImage prepends a Image value to the front of a
	// list of the property "result". Invalidates all iterators.
	PrependActivityStreamsImage(v ActivityStreamsImage)
	// PrependActivityStreamsIntransitiveActivity prepends a
	// IntransitiveActivity value to the front of a list of the property
	// "result". Invalidates all iterators.
	PrependActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// PrependActivityStreamsInvite prepends a Invite value to the front of a
	// list of the property "result". Invalidates all iterators.
	PrependActivityStreamsInvite(v ActivityStreamsInvite)
	// PrependActivityStreamsJoin prepends a Join value to the front of a list
	// of the property "result". Invalidates all iterators.
	PrependActivityStreamsJoin(v ActivityStreamsJoin)
	// PrependActivityStreamsLeave prepends a Leave value to the front of a
	// list of the property "result". Invalidates all iterators.
	PrependActivityStreamsLeave(v ActivityStreamsLeave)
	// PrependActivityStreamsLike prepends a Like value to the front of a list
	// of the property "result". Invalidates all iterators.
	PrependActivityStreamsLike(v ActivityStreamsLike)
	// PrependActivityStreamsLink prepends a Link value to the front of a list
	// of the property "result". Invalidates all iterators.
	PrependActivityStreamsLink(v ActivityStreamsLink)
	// PrependActivityStreamsListen prepends a Listen value to the front of a
	// list of the property "result". Invalidates all iterators.
	PrependActivityStreamsListen(v ActivityStreamsListen)
	// PrependActivityStreamsMention prepends a Mention value to the front of
	// a list of the property "result". Invalidates all iterators.
	PrependActivityStreamsMention(v ActivityStreamsMention)
	// PrependActivityStreamsMove prepends a Move value to the front of a list
	// of the property "result". Invalidates all iterators.
	PrependActivityStreamsMove(v ActivityStreamsMove)
	// PrependActivityStreamsNote prepends a Note value to the front of a list
	// of the property "result". Invalidates all iterators.
	PrependActivityStreamsNote(v ActivityStreamsNote)
	// PrependActivityStreamsObject prepends a Object value to the front of a
	// list of the property "result". Invalidates all iterators.
	PrependActivityStreamsObject(v ActivityStreamsObject)
	// PrependActivityStreamsOffer prepends a Offer value to the front of a
	// list of the property "result". Invalidates all iterators.
	PrependActivityStreamsOffer(v ActivityStreamsOffer)
	// PrependActivityStreamsOrderedCollection prepends a OrderedCollection
	// value to the front of a list of the property "result". Invalidates
	// all iterators.
	PrependActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// PrependActivityStreamsOrderedCollectionPage prepends a
	// OrderedCollectionPage value to the front of a list of the property
	// "result". Invalidates all iterators.
	PrependActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// PrependActivityStreamsOrganization prepends a Organization value to the
	// front of a list of the property "result". Invalidates all iterators.
	PrependActivityStreamsOrganization(v ActivityStreamsOrganization)
	// PrependActivityStreamsPage prepends a Page value to the front of a list
	// of the property "result". Invalidates all iterators.
	PrependActivityStreamsPage(v ActivityStreamsPage)
	// PrependActivityStreamsPerson prepends a Person value to the front of a
	// list of the property "result". Invalidates all iterators.
	PrependActivityStreamsPerson(v ActivityStreamsPerson)
	// PrependActivityStreamsPlace prepends a Place value to the front of a
	// list of the property "result". Invalidates all iterators.
	PrependActivityStreamsPlace(v ActivityStreamsPlace)
	// PrependActivityStreamsProfile prepends a Profile value to the front of
	// a list of the property "result". Invalidates all iterators.
	PrependActivityStreamsProfile(v ActivityStreamsProfile)
	// PrependActivityStreamsQuestion prepends a Question value to the front
	// of a list of the property "result". Invalidates all iterators.
	PrependActivityStreamsQuestion(v ActivityStreamsQuestion)
	// PrependActivityStreamsRead prepends a Read value to the front of a list
	// of the property "result". Invalidates all iterators.
	PrependActivityStreamsRead(v ActivityStreamsRead)
	// PrependActivityStreamsReject prepends a Reject value to the front of a
	// list of the property "result". Invalidates all iterators.
	PrependActivityStreamsReject(v ActivityStreamsReject)
	// PrependActivityStreamsRelationship prepends a Relationship value to the
	// front of a list of the property "result". Invalidates all iterators.
	PrependActivityStreamsRelationship(v ActivityStreamsRelationship)
	// PrependActivityStreamsRemove prepends a Remove value to the front of a
	// list of the property "result". Invalidates all iterators.
	PrependActivityStreamsRemove(v ActivityStreamsRemove)
	// PrependActivityStreamsService prepends a Service value to the front of
	// a list of the property "result". Invalidates all iterators.
	PrependActivityStreamsService(v ActivityStreamsService)
	// PrependActivityStreamsTentativeAccept prepends a TentativeAccept value
	// to the front of a list of the property "result". Invalidates all
	// iterators.
	PrependActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// PrependActivityStreamsTentativeReject prepends a TentativeReject value
	// to the front of a list of the property "result". Invalidates all
	// iterators.
	PrependActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// PrependActivityStreamsTombstone prepends a Tombstone value to the front
	// of a list of the property "result". Invalidates all iterators.
	PrependActivityStreamsTombstone(v ActivityStreamsTombstone)
	// PrependActivityStreamsTravel prepends a Travel value to the front of a
	// list of the property "result". Invalidates all iterators.
	PrependActivityStreamsTravel(v ActivityStreamsTravel)
	// PrependActivityStreamsUndo prepends a Undo value to the front of a list
	// of the property "result". Invalidates all iterators.
	PrependActivityStreamsUndo(v ActivityStreamsUndo)
	// PrependActivityStreamsUpdate prepends a Update value to the front of a
	// list of the property "result". Invalidates all iterators.
	PrependActivityStreamsUpdate(v ActivityStreamsUpdate)
	// PrependActivityStreamsVideo prepends a Video value to the front of a
	// list of the property "result". Invalidates all iterators.
	PrependActivityStreamsVideo(v ActivityStreamsVideo)
	// PrependActivityStreamsView prepends a View value to the front of a list
	// of the property "result". Invalidates all iterators.
	PrependActivityStreamsView(v ActivityStreamsView)
	// PrependForgeFedBranch prepends a Branch value to the front of a list of
	// the property "result". Invalidates all iterators.
	PrependForgeFedBranch(v ForgeFedBranch)
	// PrependForgeFedCommit prepends a Commit value to the front of a list of
	// the property "result". Invalidates all iterators.
	PrependForgeFedCommit(v ForgeFedCommit)
	// PrependForgeFedPush prepends a Push value to the front of a list of the
	// property "result". Invalidates all iterators.
	PrependForgeFedPush(v ForgeFedPush)
	// PrependForgeFedRepository prepends a Repository value to the front of a
	// list of the property "result". Invalidates all iterators.
	PrependForgeFedRepository(v ForgeFedRepository)
	// PrependForgeFedTicket prepends a Ticket value to the front of a list of
	// the property "result". Invalidates all iterators.
	PrependForgeFedTicket(v ForgeFedTicket)
	// PrependForgeFedTicketDependency prepends a TicketDependency value to
	// the front of a list of the property "result". Invalidates all
	// iterators.
	PrependForgeFedTicketDependency(v ForgeFedTicketDependency)
	// PrependIRI prepends an IRI value to the front of a list of the property
	// "result".
	PrependIRI(v *url.URL)
	// PrependTootEmoji prepends a Emoji value to the front of a list of the
	// property "result". Invalidates all iterators.
	PrependTootEmoji(v TootEmoji)
	// PrependTootIdentityProof prepends a IdentityProof value to the front of
	// a list of the property "result". Invalidates all iterators.
	PrependTootIdentityProof(v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "result". Invalidates all iterators. Returns an error
	// if the type is not a valid one to set for this property.
	PrependType(t Type) error
	// Remove deletes an element at the specified index from a list of the
	// property "result", regardless of its type. Panics if the index is
	// out of bounds. Invalidates all iterators.
	Remove(idx int)
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// SetActivityStreamsAccept sets a Accept value to be at the specified
	// index for the property "result". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsAccept(idx int, v ActivityStreamsAccept)
	// SetActivityStreamsActivity sets a Activity value to be at the specified
	// index for the property "result". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsActivity(idx int, v ActivityStreamsActivity)
	// SetActivityStreamsAdd sets a Add value to be at the specified index for
	// the property "result". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsAdd(idx int, v ActivityStreamsAdd)
	// SetActivityStreamsAnnounce sets a Announce value to be at the specified
	// index for the property "result". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsAnnounce(idx int, v ActivityStreamsAnnounce)
	// SetActivityStreamsApplication sets a Application value to be at the
	// specified index for the property "result". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsApplication(idx int, v ActivityStreamsApplication)
	// SetActivityStreamsArrive sets a Arrive value to be at the specified
	// index for the property "result". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsArrive(idx int, v ActivityStreamsArrive)
	// SetActivityStreamsArticle sets a Article value to be at the specified
	// index for the property "result". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsArticle(idx int, v ActivityStreamsArticle)
	// SetActivityStreamsAudio sets a Audio value to be at the specified index
	// for the property "result". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsAudio(idx int, v ActivityStreamsAudio)
	// SetActivityStreamsBlock sets a Block value to be at the specified index
	// for the property "result". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsBlock(idx int, v ActivityStreamsBlock)
	// SetActivityStreamsCollection sets a Collection value to be at the
	// specified index for the property "result". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsCollection(idx int, v ActivityStreamsCollection)
	// SetActivityStreamsCollectionPage sets a CollectionPage value to be at
	// the specified index for the property "result". Panics if the index
	// is out of bounds. Invalidates all iterators.
	SetActivityStreamsCollectionPage(idx int, v ActivityStreamsCollectionPage)
	// SetActivityStreamsCreate sets a Create value to be at the specified
	// index for the property "result". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsCreate(idx int, v ActivityStreamsCreate)
	// SetActivityStreamsDelete sets a Delete value to be at the specified
	// index for the property "result". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsDelete(idx int, v ActivityStreamsDelete)
	// SetActivityStreamsDislike sets a Dislike value to be at the specified
	// index for the property "result". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsDislike(idx int, v ActivityStreamsDislike)
	// SetActivityStreamsDocument sets a Document value to be at the specified
	// index for the property "result". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsDocument(idx int, v ActivityStreamsDocument)
	// SetActivityStreamsEvent sets a Event value to be at the specified index
	// for the property "result". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsEvent(idx int, v ActivityStreamsEvent)
	// SetActivityStreamsFlag sets a Flag value to be at the specified index
	// for the property "result". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsFlag(idx int, v ActivityStreamsFlag)
	// SetActivityStreamsFollow sets a Follow value to be at the specified
	// index for the property "result". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsFollow(idx int, v ActivityStreamsFollow)
	// SetActivityStreamsGroup sets a Group value to be at the specified index
	// for the property "result". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsGroup(idx int, v ActivityStreamsGroup)
	// SetActivityStreamsIgnore sets a Ignore value to be at the specified
	// index for the property "result". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsIgnore(idx int, v ActivityStreamsIgnore)
	// SetActivityStreamsImage sets a Image value to be at the specified index
	// for the property "result". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsImage(idx int, v ActivityStreamsImage)
	// SetActivityStreamsIntransitiveActivity sets a IntransitiveActivity
	// value to be at the specified index for the property "result".
	// Panics if the index is out of bounds. Invalidates all iterators.
	SetActivityStreamsIntransitiveActivity(idx int, v ActivityStreamsIntransitiveActivity)
	// SetActivityStreamsInvite sets a Invite value to be at the specified
	// index for the property "result". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsInvite(idx int, v ActivityStreamsInvite)
	// SetActivityStreamsJoin sets a Join value to be at the specified index
	// for the property "result". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsJoin(idx int, v ActivityStreamsJoin)
	// SetActivityStreamsLeave sets a Leave value to be at the specified index
	// for the property "result". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsLeave(idx int, v ActivityStreamsLeave)
	// SetActivityStreamsLike sets a Like value to be at the specified index
	// for the property "result". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsLike(idx int, v ActivityStreamsLike)
	// SetActivityStreamsLink sets a Link value to be at the specified index
	// for the property "result". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsLink(idx int, v ActivityStreamsLink)
	// SetActivityStreamsListen sets a Listen value to be at the specified
	// index for the property "result". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsListen(idx int, v ActivityStreamsListen)
	// SetActivityStreamsMention sets a Mention value to be at the specified
	// index for the property "result". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsMention(idx int, v ActivityStreamsMention)
	// SetActivityStreamsMove sets a Move value to be at the specified index
	// for the property "result". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsMove(idx int, v ActivityStreamsMove)
	// SetActivityStreamsNote sets a Note value to be at the specified index
	// for the property "result". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsNote(idx int, v ActivityStreamsNote)
	// SetActivityStreamsObject sets a Object value to be at the specified
	// index for the property "result". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsObject(idx int, v ActivityStreamsObject)
	// SetActivityStreamsOffer sets a Offer value to be at the specified index
	// for the property "result". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsOffer(idx int, v ActivityStreamsOffer)
	// SetActivityStreamsOrderedCollection sets a OrderedCollection value to
	// be at the specified index for the property "result". Panics if the
	// index is out of bounds. Invalidates all iterators.
	SetActivityStreamsOrderedCollection(idx int, v ActivityStreamsOrderedCollection)
	// SetActivityStreamsOrderedCollectionPage sets a OrderedCollectionPage
	// value to be at the specified index for the property "result".
	// Panics if the index is out of bounds. Invalidates all iterators.
	SetActivityStreamsOrderedCollectionPage(idx int, v ActivityStreamsOrderedCollectionPage)
	// SetActivityStreamsOrganization sets a Organization value to be at the
	// specified index for the property "result". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsOrganization(idx int, v ActivityStreamsOrganization)
	// SetActivityStreamsPage sets a Page value to be at the specified index
	// for the property "result". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsPage(idx int, v ActivityStreamsPage)
	// SetActivityStreamsPerson sets a Person value to be at the specified
	// index for the property "result". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsPerson(idx int, v ActivityStreamsPerson)
	// SetActivityStreamsPlace sets a Place value to be at the specified index
	// for the property "result". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsPlace(idx int, v ActivityStreamsPlace)
	// SetActivityStreamsProfile sets a Profile value to be at the specified
	// index for the property "result". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsProfile(idx int, v ActivityStreamsProfile)
	// SetActivityStreamsQuestion sets a Question value to be at the specified
	// index for the property "result". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsQuestion(idx int, v ActivityStreamsQuestion)
	// SetActivityStreamsRead sets a Read value to be at the specified index
	// for the property "result". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsRead(idx int, v ActivityStreamsRead)
	// SetActivityStreamsReject sets a Reject value to be at the specified
	// index for the property "result". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsReject(idx int, v ActivityStreamsReject)
	// SetActivityStreamsRelationship sets a Relationship value to be at the
	// specified index for the property "result". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsRelationship(idx int, v ActivityStreamsRelationship)
	// SetActivityStreamsRemove sets a Remove value to be at the specified
	// index for the property "result". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsRemove(idx int, v ActivityStreamsRemove)
	// SetActivityStreamsService sets a Service value to be at the specified
	// index for the property "result". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsService(idx int, v ActivityStreamsService)
	// SetActivityStreamsTentativeAccept sets a TentativeAccept value to be at
	// the specified index for the property "result". Panics if the index
	// is out of bounds. Invalidates all iterators.
	SetActivityStreamsTentativeAccept(idx int, v ActivityStreamsTentativeAccept)
	// SetActivityStreamsTentativeReject sets a TentativeReject value to be at
	// the specified index for the property "result". Panics if the index
	// is out of bounds. Invalidates all iterators.
	SetActivityStreamsTentativeReject(idx int, v ActivityStreamsTentativeReject)
	// SetActivityStreamsTombstone sets a Tombstone value to be at the
	// specified index for the property "result". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsTombstone(idx int, v ActivityStreamsTombstone)
	// SetActivityStreamsTravel sets a Travel value to be at the specified
	// index for the property "result". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsTravel(idx int, v ActivityStreamsTravel)
	// SetActivityStreamsUndo sets a Undo value to be at the specified index
	// for the property "result". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsUndo(idx int, v ActivityStreamsUndo)
	// SetActivityStreamsUpdate sets a Update value to be at the specified
	// index for the property "result". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsUpdate(idx int, v ActivityStreamsUpdate)
	// SetActivityStreamsVideo sets a Video value to be at the specified index
	// for the property "result". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsVideo(idx int, v ActivityStreamsVideo)
	// SetActivityStreamsView sets a View value to be at the specified index
	// for the property "result". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsView(idx int, v ActivityStreamsView)
	// SetForgeFedBranch sets a Branch value to be at the specified index for
	// the property "result". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedBranch(idx int, v ForgeFedBranch)
	// SetForgeFedCommit sets a Commit value to be at the specified index for
	// the property "result". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedCommit(idx int, v ForgeFedCommit)
	// SetForgeFedPush sets a Push value to be at the specified index for the
	// property "result". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedPush(idx int, v ForgeFedPush)
	// SetForgeFedRepository sets a Repository value to be at the specified
	// index for the property "result". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetForgeFedRepository(idx int, v ForgeFedRepository)
	// SetForgeFedTicket sets a Ticket value to be at the specified index for
	// the property "result". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedTicket(idx int, v ForgeFedTicket)
	// SetForgeFedTicketDependency sets a TicketDependency value to be at the
	// specified index for the property "result". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
	// SetIRI sets an IRI value to be at the specified index for the property
	// "result". Panics if the index is out of bounds.
	SetIRI(idx int, v *url.URL)
	// SetTootEmoji sets a Emoji value to be at the specified index for the
	// property "result". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetTootEmoji(idx int, v TootEmoji)
	// SetTootIdentityProof sets a IdentityProof value to be at the specified
	// index for the property "result". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetTootIdentityProof(idx int, v TootIdentityProof)
	// SetType sets an arbitrary type value to the specified index of the
	// property "result". Invalidates all iterators. Returns an error if
	// the type is not a valid one to set for this property. Panics if the
	// index is out of bounds.
	SetType(idx int, t Type) error
	// Swap swaps the location of values at two indices for the "result"
	// property.
	Swap(i, j int)
}

Describes the result of the activity. For instance, if a particular action results in the creation of a new resource, the result property can be used to describe that new resource.

Example 103 (https://www.w3.org/TR/activitystreams-vocabulary/#ex108-jsonld):

{
  "actor": "http://sally.example.org",
  "object": "http://example.org/flights/1",
  "result": {
    "name": "On Time",
    "type": "http://www.types.example/flightstatus"
  },
  "summary": "Sally checked that her flight was on time",
  "type": [
    "Activity",
    "http://www.verbs.example/Check"
  ]
}

type ActivityStreamsResultPropertyIterator

type ActivityStreamsResultPropertyIterator interface {
	// GetActivityStreamsAccept returns the value of this property. When
	// IsActivityStreamsAccept returns false, GetActivityStreamsAccept
	// will return an arbitrary value.
	GetActivityStreamsAccept() ActivityStreamsAccept
	// GetActivityStreamsActivity returns the value of this property. When
	// IsActivityStreamsActivity returns false, GetActivityStreamsActivity
	// will return an arbitrary value.
	GetActivityStreamsActivity() ActivityStreamsActivity
	// GetActivityStreamsAdd returns the value of this property. When
	// IsActivityStreamsAdd returns false, GetActivityStreamsAdd will
	// return an arbitrary value.
	GetActivityStreamsAdd() ActivityStreamsAdd
	// GetActivityStreamsAnnounce returns the value of this property. When
	// IsActivityStreamsAnnounce returns false, GetActivityStreamsAnnounce
	// will return an arbitrary value.
	GetActivityStreamsAnnounce() ActivityStreamsAnnounce
	// GetActivityStreamsApplication returns the value of this property. When
	// IsActivityStreamsApplication returns false,
	// GetActivityStreamsApplication will return an arbitrary value.
	GetActivityStreamsApplication() ActivityStreamsApplication
	// GetActivityStreamsArrive returns the value of this property. When
	// IsActivityStreamsArrive returns false, GetActivityStreamsArrive
	// will return an arbitrary value.
	GetActivityStreamsArrive() ActivityStreamsArrive
	// GetActivityStreamsArticle returns the value of this property. When
	// IsActivityStreamsArticle returns false, GetActivityStreamsArticle
	// will return an arbitrary value.
	GetActivityStreamsArticle() ActivityStreamsArticle
	// GetActivityStreamsAudio returns the value of this property. When
	// IsActivityStreamsAudio returns false, GetActivityStreamsAudio will
	// return an arbitrary value.
	GetActivityStreamsAudio() ActivityStreamsAudio
	// GetActivityStreamsBlock returns the value of this property. When
	// IsActivityStreamsBlock returns false, GetActivityStreamsBlock will
	// return an arbitrary value.
	GetActivityStreamsBlock() ActivityStreamsBlock
	// GetActivityStreamsCollection returns the value of this property. When
	// IsActivityStreamsCollection returns false,
	// GetActivityStreamsCollection will return an arbitrary value.
	GetActivityStreamsCollection() ActivityStreamsCollection
	// GetActivityStreamsCollectionPage returns the value of this property.
	// When IsActivityStreamsCollectionPage returns false,
	// GetActivityStreamsCollectionPage will return an arbitrary value.
	GetActivityStreamsCollectionPage() ActivityStreamsCollectionPage
	// GetActivityStreamsCreate returns the value of this property. When
	// IsActivityStreamsCreate returns false, GetActivityStreamsCreate
	// will return an arbitrary value.
	GetActivityStreamsCreate() ActivityStreamsCreate
	// GetActivityStreamsDelete returns the value of this property. When
	// IsActivityStreamsDelete returns false, GetActivityStreamsDelete
	// will return an arbitrary value.
	GetActivityStreamsDelete() ActivityStreamsDelete
	// GetActivityStreamsDislike returns the value of this property. When
	// IsActivityStreamsDislike returns false, GetActivityStreamsDislike
	// will return an arbitrary value.
	GetActivityStreamsDislike() ActivityStreamsDislike
	// GetActivityStreamsDocument returns the value of this property. When
	// IsActivityStreamsDocument returns false, GetActivityStreamsDocument
	// will return an arbitrary value.
	GetActivityStreamsDocument() ActivityStreamsDocument
	// GetActivityStreamsEvent returns the value of this property. When
	// IsActivityStreamsEvent returns false, GetActivityStreamsEvent will
	// return an arbitrary value.
	GetActivityStreamsEvent() ActivityStreamsEvent
	// GetActivityStreamsFlag returns the value of this property. When
	// IsActivityStreamsFlag returns false, GetActivityStreamsFlag will
	// return an arbitrary value.
	GetActivityStreamsFlag() ActivityStreamsFlag
	// GetActivityStreamsFollow returns the value of this property. When
	// IsActivityStreamsFollow returns false, GetActivityStreamsFollow
	// will return an arbitrary value.
	GetActivityStreamsFollow() ActivityStreamsFollow
	// GetActivityStreamsGroup returns the value of this property. When
	// IsActivityStreamsGroup returns false, GetActivityStreamsGroup will
	// return an arbitrary value.
	GetActivityStreamsGroup() ActivityStreamsGroup
	// GetActivityStreamsIgnore returns the value of this property. When
	// IsActivityStreamsIgnore returns false, GetActivityStreamsIgnore
	// will return an arbitrary value.
	GetActivityStreamsIgnore() ActivityStreamsIgnore
	// GetActivityStreamsImage returns the value of this property. When
	// IsActivityStreamsImage returns false, GetActivityStreamsImage will
	// return an arbitrary value.
	GetActivityStreamsImage() ActivityStreamsImage
	// GetActivityStreamsIntransitiveActivity returns the value of this
	// property. When IsActivityStreamsIntransitiveActivity returns false,
	// GetActivityStreamsIntransitiveActivity will return an arbitrary
	// value.
	GetActivityStreamsIntransitiveActivity() ActivityStreamsIntransitiveActivity
	// GetActivityStreamsInvite returns the value of this property. When
	// IsActivityStreamsInvite returns false, GetActivityStreamsInvite
	// will return an arbitrary value.
	GetActivityStreamsInvite() ActivityStreamsInvite
	// GetActivityStreamsJoin returns the value of this property. When
	// IsActivityStreamsJoin returns false, GetActivityStreamsJoin will
	// return an arbitrary value.
	GetActivityStreamsJoin() ActivityStreamsJoin
	// GetActivityStreamsLeave returns the value of this property. When
	// IsActivityStreamsLeave returns false, GetActivityStreamsLeave will
	// return an arbitrary value.
	GetActivityStreamsLeave() ActivityStreamsLeave
	// GetActivityStreamsLike returns the value of this property. When
	// IsActivityStreamsLike returns false, GetActivityStreamsLike will
	// return an arbitrary value.
	GetActivityStreamsLike() ActivityStreamsLike
	// GetActivityStreamsLink returns the value of this property. When
	// IsActivityStreamsLink returns false, GetActivityStreamsLink will
	// return an arbitrary value.
	GetActivityStreamsLink() ActivityStreamsLink
	// GetActivityStreamsListen returns the value of this property. When
	// IsActivityStreamsListen returns false, GetActivityStreamsListen
	// will return an arbitrary value.
	GetActivityStreamsListen() ActivityStreamsListen
	// GetActivityStreamsMention returns the value of this property. When
	// IsActivityStreamsMention returns false, GetActivityStreamsMention
	// will return an arbitrary value.
	GetActivityStreamsMention() ActivityStreamsMention
	// GetActivityStreamsMove returns the value of this property. When
	// IsActivityStreamsMove returns false, GetActivityStreamsMove will
	// return an arbitrary value.
	GetActivityStreamsMove() ActivityStreamsMove
	// GetActivityStreamsNote returns the value of this property. When
	// IsActivityStreamsNote returns false, GetActivityStreamsNote will
	// return an arbitrary value.
	GetActivityStreamsNote() ActivityStreamsNote
	// GetActivityStreamsObject returns the value of this property. When
	// IsActivityStreamsObject returns false, GetActivityStreamsObject
	// will return an arbitrary value.
	GetActivityStreamsObject() ActivityStreamsObject
	// GetActivityStreamsOffer returns the value of this property. When
	// IsActivityStreamsOffer returns false, GetActivityStreamsOffer will
	// return an arbitrary value.
	GetActivityStreamsOffer() ActivityStreamsOffer
	// GetActivityStreamsOrderedCollection returns the value of this property.
	// When IsActivityStreamsOrderedCollection returns false,
	// GetActivityStreamsOrderedCollection will return an arbitrary value.
	GetActivityStreamsOrderedCollection() ActivityStreamsOrderedCollection
	// GetActivityStreamsOrderedCollectionPage returns the value of this
	// property. When IsActivityStreamsOrderedCollectionPage returns
	// false, GetActivityStreamsOrderedCollectionPage will return an
	// arbitrary value.
	GetActivityStreamsOrderedCollectionPage() ActivityStreamsOrderedCollectionPage
	// GetActivityStreamsOrganization returns the value of this property. When
	// IsActivityStreamsOrganization returns false,
	// GetActivityStreamsOrganization will return an arbitrary value.
	GetActivityStreamsOrganization() ActivityStreamsOrganization
	// GetActivityStreamsPage returns the value of this property. When
	// IsActivityStreamsPage returns false, GetActivityStreamsPage will
	// return an arbitrary value.
	GetActivityStreamsPage() ActivityStreamsPage
	// GetActivityStreamsPerson returns the value of this property. When
	// IsActivityStreamsPerson returns false, GetActivityStreamsPerson
	// will return an arbitrary value.
	GetActivityStreamsPerson() ActivityStreamsPerson
	// GetActivityStreamsPlace returns the value of this property. When
	// IsActivityStreamsPlace returns false, GetActivityStreamsPlace will
	// return an arbitrary value.
	GetActivityStreamsPlace() ActivityStreamsPlace
	// GetActivityStreamsProfile returns the value of this property. When
	// IsActivityStreamsProfile returns false, GetActivityStreamsProfile
	// will return an arbitrary value.
	GetActivityStreamsProfile() ActivityStreamsProfile
	// GetActivityStreamsQuestion returns the value of this property. When
	// IsActivityStreamsQuestion returns false, GetActivityStreamsQuestion
	// will return an arbitrary value.
	GetActivityStreamsQuestion() ActivityStreamsQuestion
	// GetActivityStreamsRead returns the value of this property. When
	// IsActivityStreamsRead returns false, GetActivityStreamsRead will
	// return an arbitrary value.
	GetActivityStreamsRead() ActivityStreamsRead
	// GetActivityStreamsReject returns the value of this property. When
	// IsActivityStreamsReject returns false, GetActivityStreamsReject
	// will return an arbitrary value.
	GetActivityStreamsReject() ActivityStreamsReject
	// GetActivityStreamsRelationship returns the value of this property. When
	// IsActivityStreamsRelationship returns false,
	// GetActivityStreamsRelationship will return an arbitrary value.
	GetActivityStreamsRelationship() ActivityStreamsRelationship
	// GetActivityStreamsRemove returns the value of this property. When
	// IsActivityStreamsRemove returns false, GetActivityStreamsRemove
	// will return an arbitrary value.
	GetActivityStreamsRemove() ActivityStreamsRemove
	// GetActivityStreamsService returns the value of this property. When
	// IsActivityStreamsService returns false, GetActivityStreamsService
	// will return an arbitrary value.
	GetActivityStreamsService() ActivityStreamsService
	// GetActivityStreamsTentativeAccept returns the value of this property.
	// When IsActivityStreamsTentativeAccept returns false,
	// GetActivityStreamsTentativeAccept will return an arbitrary value.
	GetActivityStreamsTentativeAccept() ActivityStreamsTentativeAccept
	// GetActivityStreamsTentativeReject returns the value of this property.
	// When IsActivityStreamsTentativeReject returns false,
	// GetActivityStreamsTentativeReject will return an arbitrary value.
	GetActivityStreamsTentativeReject() ActivityStreamsTentativeReject
	// GetActivityStreamsTombstone returns the value of this property. When
	// IsActivityStreamsTombstone returns false,
	// GetActivityStreamsTombstone will return an arbitrary value.
	GetActivityStreamsTombstone() ActivityStreamsTombstone
	// GetActivityStreamsTravel returns the value of this property. When
	// IsActivityStreamsTravel returns false, GetActivityStreamsTravel
	// will return an arbitrary value.
	GetActivityStreamsTravel() ActivityStreamsTravel
	// GetActivityStreamsUndo returns the value of this property. When
	// IsActivityStreamsUndo returns false, GetActivityStreamsUndo will
	// return an arbitrary value.
	GetActivityStreamsUndo() ActivityStreamsUndo
	// GetActivityStreamsUpdate returns the value of this property. When
	// IsActivityStreamsUpdate returns false, GetActivityStreamsUpdate
	// will return an arbitrary value.
	GetActivityStreamsUpdate() ActivityStreamsUpdate
	// GetActivityStreamsVideo returns the value of this property. When
	// IsActivityStreamsVideo returns false, GetActivityStreamsVideo will
	// return an arbitrary value.
	GetActivityStreamsVideo() ActivityStreamsVideo
	// GetActivityStreamsView returns the value of this property. When
	// IsActivityStreamsView returns false, GetActivityStreamsView will
	// return an arbitrary value.
	GetActivityStreamsView() ActivityStreamsView
	// GetForgeFedBranch returns the value of this property. When
	// IsForgeFedBranch returns false, GetForgeFedBranch will return an
	// arbitrary value.
	GetForgeFedBranch() ForgeFedBranch
	// GetForgeFedCommit returns the value of this property. When
	// IsForgeFedCommit returns false, GetForgeFedCommit will return an
	// arbitrary value.
	GetForgeFedCommit() ForgeFedCommit
	// GetForgeFedPush returns the value of this property. When IsForgeFedPush
	// returns false, GetForgeFedPush will return an arbitrary value.
	GetForgeFedPush() ForgeFedPush
	// GetForgeFedRepository returns the value of this property. When
	// IsForgeFedRepository returns false, GetForgeFedRepository will
	// return an arbitrary value.
	GetForgeFedRepository() ForgeFedRepository
	// GetForgeFedTicket returns the value of this property. When
	// IsForgeFedTicket returns false, GetForgeFedTicket will return an
	// arbitrary value.
	GetForgeFedTicket() ForgeFedTicket
	// GetForgeFedTicketDependency returns the value of this property. When
	// IsForgeFedTicketDependency returns false,
	// GetForgeFedTicketDependency will return an arbitrary value.
	GetForgeFedTicketDependency() ForgeFedTicketDependency
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return an arbitrary value.
	GetIRI() *url.URL
	// GetTootEmoji returns the value of this property. When IsTootEmoji
	// returns false, GetTootEmoji will return an arbitrary value.
	GetTootEmoji() TootEmoji
	// GetTootIdentityProof returns the value of this property. When
	// IsTootIdentityProof returns false, GetTootIdentityProof will return
	// an arbitrary value.
	GetTootIdentityProof() TootIdentityProof
	// GetType returns the value in this property as a Type. Returns nil if
	// the value is not an ActivityStreams type, such as an IRI or another
	// value.
	GetType() Type
	// HasAny returns true if any of the different values is set.
	HasAny() bool
	// IsActivityStreamsAccept returns true if this property has a type of
	// "Accept". When true, use the GetActivityStreamsAccept and
	// SetActivityStreamsAccept methods to access and set this property.
	IsActivityStreamsAccept() bool
	// IsActivityStreamsActivity returns true if this property has a type of
	// "Activity". When true, use the GetActivityStreamsActivity and
	// SetActivityStreamsActivity methods to access and set this property.
	IsActivityStreamsActivity() bool
	// IsActivityStreamsAdd returns true if this property has a type of "Add".
	// When true, use the GetActivityStreamsAdd and SetActivityStreamsAdd
	// methods to access and set this property.
	IsActivityStreamsAdd() bool
	// IsActivityStreamsAnnounce returns true if this property has a type of
	// "Announce". When true, use the GetActivityStreamsAnnounce and
	// SetActivityStreamsAnnounce methods to access and set this property.
	IsActivityStreamsAnnounce() bool
	// IsActivityStreamsApplication returns true if this property has a type
	// of "Application". When true, use the GetActivityStreamsApplication
	// and SetActivityStreamsApplication methods to access and set this
	// property.
	IsActivityStreamsApplication() bool
	// IsActivityStreamsArrive returns true if this property has a type of
	// "Arrive". When true, use the GetActivityStreamsArrive and
	// SetActivityStreamsArrive methods to access and set this property.
	IsActivityStreamsArrive() bool
	// IsActivityStreamsArticle returns true if this property has a type of
	// "Article". When true, use the GetActivityStreamsArticle and
	// SetActivityStreamsArticle methods to access and set this property.
	IsActivityStreamsArticle() bool
	// IsActivityStreamsAudio returns true if this property has a type of
	// "Audio". When true, use the GetActivityStreamsAudio and
	// SetActivityStreamsAudio methods to access and set this property.
	IsActivityStreamsAudio() bool
	// IsActivityStreamsBlock returns true if this property has a type of
	// "Block". When true, use the GetActivityStreamsBlock and
	// SetActivityStreamsBlock methods to access and set this property.
	IsActivityStreamsBlock() bool
	// IsActivityStreamsCollection returns true if this property has a type of
	// "Collection". When true, use the GetActivityStreamsCollection and
	// SetActivityStreamsCollection methods to access and set this
	// property.
	IsActivityStreamsCollection() bool
	// IsActivityStreamsCollectionPage returns true if this property has a
	// type of "CollectionPage". When true, use the
	// GetActivityStreamsCollectionPage and
	// SetActivityStreamsCollectionPage methods to access and set this
	// property.
	IsActivityStreamsCollectionPage() bool
	// IsActivityStreamsCreate returns true if this property has a type of
	// "Create". When true, use the GetActivityStreamsCreate and
	// SetActivityStreamsCreate methods to access and set this property.
	IsActivityStreamsCreate() bool
	// IsActivityStreamsDelete returns true if this property has a type of
	// "Delete". When true, use the GetActivityStreamsDelete and
	// SetActivityStreamsDelete methods to access and set this property.
	IsActivityStreamsDelete() bool
	// IsActivityStreamsDislike returns true if this property has a type of
	// "Dislike". When true, use the GetActivityStreamsDislike and
	// SetActivityStreamsDislike methods to access and set this property.
	IsActivityStreamsDislike() bool
	// IsActivityStreamsDocument returns true if this property has a type of
	// "Document". When true, use the GetActivityStreamsDocument and
	// SetActivityStreamsDocument methods to access and set this property.
	IsActivityStreamsDocument() bool
	// IsActivityStreamsEvent returns true if this property has a type of
	// "Event". When true, use the GetActivityStreamsEvent and
	// SetActivityStreamsEvent methods to access and set this property.
	IsActivityStreamsEvent() bool
	// IsActivityStreamsFlag returns true if this property has a type of
	// "Flag". When true, use the GetActivityStreamsFlag and
	// SetActivityStreamsFlag methods to access and set this property.
	IsActivityStreamsFlag() bool
	// IsActivityStreamsFollow returns true if this property has a type of
	// "Follow". When true, use the GetActivityStreamsFollow and
	// SetActivityStreamsFollow methods to access and set this property.
	IsActivityStreamsFollow() bool
	// IsActivityStreamsGroup returns true if this property has a type of
	// "Group". When true, use the GetActivityStreamsGroup and
	// SetActivityStreamsGroup methods to access and set this property.
	IsActivityStreamsGroup() bool
	// IsActivityStreamsIgnore returns true if this property has a type of
	// "Ignore". When true, use the GetActivityStreamsIgnore and
	// SetActivityStreamsIgnore methods to access and set this property.
	IsActivityStreamsIgnore() bool
	// IsActivityStreamsImage returns true if this property has a type of
	// "Image". When true, use the GetActivityStreamsImage and
	// SetActivityStreamsImage methods to access and set this property.
	IsActivityStreamsImage() bool
	// IsActivityStreamsIntransitiveActivity returns true if this property has
	// a type of "IntransitiveActivity". When true, use the
	// GetActivityStreamsIntransitiveActivity and
	// SetActivityStreamsIntransitiveActivity methods to access and set
	// this property.
	IsActivityStreamsIntransitiveActivity() bool
	// IsActivityStreamsInvite returns true if this property has a type of
	// "Invite". When true, use the GetActivityStreamsInvite and
	// SetActivityStreamsInvite methods to access and set this property.
	IsActivityStreamsInvite() bool
	// IsActivityStreamsJoin returns true if this property has a type of
	// "Join". When true, use the GetActivityStreamsJoin and
	// SetActivityStreamsJoin methods to access and set this property.
	IsActivityStreamsJoin() bool
	// IsActivityStreamsLeave returns true if this property has a type of
	// "Leave". When true, use the GetActivityStreamsLeave and
	// SetActivityStreamsLeave methods to access and set this property.
	IsActivityStreamsLeave() bool
	// IsActivityStreamsLike returns true if this property has a type of
	// "Like". When true, use the GetActivityStreamsLike and
	// SetActivityStreamsLike methods to access and set this property.
	IsActivityStreamsLike() bool
	// IsActivityStreamsLink returns true if this property has a type of
	// "Link". When true, use the GetActivityStreamsLink and
	// SetActivityStreamsLink methods to access and set this property.
	IsActivityStreamsLink() bool
	// IsActivityStreamsListen returns true if this property has a type of
	// "Listen". When true, use the GetActivityStreamsListen and
	// SetActivityStreamsListen methods to access and set this property.
	IsActivityStreamsListen() bool
	// IsActivityStreamsMention returns true if this property has a type of
	// "Mention". When true, use the GetActivityStreamsMention and
	// SetActivityStreamsMention methods to access and set this property.
	IsActivityStreamsMention() bool
	// IsActivityStreamsMove returns true if this property has a type of
	// "Move". When true, use the GetActivityStreamsMove and
	// SetActivityStreamsMove methods to access and set this property.
	IsActivityStreamsMove() bool
	// IsActivityStreamsNote returns true if this property has a type of
	// "Note". When true, use the GetActivityStreamsNote and
	// SetActivityStreamsNote methods to access and set this property.
	IsActivityStreamsNote() bool
	// IsActivityStreamsObject returns true if this property has a type of
	// "Object". When true, use the GetActivityStreamsObject and
	// SetActivityStreamsObject methods to access and set this property.
	IsActivityStreamsObject() bool
	// IsActivityStreamsOffer returns true if this property has a type of
	// "Offer". When true, use the GetActivityStreamsOffer and
	// SetActivityStreamsOffer methods to access and set this property.
	IsActivityStreamsOffer() bool
	// IsActivityStreamsOrderedCollection returns true if this property has a
	// type of "OrderedCollection". When true, use the
	// GetActivityStreamsOrderedCollection and
	// SetActivityStreamsOrderedCollection methods to access and set this
	// property.
	IsActivityStreamsOrderedCollection() bool
	// IsActivityStreamsOrderedCollectionPage returns true if this property
	// has a type of "OrderedCollectionPage". When true, use the
	// GetActivityStreamsOrderedCollectionPage and
	// SetActivityStreamsOrderedCollectionPage methods to access and set
	// this property.
	IsActivityStreamsOrderedCollectionPage() bool
	// IsActivityStreamsOrganization returns true if this property has a type
	// of "Organization". When true, use the
	// GetActivityStreamsOrganization and SetActivityStreamsOrganization
	// methods to access and set this property.
	IsActivityStreamsOrganization() bool
	// IsActivityStreamsPage returns true if this property has a type of
	// "Page". When true, use the GetActivityStreamsPage and
	// SetActivityStreamsPage methods to access and set this property.
	IsActivityStreamsPage() bool
	// IsActivityStreamsPerson returns true if this property has a type of
	// "Person". When true, use the GetActivityStreamsPerson and
	// SetActivityStreamsPerson methods to access and set this property.
	IsActivityStreamsPerson() bool
	// IsActivityStreamsPlace returns true if this property has a type of
	// "Place". When true, use the GetActivityStreamsPlace and
	// SetActivityStreamsPlace methods to access and set this property.
	IsActivityStreamsPlace() bool
	// IsActivityStreamsProfile returns true if this property has a type of
	// "Profile". When true, use the GetActivityStreamsProfile and
	// SetActivityStreamsProfile methods to access and set this property.
	IsActivityStreamsProfile() bool
	// IsActivityStreamsQuestion returns true if this property has a type of
	// "Question". When true, use the GetActivityStreamsQuestion and
	// SetActivityStreamsQuestion methods to access and set this property.
	IsActivityStreamsQuestion() bool
	// IsActivityStreamsRead returns true if this property has a type of
	// "Read". When true, use the GetActivityStreamsRead and
	// SetActivityStreamsRead methods to access and set this property.
	IsActivityStreamsRead() bool
	// IsActivityStreamsReject returns true if this property has a type of
	// "Reject". When true, use the GetActivityStreamsReject and
	// SetActivityStreamsReject methods to access and set this property.
	IsActivityStreamsReject() bool
	// IsActivityStreamsRelationship returns true if this property has a type
	// of "Relationship". When true, use the
	// GetActivityStreamsRelationship and SetActivityStreamsRelationship
	// methods to access and set this property.
	IsActivityStreamsRelationship() bool
	// IsActivityStreamsRemove returns true if this property has a type of
	// "Remove". When true, use the GetActivityStreamsRemove and
	// SetActivityStreamsRemove methods to access and set this property.
	IsActivityStreamsRemove() bool
	// IsActivityStreamsService returns true if this property has a type of
	// "Service". When true, use the GetActivityStreamsService and
	// SetActivityStreamsService methods to access and set this property.
	IsActivityStreamsService() bool
	// IsActivityStreamsTentativeAccept returns true if this property has a
	// type of "TentativeAccept". When true, use the
	// GetActivityStreamsTentativeAccept and
	// SetActivityStreamsTentativeAccept methods to access and set this
	// property.
	IsActivityStreamsTentativeAccept() bool
	// IsActivityStreamsTentativeReject returns true if this property has a
	// type of "TentativeReject". When true, use the
	// GetActivityStreamsTentativeReject and
	// SetActivityStreamsTentativeReject methods to access and set this
	// property.
	IsActivityStreamsTentativeReject() bool
	// IsActivityStreamsTombstone returns true if this property has a type of
	// "Tombstone". When true, use the GetActivityStreamsTombstone and
	// SetActivityStreamsTombstone methods to access and set this property.
	IsActivityStreamsTombstone() bool
	// IsActivityStreamsTravel returns true if this property has a type of
	// "Travel". When true, use the GetActivityStreamsTravel and
	// SetActivityStreamsTravel methods to access and set this property.
	IsActivityStreamsTravel() bool
	// IsActivityStreamsUndo returns true if this property has a type of
	// "Undo". When true, use the GetActivityStreamsUndo and
	// SetActivityStreamsUndo methods to access and set this property.
	IsActivityStreamsUndo() bool
	// IsActivityStreamsUpdate returns true if this property has a type of
	// "Update". When true, use the GetActivityStreamsUpdate and
	// SetActivityStreamsUpdate methods to access and set this property.
	IsActivityStreamsUpdate() bool
	// IsActivityStreamsVideo returns true if this property has a type of
	// "Video". When true, use the GetActivityStreamsVideo and
	// SetActivityStreamsVideo methods to access and set this property.
	IsActivityStreamsVideo() bool
	// IsActivityStreamsView returns true if this property has a type of
	// "View". When true, use the GetActivityStreamsView and
	// SetActivityStreamsView methods to access and set this property.
	IsActivityStreamsView() bool
	// IsForgeFedBranch returns true if this property has a type of "Branch".
	// When true, use the GetForgeFedBranch and SetForgeFedBranch methods
	// to access and set this property.
	IsForgeFedBranch() bool
	// IsForgeFedCommit returns true if this property has a type of "Commit".
	// When true, use the GetForgeFedCommit and SetForgeFedCommit methods
	// to access and set this property.
	IsForgeFedCommit() bool
	// IsForgeFedPush returns true if this property has a type of "Push". When
	// true, use the GetForgeFedPush and SetForgeFedPush methods to access
	// and set this property.
	IsForgeFedPush() bool
	// IsForgeFedRepository returns true if this property has a type of
	// "Repository". When true, use the GetForgeFedRepository and
	// SetForgeFedRepository methods to access and set this property.
	IsForgeFedRepository() bool
	// IsForgeFedTicket returns true if this property has a type of "Ticket".
	// When true, use the GetForgeFedTicket and SetForgeFedTicket methods
	// to access and set this property.
	IsForgeFedTicket() bool
	// IsForgeFedTicketDependency returns true if this property has a type of
	// "TicketDependency". When true, use the GetForgeFedTicketDependency
	// and SetForgeFedTicketDependency methods to access and set this
	// property.
	IsForgeFedTicketDependency() bool
	// IsIRI returns true if this property is an IRI. When true, use GetIRI
	// and SetIRI to access and set this property
	IsIRI() bool
	// IsTootEmoji returns true if this property has a type of "Emoji". When
	// true, use the GetTootEmoji and SetTootEmoji methods to access and
	// set this property.
	IsTootEmoji() bool
	// IsTootIdentityProof returns true if this property has a type of
	// "IdentityProof". When true, use the GetTootIdentityProof and
	// SetTootIdentityProof methods to access and set this property.
	IsTootIdentityProof() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsResultPropertyIterator) bool
	// Name returns the name of this property: "ActivityStreamsResult".
	Name() string
	// Next returns the next iterator, or nil if there is no next iterator.
	Next() ActivityStreamsResultPropertyIterator
	// Prev returns the previous iterator, or nil if there is no previous
	// iterator.
	Prev() ActivityStreamsResultPropertyIterator
	// SetActivityStreamsAccept sets the value of this property. Calling
	// IsActivityStreamsAccept afterwards returns true.
	SetActivityStreamsAccept(v ActivityStreamsAccept)
	// SetActivityStreamsActivity sets the value of this property. Calling
	// IsActivityStreamsActivity afterwards returns true.
	SetActivityStreamsActivity(v ActivityStreamsActivity)
	// SetActivityStreamsAdd sets the value of this property. Calling
	// IsActivityStreamsAdd afterwards returns true.
	SetActivityStreamsAdd(v ActivityStreamsAdd)
	// SetActivityStreamsAnnounce sets the value of this property. Calling
	// IsActivityStreamsAnnounce afterwards returns true.
	SetActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// SetActivityStreamsApplication sets the value of this property. Calling
	// IsActivityStreamsApplication afterwards returns true.
	SetActivityStreamsApplication(v ActivityStreamsApplication)
	// SetActivityStreamsArrive sets the value of this property. Calling
	// IsActivityStreamsArrive afterwards returns true.
	SetActivityStreamsArrive(v ActivityStreamsArrive)
	// SetActivityStreamsArticle sets the value of this property. Calling
	// IsActivityStreamsArticle afterwards returns true.
	SetActivityStreamsArticle(v ActivityStreamsArticle)
	// SetActivityStreamsAudio sets the value of this property. Calling
	// IsActivityStreamsAudio afterwards returns true.
	SetActivityStreamsAudio(v ActivityStreamsAudio)
	// SetActivityStreamsBlock sets the value of this property. Calling
	// IsActivityStreamsBlock afterwards returns true.
	SetActivityStreamsBlock(v ActivityStreamsBlock)
	// SetActivityStreamsCollection sets the value of this property. Calling
	// IsActivityStreamsCollection afterwards returns true.
	SetActivityStreamsCollection(v ActivityStreamsCollection)
	// SetActivityStreamsCollectionPage sets the value of this property.
	// Calling IsActivityStreamsCollectionPage afterwards returns true.
	SetActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// SetActivityStreamsCreate sets the value of this property. Calling
	// IsActivityStreamsCreate afterwards returns true.
	SetActivityStreamsCreate(v ActivityStreamsCreate)
	// SetActivityStreamsDelete sets the value of this property. Calling
	// IsActivityStreamsDelete afterwards returns true.
	SetActivityStreamsDelete(v ActivityStreamsDelete)
	// SetActivityStreamsDislike sets the value of this property. Calling
	// IsActivityStreamsDislike afterwards returns true.
	SetActivityStreamsDislike(v ActivityStreamsDislike)
	// SetActivityStreamsDocument sets the value of this property. Calling
	// IsActivityStreamsDocument afterwards returns true.
	SetActivityStreamsDocument(v ActivityStreamsDocument)
	// SetActivityStreamsEvent sets the value of this property. Calling
	// IsActivityStreamsEvent afterwards returns true.
	SetActivityStreamsEvent(v ActivityStreamsEvent)
	// SetActivityStreamsFlag sets the value of this property. Calling
	// IsActivityStreamsFlag afterwards returns true.
	SetActivityStreamsFlag(v ActivityStreamsFlag)
	// SetActivityStreamsFollow sets the value of this property. Calling
	// IsActivityStreamsFollow afterwards returns true.
	SetActivityStreamsFollow(v ActivityStreamsFollow)
	// SetActivityStreamsGroup sets the value of this property. Calling
	// IsActivityStreamsGroup afterwards returns true.
	SetActivityStreamsGroup(v ActivityStreamsGroup)
	// SetActivityStreamsIgnore sets the value of this property. Calling
	// IsActivityStreamsIgnore afterwards returns true.
	SetActivityStreamsIgnore(v ActivityStreamsIgnore)
	// SetActivityStreamsImage sets the value of this property. Calling
	// IsActivityStreamsImage afterwards returns true.
	SetActivityStreamsImage(v ActivityStreamsImage)
	// SetActivityStreamsIntransitiveActivity sets the value of this property.
	// Calling IsActivityStreamsIntransitiveActivity afterwards returns
	// true.
	SetActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// SetActivityStreamsInvite sets the value of this property. Calling
	// IsActivityStreamsInvite afterwards returns true.
	SetActivityStreamsInvite(v ActivityStreamsInvite)
	// SetActivityStreamsJoin sets the value of this property. Calling
	// IsActivityStreamsJoin afterwards returns true.
	SetActivityStreamsJoin(v ActivityStreamsJoin)
	// SetActivityStreamsLeave sets the value of this property. Calling
	// IsActivityStreamsLeave afterwards returns true.
	SetActivityStreamsLeave(v ActivityStreamsLeave)
	// SetActivityStreamsLike sets the value of this property. Calling
	// IsActivityStreamsLike afterwards returns true.
	SetActivityStreamsLike(v ActivityStreamsLike)
	// SetActivityStreamsLink sets the value of this property. Calling
	// IsActivityStreamsLink afterwards returns true.
	SetActivityStreamsLink(v ActivityStreamsLink)
	// SetActivityStreamsListen sets the value of this property. Calling
	// IsActivityStreamsListen afterwards returns true.
	SetActivityStreamsListen(v ActivityStreamsListen)
	// SetActivityStreamsMention sets the value of this property. Calling
	// IsActivityStreamsMention afterwards returns true.
	SetActivityStreamsMention(v ActivityStreamsMention)
	// SetActivityStreamsMove sets the value of this property. Calling
	// IsActivityStreamsMove afterwards returns true.
	SetActivityStreamsMove(v ActivityStreamsMove)
	// SetActivityStreamsNote sets the value of this property. Calling
	// IsActivityStreamsNote afterwards returns true.
	SetActivityStreamsNote(v ActivityStreamsNote)
	// SetActivityStreamsObject sets the value of this property. Calling
	// IsActivityStreamsObject afterwards returns true.
	SetActivityStreamsObject(v ActivityStreamsObject)
	// SetActivityStreamsOffer sets the value of this property. Calling
	// IsActivityStreamsOffer afterwards returns true.
	SetActivityStreamsOffer(v ActivityStreamsOffer)
	// SetActivityStreamsOrderedCollection sets the value of this property.
	// Calling IsActivityStreamsOrderedCollection afterwards returns true.
	SetActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// SetActivityStreamsOrderedCollectionPage sets the value of this
	// property. Calling IsActivityStreamsOrderedCollectionPage afterwards
	// returns true.
	SetActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// SetActivityStreamsOrganization sets the value of this property. Calling
	// IsActivityStreamsOrganization afterwards returns true.
	SetActivityStreamsOrganization(v ActivityStreamsOrganization)
	// SetActivityStreamsPage sets the value of this property. Calling
	// IsActivityStreamsPage afterwards returns true.
	SetActivityStreamsPage(v ActivityStreamsPage)
	// SetActivityStreamsPerson sets the value of this property. Calling
	// IsActivityStreamsPerson afterwards returns true.
	SetActivityStreamsPerson(v ActivityStreamsPerson)
	// SetActivityStreamsPlace sets the value of this property. Calling
	// IsActivityStreamsPlace afterwards returns true.
	SetActivityStreamsPlace(v ActivityStreamsPlace)
	// SetActivityStreamsProfile sets the value of this property. Calling
	// IsActivityStreamsProfile afterwards returns true.
	SetActivityStreamsProfile(v ActivityStreamsProfile)
	// SetActivityStreamsQuestion sets the value of this property. Calling
	// IsActivityStreamsQuestion afterwards returns true.
	SetActivityStreamsQuestion(v ActivityStreamsQuestion)
	// SetActivityStreamsRead sets the value of this property. Calling
	// IsActivityStreamsRead afterwards returns true.
	SetActivityStreamsRead(v ActivityStreamsRead)
	// SetActivityStreamsReject sets the value of this property. Calling
	// IsActivityStreamsReject afterwards returns true.
	SetActivityStreamsReject(v ActivityStreamsReject)
	// SetActivityStreamsRelationship sets the value of this property. Calling
	// IsActivityStreamsRelationship afterwards returns true.
	SetActivityStreamsRelationship(v ActivityStreamsRelationship)
	// SetActivityStreamsRemove sets the value of this property. Calling
	// IsActivityStreamsRemove afterwards returns true.
	SetActivityStreamsRemove(v ActivityStreamsRemove)
	// SetActivityStreamsService sets the value of this property. Calling
	// IsActivityStreamsService afterwards returns true.
	SetActivityStreamsService(v ActivityStreamsService)
	// SetActivityStreamsTentativeAccept sets the value of this property.
	// Calling IsActivityStreamsTentativeAccept afterwards returns true.
	SetActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// SetActivityStreamsTentativeReject sets the value of this property.
	// Calling IsActivityStreamsTentativeReject afterwards returns true.
	SetActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// SetActivityStreamsTombstone sets the value of this property. Calling
	// IsActivityStreamsTombstone afterwards returns true.
	SetActivityStreamsTombstone(v ActivityStreamsTombstone)
	// SetActivityStreamsTravel sets the value of this property. Calling
	// IsActivityStreamsTravel afterwards returns true.
	SetActivityStreamsTravel(v ActivityStreamsTravel)
	// SetActivityStreamsUndo sets the value of this property. Calling
	// IsActivityStreamsUndo afterwards returns true.
	SetActivityStreamsUndo(v ActivityStreamsUndo)
	// SetActivityStreamsUpdate sets the value of this property. Calling
	// IsActivityStreamsUpdate afterwards returns true.
	SetActivityStreamsUpdate(v ActivityStreamsUpdate)
	// SetActivityStreamsVideo sets the value of this property. Calling
	// IsActivityStreamsVideo afterwards returns true.
	SetActivityStreamsVideo(v ActivityStreamsVideo)
	// SetActivityStreamsView sets the value of this property. Calling
	// IsActivityStreamsView afterwards returns true.
	SetActivityStreamsView(v ActivityStreamsView)
	// SetForgeFedBranch sets the value of this property. Calling
	// IsForgeFedBranch afterwards returns true.
	SetForgeFedBranch(v ForgeFedBranch)
	// SetForgeFedCommit sets the value of this property. Calling
	// IsForgeFedCommit afterwards returns true.
	SetForgeFedCommit(v ForgeFedCommit)
	// SetForgeFedPush sets the value of this property. Calling IsForgeFedPush
	// afterwards returns true.
	SetForgeFedPush(v ForgeFedPush)
	// SetForgeFedRepository sets the value of this property. Calling
	// IsForgeFedRepository afterwards returns true.
	SetForgeFedRepository(v ForgeFedRepository)
	// SetForgeFedTicket sets the value of this property. Calling
	// IsForgeFedTicket afterwards returns true.
	SetForgeFedTicket(v ForgeFedTicket)
	// SetForgeFedTicketDependency sets the value of this property. Calling
	// IsForgeFedTicketDependency afterwards returns true.
	SetForgeFedTicketDependency(v ForgeFedTicketDependency)
	// SetIRI sets the value of this property. Calling IsIRI afterwards
	// returns true.
	SetIRI(v *url.URL)
	// SetTootEmoji sets the value of this property. Calling IsTootEmoji
	// afterwards returns true.
	SetTootEmoji(v TootEmoji)
	// SetTootIdentityProof sets the value of this property. Calling
	// IsTootIdentityProof afterwards returns true.
	SetTootIdentityProof(v TootIdentityProof)
	// SetType attempts to set the property for the arbitrary type. Returns an
	// error if it is not a valid type to set on this property.
	SetType(t Type) error
}

ActivityStreamsResultPropertyIterator represents a single value for the "result" property.

type ActivityStreamsService

type ActivityStreamsService interface {
	// GetActivityStreamsAltitude returns the "altitude" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAltitude() ActivityStreamsAltitudeProperty
	// GetActivityStreamsAttachment returns the "attachment" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAttachment() ActivityStreamsAttachmentProperty
	// GetActivityStreamsAttributedTo returns the "attributedTo" property if
	// it exists, and nil otherwise.
	GetActivityStreamsAttributedTo() ActivityStreamsAttributedToProperty
	// GetActivityStreamsAudience returns the "audience" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAudience() ActivityStreamsAudienceProperty
	// GetActivityStreamsBcc returns the "bcc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBcc() ActivityStreamsBccProperty
	// GetActivityStreamsBto returns the "bto" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBto() ActivityStreamsBtoProperty
	// GetActivityStreamsCc returns the "cc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsCc() ActivityStreamsCcProperty
	// GetActivityStreamsContent returns the "content" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContent() ActivityStreamsContentProperty
	// GetActivityStreamsContext returns the "context" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContext() ActivityStreamsContextProperty
	// GetActivityStreamsDuration returns the "duration" property if it
	// exists, and nil otherwise.
	GetActivityStreamsDuration() ActivityStreamsDurationProperty
	// GetActivityStreamsEndTime returns the "endTime" property if it exists,
	// and nil otherwise.
	GetActivityStreamsEndTime() ActivityStreamsEndTimeProperty
	// GetActivityStreamsFollowers returns the "followers" property if it
	// exists, and nil otherwise.
	GetActivityStreamsFollowers() ActivityStreamsFollowersProperty
	// GetActivityStreamsFollowing returns the "following" property if it
	// exists, and nil otherwise.
	GetActivityStreamsFollowing() ActivityStreamsFollowingProperty
	// GetActivityStreamsGenerator returns the "generator" property if it
	// exists, and nil otherwise.
	GetActivityStreamsGenerator() ActivityStreamsGeneratorProperty
	// GetActivityStreamsIcon returns the "icon" property if it exists, and
	// nil otherwise.
	GetActivityStreamsIcon() ActivityStreamsIconProperty
	// GetActivityStreamsImage returns the "image" property if it exists, and
	// nil otherwise.
	GetActivityStreamsImage() ActivityStreamsImageProperty
	// GetActivityStreamsInReplyTo returns the "inReplyTo" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInReplyTo() ActivityStreamsInReplyToProperty
	// GetActivityStreamsInbox returns the "inbox" property if it exists, and
	// nil otherwise.
	GetActivityStreamsInbox() ActivityStreamsInboxProperty
	// GetActivityStreamsLiked returns the "liked" property if it exists, and
	// nil otherwise.
	GetActivityStreamsLiked() ActivityStreamsLikedProperty
	// GetActivityStreamsLikes returns the "likes" property if it exists, and
	// nil otherwise.
	GetActivityStreamsLikes() ActivityStreamsLikesProperty
	// GetActivityStreamsLocation returns the "location" property if it
	// exists, and nil otherwise.
	GetActivityStreamsLocation() ActivityStreamsLocationProperty
	// GetActivityStreamsMediaType returns the "mediaType" property if it
	// exists, and nil otherwise.
	GetActivityStreamsMediaType() ActivityStreamsMediaTypeProperty
	// GetActivityStreamsName returns the "name" property if it exists, and
	// nil otherwise.
	GetActivityStreamsName() ActivityStreamsNameProperty
	// GetActivityStreamsObject returns the "object" property if it exists,
	// and nil otherwise.
	GetActivityStreamsObject() ActivityStreamsObjectProperty
	// GetActivityStreamsOutbox returns the "outbox" property if it exists,
	// and nil otherwise.
	GetActivityStreamsOutbox() ActivityStreamsOutboxProperty
	// GetActivityStreamsPreferredUsername returns the "preferredUsername"
	// property if it exists, and nil otherwise.
	GetActivityStreamsPreferredUsername() ActivityStreamsPreferredUsernameProperty
	// GetActivityStreamsPreview returns the "preview" property if it exists,
	// and nil otherwise.
	GetActivityStreamsPreview() ActivityStreamsPreviewProperty
	// GetActivityStreamsPublished returns the "published" property if it
	// exists, and nil otherwise.
	GetActivityStreamsPublished() ActivityStreamsPublishedProperty
	// GetActivityStreamsReplies returns the "replies" property if it exists,
	// and nil otherwise.
	GetActivityStreamsReplies() ActivityStreamsRepliesProperty
	// GetActivityStreamsShares returns the "shares" property if it exists,
	// and nil otherwise.
	GetActivityStreamsShares() ActivityStreamsSharesProperty
	// GetActivityStreamsSource returns the "source" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSource() ActivityStreamsSourceProperty
	// GetActivityStreamsStartTime returns the "startTime" property if it
	// exists, and nil otherwise.
	GetActivityStreamsStartTime() ActivityStreamsStartTimeProperty
	// GetActivityStreamsStreams returns the "streams" property if it exists,
	// and nil otherwise.
	GetActivityStreamsStreams() ActivityStreamsStreamsProperty
	// GetActivityStreamsSummary returns the "summary" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSummary() ActivityStreamsSummaryProperty
	// GetActivityStreamsTag returns the "tag" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTag() ActivityStreamsTagProperty
	// GetActivityStreamsTo returns the "to" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTo() ActivityStreamsToProperty
	// GetActivityStreamsUpdated returns the "updated" property if it exists,
	// and nil otherwise.
	GetActivityStreamsUpdated() ActivityStreamsUpdatedProperty
	// GetActivityStreamsUrl returns the "url" property if it exists, and nil
	// otherwise.
	GetActivityStreamsUrl() ActivityStreamsUrlProperty
	// GetForgeFedTeam returns the "team" property if it exists, and nil
	// otherwise.
	GetForgeFedTeam() ForgeFedTeamProperty
	// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
	// it exists, and nil otherwise.
	GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
	// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
	// it exists, and nil otherwise.
	GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
	// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
	GetJSONLDId() JSONLDIdProperty
	// GetJSONLDType returns the "type" property if it exists, and nil
	// otherwise.
	GetJSONLDType() JSONLDTypeProperty
	// GetTootDiscoverable returns the "discoverable" property if it exists,
	// and nil otherwise.
	GetTootDiscoverable() TootDiscoverableProperty
	// GetTootFeatured returns the "featured" property if it exists, and nil
	// otherwise.
	GetTootFeatured() TootFeaturedProperty
	// GetTypeName returns the name of this type.
	GetTypeName() string
	// GetUnknownProperties returns the unknown properties for the Service
	// type. Note that this should not be used by app developers. It is
	// only used to help determine which implementation is LessThan the
	// other. Developers who are creating a different implementation of
	// this type's interface can use this method in their LessThan
	// implementation, but routine ActivityPub applications should not use
	// this to bypass the code generation tool.
	GetUnknownProperties() map[string]interface{}
	// GetW3IDSecurityV1PublicKey returns the "publicKey" property if it
	// exists, and nil otherwise.
	GetW3IDSecurityV1PublicKey() W3IDSecurityV1PublicKeyProperty
	// IsExtending returns true if the Service type extends from the other
	// type.
	IsExtending(other Type) bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this type and the specific properties that are set. The value
	// in the map is the alias used to import the type and its properties.
	JSONLDContext() map[string]string
	// LessThan computes if this Service is lesser, with an arbitrary but
	// stable determination.
	LessThan(o ActivityStreamsService) bool
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format.
	Serialize() (map[string]interface{}, error)
	// SetActivityStreamsAltitude sets the "altitude" property.
	SetActivityStreamsAltitude(i ActivityStreamsAltitudeProperty)
	// SetActivityStreamsAttachment sets the "attachment" property.
	SetActivityStreamsAttachment(i ActivityStreamsAttachmentProperty)
	// SetActivityStreamsAttributedTo sets the "attributedTo" property.
	SetActivityStreamsAttributedTo(i ActivityStreamsAttributedToProperty)
	// SetActivityStreamsAudience sets the "audience" property.
	SetActivityStreamsAudience(i ActivityStreamsAudienceProperty)
	// SetActivityStreamsBcc sets the "bcc" property.
	SetActivityStreamsBcc(i ActivityStreamsBccProperty)
	// SetActivityStreamsBto sets the "bto" property.
	SetActivityStreamsBto(i ActivityStreamsBtoProperty)
	// SetActivityStreamsCc sets the "cc" property.
	SetActivityStreamsCc(i ActivityStreamsCcProperty)
	// SetActivityStreamsContent sets the "content" property.
	SetActivityStreamsContent(i ActivityStreamsContentProperty)
	// SetActivityStreamsContext sets the "context" property.
	SetActivityStreamsContext(i ActivityStreamsContextProperty)
	// SetActivityStreamsDuration sets the "duration" property.
	SetActivityStreamsDuration(i ActivityStreamsDurationProperty)
	// SetActivityStreamsEndTime sets the "endTime" property.
	SetActivityStreamsEndTime(i ActivityStreamsEndTimeProperty)
	// SetActivityStreamsFollowers sets the "followers" property.
	SetActivityStreamsFollowers(i ActivityStreamsFollowersProperty)
	// SetActivityStreamsFollowing sets the "following" property.
	SetActivityStreamsFollowing(i ActivityStreamsFollowingProperty)
	// SetActivityStreamsGenerator sets the "generator" property.
	SetActivityStreamsGenerator(i ActivityStreamsGeneratorProperty)
	// SetActivityStreamsIcon sets the "icon" property.
	SetActivityStreamsIcon(i ActivityStreamsIconProperty)
	// SetActivityStreamsImage sets the "image" property.
	SetActivityStreamsImage(i ActivityStreamsImageProperty)
	// SetActivityStreamsInReplyTo sets the "inReplyTo" property.
	SetActivityStreamsInReplyTo(i ActivityStreamsInReplyToProperty)
	// SetActivityStreamsInbox sets the "inbox" property.
	SetActivityStreamsInbox(i ActivityStreamsInboxProperty)
	// SetActivityStreamsLiked sets the "liked" property.
	SetActivityStreamsLiked(i ActivityStreamsLikedProperty)
	// SetActivityStreamsLikes sets the "likes" property.
	SetActivityStreamsLikes(i ActivityStreamsLikesProperty)
	// SetActivityStreamsLocation sets the "location" property.
	SetActivityStreamsLocation(i ActivityStreamsLocationProperty)
	// SetActivityStreamsMediaType sets the "mediaType" property.
	SetActivityStreamsMediaType(i ActivityStreamsMediaTypeProperty)
	// SetActivityStreamsName sets the "name" property.
	SetActivityStreamsName(i ActivityStreamsNameProperty)
	// SetActivityStreamsObject sets the "object" property.
	SetActivityStreamsObject(i ActivityStreamsObjectProperty)
	// SetActivityStreamsOutbox sets the "outbox" property.
	SetActivityStreamsOutbox(i ActivityStreamsOutboxProperty)
	// SetActivityStreamsPreferredUsername sets the "preferredUsername"
	// property.
	SetActivityStreamsPreferredUsername(i ActivityStreamsPreferredUsernameProperty)
	// SetActivityStreamsPreview sets the "preview" property.
	SetActivityStreamsPreview(i ActivityStreamsPreviewProperty)
	// SetActivityStreamsPublished sets the "published" property.
	SetActivityStreamsPublished(i ActivityStreamsPublishedProperty)
	// SetActivityStreamsReplies sets the "replies" property.
	SetActivityStreamsReplies(i ActivityStreamsRepliesProperty)
	// SetActivityStreamsShares sets the "shares" property.
	SetActivityStreamsShares(i ActivityStreamsSharesProperty)
	// SetActivityStreamsSource sets the "source" property.
	SetActivityStreamsSource(i ActivityStreamsSourceProperty)
	// SetActivityStreamsStartTime sets the "startTime" property.
	SetActivityStreamsStartTime(i ActivityStreamsStartTimeProperty)
	// SetActivityStreamsStreams sets the "streams" property.
	SetActivityStreamsStreams(i ActivityStreamsStreamsProperty)
	// SetActivityStreamsSummary sets the "summary" property.
	SetActivityStreamsSummary(i ActivityStreamsSummaryProperty)
	// SetActivityStreamsTag sets the "tag" property.
	SetActivityStreamsTag(i ActivityStreamsTagProperty)
	// SetActivityStreamsTo sets the "to" property.
	SetActivityStreamsTo(i ActivityStreamsToProperty)
	// SetActivityStreamsUpdated sets the "updated" property.
	SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
	// SetActivityStreamsUrl sets the "url" property.
	SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
	// SetForgeFedTeam sets the "team" property.
	SetForgeFedTeam(i ForgeFedTeamProperty)
	// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
	SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
	// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
	SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
	// SetJSONLDId sets the "id" property.
	SetJSONLDId(i JSONLDIdProperty)
	// SetJSONLDType sets the "type" property.
	SetJSONLDType(i JSONLDTypeProperty)
	// SetTootDiscoverable sets the "discoverable" property.
	SetTootDiscoverable(i TootDiscoverableProperty)
	// SetTootFeatured sets the "featured" property.
	SetTootFeatured(i TootFeaturedProperty)
	// SetW3IDSecurityV1PublicKey sets the "publicKey" property.
	SetW3IDSecurityV1PublicKey(i W3IDSecurityV1PublicKeyProperty)
	// VocabularyURI returns the vocabulary's URI as a string.
	VocabularyURI() string
}

Represents a service of any kind.

Example 46 (https://www.w3.org/TR/activitystreams-vocabulary/#ex42-jsonld):

{
  "name": "Acme Web Service",
  "type": "Service"
}

type ActivityStreamsSharesProperty

type ActivityStreamsSharesProperty interface {
	// Clear ensures no value of this property is set. Calling HasAny or any
	// of the 'Is' methods afterwards will return false.
	Clear()
	// GetActivityStreamsCollection returns the value of this property. When
	// IsActivityStreamsCollection returns false,
	// GetActivityStreamsCollection will return an arbitrary value.
	GetActivityStreamsCollection() ActivityStreamsCollection
	// GetActivityStreamsCollectionPage returns the value of this property.
	// When IsActivityStreamsCollectionPage returns false,
	// GetActivityStreamsCollectionPage will return an arbitrary value.
	GetActivityStreamsCollectionPage() ActivityStreamsCollectionPage
	// GetActivityStreamsOrderedCollection returns the value of this property.
	// When IsActivityStreamsOrderedCollection returns false,
	// GetActivityStreamsOrderedCollection will return an arbitrary value.
	GetActivityStreamsOrderedCollection() ActivityStreamsOrderedCollection
	// GetActivityStreamsOrderedCollectionPage returns the value of this
	// property. When IsActivityStreamsOrderedCollectionPage returns
	// false, GetActivityStreamsOrderedCollectionPage will return an
	// arbitrary value.
	GetActivityStreamsOrderedCollectionPage() ActivityStreamsOrderedCollectionPage
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return an arbitrary value.
	GetIRI() *url.URL
	// GetType returns the value in this property as a Type. Returns nil if
	// the value is not an ActivityStreams type, such as an IRI or another
	// value.
	GetType() Type
	// HasAny returns true if any of the different values is set.
	HasAny() bool
	// IsActivityStreamsCollection returns true if this property has a type of
	// "Collection". When true, use the GetActivityStreamsCollection and
	// SetActivityStreamsCollection methods to access and set this
	// property.
	IsActivityStreamsCollection() bool
	// IsActivityStreamsCollectionPage returns true if this property has a
	// type of "CollectionPage". When true, use the
	// GetActivityStreamsCollectionPage and
	// SetActivityStreamsCollectionPage methods to access and set this
	// property.
	IsActivityStreamsCollectionPage() bool
	// IsActivityStreamsOrderedCollection returns true if this property has a
	// type of "OrderedCollection". When true, use the
	// GetActivityStreamsOrderedCollection and
	// SetActivityStreamsOrderedCollection methods to access and set this
	// property.
	IsActivityStreamsOrderedCollection() bool
	// IsActivityStreamsOrderedCollectionPage returns true if this property
	// has a type of "OrderedCollectionPage". When true, use the
	// GetActivityStreamsOrderedCollectionPage and
	// SetActivityStreamsOrderedCollectionPage methods to access and set
	// this property.
	IsActivityStreamsOrderedCollectionPage() bool
	// IsIRI returns true if this property is an IRI. When true, use GetIRI
	// and SetIRI to access and set this property
	IsIRI() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsSharesProperty) bool
	// Name returns the name of this property: "shares".
	Name() string
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// SetActivityStreamsCollection sets the value of this property. Calling
	// IsActivityStreamsCollection afterwards returns true.
	SetActivityStreamsCollection(v ActivityStreamsCollection)
	// SetActivityStreamsCollectionPage sets the value of this property.
	// Calling IsActivityStreamsCollectionPage afterwards returns true.
	SetActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// SetActivityStreamsOrderedCollection sets the value of this property.
	// Calling IsActivityStreamsOrderedCollection afterwards returns true.
	SetActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// SetActivityStreamsOrderedCollectionPage sets the value of this
	// property. Calling IsActivityStreamsOrderedCollectionPage afterwards
	// returns true.
	SetActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// SetIRI sets the value of this property. Calling IsIRI afterwards
	// returns true.
	SetIRI(v *url.URL)
	// SetType attempts to set the property for the arbitrary type. Returns an
	// error if it is not a valid type to set on this property.
	SetType(t Type) error
}

This is a list of all Announce activities with this object as the object property

type ActivityStreamsSourceProperty

type ActivityStreamsSourceProperty interface {
	// Clear ensures no value of this property is set. Calling HasAny or any
	// of the 'Is' methods afterwards will return false.
	Clear()
	// GetActivityStreamsAccept returns the value of this property. When
	// IsActivityStreamsAccept returns false, GetActivityStreamsAccept
	// will return an arbitrary value.
	GetActivityStreamsAccept() ActivityStreamsAccept
	// GetActivityStreamsActivity returns the value of this property. When
	// IsActivityStreamsActivity returns false, GetActivityStreamsActivity
	// will return an arbitrary value.
	GetActivityStreamsActivity() ActivityStreamsActivity
	// GetActivityStreamsAdd returns the value of this property. When
	// IsActivityStreamsAdd returns false, GetActivityStreamsAdd will
	// return an arbitrary value.
	GetActivityStreamsAdd() ActivityStreamsAdd
	// GetActivityStreamsAnnounce returns the value of this property. When
	// IsActivityStreamsAnnounce returns false, GetActivityStreamsAnnounce
	// will return an arbitrary value.
	GetActivityStreamsAnnounce() ActivityStreamsAnnounce
	// GetActivityStreamsApplication returns the value of this property. When
	// IsActivityStreamsApplication returns false,
	// GetActivityStreamsApplication will return an arbitrary value.
	GetActivityStreamsApplication() ActivityStreamsApplication
	// GetActivityStreamsArrive returns the value of this property. When
	// IsActivityStreamsArrive returns false, GetActivityStreamsArrive
	// will return an arbitrary value.
	GetActivityStreamsArrive() ActivityStreamsArrive
	// GetActivityStreamsArticle returns the value of this property. When
	// IsActivityStreamsArticle returns false, GetActivityStreamsArticle
	// will return an arbitrary value.
	GetActivityStreamsArticle() ActivityStreamsArticle
	// GetActivityStreamsAudio returns the value of this property. When
	// IsActivityStreamsAudio returns false, GetActivityStreamsAudio will
	// return an arbitrary value.
	GetActivityStreamsAudio() ActivityStreamsAudio
	// GetActivityStreamsBlock returns the value of this property. When
	// IsActivityStreamsBlock returns false, GetActivityStreamsBlock will
	// return an arbitrary value.
	GetActivityStreamsBlock() ActivityStreamsBlock
	// GetActivityStreamsCollection returns the value of this property. When
	// IsActivityStreamsCollection returns false,
	// GetActivityStreamsCollection will return an arbitrary value.
	GetActivityStreamsCollection() ActivityStreamsCollection
	// GetActivityStreamsCollectionPage returns the value of this property.
	// When IsActivityStreamsCollectionPage returns false,
	// GetActivityStreamsCollectionPage will return an arbitrary value.
	GetActivityStreamsCollectionPage() ActivityStreamsCollectionPage
	// GetActivityStreamsCreate returns the value of this property. When
	// IsActivityStreamsCreate returns false, GetActivityStreamsCreate
	// will return an arbitrary value.
	GetActivityStreamsCreate() ActivityStreamsCreate
	// GetActivityStreamsDelete returns the value of this property. When
	// IsActivityStreamsDelete returns false, GetActivityStreamsDelete
	// will return an arbitrary value.
	GetActivityStreamsDelete() ActivityStreamsDelete
	// GetActivityStreamsDislike returns the value of this property. When
	// IsActivityStreamsDislike returns false, GetActivityStreamsDislike
	// will return an arbitrary value.
	GetActivityStreamsDislike() ActivityStreamsDislike
	// GetActivityStreamsDocument returns the value of this property. When
	// IsActivityStreamsDocument returns false, GetActivityStreamsDocument
	// will return an arbitrary value.
	GetActivityStreamsDocument() ActivityStreamsDocument
	// GetActivityStreamsEvent returns the value of this property. When
	// IsActivityStreamsEvent returns false, GetActivityStreamsEvent will
	// return an arbitrary value.
	GetActivityStreamsEvent() ActivityStreamsEvent
	// GetActivityStreamsFlag returns the value of this property. When
	// IsActivityStreamsFlag returns false, GetActivityStreamsFlag will
	// return an arbitrary value.
	GetActivityStreamsFlag() ActivityStreamsFlag
	// GetActivityStreamsFollow returns the value of this property. When
	// IsActivityStreamsFollow returns false, GetActivityStreamsFollow
	// will return an arbitrary value.
	GetActivityStreamsFollow() ActivityStreamsFollow
	// GetActivityStreamsGroup returns the value of this property. When
	// IsActivityStreamsGroup returns false, GetActivityStreamsGroup will
	// return an arbitrary value.
	GetActivityStreamsGroup() ActivityStreamsGroup
	// GetActivityStreamsIgnore returns the value of this property. When
	// IsActivityStreamsIgnore returns false, GetActivityStreamsIgnore
	// will return an arbitrary value.
	GetActivityStreamsIgnore() ActivityStreamsIgnore
	// GetActivityStreamsImage returns the value of this property. When
	// IsActivityStreamsImage returns false, GetActivityStreamsImage will
	// return an arbitrary value.
	GetActivityStreamsImage() ActivityStreamsImage
	// GetActivityStreamsIntransitiveActivity returns the value of this
	// property. When IsActivityStreamsIntransitiveActivity returns false,
	// GetActivityStreamsIntransitiveActivity will return an arbitrary
	// value.
	GetActivityStreamsIntransitiveActivity() ActivityStreamsIntransitiveActivity
	// GetActivityStreamsInvite returns the value of this property. When
	// IsActivityStreamsInvite returns false, GetActivityStreamsInvite
	// will return an arbitrary value.
	GetActivityStreamsInvite() ActivityStreamsInvite
	// GetActivityStreamsJoin returns the value of this property. When
	// IsActivityStreamsJoin returns false, GetActivityStreamsJoin will
	// return an arbitrary value.
	GetActivityStreamsJoin() ActivityStreamsJoin
	// GetActivityStreamsLeave returns the value of this property. When
	// IsActivityStreamsLeave returns false, GetActivityStreamsLeave will
	// return an arbitrary value.
	GetActivityStreamsLeave() ActivityStreamsLeave
	// GetActivityStreamsLike returns the value of this property. When
	// IsActivityStreamsLike returns false, GetActivityStreamsLike will
	// return an arbitrary value.
	GetActivityStreamsLike() ActivityStreamsLike
	// GetActivityStreamsLink returns the value of this property. When
	// IsActivityStreamsLink returns false, GetActivityStreamsLink will
	// return an arbitrary value.
	GetActivityStreamsLink() ActivityStreamsLink
	// GetActivityStreamsListen returns the value of this property. When
	// IsActivityStreamsListen returns false, GetActivityStreamsListen
	// will return an arbitrary value.
	GetActivityStreamsListen() ActivityStreamsListen
	// GetActivityStreamsMention returns the value of this property. When
	// IsActivityStreamsMention returns false, GetActivityStreamsMention
	// will return an arbitrary value.
	GetActivityStreamsMention() ActivityStreamsMention
	// GetActivityStreamsMove returns the value of this property. When
	// IsActivityStreamsMove returns false, GetActivityStreamsMove will
	// return an arbitrary value.
	GetActivityStreamsMove() ActivityStreamsMove
	// GetActivityStreamsNote returns the value of this property. When
	// IsActivityStreamsNote returns false, GetActivityStreamsNote will
	// return an arbitrary value.
	GetActivityStreamsNote() ActivityStreamsNote
	// GetActivityStreamsObject returns the value of this property. When
	// IsActivityStreamsObject returns false, GetActivityStreamsObject
	// will return an arbitrary value.
	GetActivityStreamsObject() ActivityStreamsObject
	// GetActivityStreamsOffer returns the value of this property. When
	// IsActivityStreamsOffer returns false, GetActivityStreamsOffer will
	// return an arbitrary value.
	GetActivityStreamsOffer() ActivityStreamsOffer
	// GetActivityStreamsOrderedCollection returns the value of this property.
	// When IsActivityStreamsOrderedCollection returns false,
	// GetActivityStreamsOrderedCollection will return an arbitrary value.
	GetActivityStreamsOrderedCollection() ActivityStreamsOrderedCollection
	// GetActivityStreamsOrderedCollectionPage returns the value of this
	// property. When IsActivityStreamsOrderedCollectionPage returns
	// false, GetActivityStreamsOrderedCollectionPage will return an
	// arbitrary value.
	GetActivityStreamsOrderedCollectionPage() ActivityStreamsOrderedCollectionPage
	// GetActivityStreamsOrganization returns the value of this property. When
	// IsActivityStreamsOrganization returns false,
	// GetActivityStreamsOrganization will return an arbitrary value.
	GetActivityStreamsOrganization() ActivityStreamsOrganization
	// GetActivityStreamsPage returns the value of this property. When
	// IsActivityStreamsPage returns false, GetActivityStreamsPage will
	// return an arbitrary value.
	GetActivityStreamsPage() ActivityStreamsPage
	// GetActivityStreamsPerson returns the value of this property. When
	// IsActivityStreamsPerson returns false, GetActivityStreamsPerson
	// will return an arbitrary value.
	GetActivityStreamsPerson() ActivityStreamsPerson
	// GetActivityStreamsPlace returns the value of this property. When
	// IsActivityStreamsPlace returns false, GetActivityStreamsPlace will
	// return an arbitrary value.
	GetActivityStreamsPlace() ActivityStreamsPlace
	// GetActivityStreamsProfile returns the value of this property. When
	// IsActivityStreamsProfile returns false, GetActivityStreamsProfile
	// will return an arbitrary value.
	GetActivityStreamsProfile() ActivityStreamsProfile
	// GetActivityStreamsQuestion returns the value of this property. When
	// IsActivityStreamsQuestion returns false, GetActivityStreamsQuestion
	// will return an arbitrary value.
	GetActivityStreamsQuestion() ActivityStreamsQuestion
	// GetActivityStreamsRead returns the value of this property. When
	// IsActivityStreamsRead returns false, GetActivityStreamsRead will
	// return an arbitrary value.
	GetActivityStreamsRead() ActivityStreamsRead
	// GetActivityStreamsReject returns the value of this property. When
	// IsActivityStreamsReject returns false, GetActivityStreamsReject
	// will return an arbitrary value.
	GetActivityStreamsReject() ActivityStreamsReject
	// GetActivityStreamsRelationship returns the value of this property. When
	// IsActivityStreamsRelationship returns false,
	// GetActivityStreamsRelationship will return an arbitrary value.
	GetActivityStreamsRelationship() ActivityStreamsRelationship
	// GetActivityStreamsRemove returns the value of this property. When
	// IsActivityStreamsRemove returns false, GetActivityStreamsRemove
	// will return an arbitrary value.
	GetActivityStreamsRemove() ActivityStreamsRemove
	// GetActivityStreamsService returns the value of this property. When
	// IsActivityStreamsService returns false, GetActivityStreamsService
	// will return an arbitrary value.
	GetActivityStreamsService() ActivityStreamsService
	// GetActivityStreamsTentativeAccept returns the value of this property.
	// When IsActivityStreamsTentativeAccept returns false,
	// GetActivityStreamsTentativeAccept will return an arbitrary value.
	GetActivityStreamsTentativeAccept() ActivityStreamsTentativeAccept
	// GetActivityStreamsTentativeReject returns the value of this property.
	// When IsActivityStreamsTentativeReject returns false,
	// GetActivityStreamsTentativeReject will return an arbitrary value.
	GetActivityStreamsTentativeReject() ActivityStreamsTentativeReject
	// GetActivityStreamsTombstone returns the value of this property. When
	// IsActivityStreamsTombstone returns false,
	// GetActivityStreamsTombstone will return an arbitrary value.
	GetActivityStreamsTombstone() ActivityStreamsTombstone
	// GetActivityStreamsTravel returns the value of this property. When
	// IsActivityStreamsTravel returns false, GetActivityStreamsTravel
	// will return an arbitrary value.
	GetActivityStreamsTravel() ActivityStreamsTravel
	// GetActivityStreamsUndo returns the value of this property. When
	// IsActivityStreamsUndo returns false, GetActivityStreamsUndo will
	// return an arbitrary value.
	GetActivityStreamsUndo() ActivityStreamsUndo
	// GetActivityStreamsUpdate returns the value of this property. When
	// IsActivityStreamsUpdate returns false, GetActivityStreamsUpdate
	// will return an arbitrary value.
	GetActivityStreamsUpdate() ActivityStreamsUpdate
	// GetActivityStreamsVideo returns the value of this property. When
	// IsActivityStreamsVideo returns false, GetActivityStreamsVideo will
	// return an arbitrary value.
	GetActivityStreamsVideo() ActivityStreamsVideo
	// GetActivityStreamsView returns the value of this property. When
	// IsActivityStreamsView returns false, GetActivityStreamsView will
	// return an arbitrary value.
	GetActivityStreamsView() ActivityStreamsView
	// GetForgeFedBranch returns the value of this property. When
	// IsForgeFedBranch returns false, GetForgeFedBranch will return an
	// arbitrary value.
	GetForgeFedBranch() ForgeFedBranch
	// GetForgeFedCommit returns the value of this property. When
	// IsForgeFedCommit returns false, GetForgeFedCommit will return an
	// arbitrary value.
	GetForgeFedCommit() ForgeFedCommit
	// GetForgeFedPush returns the value of this property. When IsForgeFedPush
	// returns false, GetForgeFedPush will return an arbitrary value.
	GetForgeFedPush() ForgeFedPush
	// GetForgeFedRepository returns the value of this property. When
	// IsForgeFedRepository returns false, GetForgeFedRepository will
	// return an arbitrary value.
	GetForgeFedRepository() ForgeFedRepository
	// GetForgeFedTicket returns the value of this property. When
	// IsForgeFedTicket returns false, GetForgeFedTicket will return an
	// arbitrary value.
	GetForgeFedTicket() ForgeFedTicket
	// GetForgeFedTicketDependency returns the value of this property. When
	// IsForgeFedTicketDependency returns false,
	// GetForgeFedTicketDependency will return an arbitrary value.
	GetForgeFedTicketDependency() ForgeFedTicketDependency
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return an arbitrary value.
	GetIRI() *url.URL
	// GetTootEmoji returns the value of this property. When IsTootEmoji
	// returns false, GetTootEmoji will return an arbitrary value.
	GetTootEmoji() TootEmoji
	// GetTootIdentityProof returns the value of this property. When
	// IsTootIdentityProof returns false, GetTootIdentityProof will return
	// an arbitrary value.
	GetTootIdentityProof() TootIdentityProof
	// GetType returns the value in this property as a Type. Returns nil if
	// the value is not an ActivityStreams type, such as an IRI or another
	// value.
	GetType() Type
	// HasAny returns true if any of the different values is set.
	HasAny() bool
	// IsActivityStreamsAccept returns true if this property has a type of
	// "Accept". When true, use the GetActivityStreamsAccept and
	// SetActivityStreamsAccept methods to access and set this property.
	IsActivityStreamsAccept() bool
	// IsActivityStreamsActivity returns true if this property has a type of
	// "Activity". When true, use the GetActivityStreamsActivity and
	// SetActivityStreamsActivity methods to access and set this property.
	IsActivityStreamsActivity() bool
	// IsActivityStreamsAdd returns true if this property has a type of "Add".
	// When true, use the GetActivityStreamsAdd and SetActivityStreamsAdd
	// methods to access and set this property.
	IsActivityStreamsAdd() bool
	// IsActivityStreamsAnnounce returns true if this property has a type of
	// "Announce". When true, use the GetActivityStreamsAnnounce and
	// SetActivityStreamsAnnounce methods to access and set this property.
	IsActivityStreamsAnnounce() bool
	// IsActivityStreamsApplication returns true if this property has a type
	// of "Application". When true, use the GetActivityStreamsApplication
	// and SetActivityStreamsApplication methods to access and set this
	// property.
	IsActivityStreamsApplication() bool
	// IsActivityStreamsArrive returns true if this property has a type of
	// "Arrive". When true, use the GetActivityStreamsArrive and
	// SetActivityStreamsArrive methods to access and set this property.
	IsActivityStreamsArrive() bool
	// IsActivityStreamsArticle returns true if this property has a type of
	// "Article". When true, use the GetActivityStreamsArticle and
	// SetActivityStreamsArticle methods to access and set this property.
	IsActivityStreamsArticle() bool
	// IsActivityStreamsAudio returns true if this property has a type of
	// "Audio". When true, use the GetActivityStreamsAudio and
	// SetActivityStreamsAudio methods to access and set this property.
	IsActivityStreamsAudio() bool
	// IsActivityStreamsBlock returns true if this property has a type of
	// "Block". When true, use the GetActivityStreamsBlock and
	// SetActivityStreamsBlock methods to access and set this property.
	IsActivityStreamsBlock() bool
	// IsActivityStreamsCollection returns true if this property has a type of
	// "Collection". When true, use the GetActivityStreamsCollection and
	// SetActivityStreamsCollection methods to access and set this
	// property.
	IsActivityStreamsCollection() bool
	// IsActivityStreamsCollectionPage returns true if this property has a
	// type of "CollectionPage". When true, use the
	// GetActivityStreamsCollectionPage and
	// SetActivityStreamsCollectionPage methods to access and set this
	// property.
	IsActivityStreamsCollectionPage() bool
	// IsActivityStreamsCreate returns true if this property has a type of
	// "Create". When true, use the GetActivityStreamsCreate and
	// SetActivityStreamsCreate methods to access and set this property.
	IsActivityStreamsCreate() bool
	// IsActivityStreamsDelete returns true if this property has a type of
	// "Delete". When true, use the GetActivityStreamsDelete and
	// SetActivityStreamsDelete methods to access and set this property.
	IsActivityStreamsDelete() bool
	// IsActivityStreamsDislike returns true if this property has a type of
	// "Dislike". When true, use the GetActivityStreamsDislike and
	// SetActivityStreamsDislike methods to access and set this property.
	IsActivityStreamsDislike() bool
	// IsActivityStreamsDocument returns true if this property has a type of
	// "Document". When true, use the GetActivityStreamsDocument and
	// SetActivityStreamsDocument methods to access and set this property.
	IsActivityStreamsDocument() bool
	// IsActivityStreamsEvent returns true if this property has a type of
	// "Event". When true, use the GetActivityStreamsEvent and
	// SetActivityStreamsEvent methods to access and set this property.
	IsActivityStreamsEvent() bool
	// IsActivityStreamsFlag returns true if this property has a type of
	// "Flag". When true, use the GetActivityStreamsFlag and
	// SetActivityStreamsFlag methods to access and set this property.
	IsActivityStreamsFlag() bool
	// IsActivityStreamsFollow returns true if this property has a type of
	// "Follow". When true, use the GetActivityStreamsFollow and
	// SetActivityStreamsFollow methods to access and set this property.
	IsActivityStreamsFollow() bool
	// IsActivityStreamsGroup returns true if this property has a type of
	// "Group". When true, use the GetActivityStreamsGroup and
	// SetActivityStreamsGroup methods to access and set this property.
	IsActivityStreamsGroup() bool
	// IsActivityStreamsIgnore returns true if this property has a type of
	// "Ignore". When true, use the GetActivityStreamsIgnore and
	// SetActivityStreamsIgnore methods to access and set this property.
	IsActivityStreamsIgnore() bool
	// IsActivityStreamsImage returns true if this property has a type of
	// "Image". When true, use the GetActivityStreamsImage and
	// SetActivityStreamsImage methods to access and set this property.
	IsActivityStreamsImage() bool
	// IsActivityStreamsIntransitiveActivity returns true if this property has
	// a type of "IntransitiveActivity". When true, use the
	// GetActivityStreamsIntransitiveActivity and
	// SetActivityStreamsIntransitiveActivity methods to access and set
	// this property.
	IsActivityStreamsIntransitiveActivity() bool
	// IsActivityStreamsInvite returns true if this property has a type of
	// "Invite". When true, use the GetActivityStreamsInvite and
	// SetActivityStreamsInvite methods to access and set this property.
	IsActivityStreamsInvite() bool
	// IsActivityStreamsJoin returns true if this property has a type of
	// "Join". When true, use the GetActivityStreamsJoin and
	// SetActivityStreamsJoin methods to access and set this property.
	IsActivityStreamsJoin() bool
	// IsActivityStreamsLeave returns true if this property has a type of
	// "Leave". When true, use the GetActivityStreamsLeave and
	// SetActivityStreamsLeave methods to access and set this property.
	IsActivityStreamsLeave() bool
	// IsActivityStreamsLike returns true if this property has a type of
	// "Like". When true, use the GetActivityStreamsLike and
	// SetActivityStreamsLike methods to access and set this property.
	IsActivityStreamsLike() bool
	// IsActivityStreamsLink returns true if this property has a type of
	// "Link". When true, use the GetActivityStreamsLink and
	// SetActivityStreamsLink methods to access and set this property.
	IsActivityStreamsLink() bool
	// IsActivityStreamsListen returns true if this property has a type of
	// "Listen". When true, use the GetActivityStreamsListen and
	// SetActivityStreamsListen methods to access and set this property.
	IsActivityStreamsListen() bool
	// IsActivityStreamsMention returns true if this property has a type of
	// "Mention". When true, use the GetActivityStreamsMention and
	// SetActivityStreamsMention methods to access and set this property.
	IsActivityStreamsMention() bool
	// IsActivityStreamsMove returns true if this property has a type of
	// "Move". When true, use the GetActivityStreamsMove and
	// SetActivityStreamsMove methods to access and set this property.
	IsActivityStreamsMove() bool
	// IsActivityStreamsNote returns true if this property has a type of
	// "Note". When true, use the GetActivityStreamsNote and
	// SetActivityStreamsNote methods to access and set this property.
	IsActivityStreamsNote() bool
	// IsActivityStreamsObject returns true if this property has a type of
	// "Object". When true, use the GetActivityStreamsObject and
	// SetActivityStreamsObject methods to access and set this property.
	IsActivityStreamsObject() bool
	// IsActivityStreamsOffer returns true if this property has a type of
	// "Offer". When true, use the GetActivityStreamsOffer and
	// SetActivityStreamsOffer methods to access and set this property.
	IsActivityStreamsOffer() bool
	// IsActivityStreamsOrderedCollection returns true if this property has a
	// type of "OrderedCollection". When true, use the
	// GetActivityStreamsOrderedCollection and
	// SetActivityStreamsOrderedCollection methods to access and set this
	// property.
	IsActivityStreamsOrderedCollection() bool
	// IsActivityStreamsOrderedCollectionPage returns true if this property
	// has a type of "OrderedCollectionPage". When true, use the
	// GetActivityStreamsOrderedCollectionPage and
	// SetActivityStreamsOrderedCollectionPage methods to access and set
	// this property.
	IsActivityStreamsOrderedCollectionPage() bool
	// IsActivityStreamsOrganization returns true if this property has a type
	// of "Organization". When true, use the
	// GetActivityStreamsOrganization and SetActivityStreamsOrganization
	// methods to access and set this property.
	IsActivityStreamsOrganization() bool
	// IsActivityStreamsPage returns true if this property has a type of
	// "Page". When true, use the GetActivityStreamsPage and
	// SetActivityStreamsPage methods to access and set this property.
	IsActivityStreamsPage() bool
	// IsActivityStreamsPerson returns true if this property has a type of
	// "Person". When true, use the GetActivityStreamsPerson and
	// SetActivityStreamsPerson methods to access and set this property.
	IsActivityStreamsPerson() bool
	// IsActivityStreamsPlace returns true if this property has a type of
	// "Place". When true, use the GetActivityStreamsPlace and
	// SetActivityStreamsPlace methods to access and set this property.
	IsActivityStreamsPlace() bool
	// IsActivityStreamsProfile returns true if this property has a type of
	// "Profile". When true, use the GetActivityStreamsProfile and
	// SetActivityStreamsProfile methods to access and set this property.
	IsActivityStreamsProfile() bool
	// IsActivityStreamsQuestion returns true if this property has a type of
	// "Question". When true, use the GetActivityStreamsQuestion and
	// SetActivityStreamsQuestion methods to access and set this property.
	IsActivityStreamsQuestion() bool
	// IsActivityStreamsRead returns true if this property has a type of
	// "Read". When true, use the GetActivityStreamsRead and
	// SetActivityStreamsRead methods to access and set this property.
	IsActivityStreamsRead() bool
	// IsActivityStreamsReject returns true if this property has a type of
	// "Reject". When true, use the GetActivityStreamsReject and
	// SetActivityStreamsReject methods to access and set this property.
	IsActivityStreamsReject() bool
	// IsActivityStreamsRelationship returns true if this property has a type
	// of "Relationship". When true, use the
	// GetActivityStreamsRelationship and SetActivityStreamsRelationship
	// methods to access and set this property.
	IsActivityStreamsRelationship() bool
	// IsActivityStreamsRemove returns true if this property has a type of
	// "Remove". When true, use the GetActivityStreamsRemove and
	// SetActivityStreamsRemove methods to access and set this property.
	IsActivityStreamsRemove() bool
	// IsActivityStreamsService returns true if this property has a type of
	// "Service". When true, use the GetActivityStreamsService and
	// SetActivityStreamsService methods to access and set this property.
	IsActivityStreamsService() bool
	// IsActivityStreamsTentativeAccept returns true if this property has a
	// type of "TentativeAccept". When true, use the
	// GetActivityStreamsTentativeAccept and
	// SetActivityStreamsTentativeAccept methods to access and set this
	// property.
	IsActivityStreamsTentativeAccept() bool
	// IsActivityStreamsTentativeReject returns true if this property has a
	// type of "TentativeReject". When true, use the
	// GetActivityStreamsTentativeReject and
	// SetActivityStreamsTentativeReject methods to access and set this
	// property.
	IsActivityStreamsTentativeReject() bool
	// IsActivityStreamsTombstone returns true if this property has a type of
	// "Tombstone". When true, use the GetActivityStreamsTombstone and
	// SetActivityStreamsTombstone methods to access and set this property.
	IsActivityStreamsTombstone() bool
	// IsActivityStreamsTravel returns true if this property has a type of
	// "Travel". When true, use the GetActivityStreamsTravel and
	// SetActivityStreamsTravel methods to access and set this property.
	IsActivityStreamsTravel() bool
	// IsActivityStreamsUndo returns true if this property has a type of
	// "Undo". When true, use the GetActivityStreamsUndo and
	// SetActivityStreamsUndo methods to access and set this property.
	IsActivityStreamsUndo() bool
	// IsActivityStreamsUpdate returns true if this property has a type of
	// "Update". When true, use the GetActivityStreamsUpdate and
	// SetActivityStreamsUpdate methods to access and set this property.
	IsActivityStreamsUpdate() bool
	// IsActivityStreamsVideo returns true if this property has a type of
	// "Video". When true, use the GetActivityStreamsVideo and
	// SetActivityStreamsVideo methods to access and set this property.
	IsActivityStreamsVideo() bool
	// IsActivityStreamsView returns true if this property has a type of
	// "View". When true, use the GetActivityStreamsView and
	// SetActivityStreamsView methods to access and set this property.
	IsActivityStreamsView() bool
	// IsForgeFedBranch returns true if this property has a type of "Branch".
	// When true, use the GetForgeFedBranch and SetForgeFedBranch methods
	// to access and set this property.
	IsForgeFedBranch() bool
	// IsForgeFedCommit returns true if this property has a type of "Commit".
	// When true, use the GetForgeFedCommit and SetForgeFedCommit methods
	// to access and set this property.
	IsForgeFedCommit() bool
	// IsForgeFedPush returns true if this property has a type of "Push". When
	// true, use the GetForgeFedPush and SetForgeFedPush methods to access
	// and set this property.
	IsForgeFedPush() bool
	// IsForgeFedRepository returns true if this property has a type of
	// "Repository". When true, use the GetForgeFedRepository and
	// SetForgeFedRepository methods to access and set this property.
	IsForgeFedRepository() bool
	// IsForgeFedTicket returns true if this property has a type of "Ticket".
	// When true, use the GetForgeFedTicket and SetForgeFedTicket methods
	// to access and set this property.
	IsForgeFedTicket() bool
	// IsForgeFedTicketDependency returns true if this property has a type of
	// "TicketDependency". When true, use the GetForgeFedTicketDependency
	// and SetForgeFedTicketDependency methods to access and set this
	// property.
	IsForgeFedTicketDependency() bool
	// IsIRI returns true if this property is an IRI. When true, use GetIRI
	// and SetIRI to access and set this property
	IsIRI() bool
	// IsTootEmoji returns true if this property has a type of "Emoji". When
	// true, use the GetTootEmoji and SetTootEmoji methods to access and
	// set this property.
	IsTootEmoji() bool
	// IsTootIdentityProof returns true if this property has a type of
	// "IdentityProof". When true, use the GetTootIdentityProof and
	// SetTootIdentityProof methods to access and set this property.
	IsTootIdentityProof() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsSourceProperty) bool
	// Name returns the name of this property: "source".
	Name() string
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// SetActivityStreamsAccept sets the value of this property. Calling
	// IsActivityStreamsAccept afterwards returns true.
	SetActivityStreamsAccept(v ActivityStreamsAccept)
	// SetActivityStreamsActivity sets the value of this property. Calling
	// IsActivityStreamsActivity afterwards returns true.
	SetActivityStreamsActivity(v ActivityStreamsActivity)
	// SetActivityStreamsAdd sets the value of this property. Calling
	// IsActivityStreamsAdd afterwards returns true.
	SetActivityStreamsAdd(v ActivityStreamsAdd)
	// SetActivityStreamsAnnounce sets the value of this property. Calling
	// IsActivityStreamsAnnounce afterwards returns true.
	SetActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// SetActivityStreamsApplication sets the value of this property. Calling
	// IsActivityStreamsApplication afterwards returns true.
	SetActivityStreamsApplication(v ActivityStreamsApplication)
	// SetActivityStreamsArrive sets the value of this property. Calling
	// IsActivityStreamsArrive afterwards returns true.
	SetActivityStreamsArrive(v ActivityStreamsArrive)
	// SetActivityStreamsArticle sets the value of this property. Calling
	// IsActivityStreamsArticle afterwards returns true.
	SetActivityStreamsArticle(v ActivityStreamsArticle)
	// SetActivityStreamsAudio sets the value of this property. Calling
	// IsActivityStreamsAudio afterwards returns true.
	SetActivityStreamsAudio(v ActivityStreamsAudio)
	// SetActivityStreamsBlock sets the value of this property. Calling
	// IsActivityStreamsBlock afterwards returns true.
	SetActivityStreamsBlock(v ActivityStreamsBlock)
	// SetActivityStreamsCollection sets the value of this property. Calling
	// IsActivityStreamsCollection afterwards returns true.
	SetActivityStreamsCollection(v ActivityStreamsCollection)
	// SetActivityStreamsCollectionPage sets the value of this property.
	// Calling IsActivityStreamsCollectionPage afterwards returns true.
	SetActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// SetActivityStreamsCreate sets the value of this property. Calling
	// IsActivityStreamsCreate afterwards returns true.
	SetActivityStreamsCreate(v ActivityStreamsCreate)
	// SetActivityStreamsDelete sets the value of this property. Calling
	// IsActivityStreamsDelete afterwards returns true.
	SetActivityStreamsDelete(v ActivityStreamsDelete)
	// SetActivityStreamsDislike sets the value of this property. Calling
	// IsActivityStreamsDislike afterwards returns true.
	SetActivityStreamsDislike(v ActivityStreamsDislike)
	// SetActivityStreamsDocument sets the value of this property. Calling
	// IsActivityStreamsDocument afterwards returns true.
	SetActivityStreamsDocument(v ActivityStreamsDocument)
	// SetActivityStreamsEvent sets the value of this property. Calling
	// IsActivityStreamsEvent afterwards returns true.
	SetActivityStreamsEvent(v ActivityStreamsEvent)
	// SetActivityStreamsFlag sets the value of this property. Calling
	// IsActivityStreamsFlag afterwards returns true.
	SetActivityStreamsFlag(v ActivityStreamsFlag)
	// SetActivityStreamsFollow sets the value of this property. Calling
	// IsActivityStreamsFollow afterwards returns true.
	SetActivityStreamsFollow(v ActivityStreamsFollow)
	// SetActivityStreamsGroup sets the value of this property. Calling
	// IsActivityStreamsGroup afterwards returns true.
	SetActivityStreamsGroup(v ActivityStreamsGroup)
	// SetActivityStreamsIgnore sets the value of this property. Calling
	// IsActivityStreamsIgnore afterwards returns true.
	SetActivityStreamsIgnore(v ActivityStreamsIgnore)
	// SetActivityStreamsImage sets the value of this property. Calling
	// IsActivityStreamsImage afterwards returns true.
	SetActivityStreamsImage(v ActivityStreamsImage)
	// SetActivityStreamsIntransitiveActivity sets the value of this property.
	// Calling IsActivityStreamsIntransitiveActivity afterwards returns
	// true.
	SetActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// SetActivityStreamsInvite sets the value of this property. Calling
	// IsActivityStreamsInvite afterwards returns true.
	SetActivityStreamsInvite(v ActivityStreamsInvite)
	// SetActivityStreamsJoin sets the value of this property. Calling
	// IsActivityStreamsJoin afterwards returns true.
	SetActivityStreamsJoin(v ActivityStreamsJoin)
	// SetActivityStreamsLeave sets the value of this property. Calling
	// IsActivityStreamsLeave afterwards returns true.
	SetActivityStreamsLeave(v ActivityStreamsLeave)
	// SetActivityStreamsLike sets the value of this property. Calling
	// IsActivityStreamsLike afterwards returns true.
	SetActivityStreamsLike(v ActivityStreamsLike)
	// SetActivityStreamsLink sets the value of this property. Calling
	// IsActivityStreamsLink afterwards returns true.
	SetActivityStreamsLink(v ActivityStreamsLink)
	// SetActivityStreamsListen sets the value of this property. Calling
	// IsActivityStreamsListen afterwards returns true.
	SetActivityStreamsListen(v ActivityStreamsListen)
	// SetActivityStreamsMention sets the value of this property. Calling
	// IsActivityStreamsMention afterwards returns true.
	SetActivityStreamsMention(v ActivityStreamsMention)
	// SetActivityStreamsMove sets the value of this property. Calling
	// IsActivityStreamsMove afterwards returns true.
	SetActivityStreamsMove(v ActivityStreamsMove)
	// SetActivityStreamsNote sets the value of this property. Calling
	// IsActivityStreamsNote afterwards returns true.
	SetActivityStreamsNote(v ActivityStreamsNote)
	// SetActivityStreamsObject sets the value of this property. Calling
	// IsActivityStreamsObject afterwards returns true.
	SetActivityStreamsObject(v ActivityStreamsObject)
	// SetActivityStreamsOffer sets the value of this property. Calling
	// IsActivityStreamsOffer afterwards returns true.
	SetActivityStreamsOffer(v ActivityStreamsOffer)
	// SetActivityStreamsOrderedCollection sets the value of this property.
	// Calling IsActivityStreamsOrderedCollection afterwards returns true.
	SetActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// SetActivityStreamsOrderedCollectionPage sets the value of this
	// property. Calling IsActivityStreamsOrderedCollectionPage afterwards
	// returns true.
	SetActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// SetActivityStreamsOrganization sets the value of this property. Calling
	// IsActivityStreamsOrganization afterwards returns true.
	SetActivityStreamsOrganization(v ActivityStreamsOrganization)
	// SetActivityStreamsPage sets the value of this property. Calling
	// IsActivityStreamsPage afterwards returns true.
	SetActivityStreamsPage(v ActivityStreamsPage)
	// SetActivityStreamsPerson sets the value of this property. Calling
	// IsActivityStreamsPerson afterwards returns true.
	SetActivityStreamsPerson(v ActivityStreamsPerson)
	// SetActivityStreamsPlace sets the value of this property. Calling
	// IsActivityStreamsPlace afterwards returns true.
	SetActivityStreamsPlace(v ActivityStreamsPlace)
	// SetActivityStreamsProfile sets the value of this property. Calling
	// IsActivityStreamsProfile afterwards returns true.
	SetActivityStreamsProfile(v ActivityStreamsProfile)
	// SetActivityStreamsQuestion sets the value of this property. Calling
	// IsActivityStreamsQuestion afterwards returns true.
	SetActivityStreamsQuestion(v ActivityStreamsQuestion)
	// SetActivityStreamsRead sets the value of this property. Calling
	// IsActivityStreamsRead afterwards returns true.
	SetActivityStreamsRead(v ActivityStreamsRead)
	// SetActivityStreamsReject sets the value of this property. Calling
	// IsActivityStreamsReject afterwards returns true.
	SetActivityStreamsReject(v ActivityStreamsReject)
	// SetActivityStreamsRelationship sets the value of this property. Calling
	// IsActivityStreamsRelationship afterwards returns true.
	SetActivityStreamsRelationship(v ActivityStreamsRelationship)
	// SetActivityStreamsRemove sets the value of this property. Calling
	// IsActivityStreamsRemove afterwards returns true.
	SetActivityStreamsRemove(v ActivityStreamsRemove)
	// SetActivityStreamsService sets the value of this property. Calling
	// IsActivityStreamsService afterwards returns true.
	SetActivityStreamsService(v ActivityStreamsService)
	// SetActivityStreamsTentativeAccept sets the value of this property.
	// Calling IsActivityStreamsTentativeAccept afterwards returns true.
	SetActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// SetActivityStreamsTentativeReject sets the value of this property.
	// Calling IsActivityStreamsTentativeReject afterwards returns true.
	SetActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// SetActivityStreamsTombstone sets the value of this property. Calling
	// IsActivityStreamsTombstone afterwards returns true.
	SetActivityStreamsTombstone(v ActivityStreamsTombstone)
	// SetActivityStreamsTravel sets the value of this property. Calling
	// IsActivityStreamsTravel afterwards returns true.
	SetActivityStreamsTravel(v ActivityStreamsTravel)
	// SetActivityStreamsUndo sets the value of this property. Calling
	// IsActivityStreamsUndo afterwards returns true.
	SetActivityStreamsUndo(v ActivityStreamsUndo)
	// SetActivityStreamsUpdate sets the value of this property. Calling
	// IsActivityStreamsUpdate afterwards returns true.
	SetActivityStreamsUpdate(v ActivityStreamsUpdate)
	// SetActivityStreamsVideo sets the value of this property. Calling
	// IsActivityStreamsVideo afterwards returns true.
	SetActivityStreamsVideo(v ActivityStreamsVideo)
	// SetActivityStreamsView sets the value of this property. Calling
	// IsActivityStreamsView afterwards returns true.
	SetActivityStreamsView(v ActivityStreamsView)
	// SetForgeFedBranch sets the value of this property. Calling
	// IsForgeFedBranch afterwards returns true.
	SetForgeFedBranch(v ForgeFedBranch)
	// SetForgeFedCommit sets the value of this property. Calling
	// IsForgeFedCommit afterwards returns true.
	SetForgeFedCommit(v ForgeFedCommit)
	// SetForgeFedPush sets the value of this property. Calling IsForgeFedPush
	// afterwards returns true.
	SetForgeFedPush(v ForgeFedPush)
	// SetForgeFedRepository sets the value of this property. Calling
	// IsForgeFedRepository afterwards returns true.
	SetForgeFedRepository(v ForgeFedRepository)
	// SetForgeFedTicket sets the value of this property. Calling
	// IsForgeFedTicket afterwards returns true.
	SetForgeFedTicket(v ForgeFedTicket)
	// SetForgeFedTicketDependency sets the value of this property. Calling
	// IsForgeFedTicketDependency afterwards returns true.
	SetForgeFedTicketDependency(v ForgeFedTicketDependency)
	// SetIRI sets the value of this property. Calling IsIRI afterwards
	// returns true.
	SetIRI(v *url.URL)
	// SetTootEmoji sets the value of this property. Calling IsTootEmoji
	// afterwards returns true.
	SetTootEmoji(v TootEmoji)
	// SetTootIdentityProof sets the value of this property. Calling
	// IsTootIdentityProof afterwards returns true.
	SetTootIdentityProof(v TootIdentityProof)
	// SetType attempts to set the property for the arbitrary type. Returns an
	// error if it is not a valid type to set on this property.
	SetType(t Type) error
}

The source property is intended to convey some sort of source from which the content markup was derived, as a form of provenance, or to support future editing by clients.

Example 8 (https://www.w3.org/TR/activitypub/#source-property):

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "@language": "en"
    }
  ],
  "content": "\u003cp\u003eI \u003cem\u003ereally\u003c/em\u003e like

strawberries!\u003c/p\u003e",

  "id": "http://postparty.example/p/2415",
  "source": {
    "content": "I *really* like strawberries!",
    "mediaType": "text/markdown"
  },
  "type": "Note"
}

type ActivityStreamsStartIndexProperty

type ActivityStreamsStartIndexProperty interface {
	// Clear ensures no value of this property is set. Calling
	// IsXMLSchemaNonNegativeInteger afterwards will return false.
	Clear()
	// Get returns the value of this property. When
	// IsXMLSchemaNonNegativeInteger returns false, Get will return any
	// arbitrary value.
	Get() int
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return any arbitrary value.
	GetIRI() *url.URL
	// HasAny returns true if the value or IRI is set.
	HasAny() bool
	// IsIRI returns true if this property is an IRI.
	IsIRI() bool
	// IsXMLSchemaNonNegativeInteger returns true if this property is set and
	// not an IRI.
	IsXMLSchemaNonNegativeInteger() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsStartIndexProperty) bool
	// Name returns the name of this property: "startIndex".
	Name() string
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// Set sets the value of this property. Calling
	// IsXMLSchemaNonNegativeInteger afterwards will return true.
	Set(v int)
	// SetIRI sets the value of this property. Calling IsIRI afterwards will
	// return true.
	SetIRI(v *url.URL)
}

A non-negative integer value identifying the relative position within the logical view of a strictly ordered collection.

Example 132 (https://www.w3.org/TR/activitystreams-vocabulary/#ex150-jsonld):

{
  "orderedItems": [
    {
      "name": "Density of Water",
      "type": "Note"
    },
    {
      "name": "Air Mattress Idea",
      "type": "Note"
    }
  ],
  "startIndex": 0,
  "summary": "Page 1 of Sally's notes",
  "type": "OrderedCollectionPage"
}

type ActivityStreamsStartTimeProperty

type ActivityStreamsStartTimeProperty interface {
	// Clear ensures no value of this property is set. Calling
	// IsXMLSchemaDateTime afterwards will return false.
	Clear()
	// Get returns the value of this property. When IsXMLSchemaDateTime
	// returns false, Get will return any arbitrary value.
	Get() time.Time
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return any arbitrary value.
	GetIRI() *url.URL
	// HasAny returns true if the value or IRI is set.
	HasAny() bool
	// IsIRI returns true if this property is an IRI.
	IsIRI() bool
	// IsXMLSchemaDateTime returns true if this property is set and not an IRI.
	IsXMLSchemaDateTime() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsStartTimeProperty) bool
	// Name returns the name of this property: "startTime".
	Name() string
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// Set sets the value of this property. Calling IsXMLSchemaDateTime
	// afterwards will return true.
	Set(v time.Time)
	// SetIRI sets the value of this property. Calling IsIRI afterwards will
	// return true.
	SetIRI(v *url.URL)
}

The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.

Example 129 (https://www.w3.org/TR/activitystreams-vocabulary/#ex146-jsonld):

{
  "endTime": "2015-01-01T06:00:00-08:00",
  "name": "Going-Away Party for Jim",
  "startTime": "2014-12-31T23:00:00-08:00",
  "type": "Event"
}

type ActivityStreamsStreamsProperty

type ActivityStreamsStreamsProperty interface {
	// AppendActivityStreamsCollection appends a Collection value to the back
	// of a list of the property "streams". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsCollection(v ActivityStreamsCollection)
	// AppendActivityStreamsCollectionPage appends a CollectionPage value to
	// the back of a list of the property "streams". Invalidates iterators
	// that are traversing using Prev.
	AppendActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// AppendActivityStreamsOrderedCollection appends a OrderedCollection
	// value to the back of a list of the property "streams". Invalidates
	// iterators that are traversing using Prev.
	AppendActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// AppendActivityStreamsOrderedCollectionPage appends a
	// OrderedCollectionPage value to the back of a list of the property
	// "streams". Invalidates iterators that are traversing using Prev.
	AppendActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// AppendIRI appends an IRI value to the back of a list of the property
	// "streams"
	AppendIRI(v *url.URL)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "streams". Invalidates iterators that are traversing
	// using Prev. Returns an error if the type is not a valid one to set
	// for this property.
	AppendType(t Type) error
	// At returns the property value for the specified index. Panics if the
	// index is out of bounds.
	At(index int) ActivityStreamsStreamsPropertyIterator
	// Begin returns the first iterator, or nil if empty. Can be used with the
	// iterator's Next method and this property's End method to iterate
	// from front to back through all values.
	Begin() ActivityStreamsStreamsPropertyIterator
	// Empty returns returns true if there are no elements.
	Empty() bool
	// End returns beyond-the-last iterator, which is nil. Can be used with
	// the iterator's Next method and this property's Begin method to
	// iterate from front to back through all values.
	End() ActivityStreamsStreamsPropertyIterator
	// InsertActivityStreamsCollection inserts a Collection value at the
	// specified index for a property "streams". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsCollection(idx int, v ActivityStreamsCollection)
	// InsertActivityStreamsCollectionPage inserts a CollectionPage value at
	// the specified index for a property "streams". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsCollectionPage(idx int, v ActivityStreamsCollectionPage)
	// InsertActivityStreamsOrderedCollection inserts a OrderedCollection
	// value at the specified index for a property "streams". Existing
	// elements at that index and higher are shifted back once.
	// Invalidates all iterators.
	InsertActivityStreamsOrderedCollection(idx int, v ActivityStreamsOrderedCollection)
	// InsertActivityStreamsOrderedCollectionPage inserts a
	// OrderedCollectionPage value at the specified index for a property
	// "streams". Existing elements at that index and higher are shifted
	// back once. Invalidates all iterators.
	InsertActivityStreamsOrderedCollectionPage(idx int, v ActivityStreamsOrderedCollectionPage)
	// Insert inserts an IRI value at the specified index for a property
	// "streams". Existing elements at that index and higher are shifted
	// back once. Invalidates all iterators.
	InsertIRI(idx int, v *url.URL)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "streams". Invalidates all iterators. Returns an error
	// if the type is not a valid one to set for this property.
	InsertType(idx int, t Type) error
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API method specifically needed only for alternate
	// implementations for go-fed. Applications should not use this
	// method. Panics if the index is out of bounds.
	KindIndex(idx int) int
	// Len returns the number of values that exist for the "streams" property.
	Len() (length int)
	// Less computes whether another property is less than this one. Mixing
	// types results in a consistent but arbitrary ordering
	Less(i, j int) bool
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsStreamsProperty) bool
	// Name returns the name of this property ("streams") with any alias.
	Name() string
	// PrependActivityStreamsCollection prepends a Collection value to the
	// front of a list of the property "streams". Invalidates all
	// iterators.
	PrependActivityStreamsCollection(v ActivityStreamsCollection)
	// PrependActivityStreamsCollectionPage prepends a CollectionPage value to
	// the front of a list of the property "streams". Invalidates all
	// iterators.
	PrependActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// PrependActivityStreamsOrderedCollection prepends a OrderedCollection
	// value to the front of a list of the property "streams". Invalidates
	// all iterators.
	PrependActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// PrependActivityStreamsOrderedCollectionPage prepends a
	// OrderedCollectionPage value to the front of a list of the property
	// "streams". Invalidates all iterators.
	PrependActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// PrependIRI prepends an IRI value to the front of a list of the property
	// "streams".
	PrependIRI(v *url.URL)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "streams". Invalidates all iterators. Returns an error
	// if the type is not a valid one to set for this property.
	PrependType(t Type) error
	// Remove deletes an element at the specified index from a list of the
	// property "streams", regardless of its type. Panics if the index is
	// out of bounds. Invalidates all iterators.
	Remove(idx int)
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// SetActivityStreamsCollection sets a Collection value to be at the
	// specified index for the property "streams". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsCollection(idx int, v ActivityStreamsCollection)
	// SetActivityStreamsCollectionPage sets a CollectionPage value to be at
	// the specified index for the property "streams". Panics if the index
	// is out of bounds. Invalidates all iterators.
	SetActivityStreamsCollectionPage(idx int, v ActivityStreamsCollectionPage)
	// SetActivityStreamsOrderedCollection sets a OrderedCollection value to
	// be at the specified index for the property "streams". Panics if the
	// index is out of bounds. Invalidates all iterators.
	SetActivityStreamsOrderedCollection(idx int, v ActivityStreamsOrderedCollection)
	// SetActivityStreamsOrderedCollectionPage sets a OrderedCollectionPage
	// value to be at the specified index for the property "streams".
	// Panics if the index is out of bounds. Invalidates all iterators.
	SetActivityStreamsOrderedCollectionPage(idx int, v ActivityStreamsOrderedCollectionPage)
	// SetIRI sets an IRI value to be at the specified index for the property
	// "streams". Panics if the index is out of bounds.
	SetIRI(idx int, v *url.URL)
	// SetType sets an arbitrary type value to the specified index of the
	// property "streams". Invalidates all iterators. Returns an error if
	// the type is not a valid one to set for this property. Panics if the
	// index is out of bounds.
	SetType(idx int, t Type) error
	// Swap swaps the location of values at two indices for the "streams"
	// property.
	Swap(i, j int)
}

A list of supplementary Collections which may be of interest

type ActivityStreamsStreamsPropertyIterator

type ActivityStreamsStreamsPropertyIterator interface {
	// GetActivityStreamsCollection returns the value of this property. When
	// IsActivityStreamsCollection returns false,
	// GetActivityStreamsCollection will return an arbitrary value.
	GetActivityStreamsCollection() ActivityStreamsCollection
	// GetActivityStreamsCollectionPage returns the value of this property.
	// When IsActivityStreamsCollectionPage returns false,
	// GetActivityStreamsCollectionPage will return an arbitrary value.
	GetActivityStreamsCollectionPage() ActivityStreamsCollectionPage
	// GetActivityStreamsOrderedCollection returns the value of this property.
	// When IsActivityStreamsOrderedCollection returns false,
	// GetActivityStreamsOrderedCollection will return an arbitrary value.
	GetActivityStreamsOrderedCollection() ActivityStreamsOrderedCollection
	// GetActivityStreamsOrderedCollectionPage returns the value of this
	// property. When IsActivityStreamsOrderedCollectionPage returns
	// false, GetActivityStreamsOrderedCollectionPage will return an
	// arbitrary value.
	GetActivityStreamsOrderedCollectionPage() ActivityStreamsOrderedCollectionPage
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return an arbitrary value.
	GetIRI() *url.URL
	// GetType returns the value in this property as a Type. Returns nil if
	// the value is not an ActivityStreams type, such as an IRI or another
	// value.
	GetType() Type
	// HasAny returns true if any of the different values is set.
	HasAny() bool
	// IsActivityStreamsCollection returns true if this property has a type of
	// "Collection". When true, use the GetActivityStreamsCollection and
	// SetActivityStreamsCollection methods to access and set this
	// property.
	IsActivityStreamsCollection() bool
	// IsActivityStreamsCollectionPage returns true if this property has a
	// type of "CollectionPage". When true, use the
	// GetActivityStreamsCollectionPage and
	// SetActivityStreamsCollectionPage methods to access and set this
	// property.
	IsActivityStreamsCollectionPage() bool
	// IsActivityStreamsOrderedCollection returns true if this property has a
	// type of "OrderedCollection". When true, use the
	// GetActivityStreamsOrderedCollection and
	// SetActivityStreamsOrderedCollection methods to access and set this
	// property.
	IsActivityStreamsOrderedCollection() bool
	// IsActivityStreamsOrderedCollectionPage returns true if this property
	// has a type of "OrderedCollectionPage". When true, use the
	// GetActivityStreamsOrderedCollectionPage and
	// SetActivityStreamsOrderedCollectionPage methods to access and set
	// this property.
	IsActivityStreamsOrderedCollectionPage() bool
	// IsIRI returns true if this property is an IRI. When true, use GetIRI
	// and SetIRI to access and set this property
	IsIRI() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsStreamsPropertyIterator) bool
	// Name returns the name of this property: "ActivityStreamsStreams".
	Name() string
	// Next returns the next iterator, or nil if there is no next iterator.
	Next() ActivityStreamsStreamsPropertyIterator
	// Prev returns the previous iterator, or nil if there is no previous
	// iterator.
	Prev() ActivityStreamsStreamsPropertyIterator
	// SetActivityStreamsCollection sets the value of this property. Calling
	// IsActivityStreamsCollection afterwards returns true.
	SetActivityStreamsCollection(v ActivityStreamsCollection)
	// SetActivityStreamsCollectionPage sets the value of this property.
	// Calling IsActivityStreamsCollectionPage afterwards returns true.
	SetActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// SetActivityStreamsOrderedCollection sets the value of this property.
	// Calling IsActivityStreamsOrderedCollection afterwards returns true.
	SetActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// SetActivityStreamsOrderedCollectionPage sets the value of this
	// property. Calling IsActivityStreamsOrderedCollectionPage afterwards
	// returns true.
	SetActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// SetIRI sets the value of this property. Calling IsIRI afterwards
	// returns true.
	SetIRI(v *url.URL)
	// SetType attempts to set the property for the arbitrary type. Returns an
	// error if it is not a valid type to set on this property.
	SetType(t Type) error
}

ActivityStreamsStreamsPropertyIterator represents a single value for the "streams" property.

type ActivityStreamsSubjectProperty

type ActivityStreamsSubjectProperty interface {
	// Clear ensures no value of this property is set. Calling HasAny or any
	// of the 'Is' methods afterwards will return false.
	Clear()
	// GetActivityStreamsAccept returns the value of this property. When
	// IsActivityStreamsAccept returns false, GetActivityStreamsAccept
	// will return an arbitrary value.
	GetActivityStreamsAccept() ActivityStreamsAccept
	// GetActivityStreamsActivity returns the value of this property. When
	// IsActivityStreamsActivity returns false, GetActivityStreamsActivity
	// will return an arbitrary value.
	GetActivityStreamsActivity() ActivityStreamsActivity
	// GetActivityStreamsAdd returns the value of this property. When
	// IsActivityStreamsAdd returns false, GetActivityStreamsAdd will
	// return an arbitrary value.
	GetActivityStreamsAdd() ActivityStreamsAdd
	// GetActivityStreamsAnnounce returns the value of this property. When
	// IsActivityStreamsAnnounce returns false, GetActivityStreamsAnnounce
	// will return an arbitrary value.
	GetActivityStreamsAnnounce() ActivityStreamsAnnounce
	// GetActivityStreamsApplication returns the value of this property. When
	// IsActivityStreamsApplication returns false,
	// GetActivityStreamsApplication will return an arbitrary value.
	GetActivityStreamsApplication() ActivityStreamsApplication
	// GetActivityStreamsArrive returns the value of this property. When
	// IsActivityStreamsArrive returns false, GetActivityStreamsArrive
	// will return an arbitrary value.
	GetActivityStreamsArrive() ActivityStreamsArrive
	// GetActivityStreamsArticle returns the value of this property. When
	// IsActivityStreamsArticle returns false, GetActivityStreamsArticle
	// will return an arbitrary value.
	GetActivityStreamsArticle() ActivityStreamsArticle
	// GetActivityStreamsAudio returns the value of this property. When
	// IsActivityStreamsAudio returns false, GetActivityStreamsAudio will
	// return an arbitrary value.
	GetActivityStreamsAudio() ActivityStreamsAudio
	// GetActivityStreamsBlock returns the value of this property. When
	// IsActivityStreamsBlock returns false, GetActivityStreamsBlock will
	// return an arbitrary value.
	GetActivityStreamsBlock() ActivityStreamsBlock
	// GetActivityStreamsCollection returns the value of this property. When
	// IsActivityStreamsCollection returns false,
	// GetActivityStreamsCollection will return an arbitrary value.
	GetActivityStreamsCollection() ActivityStreamsCollection
	// GetActivityStreamsCollectionPage returns the value of this property.
	// When IsActivityStreamsCollectionPage returns false,
	// GetActivityStreamsCollectionPage will return an arbitrary value.
	GetActivityStreamsCollectionPage() ActivityStreamsCollectionPage
	// GetActivityStreamsCreate returns the value of this property. When
	// IsActivityStreamsCreate returns false, GetActivityStreamsCreate
	// will return an arbitrary value.
	GetActivityStreamsCreate() ActivityStreamsCreate
	// GetActivityStreamsDelete returns the value of this property. When
	// IsActivityStreamsDelete returns false, GetActivityStreamsDelete
	// will return an arbitrary value.
	GetActivityStreamsDelete() ActivityStreamsDelete
	// GetActivityStreamsDislike returns the value of this property. When
	// IsActivityStreamsDislike returns false, GetActivityStreamsDislike
	// will return an arbitrary value.
	GetActivityStreamsDislike() ActivityStreamsDislike
	// GetActivityStreamsDocument returns the value of this property. When
	// IsActivityStreamsDocument returns false, GetActivityStreamsDocument
	// will return an arbitrary value.
	GetActivityStreamsDocument() ActivityStreamsDocument
	// GetActivityStreamsEvent returns the value of this property. When
	// IsActivityStreamsEvent returns false, GetActivityStreamsEvent will
	// return an arbitrary value.
	GetActivityStreamsEvent() ActivityStreamsEvent
	// GetActivityStreamsFlag returns the value of this property. When
	// IsActivityStreamsFlag returns false, GetActivityStreamsFlag will
	// return an arbitrary value.
	GetActivityStreamsFlag() ActivityStreamsFlag
	// GetActivityStreamsFollow returns the value of this property. When
	// IsActivityStreamsFollow returns false, GetActivityStreamsFollow
	// will return an arbitrary value.
	GetActivityStreamsFollow() ActivityStreamsFollow
	// GetActivityStreamsGroup returns the value of this property. When
	// IsActivityStreamsGroup returns false, GetActivityStreamsGroup will
	// return an arbitrary value.
	GetActivityStreamsGroup() ActivityStreamsGroup
	// GetActivityStreamsIgnore returns the value of this property. When
	// IsActivityStreamsIgnore returns false, GetActivityStreamsIgnore
	// will return an arbitrary value.
	GetActivityStreamsIgnore() ActivityStreamsIgnore
	// GetActivityStreamsImage returns the value of this property. When
	// IsActivityStreamsImage returns false, GetActivityStreamsImage will
	// return an arbitrary value.
	GetActivityStreamsImage() ActivityStreamsImage
	// GetActivityStreamsIntransitiveActivity returns the value of this
	// property. When IsActivityStreamsIntransitiveActivity returns false,
	// GetActivityStreamsIntransitiveActivity will return an arbitrary
	// value.
	GetActivityStreamsIntransitiveActivity() ActivityStreamsIntransitiveActivity
	// GetActivityStreamsInvite returns the value of this property. When
	// IsActivityStreamsInvite returns false, GetActivityStreamsInvite
	// will return an arbitrary value.
	GetActivityStreamsInvite() ActivityStreamsInvite
	// GetActivityStreamsJoin returns the value of this property. When
	// IsActivityStreamsJoin returns false, GetActivityStreamsJoin will
	// return an arbitrary value.
	GetActivityStreamsJoin() ActivityStreamsJoin
	// GetActivityStreamsLeave returns the value of this property. When
	// IsActivityStreamsLeave returns false, GetActivityStreamsLeave will
	// return an arbitrary value.
	GetActivityStreamsLeave() ActivityStreamsLeave
	// GetActivityStreamsLike returns the value of this property. When
	// IsActivityStreamsLike returns false, GetActivityStreamsLike will
	// return an arbitrary value.
	GetActivityStreamsLike() ActivityStreamsLike
	// GetActivityStreamsLink returns the value of this property. When
	// IsActivityStreamsLink returns false, GetActivityStreamsLink will
	// return an arbitrary value.
	GetActivityStreamsLink() ActivityStreamsLink
	// GetActivityStreamsListen returns the value of this property. When
	// IsActivityStreamsListen returns false, GetActivityStreamsListen
	// will return an arbitrary value.
	GetActivityStreamsListen() ActivityStreamsListen
	// GetActivityStreamsMention returns the value of this property. When
	// IsActivityStreamsMention returns false, GetActivityStreamsMention
	// will return an arbitrary value.
	GetActivityStreamsMention() ActivityStreamsMention
	// GetActivityStreamsMove returns the value of this property. When
	// IsActivityStreamsMove returns false, GetActivityStreamsMove will
	// return an arbitrary value.
	GetActivityStreamsMove() ActivityStreamsMove
	// GetActivityStreamsNote returns the value of this property. When
	// IsActivityStreamsNote returns false, GetActivityStreamsNote will
	// return an arbitrary value.
	GetActivityStreamsNote() ActivityStreamsNote
	// GetActivityStreamsObject returns the value of this property. When
	// IsActivityStreamsObject returns false, GetActivityStreamsObject
	// will return an arbitrary value.
	GetActivityStreamsObject() ActivityStreamsObject
	// GetActivityStreamsOffer returns the value of this property. When
	// IsActivityStreamsOffer returns false, GetActivityStreamsOffer will
	// return an arbitrary value.
	GetActivityStreamsOffer() ActivityStreamsOffer
	// GetActivityStreamsOrderedCollection returns the value of this property.
	// When IsActivityStreamsOrderedCollection returns false,
	// GetActivityStreamsOrderedCollection will return an arbitrary value.
	GetActivityStreamsOrderedCollection() ActivityStreamsOrderedCollection
	// GetActivityStreamsOrderedCollectionPage returns the value of this
	// property. When IsActivityStreamsOrderedCollectionPage returns
	// false, GetActivityStreamsOrderedCollectionPage will return an
	// arbitrary value.
	GetActivityStreamsOrderedCollectionPage() ActivityStreamsOrderedCollectionPage
	// GetActivityStreamsOrganization returns the value of this property. When
	// IsActivityStreamsOrganization returns false,
	// GetActivityStreamsOrganization will return an arbitrary value.
	GetActivityStreamsOrganization() ActivityStreamsOrganization
	// GetActivityStreamsPage returns the value of this property. When
	// IsActivityStreamsPage returns false, GetActivityStreamsPage will
	// return an arbitrary value.
	GetActivityStreamsPage() ActivityStreamsPage
	// GetActivityStreamsPerson returns the value of this property. When
	// IsActivityStreamsPerson returns false, GetActivityStreamsPerson
	// will return an arbitrary value.
	GetActivityStreamsPerson() ActivityStreamsPerson
	// GetActivityStreamsPlace returns the value of this property. When
	// IsActivityStreamsPlace returns false, GetActivityStreamsPlace will
	// return an arbitrary value.
	GetActivityStreamsPlace() ActivityStreamsPlace
	// GetActivityStreamsProfile returns the value of this property. When
	// IsActivityStreamsProfile returns false, GetActivityStreamsProfile
	// will return an arbitrary value.
	GetActivityStreamsProfile() ActivityStreamsProfile
	// GetActivityStreamsQuestion returns the value of this property. When
	// IsActivityStreamsQuestion returns false, GetActivityStreamsQuestion
	// will return an arbitrary value.
	GetActivityStreamsQuestion() ActivityStreamsQuestion
	// GetActivityStreamsRead returns the value of this property. When
	// IsActivityStreamsRead returns false, GetActivityStreamsRead will
	// return an arbitrary value.
	GetActivityStreamsRead() ActivityStreamsRead
	// GetActivityStreamsReject returns the value of this property. When
	// IsActivityStreamsReject returns false, GetActivityStreamsReject
	// will return an arbitrary value.
	GetActivityStreamsReject() ActivityStreamsReject
	// GetActivityStreamsRelationship returns the value of this property. When
	// IsActivityStreamsRelationship returns false,
	// GetActivityStreamsRelationship will return an arbitrary value.
	GetActivityStreamsRelationship() ActivityStreamsRelationship
	// GetActivityStreamsRemove returns the value of this property. When
	// IsActivityStreamsRemove returns false, GetActivityStreamsRemove
	// will return an arbitrary value.
	GetActivityStreamsRemove() ActivityStreamsRemove
	// GetActivityStreamsService returns the value of this property. When
	// IsActivityStreamsService returns false, GetActivityStreamsService
	// will return an arbitrary value.
	GetActivityStreamsService() ActivityStreamsService
	// GetActivityStreamsTentativeAccept returns the value of this property.
	// When IsActivityStreamsTentativeAccept returns false,
	// GetActivityStreamsTentativeAccept will return an arbitrary value.
	GetActivityStreamsTentativeAccept() ActivityStreamsTentativeAccept
	// GetActivityStreamsTentativeReject returns the value of this property.
	// When IsActivityStreamsTentativeReject returns false,
	// GetActivityStreamsTentativeReject will return an arbitrary value.
	GetActivityStreamsTentativeReject() ActivityStreamsTentativeReject
	// GetActivityStreamsTombstone returns the value of this property. When
	// IsActivityStreamsTombstone returns false,
	// GetActivityStreamsTombstone will return an arbitrary value.
	GetActivityStreamsTombstone() ActivityStreamsTombstone
	// GetActivityStreamsTravel returns the value of this property. When
	// IsActivityStreamsTravel returns false, GetActivityStreamsTravel
	// will return an arbitrary value.
	GetActivityStreamsTravel() ActivityStreamsTravel
	// GetActivityStreamsUndo returns the value of this property. When
	// IsActivityStreamsUndo returns false, GetActivityStreamsUndo will
	// return an arbitrary value.
	GetActivityStreamsUndo() ActivityStreamsUndo
	// GetActivityStreamsUpdate returns the value of this property. When
	// IsActivityStreamsUpdate returns false, GetActivityStreamsUpdate
	// will return an arbitrary value.
	GetActivityStreamsUpdate() ActivityStreamsUpdate
	// GetActivityStreamsVideo returns the value of this property. When
	// IsActivityStreamsVideo returns false, GetActivityStreamsVideo will
	// return an arbitrary value.
	GetActivityStreamsVideo() ActivityStreamsVideo
	// GetActivityStreamsView returns the value of this property. When
	// IsActivityStreamsView returns false, GetActivityStreamsView will
	// return an arbitrary value.
	GetActivityStreamsView() ActivityStreamsView
	// GetForgeFedBranch returns the value of this property. When
	// IsForgeFedBranch returns false, GetForgeFedBranch will return an
	// arbitrary value.
	GetForgeFedBranch() ForgeFedBranch
	// GetForgeFedCommit returns the value of this property. When
	// IsForgeFedCommit returns false, GetForgeFedCommit will return an
	// arbitrary value.
	GetForgeFedCommit() ForgeFedCommit
	// GetForgeFedPush returns the value of this property. When IsForgeFedPush
	// returns false, GetForgeFedPush will return an arbitrary value.
	GetForgeFedPush() ForgeFedPush
	// GetForgeFedRepository returns the value of this property. When
	// IsForgeFedRepository returns false, GetForgeFedRepository will
	// return an arbitrary value.
	GetForgeFedRepository() ForgeFedRepository
	// GetForgeFedTicket returns the value of this property. When
	// IsForgeFedTicket returns false, GetForgeFedTicket will return an
	// arbitrary value.
	GetForgeFedTicket() ForgeFedTicket
	// GetForgeFedTicketDependency returns the value of this property. When
	// IsForgeFedTicketDependency returns false,
	// GetForgeFedTicketDependency will return an arbitrary value.
	GetForgeFedTicketDependency() ForgeFedTicketDependency
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return an arbitrary value.
	GetIRI() *url.URL
	// GetTootEmoji returns the value of this property. When IsTootEmoji
	// returns false, GetTootEmoji will return an arbitrary value.
	GetTootEmoji() TootEmoji
	// GetTootIdentityProof returns the value of this property. When
	// IsTootIdentityProof returns false, GetTootIdentityProof will return
	// an arbitrary value.
	GetTootIdentityProof() TootIdentityProof
	// GetType returns the value in this property as a Type. Returns nil if
	// the value is not an ActivityStreams type, such as an IRI or another
	// value.
	GetType() Type
	// HasAny returns true if any of the different values is set.
	HasAny() bool
	// IsActivityStreamsAccept returns true if this property has a type of
	// "Accept". When true, use the GetActivityStreamsAccept and
	// SetActivityStreamsAccept methods to access and set this property.
	IsActivityStreamsAccept() bool
	// IsActivityStreamsActivity returns true if this property has a type of
	// "Activity". When true, use the GetActivityStreamsActivity and
	// SetActivityStreamsActivity methods to access and set this property.
	IsActivityStreamsActivity() bool
	// IsActivityStreamsAdd returns true if this property has a type of "Add".
	// When true, use the GetActivityStreamsAdd and SetActivityStreamsAdd
	// methods to access and set this property.
	IsActivityStreamsAdd() bool
	// IsActivityStreamsAnnounce returns true if this property has a type of
	// "Announce". When true, use the GetActivityStreamsAnnounce and
	// SetActivityStreamsAnnounce methods to access and set this property.
	IsActivityStreamsAnnounce() bool
	// IsActivityStreamsApplication returns true if this property has a type
	// of "Application". When true, use the GetActivityStreamsApplication
	// and SetActivityStreamsApplication methods to access and set this
	// property.
	IsActivityStreamsApplication() bool
	// IsActivityStreamsArrive returns true if this property has a type of
	// "Arrive". When true, use the GetActivityStreamsArrive and
	// SetActivityStreamsArrive methods to access and set this property.
	IsActivityStreamsArrive() bool
	// IsActivityStreamsArticle returns true if this property has a type of
	// "Article". When true, use the GetActivityStreamsArticle and
	// SetActivityStreamsArticle methods to access and set this property.
	IsActivityStreamsArticle() bool
	// IsActivityStreamsAudio returns true if this property has a type of
	// "Audio". When true, use the GetActivityStreamsAudio and
	// SetActivityStreamsAudio methods to access and set this property.
	IsActivityStreamsAudio() bool
	// IsActivityStreamsBlock returns true if this property has a type of
	// "Block". When true, use the GetActivityStreamsBlock and
	// SetActivityStreamsBlock methods to access and set this property.
	IsActivityStreamsBlock() bool
	// IsActivityStreamsCollection returns true if this property has a type of
	// "Collection". When true, use the GetActivityStreamsCollection and
	// SetActivityStreamsCollection methods to access and set this
	// property.
	IsActivityStreamsCollection() bool
	// IsActivityStreamsCollectionPage returns true if this property has a
	// type of "CollectionPage". When true, use the
	// GetActivityStreamsCollectionPage and
	// SetActivityStreamsCollectionPage methods to access and set this
	// property.
	IsActivityStreamsCollectionPage() bool
	// IsActivityStreamsCreate returns true if this property has a type of
	// "Create". When true, use the GetActivityStreamsCreate and
	// SetActivityStreamsCreate methods to access and set this property.
	IsActivityStreamsCreate() bool
	// IsActivityStreamsDelete returns true if this property has a type of
	// "Delete". When true, use the GetActivityStreamsDelete and
	// SetActivityStreamsDelete methods to access and set this property.
	IsActivityStreamsDelete() bool
	// IsActivityStreamsDislike returns true if this property has a type of
	// "Dislike". When true, use the GetActivityStreamsDislike and
	// SetActivityStreamsDislike methods to access and set this property.
	IsActivityStreamsDislike() bool
	// IsActivityStreamsDocument returns true if this property has a type of
	// "Document". When true, use the GetActivityStreamsDocument and
	// SetActivityStreamsDocument methods to access and set this property.
	IsActivityStreamsDocument() bool
	// IsActivityStreamsEvent returns true if this property has a type of
	// "Event". When true, use the GetActivityStreamsEvent and
	// SetActivityStreamsEvent methods to access and set this property.
	IsActivityStreamsEvent() bool
	// IsActivityStreamsFlag returns true if this property has a type of
	// "Flag". When true, use the GetActivityStreamsFlag and
	// SetActivityStreamsFlag methods to access and set this property.
	IsActivityStreamsFlag() bool
	// IsActivityStreamsFollow returns true if this property has a type of
	// "Follow". When true, use the GetActivityStreamsFollow and
	// SetActivityStreamsFollow methods to access and set this property.
	IsActivityStreamsFollow() bool
	// IsActivityStreamsGroup returns true if this property has a type of
	// "Group". When true, use the GetActivityStreamsGroup and
	// SetActivityStreamsGroup methods to access and set this property.
	IsActivityStreamsGroup() bool
	// IsActivityStreamsIgnore returns true if this property has a type of
	// "Ignore". When true, use the GetActivityStreamsIgnore and
	// SetActivityStreamsIgnore methods to access and set this property.
	IsActivityStreamsIgnore() bool
	// IsActivityStreamsImage returns true if this property has a type of
	// "Image". When true, use the GetActivityStreamsImage and
	// SetActivityStreamsImage methods to access and set this property.
	IsActivityStreamsImage() bool
	// IsActivityStreamsIntransitiveActivity returns true if this property has
	// a type of "IntransitiveActivity". When true, use the
	// GetActivityStreamsIntransitiveActivity and
	// SetActivityStreamsIntransitiveActivity methods to access and set
	// this property.
	IsActivityStreamsIntransitiveActivity() bool
	// IsActivityStreamsInvite returns true if this property has a type of
	// "Invite". When true, use the GetActivityStreamsInvite and
	// SetActivityStreamsInvite methods to access and set this property.
	IsActivityStreamsInvite() bool
	// IsActivityStreamsJoin returns true if this property has a type of
	// "Join". When true, use the GetActivityStreamsJoin and
	// SetActivityStreamsJoin methods to access and set this property.
	IsActivityStreamsJoin() bool
	// IsActivityStreamsLeave returns true if this property has a type of
	// "Leave". When true, use the GetActivityStreamsLeave and
	// SetActivityStreamsLeave methods to access and set this property.
	IsActivityStreamsLeave() bool
	// IsActivityStreamsLike returns true if this property has a type of
	// "Like". When true, use the GetActivityStreamsLike and
	// SetActivityStreamsLike methods to access and set this property.
	IsActivityStreamsLike() bool
	// IsActivityStreamsLink returns true if this property has a type of
	// "Link". When true, use the GetActivityStreamsLink and
	// SetActivityStreamsLink methods to access and set this property.
	IsActivityStreamsLink() bool
	// IsActivityStreamsListen returns true if this property has a type of
	// "Listen". When true, use the GetActivityStreamsListen and
	// SetActivityStreamsListen methods to access and set this property.
	IsActivityStreamsListen() bool
	// IsActivityStreamsMention returns true if this property has a type of
	// "Mention". When true, use the GetActivityStreamsMention and
	// SetActivityStreamsMention methods to access and set this property.
	IsActivityStreamsMention() bool
	// IsActivityStreamsMove returns true if this property has a type of
	// "Move". When true, use the GetActivityStreamsMove and
	// SetActivityStreamsMove methods to access and set this property.
	IsActivityStreamsMove() bool
	// IsActivityStreamsNote returns true if this property has a type of
	// "Note". When true, use the GetActivityStreamsNote and
	// SetActivityStreamsNote methods to access and set this property.
	IsActivityStreamsNote() bool
	// IsActivityStreamsObject returns true if this property has a type of
	// "Object". When true, use the GetActivityStreamsObject and
	// SetActivityStreamsObject methods to access and set this property.
	IsActivityStreamsObject() bool
	// IsActivityStreamsOffer returns true if this property has a type of
	// "Offer". When true, use the GetActivityStreamsOffer and
	// SetActivityStreamsOffer methods to access and set this property.
	IsActivityStreamsOffer() bool
	// IsActivityStreamsOrderedCollection returns true if this property has a
	// type of "OrderedCollection". When true, use the
	// GetActivityStreamsOrderedCollection and
	// SetActivityStreamsOrderedCollection methods to access and set this
	// property.
	IsActivityStreamsOrderedCollection() bool
	// IsActivityStreamsOrderedCollectionPage returns true if this property
	// has a type of "OrderedCollectionPage". When true, use the
	// GetActivityStreamsOrderedCollectionPage and
	// SetActivityStreamsOrderedCollectionPage methods to access and set
	// this property.
	IsActivityStreamsOrderedCollectionPage() bool
	// IsActivityStreamsOrganization returns true if this property has a type
	// of "Organization". When true, use the
	// GetActivityStreamsOrganization and SetActivityStreamsOrganization
	// methods to access and set this property.
	IsActivityStreamsOrganization() bool
	// IsActivityStreamsPage returns true if this property has a type of
	// "Page". When true, use the GetActivityStreamsPage and
	// SetActivityStreamsPage methods to access and set this property.
	IsActivityStreamsPage() bool
	// IsActivityStreamsPerson returns true if this property has a type of
	// "Person". When true, use the GetActivityStreamsPerson and
	// SetActivityStreamsPerson methods to access and set this property.
	IsActivityStreamsPerson() bool
	// IsActivityStreamsPlace returns true if this property has a type of
	// "Place". When true, use the GetActivityStreamsPlace and
	// SetActivityStreamsPlace methods to access and set this property.
	IsActivityStreamsPlace() bool
	// IsActivityStreamsProfile returns true if this property has a type of
	// "Profile". When true, use the GetActivityStreamsProfile and
	// SetActivityStreamsProfile methods to access and set this property.
	IsActivityStreamsProfile() bool
	// IsActivityStreamsQuestion returns true if this property has a type of
	// "Question". When true, use the GetActivityStreamsQuestion and
	// SetActivityStreamsQuestion methods to access and set this property.
	IsActivityStreamsQuestion() bool
	// IsActivityStreamsRead returns true if this property has a type of
	// "Read". When true, use the GetActivityStreamsRead and
	// SetActivityStreamsRead methods to access and set this property.
	IsActivityStreamsRead() bool
	// IsActivityStreamsReject returns true if this property has a type of
	// "Reject". When true, use the GetActivityStreamsReject and
	// SetActivityStreamsReject methods to access and set this property.
	IsActivityStreamsReject() bool
	// IsActivityStreamsRelationship returns true if this property has a type
	// of "Relationship". When true, use the
	// GetActivityStreamsRelationship and SetActivityStreamsRelationship
	// methods to access and set this property.
	IsActivityStreamsRelationship() bool
	// IsActivityStreamsRemove returns true if this property has a type of
	// "Remove". When true, use the GetActivityStreamsRemove and
	// SetActivityStreamsRemove methods to access and set this property.
	IsActivityStreamsRemove() bool
	// IsActivityStreamsService returns true if this property has a type of
	// "Service". When true, use the GetActivityStreamsService and
	// SetActivityStreamsService methods to access and set this property.
	IsActivityStreamsService() bool
	// IsActivityStreamsTentativeAccept returns true if this property has a
	// type of "TentativeAccept". When true, use the
	// GetActivityStreamsTentativeAccept and
	// SetActivityStreamsTentativeAccept methods to access and set this
	// property.
	IsActivityStreamsTentativeAccept() bool
	// IsActivityStreamsTentativeReject returns true if this property has a
	// type of "TentativeReject". When true, use the
	// GetActivityStreamsTentativeReject and
	// SetActivityStreamsTentativeReject methods to access and set this
	// property.
	IsActivityStreamsTentativeReject() bool
	// IsActivityStreamsTombstone returns true if this property has a type of
	// "Tombstone". When true, use the GetActivityStreamsTombstone and
	// SetActivityStreamsTombstone methods to access and set this property.
	IsActivityStreamsTombstone() bool
	// IsActivityStreamsTravel returns true if this property has a type of
	// "Travel". When true, use the GetActivityStreamsTravel and
	// SetActivityStreamsTravel methods to access and set this property.
	IsActivityStreamsTravel() bool
	// IsActivityStreamsUndo returns true if this property has a type of
	// "Undo". When true, use the GetActivityStreamsUndo and
	// SetActivityStreamsUndo methods to access and set this property.
	IsActivityStreamsUndo() bool
	// IsActivityStreamsUpdate returns true if this property has a type of
	// "Update". When true, use the GetActivityStreamsUpdate and
	// SetActivityStreamsUpdate methods to access and set this property.
	IsActivityStreamsUpdate() bool
	// IsActivityStreamsVideo returns true if this property has a type of
	// "Video". When true, use the GetActivityStreamsVideo and
	// SetActivityStreamsVideo methods to access and set this property.
	IsActivityStreamsVideo() bool
	// IsActivityStreamsView returns true if this property has a type of
	// "View". When true, use the GetActivityStreamsView and
	// SetActivityStreamsView methods to access and set this property.
	IsActivityStreamsView() bool
	// IsForgeFedBranch returns true if this property has a type of "Branch".
	// When true, use the GetForgeFedBranch and SetForgeFedBranch methods
	// to access and set this property.
	IsForgeFedBranch() bool
	// IsForgeFedCommit returns true if this property has a type of "Commit".
	// When true, use the GetForgeFedCommit and SetForgeFedCommit methods
	// to access and set this property.
	IsForgeFedCommit() bool
	// IsForgeFedPush returns true if this property has a type of "Push". When
	// true, use the GetForgeFedPush and SetForgeFedPush methods to access
	// and set this property.
	IsForgeFedPush() bool
	// IsForgeFedRepository returns true if this property has a type of
	// "Repository". When true, use the GetForgeFedRepository and
	// SetForgeFedRepository methods to access and set this property.
	IsForgeFedRepository() bool
	// IsForgeFedTicket returns true if this property has a type of "Ticket".
	// When true, use the GetForgeFedTicket and SetForgeFedTicket methods
	// to access and set this property.
	IsForgeFedTicket() bool
	// IsForgeFedTicketDependency returns true if this property has a type of
	// "TicketDependency". When true, use the GetForgeFedTicketDependency
	// and SetForgeFedTicketDependency methods to access and set this
	// property.
	IsForgeFedTicketDependency() bool
	// IsIRI returns true if this property is an IRI. When true, use GetIRI
	// and SetIRI to access and set this property
	IsIRI() bool
	// IsTootEmoji returns true if this property has a type of "Emoji". When
	// true, use the GetTootEmoji and SetTootEmoji methods to access and
	// set this property.
	IsTootEmoji() bool
	// IsTootIdentityProof returns true if this property has a type of
	// "IdentityProof". When true, use the GetTootIdentityProof and
	// SetTootIdentityProof methods to access and set this property.
	IsTootIdentityProof() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsSubjectProperty) bool
	// Name returns the name of this property: "subject".
	Name() string
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// SetActivityStreamsAccept sets the value of this property. Calling
	// IsActivityStreamsAccept afterwards returns true.
	SetActivityStreamsAccept(v ActivityStreamsAccept)
	// SetActivityStreamsActivity sets the value of this property. Calling
	// IsActivityStreamsActivity afterwards returns true.
	SetActivityStreamsActivity(v ActivityStreamsActivity)
	// SetActivityStreamsAdd sets the value of this property. Calling
	// IsActivityStreamsAdd afterwards returns true.
	SetActivityStreamsAdd(v ActivityStreamsAdd)
	// SetActivityStreamsAnnounce sets the value of this property. Calling
	// IsActivityStreamsAnnounce afterwards returns true.
	SetActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// SetActivityStreamsApplication sets the value of this property. Calling
	// IsActivityStreamsApplication afterwards returns true.
	SetActivityStreamsApplication(v ActivityStreamsApplication)
	// SetActivityStreamsArrive sets the value of this property. Calling
	// IsActivityStreamsArrive afterwards returns true.
	SetActivityStreamsArrive(v ActivityStreamsArrive)
	// SetActivityStreamsArticle sets the value of this property. Calling
	// IsActivityStreamsArticle afterwards returns true.
	SetActivityStreamsArticle(v ActivityStreamsArticle)
	// SetActivityStreamsAudio sets the value of this property. Calling
	// IsActivityStreamsAudio afterwards returns true.
	SetActivityStreamsAudio(v ActivityStreamsAudio)
	// SetActivityStreamsBlock sets the value of this property. Calling
	// IsActivityStreamsBlock afterwards returns true.
	SetActivityStreamsBlock(v ActivityStreamsBlock)
	// SetActivityStreamsCollection sets the value of this property. Calling
	// IsActivityStreamsCollection afterwards returns true.
	SetActivityStreamsCollection(v ActivityStreamsCollection)
	// SetActivityStreamsCollectionPage sets the value of this property.
	// Calling IsActivityStreamsCollectionPage afterwards returns true.
	SetActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// SetActivityStreamsCreate sets the value of this property. Calling
	// IsActivityStreamsCreate afterwards returns true.
	SetActivityStreamsCreate(v ActivityStreamsCreate)
	// SetActivityStreamsDelete sets the value of this property. Calling
	// IsActivityStreamsDelete afterwards returns true.
	SetActivityStreamsDelete(v ActivityStreamsDelete)
	// SetActivityStreamsDislike sets the value of this property. Calling
	// IsActivityStreamsDislike afterwards returns true.
	SetActivityStreamsDislike(v ActivityStreamsDislike)
	// SetActivityStreamsDocument sets the value of this property. Calling
	// IsActivityStreamsDocument afterwards returns true.
	SetActivityStreamsDocument(v ActivityStreamsDocument)
	// SetActivityStreamsEvent sets the value of this property. Calling
	// IsActivityStreamsEvent afterwards returns true.
	SetActivityStreamsEvent(v ActivityStreamsEvent)
	// SetActivityStreamsFlag sets the value of this property. Calling
	// IsActivityStreamsFlag afterwards returns true.
	SetActivityStreamsFlag(v ActivityStreamsFlag)
	// SetActivityStreamsFollow sets the value of this property. Calling
	// IsActivityStreamsFollow afterwards returns true.
	SetActivityStreamsFollow(v ActivityStreamsFollow)
	// SetActivityStreamsGroup sets the value of this property. Calling
	// IsActivityStreamsGroup afterwards returns true.
	SetActivityStreamsGroup(v ActivityStreamsGroup)
	// SetActivityStreamsIgnore sets the value of this property. Calling
	// IsActivityStreamsIgnore afterwards returns true.
	SetActivityStreamsIgnore(v ActivityStreamsIgnore)
	// SetActivityStreamsImage sets the value of this property. Calling
	// IsActivityStreamsImage afterwards returns true.
	SetActivityStreamsImage(v ActivityStreamsImage)
	// SetActivityStreamsIntransitiveActivity sets the value of this property.
	// Calling IsActivityStreamsIntransitiveActivity afterwards returns
	// true.
	SetActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// SetActivityStreamsInvite sets the value of this property. Calling
	// IsActivityStreamsInvite afterwards returns true.
	SetActivityStreamsInvite(v ActivityStreamsInvite)
	// SetActivityStreamsJoin sets the value of this property. Calling
	// IsActivityStreamsJoin afterwards returns true.
	SetActivityStreamsJoin(v ActivityStreamsJoin)
	// SetActivityStreamsLeave sets the value of this property. Calling
	// IsActivityStreamsLeave afterwards returns true.
	SetActivityStreamsLeave(v ActivityStreamsLeave)
	// SetActivityStreamsLike sets the value of this property. Calling
	// IsActivityStreamsLike afterwards returns true.
	SetActivityStreamsLike(v ActivityStreamsLike)
	// SetActivityStreamsLink sets the value of this property. Calling
	// IsActivityStreamsLink afterwards returns true.
	SetActivityStreamsLink(v ActivityStreamsLink)
	// SetActivityStreamsListen sets the value of this property. Calling
	// IsActivityStreamsListen afterwards returns true.
	SetActivityStreamsListen(v ActivityStreamsListen)
	// SetActivityStreamsMention sets the value of this property. Calling
	// IsActivityStreamsMention afterwards returns true.
	SetActivityStreamsMention(v ActivityStreamsMention)
	// SetActivityStreamsMove sets the value of this property. Calling
	// IsActivityStreamsMove afterwards returns true.
	SetActivityStreamsMove(v ActivityStreamsMove)
	// SetActivityStreamsNote sets the value of this property. Calling
	// IsActivityStreamsNote afterwards returns true.
	SetActivityStreamsNote(v ActivityStreamsNote)
	// SetActivityStreamsObject sets the value of this property. Calling
	// IsActivityStreamsObject afterwards returns true.
	SetActivityStreamsObject(v ActivityStreamsObject)
	// SetActivityStreamsOffer sets the value of this property. Calling
	// IsActivityStreamsOffer afterwards returns true.
	SetActivityStreamsOffer(v ActivityStreamsOffer)
	// SetActivityStreamsOrderedCollection sets the value of this property.
	// Calling IsActivityStreamsOrderedCollection afterwards returns true.
	SetActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// SetActivityStreamsOrderedCollectionPage sets the value of this
	// property. Calling IsActivityStreamsOrderedCollectionPage afterwards
	// returns true.
	SetActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// SetActivityStreamsOrganization sets the value of this property. Calling
	// IsActivityStreamsOrganization afterwards returns true.
	SetActivityStreamsOrganization(v ActivityStreamsOrganization)
	// SetActivityStreamsPage sets the value of this property. Calling
	// IsActivityStreamsPage afterwards returns true.
	SetActivityStreamsPage(v ActivityStreamsPage)
	// SetActivityStreamsPerson sets the value of this property. Calling
	// IsActivityStreamsPerson afterwards returns true.
	SetActivityStreamsPerson(v ActivityStreamsPerson)
	// SetActivityStreamsPlace sets the value of this property. Calling
	// IsActivityStreamsPlace afterwards returns true.
	SetActivityStreamsPlace(v ActivityStreamsPlace)
	// SetActivityStreamsProfile sets the value of this property. Calling
	// IsActivityStreamsProfile afterwards returns true.
	SetActivityStreamsProfile(v ActivityStreamsProfile)
	// SetActivityStreamsQuestion sets the value of this property. Calling
	// IsActivityStreamsQuestion afterwards returns true.
	SetActivityStreamsQuestion(v ActivityStreamsQuestion)
	// SetActivityStreamsRead sets the value of this property. Calling
	// IsActivityStreamsRead afterwards returns true.
	SetActivityStreamsRead(v ActivityStreamsRead)
	// SetActivityStreamsReject sets the value of this property. Calling
	// IsActivityStreamsReject afterwards returns true.
	SetActivityStreamsReject(v ActivityStreamsReject)
	// SetActivityStreamsRelationship sets the value of this property. Calling
	// IsActivityStreamsRelationship afterwards returns true.
	SetActivityStreamsRelationship(v ActivityStreamsRelationship)
	// SetActivityStreamsRemove sets the value of this property. Calling
	// IsActivityStreamsRemove afterwards returns true.
	SetActivityStreamsRemove(v ActivityStreamsRemove)
	// SetActivityStreamsService sets the value of this property. Calling
	// IsActivityStreamsService afterwards returns true.
	SetActivityStreamsService(v ActivityStreamsService)
	// SetActivityStreamsTentativeAccept sets the value of this property.
	// Calling IsActivityStreamsTentativeAccept afterwards returns true.
	SetActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// SetActivityStreamsTentativeReject sets the value of this property.
	// Calling IsActivityStreamsTentativeReject afterwards returns true.
	SetActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// SetActivityStreamsTombstone sets the value of this property. Calling
	// IsActivityStreamsTombstone afterwards returns true.
	SetActivityStreamsTombstone(v ActivityStreamsTombstone)
	// SetActivityStreamsTravel sets the value of this property. Calling
	// IsActivityStreamsTravel afterwards returns true.
	SetActivityStreamsTravel(v ActivityStreamsTravel)
	// SetActivityStreamsUndo sets the value of this property. Calling
	// IsActivityStreamsUndo afterwards returns true.
	SetActivityStreamsUndo(v ActivityStreamsUndo)
	// SetActivityStreamsUpdate sets the value of this property. Calling
	// IsActivityStreamsUpdate afterwards returns true.
	SetActivityStreamsUpdate(v ActivityStreamsUpdate)
	// SetActivityStreamsVideo sets the value of this property. Calling
	// IsActivityStreamsVideo afterwards returns true.
	SetActivityStreamsVideo(v ActivityStreamsVideo)
	// SetActivityStreamsView sets the value of this property. Calling
	// IsActivityStreamsView afterwards returns true.
	SetActivityStreamsView(v ActivityStreamsView)
	// SetForgeFedBranch sets the value of this property. Calling
	// IsForgeFedBranch afterwards returns true.
	SetForgeFedBranch(v ForgeFedBranch)
	// SetForgeFedCommit sets the value of this property. Calling
	// IsForgeFedCommit afterwards returns true.
	SetForgeFedCommit(v ForgeFedCommit)
	// SetForgeFedPush sets the value of this property. Calling IsForgeFedPush
	// afterwards returns true.
	SetForgeFedPush(v ForgeFedPush)
	// SetForgeFedRepository sets the value of this property. Calling
	// IsForgeFedRepository afterwards returns true.
	SetForgeFedRepository(v ForgeFedRepository)
	// SetForgeFedTicket sets the value of this property. Calling
	// IsForgeFedTicket afterwards returns true.
	SetForgeFedTicket(v ForgeFedTicket)
	// SetForgeFedTicketDependency sets the value of this property. Calling
	// IsForgeFedTicketDependency afterwards returns true.
	SetForgeFedTicketDependency(v ForgeFedTicketDependency)
	// SetIRI sets the value of this property. Calling IsIRI afterwards
	// returns true.
	SetIRI(v *url.URL)
	// SetTootEmoji sets the value of this property. Calling IsTootEmoji
	// afterwards returns true.
	SetTootEmoji(v TootEmoji)
	// SetTootIdentityProof sets the value of this property. Calling
	// IsTootIdentityProof afterwards returns true.
	SetTootIdentityProof(v TootIdentityProof)
	// SetType attempts to set the property for the arbitrary type. Returns an
	// error if it is not a valid type to set on this property.
	SetType(t Type) error
}

On a Relationship object, the subject property identifies one of the connected individuals. For instance, for a Relationship object describing "John is related to Sally", subject would refer to John.

Example 139 (https://www.w3.org/TR/activitystreams-vocabulary/#ex22a-jsonld):

{
  "object": {
    "name": "John",
    "type": "Person"
  },
  "relationship": "http://purl.org/vocab/relationship/acquaintanceOf",
  "subject": {
    "name": "Sally",
    "type": "Person"
  },
  "summary": "Sally is an acquaintance of John's",
  "type": "Relationship"
}

type ActivityStreamsSummaryProperty

type ActivityStreamsSummaryProperty interface {
	// AppendIRI appends an IRI value to the back of a list of the property
	// "summary"
	AppendIRI(v *url.URL)
	// AppendRDFLangString appends a langString value to the back of a list of
	// the property "summary". Invalidates iterators that are traversing
	// using Prev.
	AppendRDFLangString(v map[string]string)
	// AppendXMLSchemaString appends a string value to the back of a list of
	// the property "summary". Invalidates iterators that are traversing
	// using Prev.
	AppendXMLSchemaString(v string)
	// At returns the property value for the specified index. Panics if the
	// index is out of bounds.
	At(index int) ActivityStreamsSummaryPropertyIterator
	// Begin returns the first iterator, or nil if empty. Can be used with the
	// iterator's Next method and this property's End method to iterate
	// from front to back through all values.
	Begin() ActivityStreamsSummaryPropertyIterator
	// Empty returns returns true if there are no elements.
	Empty() bool
	// End returns beyond-the-last iterator, which is nil. Can be used with
	// the iterator's Next method and this property's Begin method to
	// iterate from front to back through all values.
	End() ActivityStreamsSummaryPropertyIterator
	// Insert inserts an IRI value at the specified index for a property
	// "summary". Existing elements at that index and higher are shifted
	// back once. Invalidates all iterators.
	InsertIRI(idx int, v *url.URL)
	// InsertRDFLangString inserts a langString value at the specified index
	// for a property "summary". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertRDFLangString(idx int, v map[string]string)
	// InsertXMLSchemaString inserts a string value at the specified index for
	// a property "summary". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertXMLSchemaString(idx int, v string)
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API method specifically needed only for alternate
	// implementations for go-fed. Applications should not use this
	// method. Panics if the index is out of bounds.
	KindIndex(idx int) int
	// Len returns the number of values that exist for the "summary" property.
	Len() (length int)
	// Less computes whether another property is less than this one. Mixing
	// types results in a consistent but arbitrary ordering
	Less(i, j int) bool
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsSummaryProperty) bool
	// Name returns the name of this property ("summary") with any alias.
	Name() string
	// PrependIRI prepends an IRI value to the front of a list of the property
	// "summary".
	PrependIRI(v *url.URL)
	// PrependRDFLangString prepends a langString value to the front of a list
	// of the property "summary". Invalidates all iterators.
	PrependRDFLangString(v map[string]string)
	// PrependXMLSchemaString prepends a string value to the front of a list
	// of the property "summary". Invalidates all iterators.
	PrependXMLSchemaString(v string)
	// Remove deletes an element at the specified index from a list of the
	// property "summary", regardless of its type. Panics if the index is
	// out of bounds. Invalidates all iterators.
	Remove(idx int)
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// SetIRI sets an IRI value to be at the specified index for the property
	// "summary". Panics if the index is out of bounds.
	SetIRI(idx int, v *url.URL)
	// SetRDFLangString sets a langString value to be at the specified index
	// for the property "summary". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetRDFLangString(idx int, v map[string]string)
	// SetXMLSchemaString sets a string value to be at the specified index for
	// the property "summary". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetXMLSchemaString(idx int, v string)
	// Swap swaps the location of values at two indices for the "summary"
	// property.
	Swap(i, j int)
}

A natural language summarization of the object encoded as HTML. Multiple language tagged summaries MAY be provided.

Example 133 (https://www.w3.org/TR/activitystreams-vocabulary/#ex152-jsonld):

{
  "name": "Cane Sugar Processing",
  "summary": "A simple \u003cem\u003enote\u003c/em\u003e",
  "type": "Note"
}

Example 134 (https://www.w3.org/TR/activitystreams-vocabulary/#ex153-jsonld):

{
  "name": "Cane Sugar Processing",
  "summaryMap": {
    "en": "A simple \u003cem\u003enote\u003c/em\u003e",
    "es": "Una \u003cem\u003enota\u003c/em\u003e sencilla",
    "zh-hans": "一段\u003cem\u003e简单的\u003c/em\u003e笔记"
  },
  "type": "Note"
}

type ActivityStreamsSummaryPropertyIterator

type ActivityStreamsSummaryPropertyIterator interface {
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return an arbitrary value.
	GetIRI() *url.URL
	// GetLanguage returns the value for the specified BCP47 language code, or
	// an empty string if it is either not a language map or no value is
	// present.
	GetLanguage(bcp47 string) string
	// GetRDFLangString returns the value of this property. When
	// IsRDFLangString returns false, GetRDFLangString will return an
	// arbitrary value.
	GetRDFLangString() map[string]string
	// GetXMLSchemaString returns the value of this property. When
	// IsXMLSchemaString returns false, GetXMLSchemaString will return an
	// arbitrary value.
	GetXMLSchemaString() string
	// HasAny returns true if any of the values are set, except for the
	// natural language map. When true, the specific has, getter, and
	// setter methods may be used to determine what kind of value there is
	// to access and set this property. To determine if the property was
	// set as a natural language map, use the IsRDFLangString method
	// instead.
	HasAny() bool
	// HasLanguage returns true if the natural language map has an entry for
	// the specified BCP47 language code.
	HasLanguage(bcp47 string) bool
	// IsIRI returns true if this property is an IRI. When true, use GetIRI
	// and SetIRI to access and set this property
	IsIRI() bool
	// IsRDFLangString returns true if this property has a type of
	// "langString". When true, use the GetRDFLangString and
	// SetRDFLangString methods to access and set this property.. To
	// determine if the property was set as a natural language map, use
	// the IsRDFLangString method instead.
	IsRDFLangString() bool
	// IsXMLSchemaString returns true if this property has a type of "string".
	// When true, use the GetXMLSchemaString and SetXMLSchemaString
	// methods to access and set this property.. To determine if the
	// property was set as a natural language map, use the IsRDFLangString
	// method instead.
	IsXMLSchemaString() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsSummaryPropertyIterator) bool
	// Name returns the name of this property: "ActivityStreamsSummary".
	Name() string
	// Next returns the next iterator, or nil if there is no next iterator.
	Next() ActivityStreamsSummaryPropertyIterator
	// Prev returns the previous iterator, or nil if there is no previous
	// iterator.
	Prev() ActivityStreamsSummaryPropertyIterator
	// SetIRI sets the value of this property. Calling IsIRI afterwards
	// returns true.
	SetIRI(v *url.URL)
	// SetLanguage sets the value for the specified BCP47 language code.
	SetLanguage(bcp47, value string)
	// SetRDFLangString sets the value of this property and clears the natural
	// language map. Calling IsRDFLangString afterwards will return true.
	// Calling IsRDFLangString afterwards returns false.
	SetRDFLangString(v map[string]string)
	// SetXMLSchemaString sets the value of this property and clears the
	// natural language map. Calling IsXMLSchemaString afterwards will
	// return true. Calling IsRDFLangString afterwards returns false.
	SetXMLSchemaString(v string)
}

ActivityStreamsSummaryPropertyIterator represents a single value for the "summary" property.

type ActivityStreamsTagProperty

type ActivityStreamsTagProperty interface {
	// AppendActivityStreamsAccept appends a Accept value to the back of a
	// list of the property "tag". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsAccept(v ActivityStreamsAccept)
	// AppendActivityStreamsActivity appends a Activity value to the back of a
	// list of the property "tag". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsActivity(v ActivityStreamsActivity)
	// AppendActivityStreamsAdd appends a Add value to the back of a list of
	// the property "tag". Invalidates iterators that are traversing using
	// Prev.
	AppendActivityStreamsAdd(v ActivityStreamsAdd)
	// AppendActivityStreamsAnnounce appends a Announce value to the back of a
	// list of the property "tag". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// AppendActivityStreamsApplication appends a Application value to the
	// back of a list of the property "tag". Invalidates iterators that
	// are traversing using Prev.
	AppendActivityStreamsApplication(v ActivityStreamsApplication)
	// AppendActivityStreamsArrive appends a Arrive value to the back of a
	// list of the property "tag". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsArrive(v ActivityStreamsArrive)
	// AppendActivityStreamsArticle appends a Article value to the back of a
	// list of the property "tag". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsArticle(v ActivityStreamsArticle)
	// AppendActivityStreamsAudio appends a Audio value to the back of a list
	// of the property "tag". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsAudio(v ActivityStreamsAudio)
	// AppendActivityStreamsBlock appends a Block value to the back of a list
	// of the property "tag". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsBlock(v ActivityStreamsBlock)
	// AppendActivityStreamsCollection appends a Collection value to the back
	// of a list of the property "tag". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsCollection(v ActivityStreamsCollection)
	// AppendActivityStreamsCollectionPage appends a CollectionPage value to
	// the back of a list of the property "tag". Invalidates iterators
	// that are traversing using Prev.
	AppendActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// AppendActivityStreamsCreate appends a Create value to the back of a
	// list of the property "tag". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsCreate(v ActivityStreamsCreate)
	// AppendActivityStreamsDelete appends a Delete value to the back of a
	// list of the property "tag". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDelete(v ActivityStreamsDelete)
	// AppendActivityStreamsDislike appends a Dislike value to the back of a
	// list of the property "tag". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDislike(v ActivityStreamsDislike)
	// AppendActivityStreamsDocument appends a Document value to the back of a
	// list of the property "tag". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDocument(v ActivityStreamsDocument)
	// AppendActivityStreamsEvent appends a Event value to the back of a list
	// of the property "tag". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsEvent(v ActivityStreamsEvent)
	// AppendActivityStreamsFlag appends a Flag value to the back of a list of
	// the property "tag". Invalidates iterators that are traversing using
	// Prev.
	AppendActivityStreamsFlag(v ActivityStreamsFlag)
	// AppendActivityStreamsFollow appends a Follow value to the back of a
	// list of the property "tag". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsFollow(v ActivityStreamsFollow)
	// AppendActivityStreamsGroup appends a Group value to the back of a list
	// of the property "tag". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsGroup(v ActivityStreamsGroup)
	// AppendActivityStreamsIgnore appends a Ignore value to the back of a
	// list of the property "tag". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsIgnore(v ActivityStreamsIgnore)
	// AppendActivityStreamsImage appends a Image value to the back of a list
	// of the property "tag". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsImage(v ActivityStreamsImage)
	// AppendActivityStreamsIntransitiveActivity appends a
	// IntransitiveActivity value to the back of a list of the property
	// "tag". Invalidates iterators that are traversing using Prev.
	AppendActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// AppendActivityStreamsInvite appends a Invite value to the back of a
	// list of the property "tag". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsInvite(v ActivityStreamsInvite)
	// AppendActivityStreamsJoin appends a Join value to the back of a list of
	// the property "tag". Invalidates iterators that are traversing using
	// Prev.
	AppendActivityStreamsJoin(v ActivityStreamsJoin)
	// AppendActivityStreamsLeave appends a Leave value to the back of a list
	// of the property "tag". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsLeave(v ActivityStreamsLeave)
	// AppendActivityStreamsLike appends a Like value to the back of a list of
	// the property "tag". Invalidates iterators that are traversing using
	// Prev.
	AppendActivityStreamsLike(v ActivityStreamsLike)
	// AppendActivityStreamsLink appends a Link value to the back of a list of
	// the property "tag". Invalidates iterators that are traversing using
	// Prev.
	AppendActivityStreamsLink(v ActivityStreamsLink)
	// AppendActivityStreamsListen appends a Listen value to the back of a
	// list of the property "tag". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsListen(v ActivityStreamsListen)
	// AppendActivityStreamsMention appends a Mention value to the back of a
	// list of the property "tag". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsMention(v ActivityStreamsMention)
	// AppendActivityStreamsMove appends a Move value to the back of a list of
	// the property "tag". Invalidates iterators that are traversing using
	// Prev.
	AppendActivityStreamsMove(v ActivityStreamsMove)
	// AppendActivityStreamsNote appends a Note value to the back of a list of
	// the property "tag". Invalidates iterators that are traversing using
	// Prev.
	AppendActivityStreamsNote(v ActivityStreamsNote)
	// AppendActivityStreamsObject appends a Object value to the back of a
	// list of the property "tag". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsObject(v ActivityStreamsObject)
	// AppendActivityStreamsOffer appends a Offer value to the back of a list
	// of the property "tag". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsOffer(v ActivityStreamsOffer)
	// AppendActivityStreamsOrderedCollection appends a OrderedCollection
	// value to the back of a list of the property "tag". Invalidates
	// iterators that are traversing using Prev.
	AppendActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// AppendActivityStreamsOrderedCollectionPage appends a
	// OrderedCollectionPage value to the back of a list of the property
	// "tag". Invalidates iterators that are traversing using Prev.
	AppendActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// AppendActivityStreamsOrganization appends a Organization value to the
	// back of a list of the property "tag". Invalidates iterators that
	// are traversing using Prev.
	AppendActivityStreamsOrganization(v ActivityStreamsOrganization)
	// AppendActivityStreamsPage appends a Page value to the back of a list of
	// the property "tag". Invalidates iterators that are traversing using
	// Prev.
	AppendActivityStreamsPage(v ActivityStreamsPage)
	// AppendActivityStreamsPerson appends a Person value to the back of a
	// list of the property "tag". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsPerson(v ActivityStreamsPerson)
	// AppendActivityStreamsPlace appends a Place value to the back of a list
	// of the property "tag". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsPlace(v ActivityStreamsPlace)
	// AppendActivityStreamsProfile appends a Profile value to the back of a
	// list of the property "tag". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsProfile(v ActivityStreamsProfile)
	// AppendActivityStreamsQuestion appends a Question value to the back of a
	// list of the property "tag". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsQuestion(v ActivityStreamsQuestion)
	// AppendActivityStreamsRead appends a Read value to the back of a list of
	// the property "tag". Invalidates iterators that are traversing using
	// Prev.
	AppendActivityStreamsRead(v ActivityStreamsRead)
	// AppendActivityStreamsReject appends a Reject value to the back of a
	// list of the property "tag". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsReject(v ActivityStreamsReject)
	// AppendActivityStreamsRelationship appends a Relationship value to the
	// back of a list of the property "tag". Invalidates iterators that
	// are traversing using Prev.
	AppendActivityStreamsRelationship(v ActivityStreamsRelationship)
	// AppendActivityStreamsRemove appends a Remove value to the back of a
	// list of the property "tag". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsRemove(v ActivityStreamsRemove)
	// AppendActivityStreamsService appends a Service value to the back of a
	// list of the property "tag". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsService(v ActivityStreamsService)
	// AppendActivityStreamsTentativeAccept appends a TentativeAccept value to
	// the back of a list of the property "tag". Invalidates iterators
	// that are traversing using Prev.
	AppendActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// AppendActivityStreamsTentativeReject appends a TentativeReject value to
	// the back of a list of the property "tag". Invalidates iterators
	// that are traversing using Prev.
	AppendActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// AppendActivityStreamsTombstone appends a Tombstone value to the back of
	// a list of the property "tag". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsTombstone(v ActivityStreamsTombstone)
	// AppendActivityStreamsTravel appends a Travel value to the back of a
	// list of the property "tag". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsTravel(v ActivityStreamsTravel)
	// AppendActivityStreamsUndo appends a Undo value to the back of a list of
	// the property "tag". Invalidates iterators that are traversing using
	// Prev.
	AppendActivityStreamsUndo(v ActivityStreamsUndo)
	// AppendActivityStreamsUpdate appends a Update value to the back of a
	// list of the property "tag". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsUpdate(v ActivityStreamsUpdate)
	// AppendActivityStreamsVideo appends a Video value to the back of a list
	// of the property "tag". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsVideo(v ActivityStreamsVideo)
	// AppendActivityStreamsView appends a View value to the back of a list of
	// the property "tag". Invalidates iterators that are traversing using
	// Prev.
	AppendActivityStreamsView(v ActivityStreamsView)
	// AppendForgeFedBranch appends a Branch value to the back of a list of
	// the property "tag". Invalidates iterators that are traversing using
	// Prev.
	AppendForgeFedBranch(v ForgeFedBranch)
	// AppendForgeFedCommit appends a Commit value to the back of a list of
	// the property "tag". Invalidates iterators that are traversing using
	// Prev.
	AppendForgeFedCommit(v ForgeFedCommit)
	// AppendForgeFedPush appends a Push value to the back of a list of the
	// property "tag". Invalidates iterators that are traversing using
	// Prev.
	AppendForgeFedPush(v ForgeFedPush)
	// AppendForgeFedRepository appends a Repository value to the back of a
	// list of the property "tag". Invalidates iterators that are
	// traversing using Prev.
	AppendForgeFedRepository(v ForgeFedRepository)
	// AppendForgeFedTicket appends a Ticket value to the back of a list of
	// the property "tag". Invalidates iterators that are traversing using
	// Prev.
	AppendForgeFedTicket(v ForgeFedTicket)
	// AppendForgeFedTicketDependency appends a TicketDependency value to the
	// back of a list of the property "tag". Invalidates iterators that
	// are traversing using Prev.
	AppendForgeFedTicketDependency(v ForgeFedTicketDependency)
	// AppendIRI appends an IRI value to the back of a list of the property
	// "tag"
	AppendIRI(v *url.URL)
	// AppendTootEmoji appends a Emoji value to the back of a list of the
	// property "tag". Invalidates iterators that are traversing using
	// Prev.
	AppendTootEmoji(v TootEmoji)
	// AppendTootIdentityProof appends a IdentityProof value to the back of a
	// list of the property "tag". Invalidates iterators that are
	// traversing using Prev.
	AppendTootIdentityProof(v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "tag". Invalidates iterators that are traversing using
	// Prev. Returns an error if the type is not a valid one to set for
	// this property.
	AppendType(t Type) error
	// At returns the property value for the specified index. Panics if the
	// index is out of bounds.
	At(index int) ActivityStreamsTagPropertyIterator
	// Begin returns the first iterator, or nil if empty. Can be used with the
	// iterator's Next method and this property's End method to iterate
	// from front to back through all values.
	Begin() ActivityStreamsTagPropertyIterator
	// Empty returns returns true if there are no elements.
	Empty() bool
	// End returns beyond-the-last iterator, which is nil. Can be used with
	// the iterator's Next method and this property's Begin method to
	// iterate from front to back through all values.
	End() ActivityStreamsTagPropertyIterator
	// InsertActivityStreamsAccept inserts a Accept value at the specified
	// index for a property "tag". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAccept(idx int, v ActivityStreamsAccept)
	// InsertActivityStreamsActivity inserts a Activity value at the specified
	// index for a property "tag". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsActivity(idx int, v ActivityStreamsActivity)
	// InsertActivityStreamsAdd inserts a Add value at the specified index for
	// a property "tag". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertActivityStreamsAdd(idx int, v ActivityStreamsAdd)
	// InsertActivityStreamsAnnounce inserts a Announce value at the specified
	// index for a property "tag". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAnnounce(idx int, v ActivityStreamsAnnounce)
	// InsertActivityStreamsApplication inserts a Application value at the
	// specified index for a property "tag". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsApplication(idx int, v ActivityStreamsApplication)
	// InsertActivityStreamsArrive inserts a Arrive value at the specified
	// index for a property "tag". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsArrive(idx int, v ActivityStreamsArrive)
	// InsertActivityStreamsArticle inserts a Article value at the specified
	// index for a property "tag". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsArticle(idx int, v ActivityStreamsArticle)
	// InsertActivityStreamsAudio inserts a Audio value at the specified index
	// for a property "tag". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAudio(idx int, v ActivityStreamsAudio)
	// InsertActivityStreamsBlock inserts a Block value at the specified index
	// for a property "tag". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsBlock(idx int, v ActivityStreamsBlock)
	// InsertActivityStreamsCollection inserts a Collection value at the
	// specified index for a property "tag". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsCollection(idx int, v ActivityStreamsCollection)
	// InsertActivityStreamsCollectionPage inserts a CollectionPage value at
	// the specified index for a property "tag". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsCollectionPage(idx int, v ActivityStreamsCollectionPage)
	// InsertActivityStreamsCreate inserts a Create value at the specified
	// index for a property "tag". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsCreate(idx int, v ActivityStreamsCreate)
	// InsertActivityStreamsDelete inserts a Delete value at the specified
	// index for a property "tag". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDelete(idx int, v ActivityStreamsDelete)
	// InsertActivityStreamsDislike inserts a Dislike value at the specified
	// index for a property "tag". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDislike(idx int, v ActivityStreamsDislike)
	// InsertActivityStreamsDocument inserts a Document value at the specified
	// index for a property "tag". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDocument(idx int, v ActivityStreamsDocument)
	// InsertActivityStreamsEvent inserts a Event value at the specified index
	// for a property "tag". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsEvent(idx int, v ActivityStreamsEvent)
	// InsertActivityStreamsFlag inserts a Flag value at the specified index
	// for a property "tag". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsFlag(idx int, v ActivityStreamsFlag)
	// InsertActivityStreamsFollow inserts a Follow value at the specified
	// index for a property "tag". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsFollow(idx int, v ActivityStreamsFollow)
	// InsertActivityStreamsGroup inserts a Group value at the specified index
	// for a property "tag". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsGroup(idx int, v ActivityStreamsGroup)
	// InsertActivityStreamsIgnore inserts a Ignore value at the specified
	// index for a property "tag". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsIgnore(idx int, v ActivityStreamsIgnore)
	// InsertActivityStreamsImage inserts a Image value at the specified index
	// for a property "tag". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsImage(idx int, v ActivityStreamsImage)
	// InsertActivityStreamsIntransitiveActivity inserts a
	// IntransitiveActivity value at the specified index for a property
	// "tag". Existing elements at that index and higher are shifted back
	// once. Invalidates all iterators.
	InsertActivityStreamsIntransitiveActivity(idx int, v ActivityStreamsIntransitiveActivity)
	// InsertActivityStreamsInvite inserts a Invite value at the specified
	// index for a property "tag". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsInvite(idx int, v ActivityStreamsInvite)
	// InsertActivityStreamsJoin inserts a Join value at the specified index
	// for a property "tag". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsJoin(idx int, v ActivityStreamsJoin)
	// InsertActivityStreamsLeave inserts a Leave value at the specified index
	// for a property "tag". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsLeave(idx int, v ActivityStreamsLeave)
	// InsertActivityStreamsLike inserts a Like value at the specified index
	// for a property "tag". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsLike(idx int, v ActivityStreamsLike)
	// InsertActivityStreamsLink inserts a Link value at the specified index
	// for a property "tag". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsLink(idx int, v ActivityStreamsLink)
	// InsertActivityStreamsListen inserts a Listen value at the specified
	// index for a property "tag". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsListen(idx int, v ActivityStreamsListen)
	// InsertActivityStreamsMention inserts a Mention value at the specified
	// index for a property "tag". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsMention(idx int, v ActivityStreamsMention)
	// InsertActivityStreamsMove inserts a Move value at the specified index
	// for a property "tag". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsMove(idx int, v ActivityStreamsMove)
	// InsertActivityStreamsNote inserts a Note value at the specified index
	// for a property "tag". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsNote(idx int, v ActivityStreamsNote)
	// InsertActivityStreamsObject inserts a Object value at the specified
	// index for a property "tag". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsObject(idx int, v ActivityStreamsObject)
	// InsertActivityStreamsOffer inserts a Offer value at the specified index
	// for a property "tag". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsOffer(idx int, v ActivityStreamsOffer)
	// InsertActivityStreamsOrderedCollection inserts a OrderedCollection
	// value at the specified index for a property "tag". Existing
	// elements at that index and higher are shifted back once.
	// Invalidates all iterators.
	InsertActivityStreamsOrderedCollection(idx int, v ActivityStreamsOrderedCollection)
	// InsertActivityStreamsOrderedCollectionPage inserts a
	// OrderedCollectionPage value at the specified index for a property
	// "tag". Existing elements at that index and higher are shifted back
	// once. Invalidates all iterators.
	InsertActivityStreamsOrderedCollectionPage(idx int, v ActivityStreamsOrderedCollectionPage)
	// InsertActivityStreamsOrganization inserts a Organization value at the
	// specified index for a property "tag". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsOrganization(idx int, v ActivityStreamsOrganization)
	// InsertActivityStreamsPage inserts a Page value at the specified index
	// for a property "tag". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsPage(idx int, v ActivityStreamsPage)
	// InsertActivityStreamsPerson inserts a Person value at the specified
	// index for a property "tag". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsPerson(idx int, v ActivityStreamsPerson)
	// InsertActivityStreamsPlace inserts a Place value at the specified index
	// for a property "tag". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsPlace(idx int, v ActivityStreamsPlace)
	// InsertActivityStreamsProfile inserts a Profile value at the specified
	// index for a property "tag". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsProfile(idx int, v ActivityStreamsProfile)
	// InsertActivityStreamsQuestion inserts a Question value at the specified
	// index for a property "tag". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsQuestion(idx int, v ActivityStreamsQuestion)
	// InsertActivityStreamsRead inserts a Read value at the specified index
	// for a property "tag". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsRead(idx int, v ActivityStreamsRead)
	// InsertActivityStreamsReject inserts a Reject value at the specified
	// index for a property "tag". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsReject(idx int, v ActivityStreamsReject)
	// InsertActivityStreamsRelationship inserts a Relationship value at the
	// specified index for a property "tag". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsRelationship(idx int, v ActivityStreamsRelationship)
	// InsertActivityStreamsRemove inserts a Remove value at the specified
	// index for a property "tag". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsRemove(idx int, v ActivityStreamsRemove)
	// InsertActivityStreamsService inserts a Service value at the specified
	// index for a property "tag". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsService(idx int, v ActivityStreamsService)
	// InsertActivityStreamsTentativeAccept inserts a TentativeAccept value at
	// the specified index for a property "tag". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsTentativeAccept(idx int, v ActivityStreamsTentativeAccept)
	// InsertActivityStreamsTentativeReject inserts a TentativeReject value at
	// the specified index for a property "tag". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsTentativeReject(idx int, v ActivityStreamsTentativeReject)
	// InsertActivityStreamsTombstone inserts a Tombstone value at the
	// specified index for a property "tag". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsTombstone(idx int, v ActivityStreamsTombstone)
	// InsertActivityStreamsTravel inserts a Travel value at the specified
	// index for a property "tag". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsTravel(idx int, v ActivityStreamsTravel)
	// InsertActivityStreamsUndo inserts a Undo value at the specified index
	// for a property "tag". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsUndo(idx int, v ActivityStreamsUndo)
	// InsertActivityStreamsUpdate inserts a Update value at the specified
	// index for a property "tag". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsUpdate(idx int, v ActivityStreamsUpdate)
	// InsertActivityStreamsVideo inserts a Video value at the specified index
	// for a property "tag". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsVideo(idx int, v ActivityStreamsVideo)
	// InsertActivityStreamsView inserts a View value at the specified index
	// for a property "tag". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsView(idx int, v ActivityStreamsView)
	// InsertForgeFedBranch inserts a Branch value at the specified index for
	// a property "tag". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertForgeFedBranch(idx int, v ForgeFedBranch)
	// InsertForgeFedCommit inserts a Commit value at the specified index for
	// a property "tag". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertForgeFedCommit(idx int, v ForgeFedCommit)
	// InsertForgeFedPush inserts a Push value at the specified index for a
	// property "tag". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertForgeFedPush(idx int, v ForgeFedPush)
	// InsertForgeFedRepository inserts a Repository value at the specified
	// index for a property "tag". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertForgeFedRepository(idx int, v ForgeFedRepository)
	// InsertForgeFedTicket inserts a Ticket value at the specified index for
	// a property "tag". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertForgeFedTicket(idx int, v ForgeFedTicket)
	// InsertForgeFedTicketDependency inserts a TicketDependency value at the
	// specified index for a property "tag". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
	// Insert inserts an IRI value at the specified index for a property
	// "tag". Existing elements at that index and higher are shifted back
	// once. Invalidates all iterators.
	InsertIRI(idx int, v *url.URL)
	// InsertTootEmoji inserts a Emoji value at the specified index for a
	// property "tag". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertTootEmoji(idx int, v TootEmoji)
	// InsertTootIdentityProof inserts a IdentityProof value at the specified
	// index for a property "tag". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertTootIdentityProof(idx int, v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "tag". Invalidates all iterators. Returns an error if
	// the type is not a valid one to set for this property.
	InsertType(idx int, t Type) error
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API method specifically needed only for alternate
	// implementations for go-fed. Applications should not use this
	// method. Panics if the index is out of bounds.
	KindIndex(idx int) int
	// Len returns the number of values that exist for the "tag" property.
	Len() (length int)
	// Less computes whether another property is less than this one. Mixing
	// types results in a consistent but arbitrary ordering
	Less(i, j int) bool
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsTagProperty) bool
	// Name returns the name of this property ("tag") with any alias.
	Name() string
	// PrependActivityStreamsAccept prepends a Accept value to the front of a
	// list of the property "tag". Invalidates all iterators.
	PrependActivityStreamsAccept(v ActivityStreamsAccept)
	// PrependActivityStreamsActivity prepends a Activity value to the front
	// of a list of the property "tag". Invalidates all iterators.
	PrependActivityStreamsActivity(v ActivityStreamsActivity)
	// PrependActivityStreamsAdd prepends a Add value to the front of a list
	// of the property "tag". Invalidates all iterators.
	PrependActivityStreamsAdd(v ActivityStreamsAdd)
	// PrependActivityStreamsAnnounce prepends a Announce value to the front
	// of a list of the property "tag". Invalidates all iterators.
	PrependActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// PrependActivityStreamsApplication prepends a Application value to the
	// front of a list of the property "tag". Invalidates all iterators.
	PrependActivityStreamsApplication(v ActivityStreamsApplication)
	// PrependActivityStreamsArrive prepends a Arrive value to the front of a
	// list of the property "tag". Invalidates all iterators.
	PrependActivityStreamsArrive(v ActivityStreamsArrive)
	// PrependActivityStreamsArticle prepends a Article value to the front of
	// a list of the property "tag". Invalidates all iterators.
	PrependActivityStreamsArticle(v ActivityStreamsArticle)
	// PrependActivityStreamsAudio prepends a Audio value to the front of a
	// list of the property "tag". Invalidates all iterators.
	PrependActivityStreamsAudio(v ActivityStreamsAudio)
	// PrependActivityStreamsBlock prepends a Block value to the front of a
	// list of the property "tag". Invalidates all iterators.
	PrependActivityStreamsBlock(v ActivityStreamsBlock)
	// PrependActivityStreamsCollection prepends a Collection value to the
	// front of a list of the property "tag". Invalidates all iterators.
	PrependActivityStreamsCollection(v ActivityStreamsCollection)
	// PrependActivityStreamsCollectionPage prepends a CollectionPage value to
	// the front of a list of the property "tag". Invalidates all
	// iterators.
	PrependActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// PrependActivityStreamsCreate prepends a Create value to the front of a
	// list of the property "tag". Invalidates all iterators.
	PrependActivityStreamsCreate(v ActivityStreamsCreate)
	// PrependActivityStreamsDelete prepends a Delete value to the front of a
	// list of the property "tag". Invalidates all iterators.
	PrependActivityStreamsDelete(v ActivityStreamsDelete)
	// PrependActivityStreamsDislike prepends a Dislike value to the front of
	// a list of the property "tag". Invalidates all iterators.
	PrependActivityStreamsDislike(v ActivityStreamsDislike)
	// PrependActivityStreamsDocument prepends a Document value to the front
	// of a list of the property "tag". Invalidates all iterators.
	PrependActivityStreamsDocument(v ActivityStreamsDocument)
	// PrependActivityStreamsEvent prepends a Event value to the front of a
	// list of the property "tag". Invalidates all iterators.
	PrependActivityStreamsEvent(v ActivityStreamsEvent)
	// PrependActivityStreamsFlag prepends a Flag value to the front of a list
	// of the property "tag". Invalidates all iterators.
	PrependActivityStreamsFlag(v ActivityStreamsFlag)
	// PrependActivityStreamsFollow prepends a Follow value to the front of a
	// list of the property "tag". Invalidates all iterators.
	PrependActivityStreamsFollow(v ActivityStreamsFollow)
	// PrependActivityStreamsGroup prepends a Group value to the front of a
	// list of the property "tag". Invalidates all iterators.
	PrependActivityStreamsGroup(v ActivityStreamsGroup)
	// PrependActivityStreamsIgnore prepends a Ignore value to the front of a
	// list of the property "tag". Invalidates all iterators.
	PrependActivityStreamsIgnore(v ActivityStreamsIgnore)
	// PrependActivityStreamsImage prepends a Image value to the front of a
	// list of the property "tag". Invalidates all iterators.
	PrependActivityStreamsImage(v ActivityStreamsImage)
	// PrependActivityStreamsIntransitiveActivity prepends a
	// IntransitiveActivity value to the front of a list of the property
	// "tag". Invalidates all iterators.
	PrependActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// PrependActivityStreamsInvite prepends a Invite value to the front of a
	// list of the property "tag". Invalidates all iterators.
	PrependActivityStreamsInvite(v ActivityStreamsInvite)
	// PrependActivityStreamsJoin prepends a Join value to the front of a list
	// of the property "tag". Invalidates all iterators.
	PrependActivityStreamsJoin(v ActivityStreamsJoin)
	// PrependActivityStreamsLeave prepends a Leave value to the front of a
	// list of the property "tag". Invalidates all iterators.
	PrependActivityStreamsLeave(v ActivityStreamsLeave)
	// PrependActivityStreamsLike prepends a Like value to the front of a list
	// of the property "tag". Invalidates all iterators.
	PrependActivityStreamsLike(v ActivityStreamsLike)
	// PrependActivityStreamsLink prepends a Link value to the front of a list
	// of the property "tag". Invalidates all iterators.
	PrependActivityStreamsLink(v ActivityStreamsLink)
	// PrependActivityStreamsListen prepends a Listen value to the front of a
	// list of the property "tag". Invalidates all iterators.
	PrependActivityStreamsListen(v ActivityStreamsListen)
	// PrependActivityStreamsMention prepends a Mention value to the front of
	// a list of the property "tag". Invalidates all iterators.
	PrependActivityStreamsMention(v ActivityStreamsMention)
	// PrependActivityStreamsMove prepends a Move value to the front of a list
	// of the property "tag". Invalidates all iterators.
	PrependActivityStreamsMove(v ActivityStreamsMove)
	// PrependActivityStreamsNote prepends a Note value to the front of a list
	// of the property "tag". Invalidates all iterators.
	PrependActivityStreamsNote(v ActivityStreamsNote)
	// PrependActivityStreamsObject prepends a Object value to the front of a
	// list of the property "tag". Invalidates all iterators.
	PrependActivityStreamsObject(v ActivityStreamsObject)
	// PrependActivityStreamsOffer prepends a Offer value to the front of a
	// list of the property "tag". Invalidates all iterators.
	PrependActivityStreamsOffer(v ActivityStreamsOffer)
	// PrependActivityStreamsOrderedCollection prepends a OrderedCollection
	// value to the front of a list of the property "tag". Invalidates all
	// iterators.
	PrependActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// PrependActivityStreamsOrderedCollectionPage prepends a
	// OrderedCollectionPage value to the front of a list of the property
	// "tag". Invalidates all iterators.
	PrependActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// PrependActivityStreamsOrganization prepends a Organization value to the
	// front of a list of the property "tag". Invalidates all iterators.
	PrependActivityStreamsOrganization(v ActivityStreamsOrganization)
	// PrependActivityStreamsPage prepends a Page value to the front of a list
	// of the property "tag". Invalidates all iterators.
	PrependActivityStreamsPage(v ActivityStreamsPage)
	// PrependActivityStreamsPerson prepends a Person value to the front of a
	// list of the property "tag". Invalidates all iterators.
	PrependActivityStreamsPerson(v ActivityStreamsPerson)
	// PrependActivityStreamsPlace prepends a Place value to the front of a
	// list of the property "tag". Invalidates all iterators.
	PrependActivityStreamsPlace(v ActivityStreamsPlace)
	// PrependActivityStreamsProfile prepends a Profile value to the front of
	// a list of the property "tag". Invalidates all iterators.
	PrependActivityStreamsProfile(v ActivityStreamsProfile)
	// PrependActivityStreamsQuestion prepends a Question value to the front
	// of a list of the property "tag". Invalidates all iterators.
	PrependActivityStreamsQuestion(v ActivityStreamsQuestion)
	// PrependActivityStreamsRead prepends a Read value to the front of a list
	// of the property "tag". Invalidates all iterators.
	PrependActivityStreamsRead(v ActivityStreamsRead)
	// PrependActivityStreamsReject prepends a Reject value to the front of a
	// list of the property "tag". Invalidates all iterators.
	PrependActivityStreamsReject(v ActivityStreamsReject)
	// PrependActivityStreamsRelationship prepends a Relationship value to the
	// front of a list of the property "tag". Invalidates all iterators.
	PrependActivityStreamsRelationship(v ActivityStreamsRelationship)
	// PrependActivityStreamsRemove prepends a Remove value to the front of a
	// list of the property "tag". Invalidates all iterators.
	PrependActivityStreamsRemove(v ActivityStreamsRemove)
	// PrependActivityStreamsService prepends a Service value to the front of
	// a list of the property "tag". Invalidates all iterators.
	PrependActivityStreamsService(v ActivityStreamsService)
	// PrependActivityStreamsTentativeAccept prepends a TentativeAccept value
	// to the front of a list of the property "tag". Invalidates all
	// iterators.
	PrependActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// PrependActivityStreamsTentativeReject prepends a TentativeReject value
	// to the front of a list of the property "tag". Invalidates all
	// iterators.
	PrependActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// PrependActivityStreamsTombstone prepends a Tombstone value to the front
	// of a list of the property "tag". Invalidates all iterators.
	PrependActivityStreamsTombstone(v ActivityStreamsTombstone)
	// PrependActivityStreamsTravel prepends a Travel value to the front of a
	// list of the property "tag". Invalidates all iterators.
	PrependActivityStreamsTravel(v ActivityStreamsTravel)
	// PrependActivityStreamsUndo prepends a Undo value to the front of a list
	// of the property "tag". Invalidates all iterators.
	PrependActivityStreamsUndo(v ActivityStreamsUndo)
	// PrependActivityStreamsUpdate prepends a Update value to the front of a
	// list of the property "tag". Invalidates all iterators.
	PrependActivityStreamsUpdate(v ActivityStreamsUpdate)
	// PrependActivityStreamsVideo prepends a Video value to the front of a
	// list of the property "tag". Invalidates all iterators.
	PrependActivityStreamsVideo(v ActivityStreamsVideo)
	// PrependActivityStreamsView prepends a View value to the front of a list
	// of the property "tag". Invalidates all iterators.
	PrependActivityStreamsView(v ActivityStreamsView)
	// PrependForgeFedBranch prepends a Branch value to the front of a list of
	// the property "tag". Invalidates all iterators.
	PrependForgeFedBranch(v ForgeFedBranch)
	// PrependForgeFedCommit prepends a Commit value to the front of a list of
	// the property "tag". Invalidates all iterators.
	PrependForgeFedCommit(v ForgeFedCommit)
	// PrependForgeFedPush prepends a Push value to the front of a list of the
	// property "tag". Invalidates all iterators.
	PrependForgeFedPush(v ForgeFedPush)
	// PrependForgeFedRepository prepends a Repository value to the front of a
	// list of the property "tag". Invalidates all iterators.
	PrependForgeFedRepository(v ForgeFedRepository)
	// PrependForgeFedTicket prepends a Ticket value to the front of a list of
	// the property "tag". Invalidates all iterators.
	PrependForgeFedTicket(v ForgeFedTicket)
	// PrependForgeFedTicketDependency prepends a TicketDependency value to
	// the front of a list of the property "tag". Invalidates all
	// iterators.
	PrependForgeFedTicketDependency(v ForgeFedTicketDependency)
	// PrependIRI prepends an IRI value to the front of a list of the property
	// "tag".
	PrependIRI(v *url.URL)
	// PrependTootEmoji prepends a Emoji value to the front of a list of the
	// property "tag". Invalidates all iterators.
	PrependTootEmoji(v TootEmoji)
	// PrependTootIdentityProof prepends a IdentityProof value to the front of
	// a list of the property "tag". Invalidates all iterators.
	PrependTootIdentityProof(v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "tag". Invalidates all iterators. Returns an error if
	// the type is not a valid one to set for this property.
	PrependType(t Type) error
	// Remove deletes an element at the specified index from a list of the
	// property "tag", regardless of its type. Panics if the index is out
	// of bounds. Invalidates all iterators.
	Remove(idx int)
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// SetActivityStreamsAccept sets a Accept value to be at the specified
	// index for the property "tag". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsAccept(idx int, v ActivityStreamsAccept)
	// SetActivityStreamsActivity sets a Activity value to be at the specified
	// index for the property "tag". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsActivity(idx int, v ActivityStreamsActivity)
	// SetActivityStreamsAdd sets a Add value to be at the specified index for
	// the property "tag". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsAdd(idx int, v ActivityStreamsAdd)
	// SetActivityStreamsAnnounce sets a Announce value to be at the specified
	// index for the property "tag". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsAnnounce(idx int, v ActivityStreamsAnnounce)
	// SetActivityStreamsApplication sets a Application value to be at the
	// specified index for the property "tag". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsApplication(idx int, v ActivityStreamsApplication)
	// SetActivityStreamsArrive sets a Arrive value to be at the specified
	// index for the property "tag". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsArrive(idx int, v ActivityStreamsArrive)
	// SetActivityStreamsArticle sets a Article value to be at the specified
	// index for the property "tag". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsArticle(idx int, v ActivityStreamsArticle)
	// SetActivityStreamsAudio sets a Audio value to be at the specified index
	// for the property "tag". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsAudio(idx int, v ActivityStreamsAudio)
	// SetActivityStreamsBlock sets a Block value to be at the specified index
	// for the property "tag". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsBlock(idx int, v ActivityStreamsBlock)
	// SetActivityStreamsCollection sets a Collection value to be at the
	// specified index for the property "tag". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsCollection(idx int, v ActivityStreamsCollection)
	// SetActivityStreamsCollectionPage sets a CollectionPage value to be at
	// the specified index for the property "tag". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsCollectionPage(idx int, v ActivityStreamsCollectionPage)
	// SetActivityStreamsCreate sets a Create value to be at the specified
	// index for the property "tag". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsCreate(idx int, v ActivityStreamsCreate)
	// SetActivityStreamsDelete sets a Delete value to be at the specified
	// index for the property "tag". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsDelete(idx int, v ActivityStreamsDelete)
	// SetActivityStreamsDislike sets a Dislike value to be at the specified
	// index for the property "tag". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsDislike(idx int, v ActivityStreamsDislike)
	// SetActivityStreamsDocument sets a Document value to be at the specified
	// index for the property "tag". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsDocument(idx int, v ActivityStreamsDocument)
	// SetActivityStreamsEvent sets a Event value to be at the specified index
	// for the property "tag". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsEvent(idx int, v ActivityStreamsEvent)
	// SetActivityStreamsFlag sets a Flag value to be at the specified index
	// for the property "tag". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsFlag(idx int, v ActivityStreamsFlag)
	// SetActivityStreamsFollow sets a Follow value to be at the specified
	// index for the property "tag". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsFollow(idx int, v ActivityStreamsFollow)
	// SetActivityStreamsGroup sets a Group value to be at the specified index
	// for the property "tag". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsGroup(idx int, v ActivityStreamsGroup)
	// SetActivityStreamsIgnore sets a Ignore value to be at the specified
	// index for the property "tag". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsIgnore(idx int, v ActivityStreamsIgnore)
	// SetActivityStreamsImage sets a Image value to be at the specified index
	// for the property "tag". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsImage(idx int, v ActivityStreamsImage)
	// SetActivityStreamsIntransitiveActivity sets a IntransitiveActivity
	// value to be at the specified index for the property "tag". Panics
	// if the index is out of bounds. Invalidates all iterators.
	SetActivityStreamsIntransitiveActivity(idx int, v ActivityStreamsIntransitiveActivity)
	// SetActivityStreamsInvite sets a Invite value to be at the specified
	// index for the property "tag". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsInvite(idx int, v ActivityStreamsInvite)
	// SetActivityStreamsJoin sets a Join value to be at the specified index
	// for the property "tag". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsJoin(idx int, v ActivityStreamsJoin)
	// SetActivityStreamsLeave sets a Leave value to be at the specified index
	// for the property "tag". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsLeave(idx int, v ActivityStreamsLeave)
	// SetActivityStreamsLike sets a Like value to be at the specified index
	// for the property "tag". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsLike(idx int, v ActivityStreamsLike)
	// SetActivityStreamsLink sets a Link value to be at the specified index
	// for the property "tag". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsLink(idx int, v ActivityStreamsLink)
	// SetActivityStreamsListen sets a Listen value to be at the specified
	// index for the property "tag". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsListen(idx int, v ActivityStreamsListen)
	// SetActivityStreamsMention sets a Mention value to be at the specified
	// index for the property "tag". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsMention(idx int, v ActivityStreamsMention)
	// SetActivityStreamsMove sets a Move value to be at the specified index
	// for the property "tag". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsMove(idx int, v ActivityStreamsMove)
	// SetActivityStreamsNote sets a Note value to be at the specified index
	// for the property "tag". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsNote(idx int, v ActivityStreamsNote)
	// SetActivityStreamsObject sets a Object value to be at the specified
	// index for the property "tag". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsObject(idx int, v ActivityStreamsObject)
	// SetActivityStreamsOffer sets a Offer value to be at the specified index
	// for the property "tag". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsOffer(idx int, v ActivityStreamsOffer)
	// SetActivityStreamsOrderedCollection sets a OrderedCollection value to
	// be at the specified index for the property "tag". Panics if the
	// index is out of bounds. Invalidates all iterators.
	SetActivityStreamsOrderedCollection(idx int, v ActivityStreamsOrderedCollection)
	// SetActivityStreamsOrderedCollectionPage sets a OrderedCollectionPage
	// value to be at the specified index for the property "tag". Panics
	// if the index is out of bounds. Invalidates all iterators.
	SetActivityStreamsOrderedCollectionPage(idx int, v ActivityStreamsOrderedCollectionPage)
	// SetActivityStreamsOrganization sets a Organization value to be at the
	// specified index for the property "tag". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsOrganization(idx int, v ActivityStreamsOrganization)
	// SetActivityStreamsPage sets a Page value to be at the specified index
	// for the property "tag". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsPage(idx int, v ActivityStreamsPage)
	// SetActivityStreamsPerson sets a Person value to be at the specified
	// index for the property "tag". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsPerson(idx int, v ActivityStreamsPerson)
	// SetActivityStreamsPlace sets a Place value to be at the specified index
	// for the property "tag". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsPlace(idx int, v ActivityStreamsPlace)
	// SetActivityStreamsProfile sets a Profile value to be at the specified
	// index for the property "tag". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsProfile(idx int, v ActivityStreamsProfile)
	// SetActivityStreamsQuestion sets a Question value to be at the specified
	// index for the property "tag". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsQuestion(idx int, v ActivityStreamsQuestion)
	// SetActivityStreamsRead sets a Read value to be at the specified index
	// for the property "tag". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsRead(idx int, v ActivityStreamsRead)
	// SetActivityStreamsReject sets a Reject value to be at the specified
	// index for the property "tag". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsReject(idx int, v ActivityStreamsReject)
	// SetActivityStreamsRelationship sets a Relationship value to be at the
	// specified index for the property "tag". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsRelationship(idx int, v ActivityStreamsRelationship)
	// SetActivityStreamsRemove sets a Remove value to be at the specified
	// index for the property "tag". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsRemove(idx int, v ActivityStreamsRemove)
	// SetActivityStreamsService sets a Service value to be at the specified
	// index for the property "tag". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsService(idx int, v ActivityStreamsService)
	// SetActivityStreamsTentativeAccept sets a TentativeAccept value to be at
	// the specified index for the property "tag". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsTentativeAccept(idx int, v ActivityStreamsTentativeAccept)
	// SetActivityStreamsTentativeReject sets a TentativeReject value to be at
	// the specified index for the property "tag". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsTentativeReject(idx int, v ActivityStreamsTentativeReject)
	// SetActivityStreamsTombstone sets a Tombstone value to be at the
	// specified index for the property "tag". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsTombstone(idx int, v ActivityStreamsTombstone)
	// SetActivityStreamsTravel sets a Travel value to be at the specified
	// index for the property "tag". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsTravel(idx int, v ActivityStreamsTravel)
	// SetActivityStreamsUndo sets a Undo value to be at the specified index
	// for the property "tag". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsUndo(idx int, v ActivityStreamsUndo)
	// SetActivityStreamsUpdate sets a Update value to be at the specified
	// index for the property "tag". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsUpdate(idx int, v ActivityStreamsUpdate)
	// SetActivityStreamsVideo sets a Video value to be at the specified index
	// for the property "tag". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsVideo(idx int, v ActivityStreamsVideo)
	// SetActivityStreamsView sets a View value to be at the specified index
	// for the property "tag". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsView(idx int, v ActivityStreamsView)
	// SetForgeFedBranch sets a Branch value to be at the specified index for
	// the property "tag". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedBranch(idx int, v ForgeFedBranch)
	// SetForgeFedCommit sets a Commit value to be at the specified index for
	// the property "tag". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedCommit(idx int, v ForgeFedCommit)
	// SetForgeFedPush sets a Push value to be at the specified index for the
	// property "tag". Panics if the index is out of bounds. Invalidates
	// all iterators.
	SetForgeFedPush(idx int, v ForgeFedPush)
	// SetForgeFedRepository sets a Repository value to be at the specified
	// index for the property "tag". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedRepository(idx int, v ForgeFedRepository)
	// SetForgeFedTicket sets a Ticket value to be at the specified index for
	// the property "tag". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedTicket(idx int, v ForgeFedTicket)
	// SetForgeFedTicketDependency sets a TicketDependency value to be at the
	// specified index for the property "tag". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
	// SetIRI sets an IRI value to be at the specified index for the property
	// "tag". Panics if the index is out of bounds.
	SetIRI(idx int, v *url.URL)
	// SetTootEmoji sets a Emoji value to be at the specified index for the
	// property "tag". Panics if the index is out of bounds. Invalidates
	// all iterators.
	SetTootEmoji(idx int, v TootEmoji)
	// SetTootIdentityProof sets a IdentityProof value to be at the specified
	// index for the property "tag". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetTootIdentityProof(idx int, v TootIdentityProof)
	// SetType sets an arbitrary type value to the specified index of the
	// property "tag". Invalidates all iterators. Returns an error if the
	// type is not a valid one to set for this property. Panics if the
	// index is out of bounds.
	SetType(idx int, t Type) error
	// Swap swaps the location of values at two indices for the "tag" property.
	Swap(i, j int)
}

One or more "tags" that have been associated with an objects. A tag can be any kind of Object. The key difference between attachment and tag is that the former implies association by inclusion, while the latter implies associated by reference.

Example 105 (https://www.w3.org/TR/activitystreams-vocabulary/#ex118-jsonld):

{
  "summary": "Picture of Sally",
  "tag": {
    "id": "http://sally.example.org",
    "name": "Sally",
    "type": "Person"
  },
  "type": "Image",
  "url": "http://example.org/sally.jpg"
}

type ActivityStreamsTagPropertyIterator

type ActivityStreamsTagPropertyIterator interface {
	// GetActivityStreamsAccept returns the value of this property. When
	// IsActivityStreamsAccept returns false, GetActivityStreamsAccept
	// will return an arbitrary value.
	GetActivityStreamsAccept() ActivityStreamsAccept
	// GetActivityStreamsActivity returns the value of this property. When
	// IsActivityStreamsActivity returns false, GetActivityStreamsActivity
	// will return an arbitrary value.
	GetActivityStreamsActivity() ActivityStreamsActivity
	// GetActivityStreamsAdd returns the value of this property. When
	// IsActivityStreamsAdd returns false, GetActivityStreamsAdd will
	// return an arbitrary value.
	GetActivityStreamsAdd() ActivityStreamsAdd
	// GetActivityStreamsAnnounce returns the value of this property. When
	// IsActivityStreamsAnnounce returns false, GetActivityStreamsAnnounce
	// will return an arbitrary value.
	GetActivityStreamsAnnounce() ActivityStreamsAnnounce
	// GetActivityStreamsApplication returns the value of this property. When
	// IsActivityStreamsApplication returns false,
	// GetActivityStreamsApplication will return an arbitrary value.
	GetActivityStreamsApplication() ActivityStreamsApplication
	// GetActivityStreamsArrive returns the value of this property. When
	// IsActivityStreamsArrive returns false, GetActivityStreamsArrive
	// will return an arbitrary value.
	GetActivityStreamsArrive() ActivityStreamsArrive
	// GetActivityStreamsArticle returns the value of this property. When
	// IsActivityStreamsArticle returns false, GetActivityStreamsArticle
	// will return an arbitrary value.
	GetActivityStreamsArticle() ActivityStreamsArticle
	// GetActivityStreamsAudio returns the value of this property. When
	// IsActivityStreamsAudio returns false, GetActivityStreamsAudio will
	// return an arbitrary value.
	GetActivityStreamsAudio() ActivityStreamsAudio
	// GetActivityStreamsBlock returns the value of this property. When
	// IsActivityStreamsBlock returns false, GetActivityStreamsBlock will
	// return an arbitrary value.
	GetActivityStreamsBlock() ActivityStreamsBlock
	// GetActivityStreamsCollection returns the value of this property. When
	// IsActivityStreamsCollection returns false,
	// GetActivityStreamsCollection will return an arbitrary value.
	GetActivityStreamsCollection() ActivityStreamsCollection
	// GetActivityStreamsCollectionPage returns the value of this property.
	// When IsActivityStreamsCollectionPage returns false,
	// GetActivityStreamsCollectionPage will return an arbitrary value.
	GetActivityStreamsCollectionPage() ActivityStreamsCollectionPage
	// GetActivityStreamsCreate returns the value of this property. When
	// IsActivityStreamsCreate returns false, GetActivityStreamsCreate
	// will return an arbitrary value.
	GetActivityStreamsCreate() ActivityStreamsCreate
	// GetActivityStreamsDelete returns the value of this property. When
	// IsActivityStreamsDelete returns false, GetActivityStreamsDelete
	// will return an arbitrary value.
	GetActivityStreamsDelete() ActivityStreamsDelete
	// GetActivityStreamsDislike returns the value of this property. When
	// IsActivityStreamsDislike returns false, GetActivityStreamsDislike
	// will return an arbitrary value.
	GetActivityStreamsDislike() ActivityStreamsDislike
	// GetActivityStreamsDocument returns the value of this property. When
	// IsActivityStreamsDocument returns false, GetActivityStreamsDocument
	// will return an arbitrary value.
	GetActivityStreamsDocument() ActivityStreamsDocument
	// GetActivityStreamsEvent returns the value of this property. When
	// IsActivityStreamsEvent returns false, GetActivityStreamsEvent will
	// return an arbitrary value.
	GetActivityStreamsEvent() ActivityStreamsEvent
	// GetActivityStreamsFlag returns the value of this property. When
	// IsActivityStreamsFlag returns false, GetActivityStreamsFlag will
	// return an arbitrary value.
	GetActivityStreamsFlag() ActivityStreamsFlag
	// GetActivityStreamsFollow returns the value of this property. When
	// IsActivityStreamsFollow returns false, GetActivityStreamsFollow
	// will return an arbitrary value.
	GetActivityStreamsFollow() ActivityStreamsFollow
	// GetActivityStreamsGroup returns the value of this property. When
	// IsActivityStreamsGroup returns false, GetActivityStreamsGroup will
	// return an arbitrary value.
	GetActivityStreamsGroup() ActivityStreamsGroup
	// GetActivityStreamsIgnore returns the value of this property. When
	// IsActivityStreamsIgnore returns false, GetActivityStreamsIgnore
	// will return an arbitrary value.
	GetActivityStreamsIgnore() ActivityStreamsIgnore
	// GetActivityStreamsImage returns the value of this property. When
	// IsActivityStreamsImage returns false, GetActivityStreamsImage will
	// return an arbitrary value.
	GetActivityStreamsImage() ActivityStreamsImage
	// GetActivityStreamsIntransitiveActivity returns the value of this
	// property. When IsActivityStreamsIntransitiveActivity returns false,
	// GetActivityStreamsIntransitiveActivity will return an arbitrary
	// value.
	GetActivityStreamsIntransitiveActivity() ActivityStreamsIntransitiveActivity
	// GetActivityStreamsInvite returns the value of this property. When
	// IsActivityStreamsInvite returns false, GetActivityStreamsInvite
	// will return an arbitrary value.
	GetActivityStreamsInvite() ActivityStreamsInvite
	// GetActivityStreamsJoin returns the value of this property. When
	// IsActivityStreamsJoin returns false, GetActivityStreamsJoin will
	// return an arbitrary value.
	GetActivityStreamsJoin() ActivityStreamsJoin
	// GetActivityStreamsLeave returns the value of this property. When
	// IsActivityStreamsLeave returns false, GetActivityStreamsLeave will
	// return an arbitrary value.
	GetActivityStreamsLeave() ActivityStreamsLeave
	// GetActivityStreamsLike returns the value of this property. When
	// IsActivityStreamsLike returns false, GetActivityStreamsLike will
	// return an arbitrary value.
	GetActivityStreamsLike() ActivityStreamsLike
	// GetActivityStreamsLink returns the value of this property. When
	// IsActivityStreamsLink returns false, GetActivityStreamsLink will
	// return an arbitrary value.
	GetActivityStreamsLink() ActivityStreamsLink
	// GetActivityStreamsListen returns the value of this property. When
	// IsActivityStreamsListen returns false, GetActivityStreamsListen
	// will return an arbitrary value.
	GetActivityStreamsListen() ActivityStreamsListen
	// GetActivityStreamsMention returns the value of this property. When
	// IsActivityStreamsMention returns false, GetActivityStreamsMention
	// will return an arbitrary value.
	GetActivityStreamsMention() ActivityStreamsMention
	// GetActivityStreamsMove returns the value of this property. When
	// IsActivityStreamsMove returns false, GetActivityStreamsMove will
	// return an arbitrary value.
	GetActivityStreamsMove() ActivityStreamsMove
	// GetActivityStreamsNote returns the value of this property. When
	// IsActivityStreamsNote returns false, GetActivityStreamsNote will
	// return an arbitrary value.
	GetActivityStreamsNote() ActivityStreamsNote
	// GetActivityStreamsObject returns the value of this property. When
	// IsActivityStreamsObject returns false, GetActivityStreamsObject
	// will return an arbitrary value.
	GetActivityStreamsObject() ActivityStreamsObject
	// GetActivityStreamsOffer returns the value of this property. When
	// IsActivityStreamsOffer returns false, GetActivityStreamsOffer will
	// return an arbitrary value.
	GetActivityStreamsOffer() ActivityStreamsOffer
	// GetActivityStreamsOrderedCollection returns the value of this property.
	// When IsActivityStreamsOrderedCollection returns false,
	// GetActivityStreamsOrderedCollection will return an arbitrary value.
	GetActivityStreamsOrderedCollection() ActivityStreamsOrderedCollection
	// GetActivityStreamsOrderedCollectionPage returns the value of this
	// property. When IsActivityStreamsOrderedCollectionPage returns
	// false, GetActivityStreamsOrderedCollectionPage will return an
	// arbitrary value.
	GetActivityStreamsOrderedCollectionPage() ActivityStreamsOrderedCollectionPage
	// GetActivityStreamsOrganization returns the value of this property. When
	// IsActivityStreamsOrganization returns false,
	// GetActivityStreamsOrganization will return an arbitrary value.
	GetActivityStreamsOrganization() ActivityStreamsOrganization
	// GetActivityStreamsPage returns the value of this property. When
	// IsActivityStreamsPage returns false, GetActivityStreamsPage will
	// return an arbitrary value.
	GetActivityStreamsPage() ActivityStreamsPage
	// GetActivityStreamsPerson returns the value of this property. When
	// IsActivityStreamsPerson returns false, GetActivityStreamsPerson
	// will return an arbitrary value.
	GetActivityStreamsPerson() ActivityStreamsPerson
	// GetActivityStreamsPlace returns the value of this property. When
	// IsActivityStreamsPlace returns false, GetActivityStreamsPlace will
	// return an arbitrary value.
	GetActivityStreamsPlace() ActivityStreamsPlace
	// GetActivityStreamsProfile returns the value of this property. When
	// IsActivityStreamsProfile returns false, GetActivityStreamsProfile
	// will return an arbitrary value.
	GetActivityStreamsProfile() ActivityStreamsProfile
	// GetActivityStreamsQuestion returns the value of this property. When
	// IsActivityStreamsQuestion returns false, GetActivityStreamsQuestion
	// will return an arbitrary value.
	GetActivityStreamsQuestion() ActivityStreamsQuestion
	// GetActivityStreamsRead returns the value of this property. When
	// IsActivityStreamsRead returns false, GetActivityStreamsRead will
	// return an arbitrary value.
	GetActivityStreamsRead() ActivityStreamsRead
	// GetActivityStreamsReject returns the value of this property. When
	// IsActivityStreamsReject returns false, GetActivityStreamsReject
	// will return an arbitrary value.
	GetActivityStreamsReject() ActivityStreamsReject
	// GetActivityStreamsRelationship returns the value of this property. When
	// IsActivityStreamsRelationship returns false,
	// GetActivityStreamsRelationship will return an arbitrary value.
	GetActivityStreamsRelationship() ActivityStreamsRelationship
	// GetActivityStreamsRemove returns the value of this property. When
	// IsActivityStreamsRemove returns false, GetActivityStreamsRemove
	// will return an arbitrary value.
	GetActivityStreamsRemove() ActivityStreamsRemove
	// GetActivityStreamsService returns the value of this property. When
	// IsActivityStreamsService returns false, GetActivityStreamsService
	// will return an arbitrary value.
	GetActivityStreamsService() ActivityStreamsService
	// GetActivityStreamsTentativeAccept returns the value of this property.
	// When IsActivityStreamsTentativeAccept returns false,
	// GetActivityStreamsTentativeAccept will return an arbitrary value.
	GetActivityStreamsTentativeAccept() ActivityStreamsTentativeAccept
	// GetActivityStreamsTentativeReject returns the value of this property.
	// When IsActivityStreamsTentativeReject returns false,
	// GetActivityStreamsTentativeReject will return an arbitrary value.
	GetActivityStreamsTentativeReject() ActivityStreamsTentativeReject
	// GetActivityStreamsTombstone returns the value of this property. When
	// IsActivityStreamsTombstone returns false,
	// GetActivityStreamsTombstone will return an arbitrary value.
	GetActivityStreamsTombstone() ActivityStreamsTombstone
	// GetActivityStreamsTravel returns the value of this property. When
	// IsActivityStreamsTravel returns false, GetActivityStreamsTravel
	// will return an arbitrary value.
	GetActivityStreamsTravel() ActivityStreamsTravel
	// GetActivityStreamsUndo returns the value of this property. When
	// IsActivityStreamsUndo returns false, GetActivityStreamsUndo will
	// return an arbitrary value.
	GetActivityStreamsUndo() ActivityStreamsUndo
	// GetActivityStreamsUpdate returns the value of this property. When
	// IsActivityStreamsUpdate returns false, GetActivityStreamsUpdate
	// will return an arbitrary value.
	GetActivityStreamsUpdate() ActivityStreamsUpdate
	// GetActivityStreamsVideo returns the value of this property. When
	// IsActivityStreamsVideo returns false, GetActivityStreamsVideo will
	// return an arbitrary value.
	GetActivityStreamsVideo() ActivityStreamsVideo
	// GetActivityStreamsView returns the value of this property. When
	// IsActivityStreamsView returns false, GetActivityStreamsView will
	// return an arbitrary value.
	GetActivityStreamsView() ActivityStreamsView
	// GetForgeFedBranch returns the value of this property. When
	// IsForgeFedBranch returns false, GetForgeFedBranch will return an
	// arbitrary value.
	GetForgeFedBranch() ForgeFedBranch
	// GetForgeFedCommit returns the value of this property. When
	// IsForgeFedCommit returns false, GetForgeFedCommit will return an
	// arbitrary value.
	GetForgeFedCommit() ForgeFedCommit
	// GetForgeFedPush returns the value of this property. When IsForgeFedPush
	// returns false, GetForgeFedPush will return an arbitrary value.
	GetForgeFedPush() ForgeFedPush
	// GetForgeFedRepository returns the value of this property. When
	// IsForgeFedRepository returns false, GetForgeFedRepository will
	// return an arbitrary value.
	GetForgeFedRepository() ForgeFedRepository
	// GetForgeFedTicket returns the value of this property. When
	// IsForgeFedTicket returns false, GetForgeFedTicket will return an
	// arbitrary value.
	GetForgeFedTicket() ForgeFedTicket
	// GetForgeFedTicketDependency returns the value of this property. When
	// IsForgeFedTicketDependency returns false,
	// GetForgeFedTicketDependency will return an arbitrary value.
	GetForgeFedTicketDependency() ForgeFedTicketDependency
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return an arbitrary value.
	GetIRI() *url.URL
	// GetTootEmoji returns the value of this property. When IsTootEmoji
	// returns false, GetTootEmoji will return an arbitrary value.
	GetTootEmoji() TootEmoji
	// GetTootIdentityProof returns the value of this property. When
	// IsTootIdentityProof returns false, GetTootIdentityProof will return
	// an arbitrary value.
	GetTootIdentityProof() TootIdentityProof
	// GetType returns the value in this property as a Type. Returns nil if
	// the value is not an ActivityStreams type, such as an IRI or another
	// value.
	GetType() Type
	// HasAny returns true if any of the different values is set.
	HasAny() bool
	// IsActivityStreamsAccept returns true if this property has a type of
	// "Accept". When true, use the GetActivityStreamsAccept and
	// SetActivityStreamsAccept methods to access and set this property.
	IsActivityStreamsAccept() bool
	// IsActivityStreamsActivity returns true if this property has a type of
	// "Activity". When true, use the GetActivityStreamsActivity and
	// SetActivityStreamsActivity methods to access and set this property.
	IsActivityStreamsActivity() bool
	// IsActivityStreamsAdd returns true if this property has a type of "Add".
	// When true, use the GetActivityStreamsAdd and SetActivityStreamsAdd
	// methods to access and set this property.
	IsActivityStreamsAdd() bool
	// IsActivityStreamsAnnounce returns true if this property has a type of
	// "Announce". When true, use the GetActivityStreamsAnnounce and
	// SetActivityStreamsAnnounce methods to access and set this property.
	IsActivityStreamsAnnounce() bool
	// IsActivityStreamsApplication returns true if this property has a type
	// of "Application". When true, use the GetActivityStreamsApplication
	// and SetActivityStreamsApplication methods to access and set this
	// property.
	IsActivityStreamsApplication() bool
	// IsActivityStreamsArrive returns true if this property has a type of
	// "Arrive". When true, use the GetActivityStreamsArrive and
	// SetActivityStreamsArrive methods to access and set this property.
	IsActivityStreamsArrive() bool
	// IsActivityStreamsArticle returns true if this property has a type of
	// "Article". When true, use the GetActivityStreamsArticle and
	// SetActivityStreamsArticle methods to access and set this property.
	IsActivityStreamsArticle() bool
	// IsActivityStreamsAudio returns true if this property has a type of
	// "Audio". When true, use the GetActivityStreamsAudio and
	// SetActivityStreamsAudio methods to access and set this property.
	IsActivityStreamsAudio() bool
	// IsActivityStreamsBlock returns true if this property has a type of
	// "Block". When true, use the GetActivityStreamsBlock and
	// SetActivityStreamsBlock methods to access and set this property.
	IsActivityStreamsBlock() bool
	// IsActivityStreamsCollection returns true if this property has a type of
	// "Collection". When true, use the GetActivityStreamsCollection and
	// SetActivityStreamsCollection methods to access and set this
	// property.
	IsActivityStreamsCollection() bool
	// IsActivityStreamsCollectionPage returns true if this property has a
	// type of "CollectionPage". When true, use the
	// GetActivityStreamsCollectionPage and
	// SetActivityStreamsCollectionPage methods to access and set this
	// property.
	IsActivityStreamsCollectionPage() bool
	// IsActivityStreamsCreate returns true if this property has a type of
	// "Create". When true, use the GetActivityStreamsCreate and
	// SetActivityStreamsCreate methods to access and set this property.
	IsActivityStreamsCreate() bool
	// IsActivityStreamsDelete returns true if this property has a type of
	// "Delete". When true, use the GetActivityStreamsDelete and
	// SetActivityStreamsDelete methods to access and set this property.
	IsActivityStreamsDelete() bool
	// IsActivityStreamsDislike returns true if this property has a type of
	// "Dislike". When true, use the GetActivityStreamsDislike and
	// SetActivityStreamsDislike methods to access and set this property.
	IsActivityStreamsDislike() bool
	// IsActivityStreamsDocument returns true if this property has a type of
	// "Document". When true, use the GetActivityStreamsDocument and
	// SetActivityStreamsDocument methods to access and set this property.
	IsActivityStreamsDocument() bool
	// IsActivityStreamsEvent returns true if this property has a type of
	// "Event". When true, use the GetActivityStreamsEvent and
	// SetActivityStreamsEvent methods to access and set this property.
	IsActivityStreamsEvent() bool
	// IsActivityStreamsFlag returns true if this property has a type of
	// "Flag". When true, use the GetActivityStreamsFlag and
	// SetActivityStreamsFlag methods to access and set this property.
	IsActivityStreamsFlag() bool
	// IsActivityStreamsFollow returns true if this property has a type of
	// "Follow". When true, use the GetActivityStreamsFollow and
	// SetActivityStreamsFollow methods to access and set this property.
	IsActivityStreamsFollow() bool
	// IsActivityStreamsGroup returns true if this property has a type of
	// "Group". When true, use the GetActivityStreamsGroup and
	// SetActivityStreamsGroup methods to access and set this property.
	IsActivityStreamsGroup() bool
	// IsActivityStreamsIgnore returns true if this property has a type of
	// "Ignore". When true, use the GetActivityStreamsIgnore and
	// SetActivityStreamsIgnore methods to access and set this property.
	IsActivityStreamsIgnore() bool
	// IsActivityStreamsImage returns true if this property has a type of
	// "Image". When true, use the GetActivityStreamsImage and
	// SetActivityStreamsImage methods to access and set this property.
	IsActivityStreamsImage() bool
	// IsActivityStreamsIntransitiveActivity returns true if this property has
	// a type of "IntransitiveActivity". When true, use the
	// GetActivityStreamsIntransitiveActivity and
	// SetActivityStreamsIntransitiveActivity methods to access and set
	// this property.
	IsActivityStreamsIntransitiveActivity() bool
	// IsActivityStreamsInvite returns true if this property has a type of
	// "Invite". When true, use the GetActivityStreamsInvite and
	// SetActivityStreamsInvite methods to access and set this property.
	IsActivityStreamsInvite() bool
	// IsActivityStreamsJoin returns true if this property has a type of
	// "Join". When true, use the GetActivityStreamsJoin and
	// SetActivityStreamsJoin methods to access and set this property.
	IsActivityStreamsJoin() bool
	// IsActivityStreamsLeave returns true if this property has a type of
	// "Leave". When true, use the GetActivityStreamsLeave and
	// SetActivityStreamsLeave methods to access and set this property.
	IsActivityStreamsLeave() bool
	// IsActivityStreamsLike returns true if this property has a type of
	// "Like". When true, use the GetActivityStreamsLike and
	// SetActivityStreamsLike methods to access and set this property.
	IsActivityStreamsLike() bool
	// IsActivityStreamsLink returns true if this property has a type of
	// "Link". When true, use the GetActivityStreamsLink and
	// SetActivityStreamsLink methods to access and set this property.
	IsActivityStreamsLink() bool
	// IsActivityStreamsListen returns true if this property has a type of
	// "Listen". When true, use the GetActivityStreamsListen and
	// SetActivityStreamsListen methods to access and set this property.
	IsActivityStreamsListen() bool
	// IsActivityStreamsMention returns true if this property has a type of
	// "Mention". When true, use the GetActivityStreamsMention and
	// SetActivityStreamsMention methods to access and set this property.
	IsActivityStreamsMention() bool
	// IsActivityStreamsMove returns true if this property has a type of
	// "Move". When true, use the GetActivityStreamsMove and
	// SetActivityStreamsMove methods to access and set this property.
	IsActivityStreamsMove() bool
	// IsActivityStreamsNote returns true if this property has a type of
	// "Note". When true, use the GetActivityStreamsNote and
	// SetActivityStreamsNote methods to access and set this property.
	IsActivityStreamsNote() bool
	// IsActivityStreamsObject returns true if this property has a type of
	// "Object". When true, use the GetActivityStreamsObject and
	// SetActivityStreamsObject methods to access and set this property.
	IsActivityStreamsObject() bool
	// IsActivityStreamsOffer returns true if this property has a type of
	// "Offer". When true, use the GetActivityStreamsOffer and
	// SetActivityStreamsOffer methods to access and set this property.
	IsActivityStreamsOffer() bool
	// IsActivityStreamsOrderedCollection returns true if this property has a
	// type of "OrderedCollection". When true, use the
	// GetActivityStreamsOrderedCollection and
	// SetActivityStreamsOrderedCollection methods to access and set this
	// property.
	IsActivityStreamsOrderedCollection() bool
	// IsActivityStreamsOrderedCollectionPage returns true if this property
	// has a type of "OrderedCollectionPage". When true, use the
	// GetActivityStreamsOrderedCollectionPage and
	// SetActivityStreamsOrderedCollectionPage methods to access and set
	// this property.
	IsActivityStreamsOrderedCollectionPage() bool
	// IsActivityStreamsOrganization returns true if this property has a type
	// of "Organization". When true, use the
	// GetActivityStreamsOrganization and SetActivityStreamsOrganization
	// methods to access and set this property.
	IsActivityStreamsOrganization() bool
	// IsActivityStreamsPage returns true if this property has a type of
	// "Page". When true, use the GetActivityStreamsPage and
	// SetActivityStreamsPage methods to access and set this property.
	IsActivityStreamsPage() bool
	// IsActivityStreamsPerson returns true if this property has a type of
	// "Person". When true, use the GetActivityStreamsPerson and
	// SetActivityStreamsPerson methods to access and set this property.
	IsActivityStreamsPerson() bool
	// IsActivityStreamsPlace returns true if this property has a type of
	// "Place". When true, use the GetActivityStreamsPlace and
	// SetActivityStreamsPlace methods to access and set this property.
	IsActivityStreamsPlace() bool
	// IsActivityStreamsProfile returns true if this property has a type of
	// "Profile". When true, use the GetActivityStreamsProfile and
	// SetActivityStreamsProfile methods to access and set this property.
	IsActivityStreamsProfile() bool
	// IsActivityStreamsQuestion returns true if this property has a type of
	// "Question". When true, use the GetActivityStreamsQuestion and
	// SetActivityStreamsQuestion methods to access and set this property.
	IsActivityStreamsQuestion() bool
	// IsActivityStreamsRead returns true if this property has a type of
	// "Read". When true, use the GetActivityStreamsRead and
	// SetActivityStreamsRead methods to access and set this property.
	IsActivityStreamsRead() bool
	// IsActivityStreamsReject returns true if this property has a type of
	// "Reject". When true, use the GetActivityStreamsReject and
	// SetActivityStreamsReject methods to access and set this property.
	IsActivityStreamsReject() bool
	// IsActivityStreamsRelationship returns true if this property has a type
	// of "Relationship". When true, use the
	// GetActivityStreamsRelationship and SetActivityStreamsRelationship
	// methods to access and set this property.
	IsActivityStreamsRelationship() bool
	// IsActivityStreamsRemove returns true if this property has a type of
	// "Remove". When true, use the GetActivityStreamsRemove and
	// SetActivityStreamsRemove methods to access and set this property.
	IsActivityStreamsRemove() bool
	// IsActivityStreamsService returns true if this property has a type of
	// "Service". When true, use the GetActivityStreamsService and
	// SetActivityStreamsService methods to access and set this property.
	IsActivityStreamsService() bool
	// IsActivityStreamsTentativeAccept returns true if this property has a
	// type of "TentativeAccept". When true, use the
	// GetActivityStreamsTentativeAccept and
	// SetActivityStreamsTentativeAccept methods to access and set this
	// property.
	IsActivityStreamsTentativeAccept() bool
	// IsActivityStreamsTentativeReject returns true if this property has a
	// type of "TentativeReject". When true, use the
	// GetActivityStreamsTentativeReject and
	// SetActivityStreamsTentativeReject methods to access and set this
	// property.
	IsActivityStreamsTentativeReject() bool
	// IsActivityStreamsTombstone returns true if this property has a type of
	// "Tombstone". When true, use the GetActivityStreamsTombstone and
	// SetActivityStreamsTombstone methods to access and set this property.
	IsActivityStreamsTombstone() bool
	// IsActivityStreamsTravel returns true if this property has a type of
	// "Travel". When true, use the GetActivityStreamsTravel and
	// SetActivityStreamsTravel methods to access and set this property.
	IsActivityStreamsTravel() bool
	// IsActivityStreamsUndo returns true if this property has a type of
	// "Undo". When true, use the GetActivityStreamsUndo and
	// SetActivityStreamsUndo methods to access and set this property.
	IsActivityStreamsUndo() bool
	// IsActivityStreamsUpdate returns true if this property has a type of
	// "Update". When true, use the GetActivityStreamsUpdate and
	// SetActivityStreamsUpdate methods to access and set this property.
	IsActivityStreamsUpdate() bool
	// IsActivityStreamsVideo returns true if this property has a type of
	// "Video". When true, use the GetActivityStreamsVideo and
	// SetActivityStreamsVideo methods to access and set this property.
	IsActivityStreamsVideo() bool
	// IsActivityStreamsView returns true if this property has a type of
	// "View". When true, use the GetActivityStreamsView and
	// SetActivityStreamsView methods to access and set this property.
	IsActivityStreamsView() bool
	// IsForgeFedBranch returns true if this property has a type of "Branch".
	// When true, use the GetForgeFedBranch and SetForgeFedBranch methods
	// to access and set this property.
	IsForgeFedBranch() bool
	// IsForgeFedCommit returns true if this property has a type of "Commit".
	// When true, use the GetForgeFedCommit and SetForgeFedCommit methods
	// to access and set this property.
	IsForgeFedCommit() bool
	// IsForgeFedPush returns true if this property has a type of "Push". When
	// true, use the GetForgeFedPush and SetForgeFedPush methods to access
	// and set this property.
	IsForgeFedPush() bool
	// IsForgeFedRepository returns true if this property has a type of
	// "Repository". When true, use the GetForgeFedRepository and
	// SetForgeFedRepository methods to access and set this property.
	IsForgeFedRepository() bool
	// IsForgeFedTicket returns true if this property has a type of "Ticket".
	// When true, use the GetForgeFedTicket and SetForgeFedTicket methods
	// to access and set this property.
	IsForgeFedTicket() bool
	// IsForgeFedTicketDependency returns true if this property has a type of
	// "TicketDependency". When true, use the GetForgeFedTicketDependency
	// and SetForgeFedTicketDependency methods to access and set this
	// property.
	IsForgeFedTicketDependency() bool
	// IsIRI returns true if this property is an IRI. When true, use GetIRI
	// and SetIRI to access and set this property
	IsIRI() bool
	// IsTootEmoji returns true if this property has a type of "Emoji". When
	// true, use the GetTootEmoji and SetTootEmoji methods to access and
	// set this property.
	IsTootEmoji() bool
	// IsTootIdentityProof returns true if this property has a type of
	// "IdentityProof". When true, use the GetTootIdentityProof and
	// SetTootIdentityProof methods to access and set this property.
	IsTootIdentityProof() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsTagPropertyIterator) bool
	// Name returns the name of this property: "ActivityStreamsTag".
	Name() string
	// Next returns the next iterator, or nil if there is no next iterator.
	Next() ActivityStreamsTagPropertyIterator
	// Prev returns the previous iterator, or nil if there is no previous
	// iterator.
	Prev() ActivityStreamsTagPropertyIterator
	// SetActivityStreamsAccept sets the value of this property. Calling
	// IsActivityStreamsAccept afterwards returns true.
	SetActivityStreamsAccept(v ActivityStreamsAccept)
	// SetActivityStreamsActivity sets the value of this property. Calling
	// IsActivityStreamsActivity afterwards returns true.
	SetActivityStreamsActivity(v ActivityStreamsActivity)
	// SetActivityStreamsAdd sets the value of this property. Calling
	// IsActivityStreamsAdd afterwards returns true.
	SetActivityStreamsAdd(v ActivityStreamsAdd)
	// SetActivityStreamsAnnounce sets the value of this property. Calling
	// IsActivityStreamsAnnounce afterwards returns true.
	SetActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// SetActivityStreamsApplication sets the value of this property. Calling
	// IsActivityStreamsApplication afterwards returns true.
	SetActivityStreamsApplication(v ActivityStreamsApplication)
	// SetActivityStreamsArrive sets the value of this property. Calling
	// IsActivityStreamsArrive afterwards returns true.
	SetActivityStreamsArrive(v ActivityStreamsArrive)
	// SetActivityStreamsArticle sets the value of this property. Calling
	// IsActivityStreamsArticle afterwards returns true.
	SetActivityStreamsArticle(v ActivityStreamsArticle)
	// SetActivityStreamsAudio sets the value of this property. Calling
	// IsActivityStreamsAudio afterwards returns true.
	SetActivityStreamsAudio(v ActivityStreamsAudio)
	// SetActivityStreamsBlock sets the value of this property. Calling
	// IsActivityStreamsBlock afterwards returns true.
	SetActivityStreamsBlock(v ActivityStreamsBlock)
	// SetActivityStreamsCollection sets the value of this property. Calling
	// IsActivityStreamsCollection afterwards returns true.
	SetActivityStreamsCollection(v ActivityStreamsCollection)
	// SetActivityStreamsCollectionPage sets the value of this property.
	// Calling IsActivityStreamsCollectionPage afterwards returns true.
	SetActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// SetActivityStreamsCreate sets the value of this property. Calling
	// IsActivityStreamsCreate afterwards returns true.
	SetActivityStreamsCreate(v ActivityStreamsCreate)
	// SetActivityStreamsDelete sets the value of this property. Calling
	// IsActivityStreamsDelete afterwards returns true.
	SetActivityStreamsDelete(v ActivityStreamsDelete)
	// SetActivityStreamsDislike sets the value of this property. Calling
	// IsActivityStreamsDislike afterwards returns true.
	SetActivityStreamsDislike(v ActivityStreamsDislike)
	// SetActivityStreamsDocument sets the value of this property. Calling
	// IsActivityStreamsDocument afterwards returns true.
	SetActivityStreamsDocument(v ActivityStreamsDocument)
	// SetActivityStreamsEvent sets the value of this property. Calling
	// IsActivityStreamsEvent afterwards returns true.
	SetActivityStreamsEvent(v ActivityStreamsEvent)
	// SetActivityStreamsFlag sets the value of this property. Calling
	// IsActivityStreamsFlag afterwards returns true.
	SetActivityStreamsFlag(v ActivityStreamsFlag)
	// SetActivityStreamsFollow sets the value of this property. Calling
	// IsActivityStreamsFollow afterwards returns true.
	SetActivityStreamsFollow(v ActivityStreamsFollow)
	// SetActivityStreamsGroup sets the value of this property. Calling
	// IsActivityStreamsGroup afterwards returns true.
	SetActivityStreamsGroup(v ActivityStreamsGroup)
	// SetActivityStreamsIgnore sets the value of this property. Calling
	// IsActivityStreamsIgnore afterwards returns true.
	SetActivityStreamsIgnore(v ActivityStreamsIgnore)
	// SetActivityStreamsImage sets the value of this property. Calling
	// IsActivityStreamsImage afterwards returns true.
	SetActivityStreamsImage(v ActivityStreamsImage)
	// SetActivityStreamsIntransitiveActivity sets the value of this property.
	// Calling IsActivityStreamsIntransitiveActivity afterwards returns
	// true.
	SetActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// SetActivityStreamsInvite sets the value of this property. Calling
	// IsActivityStreamsInvite afterwards returns true.
	SetActivityStreamsInvite(v ActivityStreamsInvite)
	// SetActivityStreamsJoin sets the value of this property. Calling
	// IsActivityStreamsJoin afterwards returns true.
	SetActivityStreamsJoin(v ActivityStreamsJoin)
	// SetActivityStreamsLeave sets the value of this property. Calling
	// IsActivityStreamsLeave afterwards returns true.
	SetActivityStreamsLeave(v ActivityStreamsLeave)
	// SetActivityStreamsLike sets the value of this property. Calling
	// IsActivityStreamsLike afterwards returns true.
	SetActivityStreamsLike(v ActivityStreamsLike)
	// SetActivityStreamsLink sets the value of this property. Calling
	// IsActivityStreamsLink afterwards returns true.
	SetActivityStreamsLink(v ActivityStreamsLink)
	// SetActivityStreamsListen sets the value of this property. Calling
	// IsActivityStreamsListen afterwards returns true.
	SetActivityStreamsListen(v ActivityStreamsListen)
	// SetActivityStreamsMention sets the value of this property. Calling
	// IsActivityStreamsMention afterwards returns true.
	SetActivityStreamsMention(v ActivityStreamsMention)
	// SetActivityStreamsMove sets the value of this property. Calling
	// IsActivityStreamsMove afterwards returns true.
	SetActivityStreamsMove(v ActivityStreamsMove)
	// SetActivityStreamsNote sets the value of this property. Calling
	// IsActivityStreamsNote afterwards returns true.
	SetActivityStreamsNote(v ActivityStreamsNote)
	// SetActivityStreamsObject sets the value of this property. Calling
	// IsActivityStreamsObject afterwards returns true.
	SetActivityStreamsObject(v ActivityStreamsObject)
	// SetActivityStreamsOffer sets the value of this property. Calling
	// IsActivityStreamsOffer afterwards returns true.
	SetActivityStreamsOffer(v ActivityStreamsOffer)
	// SetActivityStreamsOrderedCollection sets the value of this property.
	// Calling IsActivityStreamsOrderedCollection afterwards returns true.
	SetActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// SetActivityStreamsOrderedCollectionPage sets the value of this
	// property. Calling IsActivityStreamsOrderedCollectionPage afterwards
	// returns true.
	SetActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// SetActivityStreamsOrganization sets the value of this property. Calling
	// IsActivityStreamsOrganization afterwards returns true.
	SetActivityStreamsOrganization(v ActivityStreamsOrganization)
	// SetActivityStreamsPage sets the value of this property. Calling
	// IsActivityStreamsPage afterwards returns true.
	SetActivityStreamsPage(v ActivityStreamsPage)
	// SetActivityStreamsPerson sets the value of this property. Calling
	// IsActivityStreamsPerson afterwards returns true.
	SetActivityStreamsPerson(v ActivityStreamsPerson)
	// SetActivityStreamsPlace sets the value of this property. Calling
	// IsActivityStreamsPlace afterwards returns true.
	SetActivityStreamsPlace(v ActivityStreamsPlace)
	// SetActivityStreamsProfile sets the value of this property. Calling
	// IsActivityStreamsProfile afterwards returns true.
	SetActivityStreamsProfile(v ActivityStreamsProfile)
	// SetActivityStreamsQuestion sets the value of this property. Calling
	// IsActivityStreamsQuestion afterwards returns true.
	SetActivityStreamsQuestion(v ActivityStreamsQuestion)
	// SetActivityStreamsRead sets the value of this property. Calling
	// IsActivityStreamsRead afterwards returns true.
	SetActivityStreamsRead(v ActivityStreamsRead)
	// SetActivityStreamsReject sets the value of this property. Calling
	// IsActivityStreamsReject afterwards returns true.
	SetActivityStreamsReject(v ActivityStreamsReject)
	// SetActivityStreamsRelationship sets the value of this property. Calling
	// IsActivityStreamsRelationship afterwards returns true.
	SetActivityStreamsRelationship(v ActivityStreamsRelationship)
	// SetActivityStreamsRemove sets the value of this property. Calling
	// IsActivityStreamsRemove afterwards returns true.
	SetActivityStreamsRemove(v ActivityStreamsRemove)
	// SetActivityStreamsService sets the value of this property. Calling
	// IsActivityStreamsService afterwards returns true.
	SetActivityStreamsService(v ActivityStreamsService)
	// SetActivityStreamsTentativeAccept sets the value of this property.
	// Calling IsActivityStreamsTentativeAccept afterwards returns true.
	SetActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// SetActivityStreamsTentativeReject sets the value of this property.
	// Calling IsActivityStreamsTentativeReject afterwards returns true.
	SetActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// SetActivityStreamsTombstone sets the value of this property. Calling
	// IsActivityStreamsTombstone afterwards returns true.
	SetActivityStreamsTombstone(v ActivityStreamsTombstone)
	// SetActivityStreamsTravel sets the value of this property. Calling
	// IsActivityStreamsTravel afterwards returns true.
	SetActivityStreamsTravel(v ActivityStreamsTravel)
	// SetActivityStreamsUndo sets the value of this property. Calling
	// IsActivityStreamsUndo afterwards returns true.
	SetActivityStreamsUndo(v ActivityStreamsUndo)
	// SetActivityStreamsUpdate sets the value of this property. Calling
	// IsActivityStreamsUpdate afterwards returns true.
	SetActivityStreamsUpdate(v ActivityStreamsUpdate)
	// SetActivityStreamsVideo sets the value of this property. Calling
	// IsActivityStreamsVideo afterwards returns true.
	SetActivityStreamsVideo(v ActivityStreamsVideo)
	// SetActivityStreamsView sets the value of this property. Calling
	// IsActivityStreamsView afterwards returns true.
	SetActivityStreamsView(v ActivityStreamsView)
	// SetForgeFedBranch sets the value of this property. Calling
	// IsForgeFedBranch afterwards returns true.
	SetForgeFedBranch(v ForgeFedBranch)
	// SetForgeFedCommit sets the value of this property. Calling
	// IsForgeFedCommit afterwards returns true.
	SetForgeFedCommit(v ForgeFedCommit)
	// SetForgeFedPush sets the value of this property. Calling IsForgeFedPush
	// afterwards returns true.
	SetForgeFedPush(v ForgeFedPush)
	// SetForgeFedRepository sets the value of this property. Calling
	// IsForgeFedRepository afterwards returns true.
	SetForgeFedRepository(v ForgeFedRepository)
	// SetForgeFedTicket sets the value of this property. Calling
	// IsForgeFedTicket afterwards returns true.
	SetForgeFedTicket(v ForgeFedTicket)
	// SetForgeFedTicketDependency sets the value of this property. Calling
	// IsForgeFedTicketDependency afterwards returns true.
	SetForgeFedTicketDependency(v ForgeFedTicketDependency)
	// SetIRI sets the value of this property. Calling IsIRI afterwards
	// returns true.
	SetIRI(v *url.URL)
	// SetTootEmoji sets the value of this property. Calling IsTootEmoji
	// afterwards returns true.
	SetTootEmoji(v TootEmoji)
	// SetTootIdentityProof sets the value of this property. Calling
	// IsTootIdentityProof afterwards returns true.
	SetTootIdentityProof(v TootIdentityProof)
	// SetType attempts to set the property for the arbitrary type. Returns an
	// error if it is not a valid type to set on this property.
	SetType(t Type) error
}

ActivityStreamsTagPropertyIterator represents a single value for the "tag" property.

type ActivityStreamsTargetProperty

type ActivityStreamsTargetProperty interface {
	// AppendActivityStreamsAccept appends a Accept value to the back of a
	// list of the property "target". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsAccept(v ActivityStreamsAccept)
	// AppendActivityStreamsActivity appends a Activity value to the back of a
	// list of the property "target". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsActivity(v ActivityStreamsActivity)
	// AppendActivityStreamsAdd appends a Add value to the back of a list of
	// the property "target". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsAdd(v ActivityStreamsAdd)
	// AppendActivityStreamsAnnounce appends a Announce value to the back of a
	// list of the property "target". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// AppendActivityStreamsApplication appends a Application value to the
	// back of a list of the property "target". Invalidates iterators that
	// are traversing using Prev.
	AppendActivityStreamsApplication(v ActivityStreamsApplication)
	// AppendActivityStreamsArrive appends a Arrive value to the back of a
	// list of the property "target". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsArrive(v ActivityStreamsArrive)
	// AppendActivityStreamsArticle appends a Article value to the back of a
	// list of the property "target". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsArticle(v ActivityStreamsArticle)
	// AppendActivityStreamsAudio appends a Audio value to the back of a list
	// of the property "target". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsAudio(v ActivityStreamsAudio)
	// AppendActivityStreamsBlock appends a Block value to the back of a list
	// of the property "target". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsBlock(v ActivityStreamsBlock)
	// AppendActivityStreamsCollection appends a Collection value to the back
	// of a list of the property "target". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsCollection(v ActivityStreamsCollection)
	// AppendActivityStreamsCollectionPage appends a CollectionPage value to
	// the back of a list of the property "target". Invalidates iterators
	// that are traversing using Prev.
	AppendActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// AppendActivityStreamsCreate appends a Create value to the back of a
	// list of the property "target". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsCreate(v ActivityStreamsCreate)
	// AppendActivityStreamsDelete appends a Delete value to the back of a
	// list of the property "target". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDelete(v ActivityStreamsDelete)
	// AppendActivityStreamsDislike appends a Dislike value to the back of a
	// list of the property "target". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDislike(v ActivityStreamsDislike)
	// AppendActivityStreamsDocument appends a Document value to the back of a
	// list of the property "target". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDocument(v ActivityStreamsDocument)
	// AppendActivityStreamsEvent appends a Event value to the back of a list
	// of the property "target". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsEvent(v ActivityStreamsEvent)
	// AppendActivityStreamsFlag appends a Flag value to the back of a list of
	// the property "target". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsFlag(v ActivityStreamsFlag)
	// AppendActivityStreamsFollow appends a Follow value to the back of a
	// list of the property "target". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsFollow(v ActivityStreamsFollow)
	// AppendActivityStreamsGroup appends a Group value to the back of a list
	// of the property "target". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsGroup(v ActivityStreamsGroup)
	// AppendActivityStreamsIgnore appends a Ignore value to the back of a
	// list of the property "target". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsIgnore(v ActivityStreamsIgnore)
	// AppendActivityStreamsImage appends a Image value to the back of a list
	// of the property "target". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsImage(v ActivityStreamsImage)
	// AppendActivityStreamsIntransitiveActivity appends a
	// IntransitiveActivity value to the back of a list of the property
	// "target". Invalidates iterators that are traversing using Prev.
	AppendActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// AppendActivityStreamsInvite appends a Invite value to the back of a
	// list of the property "target". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsInvite(v ActivityStreamsInvite)
	// AppendActivityStreamsJoin appends a Join value to the back of a list of
	// the property "target". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsJoin(v ActivityStreamsJoin)
	// AppendActivityStreamsLeave appends a Leave value to the back of a list
	// of the property "target". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsLeave(v ActivityStreamsLeave)
	// AppendActivityStreamsLike appends a Like value to the back of a list of
	// the property "target". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsLike(v ActivityStreamsLike)
	// AppendActivityStreamsLink appends a Link value to the back of a list of
	// the property "target". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsLink(v ActivityStreamsLink)
	// AppendActivityStreamsListen appends a Listen value to the back of a
	// list of the property "target". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsListen(v ActivityStreamsListen)
	// AppendActivityStreamsMention appends a Mention value to the back of a
	// list of the property "target". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsMention(v ActivityStreamsMention)
	// AppendActivityStreamsMove appends a Move value to the back of a list of
	// the property "target". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsMove(v ActivityStreamsMove)
	// AppendActivityStreamsNote appends a Note value to the back of a list of
	// the property "target". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsNote(v ActivityStreamsNote)
	// AppendActivityStreamsObject appends a Object value to the back of a
	// list of the property "target". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsObject(v ActivityStreamsObject)
	// AppendActivityStreamsOffer appends a Offer value to the back of a list
	// of the property "target". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsOffer(v ActivityStreamsOffer)
	// AppendActivityStreamsOrderedCollection appends a OrderedCollection
	// value to the back of a list of the property "target". Invalidates
	// iterators that are traversing using Prev.
	AppendActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// AppendActivityStreamsOrderedCollectionPage appends a
	// OrderedCollectionPage value to the back of a list of the property
	// "target". Invalidates iterators that are traversing using Prev.
	AppendActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// AppendActivityStreamsOrganization appends a Organization value to the
	// back of a list of the property "target". Invalidates iterators that
	// are traversing using Prev.
	AppendActivityStreamsOrganization(v ActivityStreamsOrganization)
	// AppendActivityStreamsPage appends a Page value to the back of a list of
	// the property "target". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsPage(v ActivityStreamsPage)
	// AppendActivityStreamsPerson appends a Person value to the back of a
	// list of the property "target". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsPerson(v ActivityStreamsPerson)
	// AppendActivityStreamsPlace appends a Place value to the back of a list
	// of the property "target". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsPlace(v ActivityStreamsPlace)
	// AppendActivityStreamsProfile appends a Profile value to the back of a
	// list of the property "target". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsProfile(v ActivityStreamsProfile)
	// AppendActivityStreamsQuestion appends a Question value to the back of a
	// list of the property "target". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsQuestion(v ActivityStreamsQuestion)
	// AppendActivityStreamsRead appends a Read value to the back of a list of
	// the property "target". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsRead(v ActivityStreamsRead)
	// AppendActivityStreamsReject appends a Reject value to the back of a
	// list of the property "target". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsReject(v ActivityStreamsReject)
	// AppendActivityStreamsRelationship appends a Relationship value to the
	// back of a list of the property "target". Invalidates iterators that
	// are traversing using Prev.
	AppendActivityStreamsRelationship(v ActivityStreamsRelationship)
	// AppendActivityStreamsRemove appends a Remove value to the back of a
	// list of the property "target". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsRemove(v ActivityStreamsRemove)
	// AppendActivityStreamsService appends a Service value to the back of a
	// list of the property "target". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsService(v ActivityStreamsService)
	// AppendActivityStreamsTentativeAccept appends a TentativeAccept value to
	// the back of a list of the property "target". Invalidates iterators
	// that are traversing using Prev.
	AppendActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// AppendActivityStreamsTentativeReject appends a TentativeReject value to
	// the back of a list of the property "target". Invalidates iterators
	// that are traversing using Prev.
	AppendActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// AppendActivityStreamsTombstone appends a Tombstone value to the back of
	// a list of the property "target". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsTombstone(v ActivityStreamsTombstone)
	// AppendActivityStreamsTravel appends a Travel value to the back of a
	// list of the property "target". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsTravel(v ActivityStreamsTravel)
	// AppendActivityStreamsUndo appends a Undo value to the back of a list of
	// the property "target". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsUndo(v ActivityStreamsUndo)
	// AppendActivityStreamsUpdate appends a Update value to the back of a
	// list of the property "target". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsUpdate(v ActivityStreamsUpdate)
	// AppendActivityStreamsVideo appends a Video value to the back of a list
	// of the property "target". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsVideo(v ActivityStreamsVideo)
	// AppendActivityStreamsView appends a View value to the back of a list of
	// the property "target". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsView(v ActivityStreamsView)
	// AppendForgeFedBranch appends a Branch value to the back of a list of
	// the property "target". Invalidates iterators that are traversing
	// using Prev.
	AppendForgeFedBranch(v ForgeFedBranch)
	// AppendForgeFedCommit appends a Commit value to the back of a list of
	// the property "target". Invalidates iterators that are traversing
	// using Prev.
	AppendForgeFedCommit(v ForgeFedCommit)
	// AppendForgeFedPush appends a Push value to the back of a list of the
	// property "target". Invalidates iterators that are traversing using
	// Prev.
	AppendForgeFedPush(v ForgeFedPush)
	// AppendForgeFedRepository appends a Repository value to the back of a
	// list of the property "target". Invalidates iterators that are
	// traversing using Prev.
	AppendForgeFedRepository(v ForgeFedRepository)
	// AppendForgeFedTicket appends a Ticket value to the back of a list of
	// the property "target". Invalidates iterators that are traversing
	// using Prev.
	AppendForgeFedTicket(v ForgeFedTicket)
	// AppendForgeFedTicketDependency appends a TicketDependency value to the
	// back of a list of the property "target". Invalidates iterators that
	// are traversing using Prev.
	AppendForgeFedTicketDependency(v ForgeFedTicketDependency)
	// AppendIRI appends an IRI value to the back of a list of the property
	// "target"
	AppendIRI(v *url.URL)
	// AppendTootEmoji appends a Emoji value to the back of a list of the
	// property "target". Invalidates iterators that are traversing using
	// Prev.
	AppendTootEmoji(v TootEmoji)
	// AppendTootIdentityProof appends a IdentityProof value to the back of a
	// list of the property "target". Invalidates iterators that are
	// traversing using Prev.
	AppendTootIdentityProof(v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "target". Invalidates iterators that are traversing
	// using Prev. Returns an error if the type is not a valid one to set
	// for this property.
	AppendType(t Type) error
	// At returns the property value for the specified index. Panics if the
	// index is out of bounds.
	At(index int) ActivityStreamsTargetPropertyIterator
	// Begin returns the first iterator, or nil if empty. Can be used with the
	// iterator's Next method and this property's End method to iterate
	// from front to back through all values.
	Begin() ActivityStreamsTargetPropertyIterator
	// Empty returns returns true if there are no elements.
	Empty() bool
	// End returns beyond-the-last iterator, which is nil. Can be used with
	// the iterator's Next method and this property's Begin method to
	// iterate from front to back through all values.
	End() ActivityStreamsTargetPropertyIterator
	// InsertActivityStreamsAccept inserts a Accept value at the specified
	// index for a property "target". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAccept(idx int, v ActivityStreamsAccept)
	// InsertActivityStreamsActivity inserts a Activity value at the specified
	// index for a property "target". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsActivity(idx int, v ActivityStreamsActivity)
	// InsertActivityStreamsAdd inserts a Add value at the specified index for
	// a property "target". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertActivityStreamsAdd(idx int, v ActivityStreamsAdd)
	// InsertActivityStreamsAnnounce inserts a Announce value at the specified
	// index for a property "target". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAnnounce(idx int, v ActivityStreamsAnnounce)
	// InsertActivityStreamsApplication inserts a Application value at the
	// specified index for a property "target". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsApplication(idx int, v ActivityStreamsApplication)
	// InsertActivityStreamsArrive inserts a Arrive value at the specified
	// index for a property "target". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsArrive(idx int, v ActivityStreamsArrive)
	// InsertActivityStreamsArticle inserts a Article value at the specified
	// index for a property "target". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsArticle(idx int, v ActivityStreamsArticle)
	// InsertActivityStreamsAudio inserts a Audio value at the specified index
	// for a property "target". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAudio(idx int, v ActivityStreamsAudio)
	// InsertActivityStreamsBlock inserts a Block value at the specified index
	// for a property "target". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsBlock(idx int, v ActivityStreamsBlock)
	// InsertActivityStreamsCollection inserts a Collection value at the
	// specified index for a property "target". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsCollection(idx int, v ActivityStreamsCollection)
	// InsertActivityStreamsCollectionPage inserts a CollectionPage value at
	// the specified index for a property "target". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsCollectionPage(idx int, v ActivityStreamsCollectionPage)
	// InsertActivityStreamsCreate inserts a Create value at the specified
	// index for a property "target". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsCreate(idx int, v ActivityStreamsCreate)
	// InsertActivityStreamsDelete inserts a Delete value at the specified
	// index for a property "target". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDelete(idx int, v ActivityStreamsDelete)
	// InsertActivityStreamsDislike inserts a Dislike value at the specified
	// index for a property "target". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDislike(idx int, v ActivityStreamsDislike)
	// InsertActivityStreamsDocument inserts a Document value at the specified
	// index for a property "target". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDocument(idx int, v ActivityStreamsDocument)
	// InsertActivityStreamsEvent inserts a Event value at the specified index
	// for a property "target". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsEvent(idx int, v ActivityStreamsEvent)
	// InsertActivityStreamsFlag inserts a Flag value at the specified index
	// for a property "target". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsFlag(idx int, v ActivityStreamsFlag)
	// InsertActivityStreamsFollow inserts a Follow value at the specified
	// index for a property "target". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsFollow(idx int, v ActivityStreamsFollow)
	// InsertActivityStreamsGroup inserts a Group value at the specified index
	// for a property "target". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsGroup(idx int, v ActivityStreamsGroup)
	// InsertActivityStreamsIgnore inserts a Ignore value at the specified
	// index for a property "target". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsIgnore(idx int, v ActivityStreamsIgnore)
	// InsertActivityStreamsImage inserts a Image value at the specified index
	// for a property "target". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsImage(idx int, v ActivityStreamsImage)
	// InsertActivityStreamsIntransitiveActivity inserts a
	// IntransitiveActivity value at the specified index for a property
	// "target". Existing elements at that index and higher are shifted
	// back once. Invalidates all iterators.
	InsertActivityStreamsIntransitiveActivity(idx int, v ActivityStreamsIntransitiveActivity)
	// InsertActivityStreamsInvite inserts a Invite value at the specified
	// index for a property "target". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsInvite(idx int, v ActivityStreamsInvite)
	// InsertActivityStreamsJoin inserts a Join value at the specified index
	// for a property "target". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsJoin(idx int, v ActivityStreamsJoin)
	// InsertActivityStreamsLeave inserts a Leave value at the specified index
	// for a property "target". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsLeave(idx int, v ActivityStreamsLeave)
	// InsertActivityStreamsLike inserts a Like value at the specified index
	// for a property "target". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsLike(idx int, v ActivityStreamsLike)
	// InsertActivityStreamsLink inserts a Link value at the specified index
	// for a property "target". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsLink(idx int, v ActivityStreamsLink)
	// InsertActivityStreamsListen inserts a Listen value at the specified
	// index for a property "target". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsListen(idx int, v ActivityStreamsListen)
	// InsertActivityStreamsMention inserts a Mention value at the specified
	// index for a property "target". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsMention(idx int, v ActivityStreamsMention)
	// InsertActivityStreamsMove inserts a Move value at the specified index
	// for a property "target". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsMove(idx int, v ActivityStreamsMove)
	// InsertActivityStreamsNote inserts a Note value at the specified index
	// for a property "target". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsNote(idx int, v ActivityStreamsNote)
	// InsertActivityStreamsObject inserts a Object value at the specified
	// index for a property "target". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsObject(idx int, v ActivityStreamsObject)
	// InsertActivityStreamsOffer inserts a Offer value at the specified index
	// for a property "target". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsOffer(idx int, v ActivityStreamsOffer)
	// InsertActivityStreamsOrderedCollection inserts a OrderedCollection
	// value at the specified index for a property "target". Existing
	// elements at that index and higher are shifted back once.
	// Invalidates all iterators.
	InsertActivityStreamsOrderedCollection(idx int, v ActivityStreamsOrderedCollection)
	// InsertActivityStreamsOrderedCollectionPage inserts a
	// OrderedCollectionPage value at the specified index for a property
	// "target". Existing elements at that index and higher are shifted
	// back once. Invalidates all iterators.
	InsertActivityStreamsOrderedCollectionPage(idx int, v ActivityStreamsOrderedCollectionPage)
	// InsertActivityStreamsOrganization inserts a Organization value at the
	// specified index for a property "target". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsOrganization(idx int, v ActivityStreamsOrganization)
	// InsertActivityStreamsPage inserts a Page value at the specified index
	// for a property "target". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsPage(idx int, v ActivityStreamsPage)
	// InsertActivityStreamsPerson inserts a Person value at the specified
	// index for a property "target". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsPerson(idx int, v ActivityStreamsPerson)
	// InsertActivityStreamsPlace inserts a Place value at the specified index
	// for a property "target". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsPlace(idx int, v ActivityStreamsPlace)
	// InsertActivityStreamsProfile inserts a Profile value at the specified
	// index for a property "target". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsProfile(idx int, v ActivityStreamsProfile)
	// InsertActivityStreamsQuestion inserts a Question value at the specified
	// index for a property "target". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsQuestion(idx int, v ActivityStreamsQuestion)
	// InsertActivityStreamsRead inserts a Read value at the specified index
	// for a property "target". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsRead(idx int, v ActivityStreamsRead)
	// InsertActivityStreamsReject inserts a Reject value at the specified
	// index for a property "target". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsReject(idx int, v ActivityStreamsReject)
	// InsertActivityStreamsRelationship inserts a Relationship value at the
	// specified index for a property "target". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsRelationship(idx int, v ActivityStreamsRelationship)
	// InsertActivityStreamsRemove inserts a Remove value at the specified
	// index for a property "target". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsRemove(idx int, v ActivityStreamsRemove)
	// InsertActivityStreamsService inserts a Service value at the specified
	// index for a property "target". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsService(idx int, v ActivityStreamsService)
	// InsertActivityStreamsTentativeAccept inserts a TentativeAccept value at
	// the specified index for a property "target". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsTentativeAccept(idx int, v ActivityStreamsTentativeAccept)
	// InsertActivityStreamsTentativeReject inserts a TentativeReject value at
	// the specified index for a property "target". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsTentativeReject(idx int, v ActivityStreamsTentativeReject)
	// InsertActivityStreamsTombstone inserts a Tombstone value at the
	// specified index for a property "target". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsTombstone(idx int, v ActivityStreamsTombstone)
	// InsertActivityStreamsTravel inserts a Travel value at the specified
	// index for a property "target". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsTravel(idx int, v ActivityStreamsTravel)
	// InsertActivityStreamsUndo inserts a Undo value at the specified index
	// for a property "target". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsUndo(idx int, v ActivityStreamsUndo)
	// InsertActivityStreamsUpdate inserts a Update value at the specified
	// index for a property "target". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsUpdate(idx int, v ActivityStreamsUpdate)
	// InsertActivityStreamsVideo inserts a Video value at the specified index
	// for a property "target". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsVideo(idx int, v ActivityStreamsVideo)
	// InsertActivityStreamsView inserts a View value at the specified index
	// for a property "target". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsView(idx int, v ActivityStreamsView)
	// InsertForgeFedBranch inserts a Branch value at the specified index for
	// a property "target". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertForgeFedBranch(idx int, v ForgeFedBranch)
	// InsertForgeFedCommit inserts a Commit value at the specified index for
	// a property "target". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertForgeFedCommit(idx int, v ForgeFedCommit)
	// InsertForgeFedPush inserts a Push value at the specified index for a
	// property "target". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertForgeFedPush(idx int, v ForgeFedPush)
	// InsertForgeFedRepository inserts a Repository value at the specified
	// index for a property "target". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertForgeFedRepository(idx int, v ForgeFedRepository)
	// InsertForgeFedTicket inserts a Ticket value at the specified index for
	// a property "target". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertForgeFedTicket(idx int, v ForgeFedTicket)
	// InsertForgeFedTicketDependency inserts a TicketDependency value at the
	// specified index for a property "target". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
	// Insert inserts an IRI value at the specified index for a property
	// "target". Existing elements at that index and higher are shifted
	// back once. Invalidates all iterators.
	InsertIRI(idx int, v *url.URL)
	// InsertTootEmoji inserts a Emoji value at the specified index for a
	// property "target". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertTootEmoji(idx int, v TootEmoji)
	// InsertTootIdentityProof inserts a IdentityProof value at the specified
	// index for a property "target". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertTootIdentityProof(idx int, v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "target". Invalidates all iterators. Returns an error
	// if the type is not a valid one to set for this property.
	InsertType(idx int, t Type) error
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API method specifically needed only for alternate
	// implementations for go-fed. Applications should not use this
	// method. Panics if the index is out of bounds.
	KindIndex(idx int) int
	// Len returns the number of values that exist for the "target" property.
	Len() (length int)
	// Less computes whether another property is less than this one. Mixing
	// types results in a consistent but arbitrary ordering
	Less(i, j int) bool
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsTargetProperty) bool
	// Name returns the name of this property ("target") with any alias.
	Name() string
	// PrependActivityStreamsAccept prepends a Accept value to the front of a
	// list of the property "target". Invalidates all iterators.
	PrependActivityStreamsAccept(v ActivityStreamsAccept)
	// PrependActivityStreamsActivity prepends a Activity value to the front
	// of a list of the property "target". Invalidates all iterators.
	PrependActivityStreamsActivity(v ActivityStreamsActivity)
	// PrependActivityStreamsAdd prepends a Add value to the front of a list
	// of the property "target". Invalidates all iterators.
	PrependActivityStreamsAdd(v ActivityStreamsAdd)
	// PrependActivityStreamsAnnounce prepends a Announce value to the front
	// of a list of the property "target". Invalidates all iterators.
	PrependActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// PrependActivityStreamsApplication prepends a Application value to the
	// front of a list of the property "target". Invalidates all iterators.
	PrependActivityStreamsApplication(v ActivityStreamsApplication)
	// PrependActivityStreamsArrive prepends a Arrive value to the front of a
	// list of the property "target". Invalidates all iterators.
	PrependActivityStreamsArrive(v ActivityStreamsArrive)
	// PrependActivityStreamsArticle prepends a Article value to the front of
	// a list of the property "target". Invalidates all iterators.
	PrependActivityStreamsArticle(v ActivityStreamsArticle)
	// PrependActivityStreamsAudio prepends a Audio value to the front of a
	// list of the property "target". Invalidates all iterators.
	PrependActivityStreamsAudio(v ActivityStreamsAudio)
	// PrependActivityStreamsBlock prepends a Block value to the front of a
	// list of the property "target". Invalidates all iterators.
	PrependActivityStreamsBlock(v ActivityStreamsBlock)
	// PrependActivityStreamsCollection prepends a Collection value to the
	// front of a list of the property "target". Invalidates all iterators.
	PrependActivityStreamsCollection(v ActivityStreamsCollection)
	// PrependActivityStreamsCollectionPage prepends a CollectionPage value to
	// the front of a list of the property "target". Invalidates all
	// iterators.
	PrependActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// PrependActivityStreamsCreate prepends a Create value to the front of a
	// list of the property "target". Invalidates all iterators.
	PrependActivityStreamsCreate(v ActivityStreamsCreate)
	// PrependActivityStreamsDelete prepends a Delete value to the front of a
	// list of the property "target". Invalidates all iterators.
	PrependActivityStreamsDelete(v ActivityStreamsDelete)
	// PrependActivityStreamsDislike prepends a Dislike value to the front of
	// a list of the property "target". Invalidates all iterators.
	PrependActivityStreamsDislike(v ActivityStreamsDislike)
	// PrependActivityStreamsDocument prepends a Document value to the front
	// of a list of the property "target". Invalidates all iterators.
	PrependActivityStreamsDocument(v ActivityStreamsDocument)
	// PrependActivityStreamsEvent prepends a Event value to the front of a
	// list of the property "target". Invalidates all iterators.
	PrependActivityStreamsEvent(v ActivityStreamsEvent)
	// PrependActivityStreamsFlag prepends a Flag value to the front of a list
	// of the property "target". Invalidates all iterators.
	PrependActivityStreamsFlag(v ActivityStreamsFlag)
	// PrependActivityStreamsFollow prepends a Follow value to the front of a
	// list of the property "target". Invalidates all iterators.
	PrependActivityStreamsFollow(v ActivityStreamsFollow)
	// PrependActivityStreamsGroup prepends a Group value to the front of a
	// list of the property "target". Invalidates all iterators.
	PrependActivityStreamsGroup(v ActivityStreamsGroup)
	// PrependActivityStreamsIgnore prepends a Ignore value to the front of a
	// list of the property "target". Invalidates all iterators.
	PrependActivityStreamsIgnore(v ActivityStreamsIgnore)
	// PrependActivityStreamsImage prepends a Image value to the front of a
	// list of the property "target". Invalidates all iterators.
	PrependActivityStreamsImage(v ActivityStreamsImage)
	// PrependActivityStreamsIntransitiveActivity prepends a
	// IntransitiveActivity value to the front of a list of the property
	// "target". Invalidates all iterators.
	PrependActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// PrependActivityStreamsInvite prepends a Invite value to the front of a
	// list of the property "target". Invalidates all iterators.
	PrependActivityStreamsInvite(v ActivityStreamsInvite)
	// PrependActivityStreamsJoin prepends a Join value to the front of a list
	// of the property "target". Invalidates all iterators.
	PrependActivityStreamsJoin(v ActivityStreamsJoin)
	// PrependActivityStreamsLeave prepends a Leave value to the front of a
	// list of the property "target". Invalidates all iterators.
	PrependActivityStreamsLeave(v ActivityStreamsLeave)
	// PrependActivityStreamsLike prepends a Like value to the front of a list
	// of the property "target". Invalidates all iterators.
	PrependActivityStreamsLike(v ActivityStreamsLike)
	// PrependActivityStreamsLink prepends a Link value to the front of a list
	// of the property "target". Invalidates all iterators.
	PrependActivityStreamsLink(v ActivityStreamsLink)
	// PrependActivityStreamsListen prepends a Listen value to the front of a
	// list of the property "target". Invalidates all iterators.
	PrependActivityStreamsListen(v ActivityStreamsListen)
	// PrependActivityStreamsMention prepends a Mention value to the front of
	// a list of the property "target". Invalidates all iterators.
	PrependActivityStreamsMention(v ActivityStreamsMention)
	// PrependActivityStreamsMove prepends a Move value to the front of a list
	// of the property "target". Invalidates all iterators.
	PrependActivityStreamsMove(v ActivityStreamsMove)
	// PrependActivityStreamsNote prepends a Note value to the front of a list
	// of the property "target". Invalidates all iterators.
	PrependActivityStreamsNote(v ActivityStreamsNote)
	// PrependActivityStreamsObject prepends a Object value to the front of a
	// list of the property "target". Invalidates all iterators.
	PrependActivityStreamsObject(v ActivityStreamsObject)
	// PrependActivityStreamsOffer prepends a Offer value to the front of a
	// list of the property "target". Invalidates all iterators.
	PrependActivityStreamsOffer(v ActivityStreamsOffer)
	// PrependActivityStreamsOrderedCollection prepends a OrderedCollection
	// value to the front of a list of the property "target". Invalidates
	// all iterators.
	PrependActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// PrependActivityStreamsOrderedCollectionPage prepends a
	// OrderedCollectionPage value to the front of a list of the property
	// "target". Invalidates all iterators.
	PrependActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// PrependActivityStreamsOrganization prepends a Organization value to the
	// front of a list of the property "target". Invalidates all iterators.
	PrependActivityStreamsOrganization(v ActivityStreamsOrganization)
	// PrependActivityStreamsPage prepends a Page value to the front of a list
	// of the property "target". Invalidates all iterators.
	PrependActivityStreamsPage(v ActivityStreamsPage)
	// PrependActivityStreamsPerson prepends a Person value to the front of a
	// list of the property "target". Invalidates all iterators.
	PrependActivityStreamsPerson(v ActivityStreamsPerson)
	// PrependActivityStreamsPlace prepends a Place value to the front of a
	// list of the property "target". Invalidates all iterators.
	PrependActivityStreamsPlace(v ActivityStreamsPlace)
	// PrependActivityStreamsProfile prepends a Profile value to the front of
	// a list of the property "target". Invalidates all iterators.
	PrependActivityStreamsProfile(v ActivityStreamsProfile)
	// PrependActivityStreamsQuestion prepends a Question value to the front
	// of a list of the property "target". Invalidates all iterators.
	PrependActivityStreamsQuestion(v ActivityStreamsQuestion)
	// PrependActivityStreamsRead prepends a Read value to the front of a list
	// of the property "target". Invalidates all iterators.
	PrependActivityStreamsRead(v ActivityStreamsRead)
	// PrependActivityStreamsReject prepends a Reject value to the front of a
	// list of the property "target". Invalidates all iterators.
	PrependActivityStreamsReject(v ActivityStreamsReject)
	// PrependActivityStreamsRelationship prepends a Relationship value to the
	// front of a list of the property "target". Invalidates all iterators.
	PrependActivityStreamsRelationship(v ActivityStreamsRelationship)
	// PrependActivityStreamsRemove prepends a Remove value to the front of a
	// list of the property "target". Invalidates all iterators.
	PrependActivityStreamsRemove(v ActivityStreamsRemove)
	// PrependActivityStreamsService prepends a Service value to the front of
	// a list of the property "target". Invalidates all iterators.
	PrependActivityStreamsService(v ActivityStreamsService)
	// PrependActivityStreamsTentativeAccept prepends a TentativeAccept value
	// to the front of a list of the property "target". Invalidates all
	// iterators.
	PrependActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// PrependActivityStreamsTentativeReject prepends a TentativeReject value
	// to the front of a list of the property "target". Invalidates all
	// iterators.
	PrependActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// PrependActivityStreamsTombstone prepends a Tombstone value to the front
	// of a list of the property "target". Invalidates all iterators.
	PrependActivityStreamsTombstone(v ActivityStreamsTombstone)
	// PrependActivityStreamsTravel prepends a Travel value to the front of a
	// list of the property "target". Invalidates all iterators.
	PrependActivityStreamsTravel(v ActivityStreamsTravel)
	// PrependActivityStreamsUndo prepends a Undo value to the front of a list
	// of the property "target". Invalidates all iterators.
	PrependActivityStreamsUndo(v ActivityStreamsUndo)
	// PrependActivityStreamsUpdate prepends a Update value to the front of a
	// list of the property "target". Invalidates all iterators.
	PrependActivityStreamsUpdate(v ActivityStreamsUpdate)
	// PrependActivityStreamsVideo prepends a Video value to the front of a
	// list of the property "target". Invalidates all iterators.
	PrependActivityStreamsVideo(v ActivityStreamsVideo)
	// PrependActivityStreamsView prepends a View value to the front of a list
	// of the property "target". Invalidates all iterators.
	PrependActivityStreamsView(v ActivityStreamsView)
	// PrependForgeFedBranch prepends a Branch value to the front of a list of
	// the property "target". Invalidates all iterators.
	PrependForgeFedBranch(v ForgeFedBranch)
	// PrependForgeFedCommit prepends a Commit value to the front of a list of
	// the property "target". Invalidates all iterators.
	PrependForgeFedCommit(v ForgeFedCommit)
	// PrependForgeFedPush prepends a Push value to the front of a list of the
	// property "target". Invalidates all iterators.
	PrependForgeFedPush(v ForgeFedPush)
	// PrependForgeFedRepository prepends a Repository value to the front of a
	// list of the property "target". Invalidates all iterators.
	PrependForgeFedRepository(v ForgeFedRepository)
	// PrependForgeFedTicket prepends a Ticket value to the front of a list of
	// the property "target". Invalidates all iterators.
	PrependForgeFedTicket(v ForgeFedTicket)
	// PrependForgeFedTicketDependency prepends a TicketDependency value to
	// the front of a list of the property "target". Invalidates all
	// iterators.
	PrependForgeFedTicketDependency(v ForgeFedTicketDependency)
	// PrependIRI prepends an IRI value to the front of a list of the property
	// "target".
	PrependIRI(v *url.URL)
	// PrependTootEmoji prepends a Emoji value to the front of a list of the
	// property "target". Invalidates all iterators.
	PrependTootEmoji(v TootEmoji)
	// PrependTootIdentityProof prepends a IdentityProof value to the front of
	// a list of the property "target". Invalidates all iterators.
	PrependTootIdentityProof(v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "target". Invalidates all iterators. Returns an error
	// if the type is not a valid one to set for this property.
	PrependType(t Type) error
	// Remove deletes an element at the specified index from a list of the
	// property "target", regardless of its type. Panics if the index is
	// out of bounds. Invalidates all iterators.
	Remove(idx int)
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// SetActivityStreamsAccept sets a Accept value to be at the specified
	// index for the property "target". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsAccept(idx int, v ActivityStreamsAccept)
	// SetActivityStreamsActivity sets a Activity value to be at the specified
	// index for the property "target". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsActivity(idx int, v ActivityStreamsActivity)
	// SetActivityStreamsAdd sets a Add value to be at the specified index for
	// the property "target". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsAdd(idx int, v ActivityStreamsAdd)
	// SetActivityStreamsAnnounce sets a Announce value to be at the specified
	// index for the property "target". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsAnnounce(idx int, v ActivityStreamsAnnounce)
	// SetActivityStreamsApplication sets a Application value to be at the
	// specified index for the property "target". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsApplication(idx int, v ActivityStreamsApplication)
	// SetActivityStreamsArrive sets a Arrive value to be at the specified
	// index for the property "target". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsArrive(idx int, v ActivityStreamsArrive)
	// SetActivityStreamsArticle sets a Article value to be at the specified
	// index for the property "target". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsArticle(idx int, v ActivityStreamsArticle)
	// SetActivityStreamsAudio sets a Audio value to be at the specified index
	// for the property "target". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsAudio(idx int, v ActivityStreamsAudio)
	// SetActivityStreamsBlock sets a Block value to be at the specified index
	// for the property "target". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsBlock(idx int, v ActivityStreamsBlock)
	// SetActivityStreamsCollection sets a Collection value to be at the
	// specified index for the property "target". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsCollection(idx int, v ActivityStreamsCollection)
	// SetActivityStreamsCollectionPage sets a CollectionPage value to be at
	// the specified index for the property "target". Panics if the index
	// is out of bounds. Invalidates all iterators.
	SetActivityStreamsCollectionPage(idx int, v ActivityStreamsCollectionPage)
	// SetActivityStreamsCreate sets a Create value to be at the specified
	// index for the property "target". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsCreate(idx int, v ActivityStreamsCreate)
	// SetActivityStreamsDelete sets a Delete value to be at the specified
	// index for the property "target". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsDelete(idx int, v ActivityStreamsDelete)
	// SetActivityStreamsDislike sets a Dislike value to be at the specified
	// index for the property "target". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsDislike(idx int, v ActivityStreamsDislike)
	// SetActivityStreamsDocument sets a Document value to be at the specified
	// index for the property "target". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsDocument(idx int, v ActivityStreamsDocument)
	// SetActivityStreamsEvent sets a Event value to be at the specified index
	// for the property "target". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsEvent(idx int, v ActivityStreamsEvent)
	// SetActivityStreamsFlag sets a Flag value to be at the specified index
	// for the property "target". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsFlag(idx int, v ActivityStreamsFlag)
	// SetActivityStreamsFollow sets a Follow value to be at the specified
	// index for the property "target". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsFollow(idx int, v ActivityStreamsFollow)
	// SetActivityStreamsGroup sets a Group value to be at the specified index
	// for the property "target". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsGroup(idx int, v ActivityStreamsGroup)
	// SetActivityStreamsIgnore sets a Ignore value to be at the specified
	// index for the property "target". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsIgnore(idx int, v ActivityStreamsIgnore)
	// SetActivityStreamsImage sets a Image value to be at the specified index
	// for the property "target". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsImage(idx int, v ActivityStreamsImage)
	// SetActivityStreamsIntransitiveActivity sets a IntransitiveActivity
	// value to be at the specified index for the property "target".
	// Panics if the index is out of bounds. Invalidates all iterators.
	SetActivityStreamsIntransitiveActivity(idx int, v ActivityStreamsIntransitiveActivity)
	// SetActivityStreamsInvite sets a Invite value to be at the specified
	// index for the property "target". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsInvite(idx int, v ActivityStreamsInvite)
	// SetActivityStreamsJoin sets a Join value to be at the specified index
	// for the property "target". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsJoin(idx int, v ActivityStreamsJoin)
	// SetActivityStreamsLeave sets a Leave value to be at the specified index
	// for the property "target". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsLeave(idx int, v ActivityStreamsLeave)
	// SetActivityStreamsLike sets a Like value to be at the specified index
	// for the property "target". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsLike(idx int, v ActivityStreamsLike)
	// SetActivityStreamsLink sets a Link value to be at the specified index
	// for the property "target". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsLink(idx int, v ActivityStreamsLink)
	// SetActivityStreamsListen sets a Listen value to be at the specified
	// index for the property "target". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsListen(idx int, v ActivityStreamsListen)
	// SetActivityStreamsMention sets a Mention value to be at the specified
	// index for the property "target". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsMention(idx int, v ActivityStreamsMention)
	// SetActivityStreamsMove sets a Move value to be at the specified index
	// for the property "target". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsMove(idx int, v ActivityStreamsMove)
	// SetActivityStreamsNote sets a Note value to be at the specified index
	// for the property "target". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsNote(idx int, v ActivityStreamsNote)
	// SetActivityStreamsObject sets a Object value to be at the specified
	// index for the property "target". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsObject(idx int, v ActivityStreamsObject)
	// SetActivityStreamsOffer sets a Offer value to be at the specified index
	// for the property "target". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsOffer(idx int, v ActivityStreamsOffer)
	// SetActivityStreamsOrderedCollection sets a OrderedCollection value to
	// be at the specified index for the property "target". Panics if the
	// index is out of bounds. Invalidates all iterators.
	SetActivityStreamsOrderedCollection(idx int, v ActivityStreamsOrderedCollection)
	// SetActivityStreamsOrderedCollectionPage sets a OrderedCollectionPage
	// value to be at the specified index for the property "target".
	// Panics if the index is out of bounds. Invalidates all iterators.
	SetActivityStreamsOrderedCollectionPage(idx int, v ActivityStreamsOrderedCollectionPage)
	// SetActivityStreamsOrganization sets a Organization value to be at the
	// specified index for the property "target". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsOrganization(idx int, v ActivityStreamsOrganization)
	// SetActivityStreamsPage sets a Page value to be at the specified index
	// for the property "target". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsPage(idx int, v ActivityStreamsPage)
	// SetActivityStreamsPerson sets a Person value to be at the specified
	// index for the property "target". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsPerson(idx int, v ActivityStreamsPerson)
	// SetActivityStreamsPlace sets a Place value to be at the specified index
	// for the property "target". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsPlace(idx int, v ActivityStreamsPlace)
	// SetActivityStreamsProfile sets a Profile value to be at the specified
	// index for the property "target". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsProfile(idx int, v ActivityStreamsProfile)
	// SetActivityStreamsQuestion sets a Question value to be at the specified
	// index for the property "target". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsQuestion(idx int, v ActivityStreamsQuestion)
	// SetActivityStreamsRead sets a Read value to be at the specified index
	// for the property "target". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsRead(idx int, v ActivityStreamsRead)
	// SetActivityStreamsReject sets a Reject value to be at the specified
	// index for the property "target". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsReject(idx int, v ActivityStreamsReject)
	// SetActivityStreamsRelationship sets a Relationship value to be at the
	// specified index for the property "target". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsRelationship(idx int, v ActivityStreamsRelationship)
	// SetActivityStreamsRemove sets a Remove value to be at the specified
	// index for the property "target". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsRemove(idx int, v ActivityStreamsRemove)
	// SetActivityStreamsService sets a Service value to be at the specified
	// index for the property "target". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsService(idx int, v ActivityStreamsService)
	// SetActivityStreamsTentativeAccept sets a TentativeAccept value to be at
	// the specified index for the property "target". Panics if the index
	// is out of bounds. Invalidates all iterators.
	SetActivityStreamsTentativeAccept(idx int, v ActivityStreamsTentativeAccept)
	// SetActivityStreamsTentativeReject sets a TentativeReject value to be at
	// the specified index for the property "target". Panics if the index
	// is out of bounds. Invalidates all iterators.
	SetActivityStreamsTentativeReject(idx int, v ActivityStreamsTentativeReject)
	// SetActivityStreamsTombstone sets a Tombstone value to be at the
	// specified index for the property "target". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsTombstone(idx int, v ActivityStreamsTombstone)
	// SetActivityStreamsTravel sets a Travel value to be at the specified
	// index for the property "target". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsTravel(idx int, v ActivityStreamsTravel)
	// SetActivityStreamsUndo sets a Undo value to be at the specified index
	// for the property "target". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsUndo(idx int, v ActivityStreamsUndo)
	// SetActivityStreamsUpdate sets a Update value to be at the specified
	// index for the property "target". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsUpdate(idx int, v ActivityStreamsUpdate)
	// SetActivityStreamsVideo sets a Video value to be at the specified index
	// for the property "target". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsVideo(idx int, v ActivityStreamsVideo)
	// SetActivityStreamsView sets a View value to be at the specified index
	// for the property "target". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsView(idx int, v ActivityStreamsView)
	// SetForgeFedBranch sets a Branch value to be at the specified index for
	// the property "target". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedBranch(idx int, v ForgeFedBranch)
	// SetForgeFedCommit sets a Commit value to be at the specified index for
	// the property "target". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedCommit(idx int, v ForgeFedCommit)
	// SetForgeFedPush sets a Push value to be at the specified index for the
	// property "target". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedPush(idx int, v ForgeFedPush)
	// SetForgeFedRepository sets a Repository value to be at the specified
	// index for the property "target". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetForgeFedRepository(idx int, v ForgeFedRepository)
	// SetForgeFedTicket sets a Ticket value to be at the specified index for
	// the property "target". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedTicket(idx int, v ForgeFedTicket)
	// SetForgeFedTicketDependency sets a TicketDependency value to be at the
	// specified index for the property "target". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
	// SetIRI sets an IRI value to be at the specified index for the property
	// "target". Panics if the index is out of bounds.
	SetIRI(idx int, v *url.URL)
	// SetTootEmoji sets a Emoji value to be at the specified index for the
	// property "target". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetTootEmoji(idx int, v TootEmoji)
	// SetTootIdentityProof sets a IdentityProof value to be at the specified
	// index for the property "target". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetTootIdentityProof(idx int, v TootIdentityProof)
	// SetType sets an arbitrary type value to the specified index of the
	// property "target". Invalidates all iterators. Returns an error if
	// the type is not a valid one to set for this property. Panics if the
	// index is out of bounds.
	SetType(idx int, t Type) error
	// Swap swaps the location of values at two indices for the "target"
	// property.
	Swap(i, j int)
}

Describes the indirect object, or target, of the activity. The precise meaning of the target is largely dependent on the type of action being described but will often be the object of the English preposition "to". For instance, in the activity "John added a movie to his wishlist", the target of the activity is John's wishlist. An activity can have more than one target.

Example 106 (https://www.w3.org/TR/activitystreams-vocabulary/#ex120-jsonld):

{
  "actor": "http://sally.example.org",
  "object": "http://example.org/posts/1",
  "summary": "Sally offered the post to John",
  "target": "http://john.example.org",
  "type": "Offer"
}

Example 107 (https://www.w3.org/TR/activitystreams-vocabulary/#ex121-jsonld):

{
  "actor": "http://sally.example.org",
  "object": "http://example.org/posts/1",
  "summary": "Sally offered the post to John",
  "target": {
    "name": "John",
    "type": "Person"
  },
  "type": "Offer"
}

type ActivityStreamsTargetPropertyIterator

type ActivityStreamsTargetPropertyIterator interface {
	// GetActivityStreamsAccept returns the value of this property. When
	// IsActivityStreamsAccept returns false, GetActivityStreamsAccept
	// will return an arbitrary value.
	GetActivityStreamsAccept() ActivityStreamsAccept
	// GetActivityStreamsActivity returns the value of this property. When
	// IsActivityStreamsActivity returns false, GetActivityStreamsActivity
	// will return an arbitrary value.
	GetActivityStreamsActivity() ActivityStreamsActivity
	// GetActivityStreamsAdd returns the value of this property. When
	// IsActivityStreamsAdd returns false, GetActivityStreamsAdd will
	// return an arbitrary value.
	GetActivityStreamsAdd() ActivityStreamsAdd
	// GetActivityStreamsAnnounce returns the value of this property. When
	// IsActivityStreamsAnnounce returns false, GetActivityStreamsAnnounce
	// will return an arbitrary value.
	GetActivityStreamsAnnounce() ActivityStreamsAnnounce
	// GetActivityStreamsApplication returns the value of this property. When
	// IsActivityStreamsApplication returns false,
	// GetActivityStreamsApplication will return an arbitrary value.
	GetActivityStreamsApplication() ActivityStreamsApplication
	// GetActivityStreamsArrive returns the value of this property. When
	// IsActivityStreamsArrive returns false, GetActivityStreamsArrive
	// will return an arbitrary value.
	GetActivityStreamsArrive() ActivityStreamsArrive
	// GetActivityStreamsArticle returns the value of this property. When
	// IsActivityStreamsArticle returns false, GetActivityStreamsArticle
	// will return an arbitrary value.
	GetActivityStreamsArticle() ActivityStreamsArticle
	// GetActivityStreamsAudio returns the value of this property. When
	// IsActivityStreamsAudio returns false, GetActivityStreamsAudio will
	// return an arbitrary value.
	GetActivityStreamsAudio() ActivityStreamsAudio
	// GetActivityStreamsBlock returns the value of this property. When
	// IsActivityStreamsBlock returns false, GetActivityStreamsBlock will
	// return an arbitrary value.
	GetActivityStreamsBlock() ActivityStreamsBlock
	// GetActivityStreamsCollection returns the value of this property. When
	// IsActivityStreamsCollection returns false,
	// GetActivityStreamsCollection will return an arbitrary value.
	GetActivityStreamsCollection() ActivityStreamsCollection
	// GetActivityStreamsCollectionPage returns the value of this property.
	// When IsActivityStreamsCollectionPage returns false,
	// GetActivityStreamsCollectionPage will return an arbitrary value.
	GetActivityStreamsCollectionPage() ActivityStreamsCollectionPage
	// GetActivityStreamsCreate returns the value of this property. When
	// IsActivityStreamsCreate returns false, GetActivityStreamsCreate
	// will return an arbitrary value.
	GetActivityStreamsCreate() ActivityStreamsCreate
	// GetActivityStreamsDelete returns the value of this property. When
	// IsActivityStreamsDelete returns false, GetActivityStreamsDelete
	// will return an arbitrary value.
	GetActivityStreamsDelete() ActivityStreamsDelete
	// GetActivityStreamsDislike returns the value of this property. When
	// IsActivityStreamsDislike returns false, GetActivityStreamsDislike
	// will return an arbitrary value.
	GetActivityStreamsDislike() ActivityStreamsDislike
	// GetActivityStreamsDocument returns the value of this property. When
	// IsActivityStreamsDocument returns false, GetActivityStreamsDocument
	// will return an arbitrary value.
	GetActivityStreamsDocument() ActivityStreamsDocument
	// GetActivityStreamsEvent returns the value of this property. When
	// IsActivityStreamsEvent returns false, GetActivityStreamsEvent will
	// return an arbitrary value.
	GetActivityStreamsEvent() ActivityStreamsEvent
	// GetActivityStreamsFlag returns the value of this property. When
	// IsActivityStreamsFlag returns false, GetActivityStreamsFlag will
	// return an arbitrary value.
	GetActivityStreamsFlag() ActivityStreamsFlag
	// GetActivityStreamsFollow returns the value of this property. When
	// IsActivityStreamsFollow returns false, GetActivityStreamsFollow
	// will return an arbitrary value.
	GetActivityStreamsFollow() ActivityStreamsFollow
	// GetActivityStreamsGroup returns the value of this property. When
	// IsActivityStreamsGroup returns false, GetActivityStreamsGroup will
	// return an arbitrary value.
	GetActivityStreamsGroup() ActivityStreamsGroup
	// GetActivityStreamsIgnore returns the value of this property. When
	// IsActivityStreamsIgnore returns false, GetActivityStreamsIgnore
	// will return an arbitrary value.
	GetActivityStreamsIgnore() ActivityStreamsIgnore
	// GetActivityStreamsImage returns the value of this property. When
	// IsActivityStreamsImage returns false, GetActivityStreamsImage will
	// return an arbitrary value.
	GetActivityStreamsImage() ActivityStreamsImage
	// GetActivityStreamsIntransitiveActivity returns the value of this
	// property. When IsActivityStreamsIntransitiveActivity returns false,
	// GetActivityStreamsIntransitiveActivity will return an arbitrary
	// value.
	GetActivityStreamsIntransitiveActivity() ActivityStreamsIntransitiveActivity
	// GetActivityStreamsInvite returns the value of this property. When
	// IsActivityStreamsInvite returns false, GetActivityStreamsInvite
	// will return an arbitrary value.
	GetActivityStreamsInvite() ActivityStreamsInvite
	// GetActivityStreamsJoin returns the value of this property. When
	// IsActivityStreamsJoin returns false, GetActivityStreamsJoin will
	// return an arbitrary value.
	GetActivityStreamsJoin() ActivityStreamsJoin
	// GetActivityStreamsLeave returns the value of this property. When
	// IsActivityStreamsLeave returns false, GetActivityStreamsLeave will
	// return an arbitrary value.
	GetActivityStreamsLeave() ActivityStreamsLeave
	// GetActivityStreamsLike returns the value of this property. When
	// IsActivityStreamsLike returns false, GetActivityStreamsLike will
	// return an arbitrary value.
	GetActivityStreamsLike() ActivityStreamsLike
	// GetActivityStreamsLink returns the value of this property. When
	// IsActivityStreamsLink returns false, GetActivityStreamsLink will
	// return an arbitrary value.
	GetActivityStreamsLink() ActivityStreamsLink
	// GetActivityStreamsListen returns the value of this property. When
	// IsActivityStreamsListen returns false, GetActivityStreamsListen
	// will return an arbitrary value.
	GetActivityStreamsListen() ActivityStreamsListen
	// GetActivityStreamsMention returns the value of this property. When
	// IsActivityStreamsMention returns false, GetActivityStreamsMention
	// will return an arbitrary value.
	GetActivityStreamsMention() ActivityStreamsMention
	// GetActivityStreamsMove returns the value of this property. When
	// IsActivityStreamsMove returns false, GetActivityStreamsMove will
	// return an arbitrary value.
	GetActivityStreamsMove() ActivityStreamsMove
	// GetActivityStreamsNote returns the value of this property. When
	// IsActivityStreamsNote returns false, GetActivityStreamsNote will
	// return an arbitrary value.
	GetActivityStreamsNote() ActivityStreamsNote
	// GetActivityStreamsObject returns the value of this property. When
	// IsActivityStreamsObject returns false, GetActivityStreamsObject
	// will return an arbitrary value.
	GetActivityStreamsObject() ActivityStreamsObject
	// GetActivityStreamsOffer returns the value of this property. When
	// IsActivityStreamsOffer returns false, GetActivityStreamsOffer will
	// return an arbitrary value.
	GetActivityStreamsOffer() ActivityStreamsOffer
	// GetActivityStreamsOrderedCollection returns the value of this property.
	// When IsActivityStreamsOrderedCollection returns false,
	// GetActivityStreamsOrderedCollection will return an arbitrary value.
	GetActivityStreamsOrderedCollection() ActivityStreamsOrderedCollection
	// GetActivityStreamsOrderedCollectionPage returns the value of this
	// property. When IsActivityStreamsOrderedCollectionPage returns
	// false, GetActivityStreamsOrderedCollectionPage will return an
	// arbitrary value.
	GetActivityStreamsOrderedCollectionPage() ActivityStreamsOrderedCollectionPage
	// GetActivityStreamsOrganization returns the value of this property. When
	// IsActivityStreamsOrganization returns false,
	// GetActivityStreamsOrganization will return an arbitrary value.
	GetActivityStreamsOrganization() ActivityStreamsOrganization
	// GetActivityStreamsPage returns the value of this property. When
	// IsActivityStreamsPage returns false, GetActivityStreamsPage will
	// return an arbitrary value.
	GetActivityStreamsPage() ActivityStreamsPage
	// GetActivityStreamsPerson returns the value of this property. When
	// IsActivityStreamsPerson returns false, GetActivityStreamsPerson
	// will return an arbitrary value.
	GetActivityStreamsPerson() ActivityStreamsPerson
	// GetActivityStreamsPlace returns the value of this property. When
	// IsActivityStreamsPlace returns false, GetActivityStreamsPlace will
	// return an arbitrary value.
	GetActivityStreamsPlace() ActivityStreamsPlace
	// GetActivityStreamsProfile returns the value of this property. When
	// IsActivityStreamsProfile returns false, GetActivityStreamsProfile
	// will return an arbitrary value.
	GetActivityStreamsProfile() ActivityStreamsProfile
	// GetActivityStreamsQuestion returns the value of this property. When
	// IsActivityStreamsQuestion returns false, GetActivityStreamsQuestion
	// will return an arbitrary value.
	GetActivityStreamsQuestion() ActivityStreamsQuestion
	// GetActivityStreamsRead returns the value of this property. When
	// IsActivityStreamsRead returns false, GetActivityStreamsRead will
	// return an arbitrary value.
	GetActivityStreamsRead() ActivityStreamsRead
	// GetActivityStreamsReject returns the value of this property. When
	// IsActivityStreamsReject returns false, GetActivityStreamsReject
	// will return an arbitrary value.
	GetActivityStreamsReject() ActivityStreamsReject
	// GetActivityStreamsRelationship returns the value of this property. When
	// IsActivityStreamsRelationship returns false,
	// GetActivityStreamsRelationship will return an arbitrary value.
	GetActivityStreamsRelationship() ActivityStreamsRelationship
	// GetActivityStreamsRemove returns the value of this property. When
	// IsActivityStreamsRemove returns false, GetActivityStreamsRemove
	// will return an arbitrary value.
	GetActivityStreamsRemove() ActivityStreamsRemove
	// GetActivityStreamsService returns the value of this property. When
	// IsActivityStreamsService returns false, GetActivityStreamsService
	// will return an arbitrary value.
	GetActivityStreamsService() ActivityStreamsService
	// GetActivityStreamsTentativeAccept returns the value of this property.
	// When IsActivityStreamsTentativeAccept returns false,
	// GetActivityStreamsTentativeAccept will return an arbitrary value.
	GetActivityStreamsTentativeAccept() ActivityStreamsTentativeAccept
	// GetActivityStreamsTentativeReject returns the value of this property.
	// When IsActivityStreamsTentativeReject returns false,
	// GetActivityStreamsTentativeReject will return an arbitrary value.
	GetActivityStreamsTentativeReject() ActivityStreamsTentativeReject
	// GetActivityStreamsTombstone returns the value of this property. When
	// IsActivityStreamsTombstone returns false,
	// GetActivityStreamsTombstone will return an arbitrary value.
	GetActivityStreamsTombstone() ActivityStreamsTombstone
	// GetActivityStreamsTravel returns the value of this property. When
	// IsActivityStreamsTravel returns false, GetActivityStreamsTravel
	// will return an arbitrary value.
	GetActivityStreamsTravel() ActivityStreamsTravel
	// GetActivityStreamsUndo returns the value of this property. When
	// IsActivityStreamsUndo returns false, GetActivityStreamsUndo will
	// return an arbitrary value.
	GetActivityStreamsUndo() ActivityStreamsUndo
	// GetActivityStreamsUpdate returns the value of this property. When
	// IsActivityStreamsUpdate returns false, GetActivityStreamsUpdate
	// will return an arbitrary value.
	GetActivityStreamsUpdate() ActivityStreamsUpdate
	// GetActivityStreamsVideo returns the value of this property. When
	// IsActivityStreamsVideo returns false, GetActivityStreamsVideo will
	// return an arbitrary value.
	GetActivityStreamsVideo() ActivityStreamsVideo
	// GetActivityStreamsView returns the value of this property. When
	// IsActivityStreamsView returns false, GetActivityStreamsView will
	// return an arbitrary value.
	GetActivityStreamsView() ActivityStreamsView
	// GetForgeFedBranch returns the value of this property. When
	// IsForgeFedBranch returns false, GetForgeFedBranch will return an
	// arbitrary value.
	GetForgeFedBranch() ForgeFedBranch
	// GetForgeFedCommit returns the value of this property. When
	// IsForgeFedCommit returns false, GetForgeFedCommit will return an
	// arbitrary value.
	GetForgeFedCommit() ForgeFedCommit
	// GetForgeFedPush returns the value of this property. When IsForgeFedPush
	// returns false, GetForgeFedPush will return an arbitrary value.
	GetForgeFedPush() ForgeFedPush
	// GetForgeFedRepository returns the value of this property. When
	// IsForgeFedRepository returns false, GetForgeFedRepository will
	// return an arbitrary value.
	GetForgeFedRepository() ForgeFedRepository
	// GetForgeFedTicket returns the value of this property. When
	// IsForgeFedTicket returns false, GetForgeFedTicket will return an
	// arbitrary value.
	GetForgeFedTicket() ForgeFedTicket
	// GetForgeFedTicketDependency returns the value of this property. When
	// IsForgeFedTicketDependency returns false,
	// GetForgeFedTicketDependency will return an arbitrary value.
	GetForgeFedTicketDependency() ForgeFedTicketDependency
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return an arbitrary value.
	GetIRI() *url.URL
	// GetTootEmoji returns the value of this property. When IsTootEmoji
	// returns false, GetTootEmoji will return an arbitrary value.
	GetTootEmoji() TootEmoji
	// GetTootIdentityProof returns the value of this property. When
	// IsTootIdentityProof returns false, GetTootIdentityProof will return
	// an arbitrary value.
	GetTootIdentityProof() TootIdentityProof
	// GetType returns the value in this property as a Type. Returns nil if
	// the value is not an ActivityStreams type, such as an IRI or another
	// value.
	GetType() Type
	// HasAny returns true if any of the different values is set.
	HasAny() bool
	// IsActivityStreamsAccept returns true if this property has a type of
	// "Accept". When true, use the GetActivityStreamsAccept and
	// SetActivityStreamsAccept methods to access and set this property.
	IsActivityStreamsAccept() bool
	// IsActivityStreamsActivity returns true if this property has a type of
	// "Activity". When true, use the GetActivityStreamsActivity and
	// SetActivityStreamsActivity methods to access and set this property.
	IsActivityStreamsActivity() bool
	// IsActivityStreamsAdd returns true if this property has a type of "Add".
	// When true, use the GetActivityStreamsAdd and SetActivityStreamsAdd
	// methods to access and set this property.
	IsActivityStreamsAdd() bool
	// IsActivityStreamsAnnounce returns true if this property has a type of
	// "Announce". When true, use the GetActivityStreamsAnnounce and
	// SetActivityStreamsAnnounce methods to access and set this property.
	IsActivityStreamsAnnounce() bool
	// IsActivityStreamsApplication returns true if this property has a type
	// of "Application". When true, use the GetActivityStreamsApplication
	// and SetActivityStreamsApplication methods to access and set this
	// property.
	IsActivityStreamsApplication() bool
	// IsActivityStreamsArrive returns true if this property has a type of
	// "Arrive". When true, use the GetActivityStreamsArrive and
	// SetActivityStreamsArrive methods to access and set this property.
	IsActivityStreamsArrive() bool
	// IsActivityStreamsArticle returns true if this property has a type of
	// "Article". When true, use the GetActivityStreamsArticle and
	// SetActivityStreamsArticle methods to access and set this property.
	IsActivityStreamsArticle() bool
	// IsActivityStreamsAudio returns true if this property has a type of
	// "Audio". When true, use the GetActivityStreamsAudio and
	// SetActivityStreamsAudio methods to access and set this property.
	IsActivityStreamsAudio() bool
	// IsActivityStreamsBlock returns true if this property has a type of
	// "Block". When true, use the GetActivityStreamsBlock and
	// SetActivityStreamsBlock methods to access and set this property.
	IsActivityStreamsBlock() bool
	// IsActivityStreamsCollection returns true if this property has a type of
	// "Collection". When true, use the GetActivityStreamsCollection and
	// SetActivityStreamsCollection methods to access and set this
	// property.
	IsActivityStreamsCollection() bool
	// IsActivityStreamsCollectionPage returns true if this property has a
	// type of "CollectionPage". When true, use the
	// GetActivityStreamsCollectionPage and
	// SetActivityStreamsCollectionPage methods to access and set this
	// property.
	IsActivityStreamsCollectionPage() bool
	// IsActivityStreamsCreate returns true if this property has a type of
	// "Create". When true, use the GetActivityStreamsCreate and
	// SetActivityStreamsCreate methods to access and set this property.
	IsActivityStreamsCreate() bool
	// IsActivityStreamsDelete returns true if this property has a type of
	// "Delete". When true, use the GetActivityStreamsDelete and
	// SetActivityStreamsDelete methods to access and set this property.
	IsActivityStreamsDelete() bool
	// IsActivityStreamsDislike returns true if this property has a type of
	// "Dislike". When true, use the GetActivityStreamsDislike and
	// SetActivityStreamsDislike methods to access and set this property.
	IsActivityStreamsDislike() bool
	// IsActivityStreamsDocument returns true if this property has a type of
	// "Document". When true, use the GetActivityStreamsDocument and
	// SetActivityStreamsDocument methods to access and set this property.
	IsActivityStreamsDocument() bool
	// IsActivityStreamsEvent returns true if this property has a type of
	// "Event". When true, use the GetActivityStreamsEvent and
	// SetActivityStreamsEvent methods to access and set this property.
	IsActivityStreamsEvent() bool
	// IsActivityStreamsFlag returns true if this property has a type of
	// "Flag". When true, use the GetActivityStreamsFlag and
	// SetActivityStreamsFlag methods to access and set this property.
	IsActivityStreamsFlag() bool
	// IsActivityStreamsFollow returns true if this property has a type of
	// "Follow". When true, use the GetActivityStreamsFollow and
	// SetActivityStreamsFollow methods to access and set this property.
	IsActivityStreamsFollow() bool
	// IsActivityStreamsGroup returns true if this property has a type of
	// "Group". When true, use the GetActivityStreamsGroup and
	// SetActivityStreamsGroup methods to access and set this property.
	IsActivityStreamsGroup() bool
	// IsActivityStreamsIgnore returns true if this property has a type of
	// "Ignore". When true, use the GetActivityStreamsIgnore and
	// SetActivityStreamsIgnore methods to access and set this property.
	IsActivityStreamsIgnore() bool
	// IsActivityStreamsImage returns true if this property has a type of
	// "Image". When true, use the GetActivityStreamsImage and
	// SetActivityStreamsImage methods to access and set this property.
	IsActivityStreamsImage() bool
	// IsActivityStreamsIntransitiveActivity returns true if this property has
	// a type of "IntransitiveActivity". When true, use the
	// GetActivityStreamsIntransitiveActivity and
	// SetActivityStreamsIntransitiveActivity methods to access and set
	// this property.
	IsActivityStreamsIntransitiveActivity() bool
	// IsActivityStreamsInvite returns true if this property has a type of
	// "Invite". When true, use the GetActivityStreamsInvite and
	// SetActivityStreamsInvite methods to access and set this property.
	IsActivityStreamsInvite() bool
	// IsActivityStreamsJoin returns true if this property has a type of
	// "Join". When true, use the GetActivityStreamsJoin and
	// SetActivityStreamsJoin methods to access and set this property.
	IsActivityStreamsJoin() bool
	// IsActivityStreamsLeave returns true if this property has a type of
	// "Leave". When true, use the GetActivityStreamsLeave and
	// SetActivityStreamsLeave methods to access and set this property.
	IsActivityStreamsLeave() bool
	// IsActivityStreamsLike returns true if this property has a type of
	// "Like". When true, use the GetActivityStreamsLike and
	// SetActivityStreamsLike methods to access and set this property.
	IsActivityStreamsLike() bool
	// IsActivityStreamsLink returns true if this property has a type of
	// "Link". When true, use the GetActivityStreamsLink and
	// SetActivityStreamsLink methods to access and set this property.
	IsActivityStreamsLink() bool
	// IsActivityStreamsListen returns true if this property has a type of
	// "Listen". When true, use the GetActivityStreamsListen and
	// SetActivityStreamsListen methods to access and set this property.
	IsActivityStreamsListen() bool
	// IsActivityStreamsMention returns true if this property has a type of
	// "Mention". When true, use the GetActivityStreamsMention and
	// SetActivityStreamsMention methods to access and set this property.
	IsActivityStreamsMention() bool
	// IsActivityStreamsMove returns true if this property has a type of
	// "Move". When true, use the GetActivityStreamsMove and
	// SetActivityStreamsMove methods to access and set this property.
	IsActivityStreamsMove() bool
	// IsActivityStreamsNote returns true if this property has a type of
	// "Note". When true, use the GetActivityStreamsNote and
	// SetActivityStreamsNote methods to access and set this property.
	IsActivityStreamsNote() bool
	// IsActivityStreamsObject returns true if this property has a type of
	// "Object". When true, use the GetActivityStreamsObject and
	// SetActivityStreamsObject methods to access and set this property.
	IsActivityStreamsObject() bool
	// IsActivityStreamsOffer returns true if this property has a type of
	// "Offer". When true, use the GetActivityStreamsOffer and
	// SetActivityStreamsOffer methods to access and set this property.
	IsActivityStreamsOffer() bool
	// IsActivityStreamsOrderedCollection returns true if this property has a
	// type of "OrderedCollection". When true, use the
	// GetActivityStreamsOrderedCollection and
	// SetActivityStreamsOrderedCollection methods to access and set this
	// property.
	IsActivityStreamsOrderedCollection() bool
	// IsActivityStreamsOrderedCollectionPage returns true if this property
	// has a type of "OrderedCollectionPage". When true, use the
	// GetActivityStreamsOrderedCollectionPage and
	// SetActivityStreamsOrderedCollectionPage methods to access and set
	// this property.
	IsActivityStreamsOrderedCollectionPage() bool
	// IsActivityStreamsOrganization returns true if this property has a type
	// of "Organization". When true, use the
	// GetActivityStreamsOrganization and SetActivityStreamsOrganization
	// methods to access and set this property.
	IsActivityStreamsOrganization() bool
	// IsActivityStreamsPage returns true if this property has a type of
	// "Page". When true, use the GetActivityStreamsPage and
	// SetActivityStreamsPage methods to access and set this property.
	IsActivityStreamsPage() bool
	// IsActivityStreamsPerson returns true if this property has a type of
	// "Person". When true, use the GetActivityStreamsPerson and
	// SetActivityStreamsPerson methods to access and set this property.
	IsActivityStreamsPerson() bool
	// IsActivityStreamsPlace returns true if this property has a type of
	// "Place". When true, use the GetActivityStreamsPlace and
	// SetActivityStreamsPlace methods to access and set this property.
	IsActivityStreamsPlace() bool
	// IsActivityStreamsProfile returns true if this property has a type of
	// "Profile". When true, use the GetActivityStreamsProfile and
	// SetActivityStreamsProfile methods to access and set this property.
	IsActivityStreamsProfile() bool
	// IsActivityStreamsQuestion returns true if this property has a type of
	// "Question". When true, use the GetActivityStreamsQuestion and
	// SetActivityStreamsQuestion methods to access and set this property.
	IsActivityStreamsQuestion() bool
	// IsActivityStreamsRead returns true if this property has a type of
	// "Read". When true, use the GetActivityStreamsRead and
	// SetActivityStreamsRead methods to access and set this property.
	IsActivityStreamsRead() bool
	// IsActivityStreamsReject returns true if this property has a type of
	// "Reject". When true, use the GetActivityStreamsReject and
	// SetActivityStreamsReject methods to access and set this property.
	IsActivityStreamsReject() bool
	// IsActivityStreamsRelationship returns true if this property has a type
	// of "Relationship". When true, use the
	// GetActivityStreamsRelationship and SetActivityStreamsRelationship
	// methods to access and set this property.
	IsActivityStreamsRelationship() bool
	// IsActivityStreamsRemove returns true if this property has a type of
	// "Remove". When true, use the GetActivityStreamsRemove and
	// SetActivityStreamsRemove methods to access and set this property.
	IsActivityStreamsRemove() bool
	// IsActivityStreamsService returns true if this property has a type of
	// "Service". When true, use the GetActivityStreamsService and
	// SetActivityStreamsService methods to access and set this property.
	IsActivityStreamsService() bool
	// IsActivityStreamsTentativeAccept returns true if this property has a
	// type of "TentativeAccept". When true, use the
	// GetActivityStreamsTentativeAccept and
	// SetActivityStreamsTentativeAccept methods to access and set this
	// property.
	IsActivityStreamsTentativeAccept() bool
	// IsActivityStreamsTentativeReject returns true if this property has a
	// type of "TentativeReject". When true, use the
	// GetActivityStreamsTentativeReject and
	// SetActivityStreamsTentativeReject methods to access and set this
	// property.
	IsActivityStreamsTentativeReject() bool
	// IsActivityStreamsTombstone returns true if this property has a type of
	// "Tombstone". When true, use the GetActivityStreamsTombstone and
	// SetActivityStreamsTombstone methods to access and set this property.
	IsActivityStreamsTombstone() bool
	// IsActivityStreamsTravel returns true if this property has a type of
	// "Travel". When true, use the GetActivityStreamsTravel and
	// SetActivityStreamsTravel methods to access and set this property.
	IsActivityStreamsTravel() bool
	// IsActivityStreamsUndo returns true if this property has a type of
	// "Undo". When true, use the GetActivityStreamsUndo and
	// SetActivityStreamsUndo methods to access and set this property.
	IsActivityStreamsUndo() bool
	// IsActivityStreamsUpdate returns true if this property has a type of
	// "Update". When true, use the GetActivityStreamsUpdate and
	// SetActivityStreamsUpdate methods to access and set this property.
	IsActivityStreamsUpdate() bool
	// IsActivityStreamsVideo returns true if this property has a type of
	// "Video". When true, use the GetActivityStreamsVideo and
	// SetActivityStreamsVideo methods to access and set this property.
	IsActivityStreamsVideo() bool
	// IsActivityStreamsView returns true if this property has a type of
	// "View". When true, use the GetActivityStreamsView and
	// SetActivityStreamsView methods to access and set this property.
	IsActivityStreamsView() bool
	// IsForgeFedBranch returns true if this property has a type of "Branch".
	// When true, use the GetForgeFedBranch and SetForgeFedBranch methods
	// to access and set this property.
	IsForgeFedBranch() bool
	// IsForgeFedCommit returns true if this property has a type of "Commit".
	// When true, use the GetForgeFedCommit and SetForgeFedCommit methods
	// to access and set this property.
	IsForgeFedCommit() bool
	// IsForgeFedPush returns true if this property has a type of "Push". When
	// true, use the GetForgeFedPush and SetForgeFedPush methods to access
	// and set this property.
	IsForgeFedPush() bool
	// IsForgeFedRepository returns true if this property has a type of
	// "Repository". When true, use the GetForgeFedRepository and
	// SetForgeFedRepository methods to access and set this property.
	IsForgeFedRepository() bool
	// IsForgeFedTicket returns true if this property has a type of "Ticket".
	// When true, use the GetForgeFedTicket and SetForgeFedTicket methods
	// to access and set this property.
	IsForgeFedTicket() bool
	// IsForgeFedTicketDependency returns true if this property has a type of
	// "TicketDependency". When true, use the GetForgeFedTicketDependency
	// and SetForgeFedTicketDependency methods to access and set this
	// property.
	IsForgeFedTicketDependency() bool
	// IsIRI returns true if this property is an IRI. When true, use GetIRI
	// and SetIRI to access and set this property
	IsIRI() bool
	// IsTootEmoji returns true if this property has a type of "Emoji". When
	// true, use the GetTootEmoji and SetTootEmoji methods to access and
	// set this property.
	IsTootEmoji() bool
	// IsTootIdentityProof returns true if this property has a type of
	// "IdentityProof". When true, use the GetTootIdentityProof and
	// SetTootIdentityProof methods to access and set this property.
	IsTootIdentityProof() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsTargetPropertyIterator) bool
	// Name returns the name of this property: "ActivityStreamsTarget".
	Name() string
	// Next returns the next iterator, or nil if there is no next iterator.
	Next() ActivityStreamsTargetPropertyIterator
	// Prev returns the previous iterator, or nil if there is no previous
	// iterator.
	Prev() ActivityStreamsTargetPropertyIterator
	// SetActivityStreamsAccept sets the value of this property. Calling
	// IsActivityStreamsAccept afterwards returns true.
	SetActivityStreamsAccept(v ActivityStreamsAccept)
	// SetActivityStreamsActivity sets the value of this property. Calling
	// IsActivityStreamsActivity afterwards returns true.
	SetActivityStreamsActivity(v ActivityStreamsActivity)
	// SetActivityStreamsAdd sets the value of this property. Calling
	// IsActivityStreamsAdd afterwards returns true.
	SetActivityStreamsAdd(v ActivityStreamsAdd)
	// SetActivityStreamsAnnounce sets the value of this property. Calling
	// IsActivityStreamsAnnounce afterwards returns true.
	SetActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// SetActivityStreamsApplication sets the value of this property. Calling
	// IsActivityStreamsApplication afterwards returns true.
	SetActivityStreamsApplication(v ActivityStreamsApplication)
	// SetActivityStreamsArrive sets the value of this property. Calling
	// IsActivityStreamsArrive afterwards returns true.
	SetActivityStreamsArrive(v ActivityStreamsArrive)
	// SetActivityStreamsArticle sets the value of this property. Calling
	// IsActivityStreamsArticle afterwards returns true.
	SetActivityStreamsArticle(v ActivityStreamsArticle)
	// SetActivityStreamsAudio sets the value of this property. Calling
	// IsActivityStreamsAudio afterwards returns true.
	SetActivityStreamsAudio(v ActivityStreamsAudio)
	// SetActivityStreamsBlock sets the value of this property. Calling
	// IsActivityStreamsBlock afterwards returns true.
	SetActivityStreamsBlock(v ActivityStreamsBlock)
	// SetActivityStreamsCollection sets the value of this property. Calling
	// IsActivityStreamsCollection afterwards returns true.
	SetActivityStreamsCollection(v ActivityStreamsCollection)
	// SetActivityStreamsCollectionPage sets the value of this property.
	// Calling IsActivityStreamsCollectionPage afterwards returns true.
	SetActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// SetActivityStreamsCreate sets the value of this property. Calling
	// IsActivityStreamsCreate afterwards returns true.
	SetActivityStreamsCreate(v ActivityStreamsCreate)
	// SetActivityStreamsDelete sets the value of this property. Calling
	// IsActivityStreamsDelete afterwards returns true.
	SetActivityStreamsDelete(v ActivityStreamsDelete)
	// SetActivityStreamsDislike sets the value of this property. Calling
	// IsActivityStreamsDislike afterwards returns true.
	SetActivityStreamsDislike(v ActivityStreamsDislike)
	// SetActivityStreamsDocument sets the value of this property. Calling
	// IsActivityStreamsDocument afterwards returns true.
	SetActivityStreamsDocument(v ActivityStreamsDocument)
	// SetActivityStreamsEvent sets the value of this property. Calling
	// IsActivityStreamsEvent afterwards returns true.
	SetActivityStreamsEvent(v ActivityStreamsEvent)
	// SetActivityStreamsFlag sets the value of this property. Calling
	// IsActivityStreamsFlag afterwards returns true.
	SetActivityStreamsFlag(v ActivityStreamsFlag)
	// SetActivityStreamsFollow sets the value of this property. Calling
	// IsActivityStreamsFollow afterwards returns true.
	SetActivityStreamsFollow(v ActivityStreamsFollow)
	// SetActivityStreamsGroup sets the value of this property. Calling
	// IsActivityStreamsGroup afterwards returns true.
	SetActivityStreamsGroup(v ActivityStreamsGroup)
	// SetActivityStreamsIgnore sets the value of this property. Calling
	// IsActivityStreamsIgnore afterwards returns true.
	SetActivityStreamsIgnore(v ActivityStreamsIgnore)
	// SetActivityStreamsImage sets the value of this property. Calling
	// IsActivityStreamsImage afterwards returns true.
	SetActivityStreamsImage(v ActivityStreamsImage)
	// SetActivityStreamsIntransitiveActivity sets the value of this property.
	// Calling IsActivityStreamsIntransitiveActivity afterwards returns
	// true.
	SetActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// SetActivityStreamsInvite sets the value of this property. Calling
	// IsActivityStreamsInvite afterwards returns true.
	SetActivityStreamsInvite(v ActivityStreamsInvite)
	// SetActivityStreamsJoin sets the value of this property. Calling
	// IsActivityStreamsJoin afterwards returns true.
	SetActivityStreamsJoin(v ActivityStreamsJoin)
	// SetActivityStreamsLeave sets the value of this property. Calling
	// IsActivityStreamsLeave afterwards returns true.
	SetActivityStreamsLeave(v ActivityStreamsLeave)
	// SetActivityStreamsLike sets the value of this property. Calling
	// IsActivityStreamsLike afterwards returns true.
	SetActivityStreamsLike(v ActivityStreamsLike)
	// SetActivityStreamsLink sets the value of this property. Calling
	// IsActivityStreamsLink afterwards returns true.
	SetActivityStreamsLink(v ActivityStreamsLink)
	// SetActivityStreamsListen sets the value of this property. Calling
	// IsActivityStreamsListen afterwards returns true.
	SetActivityStreamsListen(v ActivityStreamsListen)
	// SetActivityStreamsMention sets the value of this property. Calling
	// IsActivityStreamsMention afterwards returns true.
	SetActivityStreamsMention(v ActivityStreamsMention)
	// SetActivityStreamsMove sets the value of this property. Calling
	// IsActivityStreamsMove afterwards returns true.
	SetActivityStreamsMove(v ActivityStreamsMove)
	// SetActivityStreamsNote sets the value of this property. Calling
	// IsActivityStreamsNote afterwards returns true.
	SetActivityStreamsNote(v ActivityStreamsNote)
	// SetActivityStreamsObject sets the value of this property. Calling
	// IsActivityStreamsObject afterwards returns true.
	SetActivityStreamsObject(v ActivityStreamsObject)
	// SetActivityStreamsOffer sets the value of this property. Calling
	// IsActivityStreamsOffer afterwards returns true.
	SetActivityStreamsOffer(v ActivityStreamsOffer)
	// SetActivityStreamsOrderedCollection sets the value of this property.
	// Calling IsActivityStreamsOrderedCollection afterwards returns true.
	SetActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// SetActivityStreamsOrderedCollectionPage sets the value of this
	// property. Calling IsActivityStreamsOrderedCollectionPage afterwards
	// returns true.
	SetActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// SetActivityStreamsOrganization sets the value of this property. Calling
	// IsActivityStreamsOrganization afterwards returns true.
	SetActivityStreamsOrganization(v ActivityStreamsOrganization)
	// SetActivityStreamsPage sets the value of this property. Calling
	// IsActivityStreamsPage afterwards returns true.
	SetActivityStreamsPage(v ActivityStreamsPage)
	// SetActivityStreamsPerson sets the value of this property. Calling
	// IsActivityStreamsPerson afterwards returns true.
	SetActivityStreamsPerson(v ActivityStreamsPerson)
	// SetActivityStreamsPlace sets the value of this property. Calling
	// IsActivityStreamsPlace afterwards returns true.
	SetActivityStreamsPlace(v ActivityStreamsPlace)
	// SetActivityStreamsProfile sets the value of this property. Calling
	// IsActivityStreamsProfile afterwards returns true.
	SetActivityStreamsProfile(v ActivityStreamsProfile)
	// SetActivityStreamsQuestion sets the value of this property. Calling
	// IsActivityStreamsQuestion afterwards returns true.
	SetActivityStreamsQuestion(v ActivityStreamsQuestion)
	// SetActivityStreamsRead sets the value of this property. Calling
	// IsActivityStreamsRead afterwards returns true.
	SetActivityStreamsRead(v ActivityStreamsRead)
	// SetActivityStreamsReject sets the value of this property. Calling
	// IsActivityStreamsReject afterwards returns true.
	SetActivityStreamsReject(v ActivityStreamsReject)
	// SetActivityStreamsRelationship sets the value of this property. Calling
	// IsActivityStreamsRelationship afterwards returns true.
	SetActivityStreamsRelationship(v ActivityStreamsRelationship)
	// SetActivityStreamsRemove sets the value of this property. Calling
	// IsActivityStreamsRemove afterwards returns true.
	SetActivityStreamsRemove(v ActivityStreamsRemove)
	// SetActivityStreamsService sets the value of this property. Calling
	// IsActivityStreamsService afterwards returns true.
	SetActivityStreamsService(v ActivityStreamsService)
	// SetActivityStreamsTentativeAccept sets the value of this property.
	// Calling IsActivityStreamsTentativeAccept afterwards returns true.
	SetActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// SetActivityStreamsTentativeReject sets the value of this property.
	// Calling IsActivityStreamsTentativeReject afterwards returns true.
	SetActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// SetActivityStreamsTombstone sets the value of this property. Calling
	// IsActivityStreamsTombstone afterwards returns true.
	SetActivityStreamsTombstone(v ActivityStreamsTombstone)
	// SetActivityStreamsTravel sets the value of this property. Calling
	// IsActivityStreamsTravel afterwards returns true.
	SetActivityStreamsTravel(v ActivityStreamsTravel)
	// SetActivityStreamsUndo sets the value of this property. Calling
	// IsActivityStreamsUndo afterwards returns true.
	SetActivityStreamsUndo(v ActivityStreamsUndo)
	// SetActivityStreamsUpdate sets the value of this property. Calling
	// IsActivityStreamsUpdate afterwards returns true.
	SetActivityStreamsUpdate(v ActivityStreamsUpdate)
	// SetActivityStreamsVideo sets the value of this property. Calling
	// IsActivityStreamsVideo afterwards returns true.
	SetActivityStreamsVideo(v ActivityStreamsVideo)
	// SetActivityStreamsView sets the value of this property. Calling
	// IsActivityStreamsView afterwards returns true.
	SetActivityStreamsView(v ActivityStreamsView)
	// SetForgeFedBranch sets the value of this property. Calling
	// IsForgeFedBranch afterwards returns true.
	SetForgeFedBranch(v ForgeFedBranch)
	// SetForgeFedCommit sets the value of this property. Calling
	// IsForgeFedCommit afterwards returns true.
	SetForgeFedCommit(v ForgeFedCommit)
	// SetForgeFedPush sets the value of this property. Calling IsForgeFedPush
	// afterwards returns true.
	SetForgeFedPush(v ForgeFedPush)
	// SetForgeFedRepository sets the value of this property. Calling
	// IsForgeFedRepository afterwards returns true.
	SetForgeFedRepository(v ForgeFedRepository)
	// SetForgeFedTicket sets the value of this property. Calling
	// IsForgeFedTicket afterwards returns true.
	SetForgeFedTicket(v ForgeFedTicket)
	// SetForgeFedTicketDependency sets the value of this property. Calling
	// IsForgeFedTicketDependency afterwards returns true.
	SetForgeFedTicketDependency(v ForgeFedTicketDependency)
	// SetIRI sets the value of this property. Calling IsIRI afterwards
	// returns true.
	SetIRI(v *url.URL)
	// SetTootEmoji sets the value of this property. Calling IsTootEmoji
	// afterwards returns true.
	SetTootEmoji(v TootEmoji)
	// SetTootIdentityProof sets the value of this property. Calling
	// IsTootIdentityProof afterwards returns true.
	SetTootIdentityProof(v TootIdentityProof)
	// SetType attempts to set the property for the arbitrary type. Returns an
	// error if it is not a valid type to set on this property.
	SetType(t Type) error
}

ActivityStreamsTargetPropertyIterator represents a single value for the "target" property.

type ActivityStreamsTentativeAccept

type ActivityStreamsTentativeAccept interface {
	// GetActivityStreamsActor returns the "actor" property if it exists, and
	// nil otherwise.
	GetActivityStreamsActor() ActivityStreamsActorProperty
	// GetActivityStreamsAltitude returns the "altitude" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAltitude() ActivityStreamsAltitudeProperty
	// GetActivityStreamsAttachment returns the "attachment" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAttachment() ActivityStreamsAttachmentProperty
	// GetActivityStreamsAttributedTo returns the "attributedTo" property if
	// it exists, and nil otherwise.
	GetActivityStreamsAttributedTo() ActivityStreamsAttributedToProperty
	// GetActivityStreamsAudience returns the "audience" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAudience() ActivityStreamsAudienceProperty
	// GetActivityStreamsBcc returns the "bcc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBcc() ActivityStreamsBccProperty
	// GetActivityStreamsBto returns the "bto" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBto() ActivityStreamsBtoProperty
	// GetActivityStreamsCc returns the "cc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsCc() ActivityStreamsCcProperty
	// GetActivityStreamsContent returns the "content" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContent() ActivityStreamsContentProperty
	// GetActivityStreamsContext returns the "context" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContext() ActivityStreamsContextProperty
	// GetActivityStreamsDuration returns the "duration" property if it
	// exists, and nil otherwise.
	GetActivityStreamsDuration() ActivityStreamsDurationProperty
	// GetActivityStreamsEndTime returns the "endTime" property if it exists,
	// and nil otherwise.
	GetActivityStreamsEndTime() ActivityStreamsEndTimeProperty
	// GetActivityStreamsGenerator returns the "generator" property if it
	// exists, and nil otherwise.
	GetActivityStreamsGenerator() ActivityStreamsGeneratorProperty
	// GetActivityStreamsIcon returns the "icon" property if it exists, and
	// nil otherwise.
	GetActivityStreamsIcon() ActivityStreamsIconProperty
	// GetActivityStreamsImage returns the "image" property if it exists, and
	// nil otherwise.
	GetActivityStreamsImage() ActivityStreamsImageProperty
	// GetActivityStreamsInReplyTo returns the "inReplyTo" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInReplyTo() ActivityStreamsInReplyToProperty
	// GetActivityStreamsInstrument returns the "instrument" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInstrument() ActivityStreamsInstrumentProperty
	// GetActivityStreamsLikes returns the "likes" property if it exists, and
	// nil otherwise.
	GetActivityStreamsLikes() ActivityStreamsLikesProperty
	// GetActivityStreamsLocation returns the "location" property if it
	// exists, and nil otherwise.
	GetActivityStreamsLocation() ActivityStreamsLocationProperty
	// GetActivityStreamsMediaType returns the "mediaType" property if it
	// exists, and nil otherwise.
	GetActivityStreamsMediaType() ActivityStreamsMediaTypeProperty
	// GetActivityStreamsName returns the "name" property if it exists, and
	// nil otherwise.
	GetActivityStreamsName() ActivityStreamsNameProperty
	// GetActivityStreamsObject returns the "object" property if it exists,
	// and nil otherwise.
	GetActivityStreamsObject() ActivityStreamsObjectProperty
	// GetActivityStreamsOrigin returns the "origin" property if it exists,
	// and nil otherwise.
	GetActivityStreamsOrigin() ActivityStreamsOriginProperty
	// GetActivityStreamsPreview returns the "preview" property if it exists,
	// and nil otherwise.
	GetActivityStreamsPreview() ActivityStreamsPreviewProperty
	// GetActivityStreamsPublished returns the "published" property if it
	// exists, and nil otherwise.
	GetActivityStreamsPublished() ActivityStreamsPublishedProperty
	// GetActivityStreamsReplies returns the "replies" property if it exists,
	// and nil otherwise.
	GetActivityStreamsReplies() ActivityStreamsRepliesProperty
	// GetActivityStreamsResult returns the "result" property if it exists,
	// and nil otherwise.
	GetActivityStreamsResult() ActivityStreamsResultProperty
	// GetActivityStreamsShares returns the "shares" property if it exists,
	// and nil otherwise.
	GetActivityStreamsShares() ActivityStreamsSharesProperty
	// GetActivityStreamsSource returns the "source" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSource() ActivityStreamsSourceProperty
	// GetActivityStreamsStartTime returns the "startTime" property if it
	// exists, and nil otherwise.
	GetActivityStreamsStartTime() ActivityStreamsStartTimeProperty
	// GetActivityStreamsSummary returns the "summary" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSummary() ActivityStreamsSummaryProperty
	// GetActivityStreamsTag returns the "tag" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTag() ActivityStreamsTagProperty
	// GetActivityStreamsTarget returns the "target" property if it exists,
	// and nil otherwise.
	GetActivityStreamsTarget() ActivityStreamsTargetProperty
	// GetActivityStreamsTo returns the "to" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTo() ActivityStreamsToProperty
	// GetActivityStreamsUpdated returns the "updated" property if it exists,
	// and nil otherwise.
	GetActivityStreamsUpdated() ActivityStreamsUpdatedProperty
	// GetActivityStreamsUrl returns the "url" property if it exists, and nil
	// otherwise.
	GetActivityStreamsUrl() ActivityStreamsUrlProperty
	// GetForgeFedTeam returns the "team" property if it exists, and nil
	// otherwise.
	GetForgeFedTeam() ForgeFedTeamProperty
	// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
	// it exists, and nil otherwise.
	GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
	// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
	// it exists, and nil otherwise.
	GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
	// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
	GetJSONLDId() JSONLDIdProperty
	// GetJSONLDType returns the "type" property if it exists, and nil
	// otherwise.
	GetJSONLDType() JSONLDTypeProperty
	// GetTypeName returns the name of this type.
	GetTypeName() string
	// GetUnknownProperties returns the unknown properties for the
	// TentativeAccept type. Note that this should not be used by app
	// developers. It is only used to help determine which implementation
	// is LessThan the other. Developers who are creating a different
	// implementation of this type's interface can use this method in
	// their LessThan implementation, but routine ActivityPub applications
	// should not use this to bypass the code generation tool.
	GetUnknownProperties() map[string]interface{}
	// IsExtending returns true if the TentativeAccept type extends from the
	// other type.
	IsExtending(other Type) bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this type and the specific properties that are set. The value
	// in the map is the alias used to import the type and its properties.
	JSONLDContext() map[string]string
	// LessThan computes if this TentativeAccept is lesser, with an arbitrary
	// but stable determination.
	LessThan(o ActivityStreamsTentativeAccept) bool
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format.
	Serialize() (map[string]interface{}, error)
	// SetActivityStreamsActor sets the "actor" property.
	SetActivityStreamsActor(i ActivityStreamsActorProperty)
	// SetActivityStreamsAltitude sets the "altitude" property.
	SetActivityStreamsAltitude(i ActivityStreamsAltitudeProperty)
	// SetActivityStreamsAttachment sets the "attachment" property.
	SetActivityStreamsAttachment(i ActivityStreamsAttachmentProperty)
	// SetActivityStreamsAttributedTo sets the "attributedTo" property.
	SetActivityStreamsAttributedTo(i ActivityStreamsAttributedToProperty)
	// SetActivityStreamsAudience sets the "audience" property.
	SetActivityStreamsAudience(i ActivityStreamsAudienceProperty)
	// SetActivityStreamsBcc sets the "bcc" property.
	SetActivityStreamsBcc(i ActivityStreamsBccProperty)
	// SetActivityStreamsBto sets the "bto" property.
	SetActivityStreamsBto(i ActivityStreamsBtoProperty)
	// SetActivityStreamsCc sets the "cc" property.
	SetActivityStreamsCc(i ActivityStreamsCcProperty)
	// SetActivityStreamsContent sets the "content" property.
	SetActivityStreamsContent(i ActivityStreamsContentProperty)
	// SetActivityStreamsContext sets the "context" property.
	SetActivityStreamsContext(i ActivityStreamsContextProperty)
	// SetActivityStreamsDuration sets the "duration" property.
	SetActivityStreamsDuration(i ActivityStreamsDurationProperty)
	// SetActivityStreamsEndTime sets the "endTime" property.
	SetActivityStreamsEndTime(i ActivityStreamsEndTimeProperty)
	// SetActivityStreamsGenerator sets the "generator" property.
	SetActivityStreamsGenerator(i ActivityStreamsGeneratorProperty)
	// SetActivityStreamsIcon sets the "icon" property.
	SetActivityStreamsIcon(i ActivityStreamsIconProperty)
	// SetActivityStreamsImage sets the "image" property.
	SetActivityStreamsImage(i ActivityStreamsImageProperty)
	// SetActivityStreamsInReplyTo sets the "inReplyTo" property.
	SetActivityStreamsInReplyTo(i ActivityStreamsInReplyToProperty)
	// SetActivityStreamsInstrument sets the "instrument" property.
	SetActivityStreamsInstrument(i ActivityStreamsInstrumentProperty)
	// SetActivityStreamsLikes sets the "likes" property.
	SetActivityStreamsLikes(i ActivityStreamsLikesProperty)
	// SetActivityStreamsLocation sets the "location" property.
	SetActivityStreamsLocation(i ActivityStreamsLocationProperty)
	// SetActivityStreamsMediaType sets the "mediaType" property.
	SetActivityStreamsMediaType(i ActivityStreamsMediaTypeProperty)
	// SetActivityStreamsName sets the "name" property.
	SetActivityStreamsName(i ActivityStreamsNameProperty)
	// SetActivityStreamsObject sets the "object" property.
	SetActivityStreamsObject(i ActivityStreamsObjectProperty)
	// SetActivityStreamsOrigin sets the "origin" property.
	SetActivityStreamsOrigin(i ActivityStreamsOriginProperty)
	// SetActivityStreamsPreview sets the "preview" property.
	SetActivityStreamsPreview(i ActivityStreamsPreviewProperty)
	// SetActivityStreamsPublished sets the "published" property.
	SetActivityStreamsPublished(i ActivityStreamsPublishedProperty)
	// SetActivityStreamsReplies sets the "replies" property.
	SetActivityStreamsReplies(i ActivityStreamsRepliesProperty)
	// SetActivityStreamsResult sets the "result" property.
	SetActivityStreamsResult(i ActivityStreamsResultProperty)
	// SetActivityStreamsShares sets the "shares" property.
	SetActivityStreamsShares(i ActivityStreamsSharesProperty)
	// SetActivityStreamsSource sets the "source" property.
	SetActivityStreamsSource(i ActivityStreamsSourceProperty)
	// SetActivityStreamsStartTime sets the "startTime" property.
	SetActivityStreamsStartTime(i ActivityStreamsStartTimeProperty)
	// SetActivityStreamsSummary sets the "summary" property.
	SetActivityStreamsSummary(i ActivityStreamsSummaryProperty)
	// SetActivityStreamsTag sets the "tag" property.
	SetActivityStreamsTag(i ActivityStreamsTagProperty)
	// SetActivityStreamsTarget sets the "target" property.
	SetActivityStreamsTarget(i ActivityStreamsTargetProperty)
	// SetActivityStreamsTo sets the "to" property.
	SetActivityStreamsTo(i ActivityStreamsToProperty)
	// SetActivityStreamsUpdated sets the "updated" property.
	SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
	// SetActivityStreamsUrl sets the "url" property.
	SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
	// SetForgeFedTeam sets the "team" property.
	SetForgeFedTeam(i ForgeFedTeamProperty)
	// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
	SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
	// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
	SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
	// SetJSONLDId sets the "id" property.
	SetJSONLDId(i JSONLDIdProperty)
	// SetJSONLDType sets the "type" property.
	SetJSONLDType(i JSONLDTypeProperty)
	// VocabularyURI returns the vocabulary's URI as a string.
	VocabularyURI() string
}

A specialization of Accept indicating that the acceptance is tentative.

Example 11 (https://www.w3.org/TR/activitystreams-vocabulary/#ex8-jsonld):

{
  "actor": {
    "name": "Sally",
    "type": "Person"
  },
  "object": {
    "actor": "http://john.example.org",
    "object": {
      "name": "Going-Away Party for Jim",
      "type": "Event"
    },
    "type": "Invite"
  },
  "summary": "Sally tentatively accepted an invitation to a party",
  "type": "TentativeAccept"
}

type ActivityStreamsTentativeReject

type ActivityStreamsTentativeReject interface {
	// GetActivityStreamsActor returns the "actor" property if it exists, and
	// nil otherwise.
	GetActivityStreamsActor() ActivityStreamsActorProperty
	// GetActivityStreamsAltitude returns the "altitude" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAltitude() ActivityStreamsAltitudeProperty
	// GetActivityStreamsAttachment returns the "attachment" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAttachment() ActivityStreamsAttachmentProperty
	// GetActivityStreamsAttributedTo returns the "attributedTo" property if
	// it exists, and nil otherwise.
	GetActivityStreamsAttributedTo() ActivityStreamsAttributedToProperty
	// GetActivityStreamsAudience returns the "audience" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAudience() ActivityStreamsAudienceProperty
	// GetActivityStreamsBcc returns the "bcc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBcc() ActivityStreamsBccProperty
	// GetActivityStreamsBto returns the "bto" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBto() ActivityStreamsBtoProperty
	// GetActivityStreamsCc returns the "cc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsCc() ActivityStreamsCcProperty
	// GetActivityStreamsContent returns the "content" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContent() ActivityStreamsContentProperty
	// GetActivityStreamsContext returns the "context" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContext() ActivityStreamsContextProperty
	// GetActivityStreamsDuration returns the "duration" property if it
	// exists, and nil otherwise.
	GetActivityStreamsDuration() ActivityStreamsDurationProperty
	// GetActivityStreamsEndTime returns the "endTime" property if it exists,
	// and nil otherwise.
	GetActivityStreamsEndTime() ActivityStreamsEndTimeProperty
	// GetActivityStreamsGenerator returns the "generator" property if it
	// exists, and nil otherwise.
	GetActivityStreamsGenerator() ActivityStreamsGeneratorProperty
	// GetActivityStreamsIcon returns the "icon" property if it exists, and
	// nil otherwise.
	GetActivityStreamsIcon() ActivityStreamsIconProperty
	// GetActivityStreamsImage returns the "image" property if it exists, and
	// nil otherwise.
	GetActivityStreamsImage() ActivityStreamsImageProperty
	// GetActivityStreamsInReplyTo returns the "inReplyTo" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInReplyTo() ActivityStreamsInReplyToProperty
	// GetActivityStreamsInstrument returns the "instrument" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInstrument() ActivityStreamsInstrumentProperty
	// GetActivityStreamsLikes returns the "likes" property if it exists, and
	// nil otherwise.
	GetActivityStreamsLikes() ActivityStreamsLikesProperty
	// GetActivityStreamsLocation returns the "location" property if it
	// exists, and nil otherwise.
	GetActivityStreamsLocation() ActivityStreamsLocationProperty
	// GetActivityStreamsMediaType returns the "mediaType" property if it
	// exists, and nil otherwise.
	GetActivityStreamsMediaType() ActivityStreamsMediaTypeProperty
	// GetActivityStreamsName returns the "name" property if it exists, and
	// nil otherwise.
	GetActivityStreamsName() ActivityStreamsNameProperty
	// GetActivityStreamsObject returns the "object" property if it exists,
	// and nil otherwise.
	GetActivityStreamsObject() ActivityStreamsObjectProperty
	// GetActivityStreamsOrigin returns the "origin" property if it exists,
	// and nil otherwise.
	GetActivityStreamsOrigin() ActivityStreamsOriginProperty
	// GetActivityStreamsPreview returns the "preview" property if it exists,
	// and nil otherwise.
	GetActivityStreamsPreview() ActivityStreamsPreviewProperty
	// GetActivityStreamsPublished returns the "published" property if it
	// exists, and nil otherwise.
	GetActivityStreamsPublished() ActivityStreamsPublishedProperty
	// GetActivityStreamsReplies returns the "replies" property if it exists,
	// and nil otherwise.
	GetActivityStreamsReplies() ActivityStreamsRepliesProperty
	// GetActivityStreamsResult returns the "result" property if it exists,
	// and nil otherwise.
	GetActivityStreamsResult() ActivityStreamsResultProperty
	// GetActivityStreamsShares returns the "shares" property if it exists,
	// and nil otherwise.
	GetActivityStreamsShares() ActivityStreamsSharesProperty
	// GetActivityStreamsSource returns the "source" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSource() ActivityStreamsSourceProperty
	// GetActivityStreamsStartTime returns the "startTime" property if it
	// exists, and nil otherwise.
	GetActivityStreamsStartTime() ActivityStreamsStartTimeProperty
	// GetActivityStreamsSummary returns the "summary" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSummary() ActivityStreamsSummaryProperty
	// GetActivityStreamsTag returns the "tag" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTag() ActivityStreamsTagProperty
	// GetActivityStreamsTarget returns the "target" property if it exists,
	// and nil otherwise.
	GetActivityStreamsTarget() ActivityStreamsTargetProperty
	// GetActivityStreamsTo returns the "to" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTo() ActivityStreamsToProperty
	// GetActivityStreamsUpdated returns the "updated" property if it exists,
	// and nil otherwise.
	GetActivityStreamsUpdated() ActivityStreamsUpdatedProperty
	// GetActivityStreamsUrl returns the "url" property if it exists, and nil
	// otherwise.
	GetActivityStreamsUrl() ActivityStreamsUrlProperty
	// GetForgeFedTeam returns the "team" property if it exists, and nil
	// otherwise.
	GetForgeFedTeam() ForgeFedTeamProperty
	// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
	// it exists, and nil otherwise.
	GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
	// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
	// it exists, and nil otherwise.
	GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
	// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
	GetJSONLDId() JSONLDIdProperty
	// GetJSONLDType returns the "type" property if it exists, and nil
	// otherwise.
	GetJSONLDType() JSONLDTypeProperty
	// GetTypeName returns the name of this type.
	GetTypeName() string
	// GetUnknownProperties returns the unknown properties for the
	// TentativeReject type. Note that this should not be used by app
	// developers. It is only used to help determine which implementation
	// is LessThan the other. Developers who are creating a different
	// implementation of this type's interface can use this method in
	// their LessThan implementation, but routine ActivityPub applications
	// should not use this to bypass the code generation tool.
	GetUnknownProperties() map[string]interface{}
	// IsExtending returns true if the TentativeReject type extends from the
	// other type.
	IsExtending(other Type) bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this type and the specific properties that are set. The value
	// in the map is the alias used to import the type and its properties.
	JSONLDContext() map[string]string
	// LessThan computes if this TentativeReject is lesser, with an arbitrary
	// but stable determination.
	LessThan(o ActivityStreamsTentativeReject) bool
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format.
	Serialize() (map[string]interface{}, error)
	// SetActivityStreamsActor sets the "actor" property.
	SetActivityStreamsActor(i ActivityStreamsActorProperty)
	// SetActivityStreamsAltitude sets the "altitude" property.
	SetActivityStreamsAltitude(i ActivityStreamsAltitudeProperty)
	// SetActivityStreamsAttachment sets the "attachment" property.
	SetActivityStreamsAttachment(i ActivityStreamsAttachmentProperty)
	// SetActivityStreamsAttributedTo sets the "attributedTo" property.
	SetActivityStreamsAttributedTo(i ActivityStreamsAttributedToProperty)
	// SetActivityStreamsAudience sets the "audience" property.
	SetActivityStreamsAudience(i ActivityStreamsAudienceProperty)
	// SetActivityStreamsBcc sets the "bcc" property.
	SetActivityStreamsBcc(i ActivityStreamsBccProperty)
	// SetActivityStreamsBto sets the "bto" property.
	SetActivityStreamsBto(i ActivityStreamsBtoProperty)
	// SetActivityStreamsCc sets the "cc" property.
	SetActivityStreamsCc(i ActivityStreamsCcProperty)
	// SetActivityStreamsContent sets the "content" property.
	SetActivityStreamsContent(i ActivityStreamsContentProperty)
	// SetActivityStreamsContext sets the "context" property.
	SetActivityStreamsContext(i ActivityStreamsContextProperty)
	// SetActivityStreamsDuration sets the "duration" property.
	SetActivityStreamsDuration(i ActivityStreamsDurationProperty)
	// SetActivityStreamsEndTime sets the "endTime" property.
	SetActivityStreamsEndTime(i ActivityStreamsEndTimeProperty)
	// SetActivityStreamsGenerator sets the "generator" property.
	SetActivityStreamsGenerator(i ActivityStreamsGeneratorProperty)
	// SetActivityStreamsIcon sets the "icon" property.
	SetActivityStreamsIcon(i ActivityStreamsIconProperty)
	// SetActivityStreamsImage sets the "image" property.
	SetActivityStreamsImage(i ActivityStreamsImageProperty)
	// SetActivityStreamsInReplyTo sets the "inReplyTo" property.
	SetActivityStreamsInReplyTo(i ActivityStreamsInReplyToProperty)
	// SetActivityStreamsInstrument sets the "instrument" property.
	SetActivityStreamsInstrument(i ActivityStreamsInstrumentProperty)
	// SetActivityStreamsLikes sets the "likes" property.
	SetActivityStreamsLikes(i ActivityStreamsLikesProperty)
	// SetActivityStreamsLocation sets the "location" property.
	SetActivityStreamsLocation(i ActivityStreamsLocationProperty)
	// SetActivityStreamsMediaType sets the "mediaType" property.
	SetActivityStreamsMediaType(i ActivityStreamsMediaTypeProperty)
	// SetActivityStreamsName sets the "name" property.
	SetActivityStreamsName(i ActivityStreamsNameProperty)
	// SetActivityStreamsObject sets the "object" property.
	SetActivityStreamsObject(i ActivityStreamsObjectProperty)
	// SetActivityStreamsOrigin sets the "origin" property.
	SetActivityStreamsOrigin(i ActivityStreamsOriginProperty)
	// SetActivityStreamsPreview sets the "preview" property.
	SetActivityStreamsPreview(i ActivityStreamsPreviewProperty)
	// SetActivityStreamsPublished sets the "published" property.
	SetActivityStreamsPublished(i ActivityStreamsPublishedProperty)
	// SetActivityStreamsReplies sets the "replies" property.
	SetActivityStreamsReplies(i ActivityStreamsRepliesProperty)
	// SetActivityStreamsResult sets the "result" property.
	SetActivityStreamsResult(i ActivityStreamsResultProperty)
	// SetActivityStreamsShares sets the "shares" property.
	SetActivityStreamsShares(i ActivityStreamsSharesProperty)
	// SetActivityStreamsSource sets the "source" property.
	SetActivityStreamsSource(i ActivityStreamsSourceProperty)
	// SetActivityStreamsStartTime sets the "startTime" property.
	SetActivityStreamsStartTime(i ActivityStreamsStartTimeProperty)
	// SetActivityStreamsSummary sets the "summary" property.
	SetActivityStreamsSummary(i ActivityStreamsSummaryProperty)
	// SetActivityStreamsTag sets the "tag" property.
	SetActivityStreamsTag(i ActivityStreamsTagProperty)
	// SetActivityStreamsTarget sets the "target" property.
	SetActivityStreamsTarget(i ActivityStreamsTargetProperty)
	// SetActivityStreamsTo sets the "to" property.
	SetActivityStreamsTo(i ActivityStreamsToProperty)
	// SetActivityStreamsUpdated sets the "updated" property.
	SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
	// SetActivityStreamsUrl sets the "url" property.
	SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
	// SetForgeFedTeam sets the "team" property.
	SetForgeFedTeam(i ForgeFedTeamProperty)
	// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
	SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
	// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
	SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
	// SetJSONLDId sets the "id" property.
	SetJSONLDId(i JSONLDIdProperty)
	// SetJSONLDType sets the "type" property.
	SetJSONLDType(i JSONLDTypeProperty)
	// VocabularyURI returns the vocabulary's URI as a string.
	VocabularyURI() string
}

A specialization of Reject in which the rejection is considered tentative.

Example 26 (https://www.w3.org/TR/activitystreams-vocabulary/#ex27-jsonld):

{
  "actor": {
    "name": "Sally",
    "type": "Person"
  },
  "object": {
    "actor": "http://john.example.org",
    "object": {
      "name": "Going-Away Party for Jim",
      "type": "Event"
    },
    "type": "Invite"
  },
  "summary": "Sally tentatively rejected an invitation to a party",
  "type": "TentativeReject"
}

type ActivityStreamsToProperty

type ActivityStreamsToProperty interface {
	// AppendActivityStreamsAccept appends a Accept value to the back of a
	// list of the property "to". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsAccept(v ActivityStreamsAccept)
	// AppendActivityStreamsActivity appends a Activity value to the back of a
	// list of the property "to". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsActivity(v ActivityStreamsActivity)
	// AppendActivityStreamsAdd appends a Add value to the back of a list of
	// the property "to". Invalidates iterators that are traversing using
	// Prev.
	AppendActivityStreamsAdd(v ActivityStreamsAdd)
	// AppendActivityStreamsAnnounce appends a Announce value to the back of a
	// list of the property "to". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// AppendActivityStreamsApplication appends a Application value to the
	// back of a list of the property "to". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsApplication(v ActivityStreamsApplication)
	// AppendActivityStreamsArrive appends a Arrive value to the back of a
	// list of the property "to". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsArrive(v ActivityStreamsArrive)
	// AppendActivityStreamsArticle appends a Article value to the back of a
	// list of the property "to". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsArticle(v ActivityStreamsArticle)
	// AppendActivityStreamsAudio appends a Audio value to the back of a list
	// of the property "to". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsAudio(v ActivityStreamsAudio)
	// AppendActivityStreamsBlock appends a Block value to the back of a list
	// of the property "to". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsBlock(v ActivityStreamsBlock)
	// AppendActivityStreamsCollection appends a Collection value to the back
	// of a list of the property "to". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsCollection(v ActivityStreamsCollection)
	// AppendActivityStreamsCollectionPage appends a CollectionPage value to
	// the back of a list of the property "to". Invalidates iterators that
	// are traversing using Prev.
	AppendActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// AppendActivityStreamsCreate appends a Create value to the back of a
	// list of the property "to". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsCreate(v ActivityStreamsCreate)
	// AppendActivityStreamsDelete appends a Delete value to the back of a
	// list of the property "to". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDelete(v ActivityStreamsDelete)
	// AppendActivityStreamsDislike appends a Dislike value to the back of a
	// list of the property "to". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDislike(v ActivityStreamsDislike)
	// AppendActivityStreamsDocument appends a Document value to the back of a
	// list of the property "to". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDocument(v ActivityStreamsDocument)
	// AppendActivityStreamsEvent appends a Event value to the back of a list
	// of the property "to". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsEvent(v ActivityStreamsEvent)
	// AppendActivityStreamsFlag appends a Flag value to the back of a list of
	// the property "to". Invalidates iterators that are traversing using
	// Prev.
	AppendActivityStreamsFlag(v ActivityStreamsFlag)
	// AppendActivityStreamsFollow appends a Follow value to the back of a
	// list of the property "to". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsFollow(v ActivityStreamsFollow)
	// AppendActivityStreamsGroup appends a Group value to the back of a list
	// of the property "to". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsGroup(v ActivityStreamsGroup)
	// AppendActivityStreamsIgnore appends a Ignore value to the back of a
	// list of the property "to". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsIgnore(v ActivityStreamsIgnore)
	// AppendActivityStreamsImage appends a Image value to the back of a list
	// of the property "to". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsImage(v ActivityStreamsImage)
	// AppendActivityStreamsIntransitiveActivity appends a
	// IntransitiveActivity value to the back of a list of the property
	// "to". Invalidates iterators that are traversing using Prev.
	AppendActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// AppendActivityStreamsInvite appends a Invite value to the back of a
	// list of the property "to". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsInvite(v ActivityStreamsInvite)
	// AppendActivityStreamsJoin appends a Join value to the back of a list of
	// the property "to". Invalidates iterators that are traversing using
	// Prev.
	AppendActivityStreamsJoin(v ActivityStreamsJoin)
	// AppendActivityStreamsLeave appends a Leave value to the back of a list
	// of the property "to". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsLeave(v ActivityStreamsLeave)
	// AppendActivityStreamsLike appends a Like value to the back of a list of
	// the property "to". Invalidates iterators that are traversing using
	// Prev.
	AppendActivityStreamsLike(v ActivityStreamsLike)
	// AppendActivityStreamsLink appends a Link value to the back of a list of
	// the property "to". Invalidates iterators that are traversing using
	// Prev.
	AppendActivityStreamsLink(v ActivityStreamsLink)
	// AppendActivityStreamsListen appends a Listen value to the back of a
	// list of the property "to". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsListen(v ActivityStreamsListen)
	// AppendActivityStreamsMention appends a Mention value to the back of a
	// list of the property "to". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsMention(v ActivityStreamsMention)
	// AppendActivityStreamsMove appends a Move value to the back of a list of
	// the property "to". Invalidates iterators that are traversing using
	// Prev.
	AppendActivityStreamsMove(v ActivityStreamsMove)
	// AppendActivityStreamsNote appends a Note value to the back of a list of
	// the property "to". Invalidates iterators that are traversing using
	// Prev.
	AppendActivityStreamsNote(v ActivityStreamsNote)
	// AppendActivityStreamsObject appends a Object value to the back of a
	// list of the property "to". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsObject(v ActivityStreamsObject)
	// AppendActivityStreamsOffer appends a Offer value to the back of a list
	// of the property "to". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsOffer(v ActivityStreamsOffer)
	// AppendActivityStreamsOrderedCollection appends a OrderedCollection
	// value to the back of a list of the property "to". Invalidates
	// iterators that are traversing using Prev.
	AppendActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// AppendActivityStreamsOrderedCollectionPage appends a
	// OrderedCollectionPage value to the back of a list of the property
	// "to". Invalidates iterators that are traversing using Prev.
	AppendActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// AppendActivityStreamsOrganization appends a Organization value to the
	// back of a list of the property "to". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsOrganization(v ActivityStreamsOrganization)
	// AppendActivityStreamsPage appends a Page value to the back of a list of
	// the property "to". Invalidates iterators that are traversing using
	// Prev.
	AppendActivityStreamsPage(v ActivityStreamsPage)
	// AppendActivityStreamsPerson appends a Person value to the back of a
	// list of the property "to". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsPerson(v ActivityStreamsPerson)
	// AppendActivityStreamsPlace appends a Place value to the back of a list
	// of the property "to". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsPlace(v ActivityStreamsPlace)
	// AppendActivityStreamsProfile appends a Profile value to the back of a
	// list of the property "to". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsProfile(v ActivityStreamsProfile)
	// AppendActivityStreamsQuestion appends a Question value to the back of a
	// list of the property "to". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsQuestion(v ActivityStreamsQuestion)
	// AppendActivityStreamsRead appends a Read value to the back of a list of
	// the property "to". Invalidates iterators that are traversing using
	// Prev.
	AppendActivityStreamsRead(v ActivityStreamsRead)
	// AppendActivityStreamsReject appends a Reject value to the back of a
	// list of the property "to". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsReject(v ActivityStreamsReject)
	// AppendActivityStreamsRelationship appends a Relationship value to the
	// back of a list of the property "to". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsRelationship(v ActivityStreamsRelationship)
	// AppendActivityStreamsRemove appends a Remove value to the back of a
	// list of the property "to". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsRemove(v ActivityStreamsRemove)
	// AppendActivityStreamsService appends a Service value to the back of a
	// list of the property "to". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsService(v ActivityStreamsService)
	// AppendActivityStreamsTentativeAccept appends a TentativeAccept value to
	// the back of a list of the property "to". Invalidates iterators that
	// are traversing using Prev.
	AppendActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// AppendActivityStreamsTentativeReject appends a TentativeReject value to
	// the back of a list of the property "to". Invalidates iterators that
	// are traversing using Prev.
	AppendActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// AppendActivityStreamsTombstone appends a Tombstone value to the back of
	// a list of the property "to". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsTombstone(v ActivityStreamsTombstone)
	// AppendActivityStreamsTravel appends a Travel value to the back of a
	// list of the property "to". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsTravel(v ActivityStreamsTravel)
	// AppendActivityStreamsUndo appends a Undo value to the back of a list of
	// the property "to". Invalidates iterators that are traversing using
	// Prev.
	AppendActivityStreamsUndo(v ActivityStreamsUndo)
	// AppendActivityStreamsUpdate appends a Update value to the back of a
	// list of the property "to". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsUpdate(v ActivityStreamsUpdate)
	// AppendActivityStreamsVideo appends a Video value to the back of a list
	// of the property "to". Invalidates iterators that are traversing
	// using Prev.
	AppendActivityStreamsVideo(v ActivityStreamsVideo)
	// AppendActivityStreamsView appends a View value to the back of a list of
	// the property "to". Invalidates iterators that are traversing using
	// Prev.
	AppendActivityStreamsView(v ActivityStreamsView)
	// AppendForgeFedBranch appends a Branch value to the back of a list of
	// the property "to". Invalidates iterators that are traversing using
	// Prev.
	AppendForgeFedBranch(v ForgeFedBranch)
	// AppendForgeFedCommit appends a Commit value to the back of a list of
	// the property "to". Invalidates iterators that are traversing using
	// Prev.
	AppendForgeFedCommit(v ForgeFedCommit)
	// AppendForgeFedPush appends a Push value to the back of a list of the
	// property "to". Invalidates iterators that are traversing using Prev.
	AppendForgeFedPush(v ForgeFedPush)
	// AppendForgeFedRepository appends a Repository value to the back of a
	// list of the property "to". Invalidates iterators that are
	// traversing using Prev.
	AppendForgeFedRepository(v ForgeFedRepository)
	// AppendForgeFedTicket appends a Ticket value to the back of a list of
	// the property "to". Invalidates iterators that are traversing using
	// Prev.
	AppendForgeFedTicket(v ForgeFedTicket)
	// AppendForgeFedTicketDependency appends a TicketDependency value to the
	// back of a list of the property "to". Invalidates iterators that are
	// traversing using Prev.
	AppendForgeFedTicketDependency(v ForgeFedTicketDependency)
	// AppendIRI appends an IRI value to the back of a list of the property
	// "to"
	AppendIRI(v *url.URL)
	// AppendTootEmoji appends a Emoji value to the back of a list of the
	// property "to". Invalidates iterators that are traversing using Prev.
	AppendTootEmoji(v TootEmoji)
	// AppendTootIdentityProof appends a IdentityProof value to the back of a
	// list of the property "to". Invalidates iterators that are
	// traversing using Prev.
	AppendTootIdentityProof(v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "to". Invalidates iterators that are traversing using
	// Prev. Returns an error if the type is not a valid one to set for
	// this property.
	AppendType(t Type) error
	// At returns the property value for the specified index. Panics if the
	// index is out of bounds.
	At(index int) ActivityStreamsToPropertyIterator
	// Begin returns the first iterator, or nil if empty. Can be used with the
	// iterator's Next method and this property's End method to iterate
	// from front to back through all values.
	Begin() ActivityStreamsToPropertyIterator
	// Empty returns returns true if there are no elements.
	Empty() bool
	// End returns beyond-the-last iterator, which is nil. Can be used with
	// the iterator's Next method and this property's Begin method to
	// iterate from front to back through all values.
	End() ActivityStreamsToPropertyIterator
	// InsertActivityStreamsAccept inserts a Accept value at the specified
	// index for a property "to". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAccept(idx int, v ActivityStreamsAccept)
	// InsertActivityStreamsActivity inserts a Activity value at the specified
	// index for a property "to". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsActivity(idx int, v ActivityStreamsActivity)
	// InsertActivityStreamsAdd inserts a Add value at the specified index for
	// a property "to". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertActivityStreamsAdd(idx int, v ActivityStreamsAdd)
	// InsertActivityStreamsAnnounce inserts a Announce value at the specified
	// index for a property "to". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAnnounce(idx int, v ActivityStreamsAnnounce)
	// InsertActivityStreamsApplication inserts a Application value at the
	// specified index for a property "to". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsApplication(idx int, v ActivityStreamsApplication)
	// InsertActivityStreamsArrive inserts a Arrive value at the specified
	// index for a property "to". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsArrive(idx int, v ActivityStreamsArrive)
	// InsertActivityStreamsArticle inserts a Article value at the specified
	// index for a property "to". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsArticle(idx int, v ActivityStreamsArticle)
	// InsertActivityStreamsAudio inserts a Audio value at the specified index
	// for a property "to". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertActivityStreamsAudio(idx int, v ActivityStreamsAudio)
	// InsertActivityStreamsBlock inserts a Block value at the specified index
	// for a property "to". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertActivityStreamsBlock(idx int, v ActivityStreamsBlock)
	// InsertActivityStreamsCollection inserts a Collection value at the
	// specified index for a property "to". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsCollection(idx int, v ActivityStreamsCollection)
	// InsertActivityStreamsCollectionPage inserts a CollectionPage value at
	// the specified index for a property "to". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsCollectionPage(idx int, v ActivityStreamsCollectionPage)
	// InsertActivityStreamsCreate inserts a Create value at the specified
	// index for a property "to". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsCreate(idx int, v ActivityStreamsCreate)
	// InsertActivityStreamsDelete inserts a Delete value at the specified
	// index for a property "to". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDelete(idx int, v ActivityStreamsDelete)
	// InsertActivityStreamsDislike inserts a Dislike value at the specified
	// index for a property "to". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDislike(idx int, v ActivityStreamsDislike)
	// InsertActivityStreamsDocument inserts a Document value at the specified
	// index for a property "to". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDocument(idx int, v ActivityStreamsDocument)
	// InsertActivityStreamsEvent inserts a Event value at the specified index
	// for a property "to". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertActivityStreamsEvent(idx int, v ActivityStreamsEvent)
	// InsertActivityStreamsFlag inserts a Flag value at the specified index
	// for a property "to". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertActivityStreamsFlag(idx int, v ActivityStreamsFlag)
	// InsertActivityStreamsFollow inserts a Follow value at the specified
	// index for a property "to". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsFollow(idx int, v ActivityStreamsFollow)
	// InsertActivityStreamsGroup inserts a Group value at the specified index
	// for a property "to". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertActivityStreamsGroup(idx int, v ActivityStreamsGroup)
	// InsertActivityStreamsIgnore inserts a Ignore value at the specified
	// index for a property "to". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsIgnore(idx int, v ActivityStreamsIgnore)
	// InsertActivityStreamsImage inserts a Image value at the specified index
	// for a property "to". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertActivityStreamsImage(idx int, v ActivityStreamsImage)
	// InsertActivityStreamsIntransitiveActivity inserts a
	// IntransitiveActivity value at the specified index for a property
	// "to". Existing elements at that index and higher are shifted back
	// once. Invalidates all iterators.
	InsertActivityStreamsIntransitiveActivity(idx int, v ActivityStreamsIntransitiveActivity)
	// InsertActivityStreamsInvite inserts a Invite value at the specified
	// index for a property "to". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsInvite(idx int, v ActivityStreamsInvite)
	// InsertActivityStreamsJoin inserts a Join value at the specified index
	// for a property "to". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertActivityStreamsJoin(idx int, v ActivityStreamsJoin)
	// InsertActivityStreamsLeave inserts a Leave value at the specified index
	// for a property "to". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertActivityStreamsLeave(idx int, v ActivityStreamsLeave)
	// InsertActivityStreamsLike inserts a Like value at the specified index
	// for a property "to". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertActivityStreamsLike(idx int, v ActivityStreamsLike)
	// InsertActivityStreamsLink inserts a Link value at the specified index
	// for a property "to". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertActivityStreamsLink(idx int, v ActivityStreamsLink)
	// InsertActivityStreamsListen inserts a Listen value at the specified
	// index for a property "to". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsListen(idx int, v ActivityStreamsListen)
	// InsertActivityStreamsMention inserts a Mention value at the specified
	// index for a property "to". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsMention(idx int, v ActivityStreamsMention)
	// InsertActivityStreamsMove inserts a Move value at the specified index
	// for a property "to". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertActivityStreamsMove(idx int, v ActivityStreamsMove)
	// InsertActivityStreamsNote inserts a Note value at the specified index
	// for a property "to". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertActivityStreamsNote(idx int, v ActivityStreamsNote)
	// InsertActivityStreamsObject inserts a Object value at the specified
	// index for a property "to". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsObject(idx int, v ActivityStreamsObject)
	// InsertActivityStreamsOffer inserts a Offer value at the specified index
	// for a property "to". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertActivityStreamsOffer(idx int, v ActivityStreamsOffer)
	// InsertActivityStreamsOrderedCollection inserts a OrderedCollection
	// value at the specified index for a property "to". Existing elements
	// at that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsOrderedCollection(idx int, v ActivityStreamsOrderedCollection)
	// InsertActivityStreamsOrderedCollectionPage inserts a
	// OrderedCollectionPage value at the specified index for a property
	// "to". Existing elements at that index and higher are shifted back
	// once. Invalidates all iterators.
	InsertActivityStreamsOrderedCollectionPage(idx int, v ActivityStreamsOrderedCollectionPage)
	// InsertActivityStreamsOrganization inserts a Organization value at the
	// specified index for a property "to". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsOrganization(idx int, v ActivityStreamsOrganization)
	// InsertActivityStreamsPage inserts a Page value at the specified index
	// for a property "to". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertActivityStreamsPage(idx int, v ActivityStreamsPage)
	// InsertActivityStreamsPerson inserts a Person value at the specified
	// index for a property "to". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsPerson(idx int, v ActivityStreamsPerson)
	// InsertActivityStreamsPlace inserts a Place value at the specified index
	// for a property "to". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertActivityStreamsPlace(idx int, v ActivityStreamsPlace)
	// InsertActivityStreamsProfile inserts a Profile value at the specified
	// index for a property "to". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsProfile(idx int, v ActivityStreamsProfile)
	// InsertActivityStreamsQuestion inserts a Question value at the specified
	// index for a property "to". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsQuestion(idx int, v ActivityStreamsQuestion)
	// InsertActivityStreamsRead inserts a Read value at the specified index
	// for a property "to". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertActivityStreamsRead(idx int, v ActivityStreamsRead)
	// InsertActivityStreamsReject inserts a Reject value at the specified
	// index for a property "to". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsReject(idx int, v ActivityStreamsReject)
	// InsertActivityStreamsRelationship inserts a Relationship value at the
	// specified index for a property "to". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsRelationship(idx int, v ActivityStreamsRelationship)
	// InsertActivityStreamsRemove inserts a Remove value at the specified
	// index for a property "to". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsRemove(idx int, v ActivityStreamsRemove)
	// InsertActivityStreamsService inserts a Service value at the specified
	// index for a property "to". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsService(idx int, v ActivityStreamsService)
	// InsertActivityStreamsTentativeAccept inserts a TentativeAccept value at
	// the specified index for a property "to". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsTentativeAccept(idx int, v ActivityStreamsTentativeAccept)
	// InsertActivityStreamsTentativeReject inserts a TentativeReject value at
	// the specified index for a property "to". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsTentativeReject(idx int, v ActivityStreamsTentativeReject)
	// InsertActivityStreamsTombstone inserts a Tombstone value at the
	// specified index for a property "to". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsTombstone(idx int, v ActivityStreamsTombstone)
	// InsertActivityStreamsTravel inserts a Travel value at the specified
	// index for a property "to". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsTravel(idx int, v ActivityStreamsTravel)
	// InsertActivityStreamsUndo inserts a Undo value at the specified index
	// for a property "to". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertActivityStreamsUndo(idx int, v ActivityStreamsUndo)
	// InsertActivityStreamsUpdate inserts a Update value at the specified
	// index for a property "to". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsUpdate(idx int, v ActivityStreamsUpdate)
	// InsertActivityStreamsVideo inserts a Video value at the specified index
	// for a property "to". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertActivityStreamsVideo(idx int, v ActivityStreamsVideo)
	// InsertActivityStreamsView inserts a View value at the specified index
	// for a property "to". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertActivityStreamsView(idx int, v ActivityStreamsView)
	// InsertForgeFedBranch inserts a Branch value at the specified index for
	// a property "to". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertForgeFedBranch(idx int, v ForgeFedBranch)
	// InsertForgeFedCommit inserts a Commit value at the specified index for
	// a property "to". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertForgeFedCommit(idx int, v ForgeFedCommit)
	// InsertForgeFedPush inserts a Push value at the specified index for a
	// property "to". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertForgeFedPush(idx int, v ForgeFedPush)
	// InsertForgeFedRepository inserts a Repository value at the specified
	// index for a property "to". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertForgeFedRepository(idx int, v ForgeFedRepository)
	// InsertForgeFedTicket inserts a Ticket value at the specified index for
	// a property "to". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertForgeFedTicket(idx int, v ForgeFedTicket)
	// InsertForgeFedTicketDependency inserts a TicketDependency value at the
	// specified index for a property "to". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
	// Insert inserts an IRI value at the specified index for a property "to".
	// Existing elements at that index and higher are shifted back once.
	// Invalidates all iterators.
	InsertIRI(idx int, v *url.URL)
	// InsertTootEmoji inserts a Emoji value at the specified index for a
	// property "to". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertTootEmoji(idx int, v TootEmoji)
	// InsertTootIdentityProof inserts a IdentityProof value at the specified
	// index for a property "to". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertTootIdentityProof(idx int, v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "to". Invalidates all iterators. Returns an error if
	// the type is not a valid one to set for this property.
	InsertType(idx int, t Type) error
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API method specifically needed only for alternate
	// implementations for go-fed. Applications should not use this
	// method. Panics if the index is out of bounds.
	KindIndex(idx int) int
	// Len returns the number of values that exist for the "to" property.
	Len() (length int)
	// Less computes whether another property is less than this one. Mixing
	// types results in a consistent but arbitrary ordering
	Less(i, j int) bool
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsToProperty) bool
	// Name returns the name of this property ("to") with any alias.
	Name() string
	// PrependActivityStreamsAccept prepends a Accept value to the front of a
	// list of the property "to". Invalidates all iterators.
	PrependActivityStreamsAccept(v ActivityStreamsAccept)
	// PrependActivityStreamsActivity prepends a Activity value to the front
	// of a list of the property "to". Invalidates all iterators.
	PrependActivityStreamsActivity(v ActivityStreamsActivity)
	// PrependActivityStreamsAdd prepends a Add value to the front of a list
	// of the property "to". Invalidates all iterators.
	PrependActivityStreamsAdd(v ActivityStreamsAdd)
	// PrependActivityStreamsAnnounce prepends a Announce value to the front
	// of a list of the property "to". Invalidates all iterators.
	PrependActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// PrependActivityStreamsApplication prepends a Application value to the
	// front of a list of the property "to". Invalidates all iterators.
	PrependActivityStreamsApplication(v ActivityStreamsApplication)
	// PrependActivityStreamsArrive prepends a Arrive value to the front of a
	// list of the property "to". Invalidates all iterators.
	PrependActivityStreamsArrive(v ActivityStreamsArrive)
	// PrependActivityStreamsArticle prepends a Article value to the front of
	// a list of the property "to". Invalidates all iterators.
	PrependActivityStreamsArticle(v ActivityStreamsArticle)
	// PrependActivityStreamsAudio prepends a Audio value to the front of a
	// list of the property "to". Invalidates all iterators.
	PrependActivityStreamsAudio(v ActivityStreamsAudio)
	// PrependActivityStreamsBlock prepends a Block value to the front of a
	// list of the property "to". Invalidates all iterators.
	PrependActivityStreamsBlock(v ActivityStreamsBlock)
	// PrependActivityStreamsCollection prepends a Collection value to the
	// front of a list of the property "to". Invalidates all iterators.
	PrependActivityStreamsCollection(v ActivityStreamsCollection)
	// PrependActivityStreamsCollectionPage prepends a CollectionPage value to
	// the front of a list of the property "to". Invalidates all iterators.
	PrependActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// PrependActivityStreamsCreate prepends a Create value to the front of a
	// list of the property "to". Invalidates all iterators.
	PrependActivityStreamsCreate(v ActivityStreamsCreate)
	// PrependActivityStreamsDelete prepends a Delete value to the front of a
	// list of the property "to". Invalidates all iterators.
	PrependActivityStreamsDelete(v ActivityStreamsDelete)
	// PrependActivityStreamsDislike prepends a Dislike value to the front of
	// a list of the property "to". Invalidates all iterators.
	PrependActivityStreamsDislike(v ActivityStreamsDislike)
	// PrependActivityStreamsDocument prepends a Document value to the front
	// of a list of the property "to". Invalidates all iterators.
	PrependActivityStreamsDocument(v ActivityStreamsDocument)
	// PrependActivityStreamsEvent prepends a Event value to the front of a
	// list of the property "to". Invalidates all iterators.
	PrependActivityStreamsEvent(v ActivityStreamsEvent)
	// PrependActivityStreamsFlag prepends a Flag value to the front of a list
	// of the property "to". Invalidates all iterators.
	PrependActivityStreamsFlag(v ActivityStreamsFlag)
	// PrependActivityStreamsFollow prepends a Follow value to the front of a
	// list of the property "to". Invalidates all iterators.
	PrependActivityStreamsFollow(v ActivityStreamsFollow)
	// PrependActivityStreamsGroup prepends a Group value to the front of a
	// list of the property "to". Invalidates all iterators.
	PrependActivityStreamsGroup(v ActivityStreamsGroup)
	// PrependActivityStreamsIgnore prepends a Ignore value to the front of a
	// list of the property "to". Invalidates all iterators.
	PrependActivityStreamsIgnore(v ActivityStreamsIgnore)
	// PrependActivityStreamsImage prepends a Image value to the front of a
	// list of the property "to". Invalidates all iterators.
	PrependActivityStreamsImage(v ActivityStreamsImage)
	// PrependActivityStreamsIntransitiveActivity prepends a
	// IntransitiveActivity value to the front of a list of the property
	// "to". Invalidates all iterators.
	PrependActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// PrependActivityStreamsInvite prepends a Invite value to the front of a
	// list of the property "to". Invalidates all iterators.
	PrependActivityStreamsInvite(v ActivityStreamsInvite)
	// PrependActivityStreamsJoin prepends a Join value to the front of a list
	// of the property "to". Invalidates all iterators.
	PrependActivityStreamsJoin(v ActivityStreamsJoin)
	// PrependActivityStreamsLeave prepends a Leave value to the front of a
	// list of the property "to". Invalidates all iterators.
	PrependActivityStreamsLeave(v ActivityStreamsLeave)
	// PrependActivityStreamsLike prepends a Like value to the front of a list
	// of the property "to". Invalidates all iterators.
	PrependActivityStreamsLike(v ActivityStreamsLike)
	// PrependActivityStreamsLink prepends a Link value to the front of a list
	// of the property "to". Invalidates all iterators.
	PrependActivityStreamsLink(v ActivityStreamsLink)
	// PrependActivityStreamsListen prepends a Listen value to the front of a
	// list of the property "to". Invalidates all iterators.
	PrependActivityStreamsListen(v ActivityStreamsListen)
	// PrependActivityStreamsMention prepends a Mention value to the front of
	// a list of the property "to". Invalidates all iterators.
	PrependActivityStreamsMention(v ActivityStreamsMention)
	// PrependActivityStreamsMove prepends a Move value to the front of a list
	// of the property "to". Invalidates all iterators.
	PrependActivityStreamsMove(v ActivityStreamsMove)
	// PrependActivityStreamsNote prepends a Note value to the front of a list
	// of the property "to". Invalidates all iterators.
	PrependActivityStreamsNote(v ActivityStreamsNote)
	// PrependActivityStreamsObject prepends a Object value to the front of a
	// list of the property "to". Invalidates all iterators.
	PrependActivityStreamsObject(v ActivityStreamsObject)
	// PrependActivityStreamsOffer prepends a Offer value to the front of a
	// list of the property "to". Invalidates all iterators.
	PrependActivityStreamsOffer(v ActivityStreamsOffer)
	// PrependActivityStreamsOrderedCollection prepends a OrderedCollection
	// value to the front of a list of the property "to". Invalidates all
	// iterators.
	PrependActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// PrependActivityStreamsOrderedCollectionPage prepends a
	// OrderedCollectionPage value to the front of a list of the property
	// "to". Invalidates all iterators.
	PrependActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// PrependActivityStreamsOrganization prepends a Organization value to the
	// front of a list of the property "to". Invalidates all iterators.
	PrependActivityStreamsOrganization(v ActivityStreamsOrganization)
	// PrependActivityStreamsPage prepends a Page value to the front of a list
	// of the property "to". Invalidates all iterators.
	PrependActivityStreamsPage(v ActivityStreamsPage)
	// PrependActivityStreamsPerson prepends a Person value to the front of a
	// list of the property "to". Invalidates all iterators.
	PrependActivityStreamsPerson(v ActivityStreamsPerson)
	// PrependActivityStreamsPlace prepends a Place value to the front of a
	// list of the property "to". Invalidates all iterators.
	PrependActivityStreamsPlace(v ActivityStreamsPlace)
	// PrependActivityStreamsProfile prepends a Profile value to the front of
	// a list of the property "to". Invalidates all iterators.
	PrependActivityStreamsProfile(v ActivityStreamsProfile)
	// PrependActivityStreamsQuestion prepends a Question value to the front
	// of a list of the property "to". Invalidates all iterators.
	PrependActivityStreamsQuestion(v ActivityStreamsQuestion)
	// PrependActivityStreamsRead prepends a Read value to the front of a list
	// of the property "to". Invalidates all iterators.
	PrependActivityStreamsRead(v ActivityStreamsRead)
	// PrependActivityStreamsReject prepends a Reject value to the front of a
	// list of the property "to". Invalidates all iterators.
	PrependActivityStreamsReject(v ActivityStreamsReject)
	// PrependActivityStreamsRelationship prepends a Relationship value to the
	// front of a list of the property "to". Invalidates all iterators.
	PrependActivityStreamsRelationship(v ActivityStreamsRelationship)
	// PrependActivityStreamsRemove prepends a Remove value to the front of a
	// list of the property "to". Invalidates all iterators.
	PrependActivityStreamsRemove(v ActivityStreamsRemove)
	// PrependActivityStreamsService prepends a Service value to the front of
	// a list of the property "to". Invalidates all iterators.
	PrependActivityStreamsService(v ActivityStreamsService)
	// PrependActivityStreamsTentativeAccept prepends a TentativeAccept value
	// to the front of a list of the property "to". Invalidates all
	// iterators.
	PrependActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// PrependActivityStreamsTentativeReject prepends a TentativeReject value
	// to the front of a list of the property "to". Invalidates all
	// iterators.
	PrependActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// PrependActivityStreamsTombstone prepends a Tombstone value to the front
	// of a list of the property "to". Invalidates all iterators.
	PrependActivityStreamsTombstone(v ActivityStreamsTombstone)
	// PrependActivityStreamsTravel prepends a Travel value to the front of a
	// list of the property "to". Invalidates all iterators.
	PrependActivityStreamsTravel(v ActivityStreamsTravel)
	// PrependActivityStreamsUndo prepends a Undo value to the front of a list
	// of the property "to". Invalidates all iterators.
	PrependActivityStreamsUndo(v ActivityStreamsUndo)
	// PrependActivityStreamsUpdate prepends a Update value to the front of a
	// list of the property "to". Invalidates all iterators.
	PrependActivityStreamsUpdate(v ActivityStreamsUpdate)
	// PrependActivityStreamsVideo prepends a Video value to the front of a
	// list of the property "to". Invalidates all iterators.
	PrependActivityStreamsVideo(v ActivityStreamsVideo)
	// PrependActivityStreamsView prepends a View value to the front of a list
	// of the property "to". Invalidates all iterators.
	PrependActivityStreamsView(v ActivityStreamsView)
	// PrependForgeFedBranch prepends a Branch value to the front of a list of
	// the property "to". Invalidates all iterators.
	PrependForgeFedBranch(v ForgeFedBranch)
	// PrependForgeFedCommit prepends a Commit value to the front of a list of
	// the property "to". Invalidates all iterators.
	PrependForgeFedCommit(v ForgeFedCommit)
	// PrependForgeFedPush prepends a Push value to the front of a list of the
	// property "to". Invalidates all iterators.
	PrependForgeFedPush(v ForgeFedPush)
	// PrependForgeFedRepository prepends a Repository value to the front of a
	// list of the property "to". Invalidates all iterators.
	PrependForgeFedRepository(v ForgeFedRepository)
	// PrependForgeFedTicket prepends a Ticket value to the front of a list of
	// the property "to". Invalidates all iterators.
	PrependForgeFedTicket(v ForgeFedTicket)
	// PrependForgeFedTicketDependency prepends a TicketDependency value to
	// the front of a list of the property "to". Invalidates all iterators.
	PrependForgeFedTicketDependency(v ForgeFedTicketDependency)
	// PrependIRI prepends an IRI value to the front of a list of the property
	// "to".
	PrependIRI(v *url.URL)
	// PrependTootEmoji prepends a Emoji value to the front of a list of the
	// property "to". Invalidates all iterators.
	PrependTootEmoji(v TootEmoji)
	// PrependTootIdentityProof prepends a IdentityProof value to the front of
	// a list of the property "to". Invalidates all iterators.
	PrependTootIdentityProof(v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "to". Invalidates all iterators. Returns an error if
	// the type is not a valid one to set for this property.
	PrependType(t Type) error
	// Remove deletes an element at the specified index from a list of the
	// property "to", regardless of its type. Panics if the index is out
	// of bounds. Invalidates all iterators.
	Remove(idx int)
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// SetActivityStreamsAccept sets a Accept value to be at the specified
	// index for the property "to". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsAccept(idx int, v ActivityStreamsAccept)
	// SetActivityStreamsActivity sets a Activity value to be at the specified
	// index for the property "to". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsActivity(idx int, v ActivityStreamsActivity)
	// SetActivityStreamsAdd sets a Add value to be at the specified index for
	// the property "to". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsAdd(idx int, v ActivityStreamsAdd)
	// SetActivityStreamsAnnounce sets a Announce value to be at the specified
	// index for the property "to". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsAnnounce(idx int, v ActivityStreamsAnnounce)
	// SetActivityStreamsApplication sets a Application value to be at the
	// specified index for the property "to". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsApplication(idx int, v ActivityStreamsApplication)
	// SetActivityStreamsArrive sets a Arrive value to be at the specified
	// index for the property "to". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsArrive(idx int, v ActivityStreamsArrive)
	// SetActivityStreamsArticle sets a Article value to be at the specified
	// index for the property "to". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsArticle(idx int, v ActivityStreamsArticle)
	// SetActivityStreamsAudio sets a Audio value to be at the specified index
	// for the property "to". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsAudio(idx int, v ActivityStreamsAudio)
	// SetActivityStreamsBlock sets a Block value to be at the specified index
	// for the property "to". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsBlock(idx int, v ActivityStreamsBlock)
	// SetActivityStreamsCollection sets a Collection value to be at the
	// specified index for the property "to". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsCollection(idx int, v ActivityStreamsCollection)
	// SetActivityStreamsCollectionPage sets a CollectionPage value to be at
	// the specified index for the property "to". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsCollectionPage(idx int, v ActivityStreamsCollectionPage)
	// SetActivityStreamsCreate sets a Create value to be at the specified
	// index for the property "to". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsCreate(idx int, v ActivityStreamsCreate)
	// SetActivityStreamsDelete sets a Delete value to be at the specified
	// index for the property "to". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsDelete(idx int, v ActivityStreamsDelete)
	// SetActivityStreamsDislike sets a Dislike value to be at the specified
	// index for the property "to". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsDislike(idx int, v ActivityStreamsDislike)
	// SetActivityStreamsDocument sets a Document value to be at the specified
	// index for the property "to". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsDocument(idx int, v ActivityStreamsDocument)
	// SetActivityStreamsEvent sets a Event value to be at the specified index
	// for the property "to". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsEvent(idx int, v ActivityStreamsEvent)
	// SetActivityStreamsFlag sets a Flag value to be at the specified index
	// for the property "to". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsFlag(idx int, v ActivityStreamsFlag)
	// SetActivityStreamsFollow sets a Follow value to be at the specified
	// index for the property "to". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsFollow(idx int, v ActivityStreamsFollow)
	// SetActivityStreamsGroup sets a Group value to be at the specified index
	// for the property "to". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsGroup(idx int, v ActivityStreamsGroup)
	// SetActivityStreamsIgnore sets a Ignore value to be at the specified
	// index for the property "to". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsIgnore(idx int, v ActivityStreamsIgnore)
	// SetActivityStreamsImage sets a Image value to be at the specified index
	// for the property "to". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsImage(idx int, v ActivityStreamsImage)
	// SetActivityStreamsIntransitiveActivity sets a IntransitiveActivity
	// value to be at the specified index for the property "to". Panics if
	// the index is out of bounds. Invalidates all iterators.
	SetActivityStreamsIntransitiveActivity(idx int, v ActivityStreamsIntransitiveActivity)
	// SetActivityStreamsInvite sets a Invite value to be at the specified
	// index for the property "to". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsInvite(idx int, v ActivityStreamsInvite)
	// SetActivityStreamsJoin sets a Join value to be at the specified index
	// for the property "to". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsJoin(idx int, v ActivityStreamsJoin)
	// SetActivityStreamsLeave sets a Leave value to be at the specified index
	// for the property "to". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsLeave(idx int, v ActivityStreamsLeave)
	// SetActivityStreamsLike sets a Like value to be at the specified index
	// for the property "to". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsLike(idx int, v ActivityStreamsLike)
	// SetActivityStreamsLink sets a Link value to be at the specified index
	// for the property "to". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsLink(idx int, v ActivityStreamsLink)
	// SetActivityStreamsListen sets a Listen value to be at the specified
	// index for the property "to". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsListen(idx int, v ActivityStreamsListen)
	// SetActivityStreamsMention sets a Mention value to be at the specified
	// index for the property "to". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsMention(idx int, v ActivityStreamsMention)
	// SetActivityStreamsMove sets a Move value to be at the specified index
	// for the property "to". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsMove(idx int, v ActivityStreamsMove)
	// SetActivityStreamsNote sets a Note value to be at the specified index
	// for the property "to". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsNote(idx int, v ActivityStreamsNote)
	// SetActivityStreamsObject sets a Object value to be at the specified
	// index for the property "to". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsObject(idx int, v ActivityStreamsObject)
	// SetActivityStreamsOffer sets a Offer value to be at the specified index
	// for the property "to". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsOffer(idx int, v ActivityStreamsOffer)
	// SetActivityStreamsOrderedCollection sets a OrderedCollection value to
	// be at the specified index for the property "to". Panics if the
	// index is out of bounds. Invalidates all iterators.
	SetActivityStreamsOrderedCollection(idx int, v ActivityStreamsOrderedCollection)
	// SetActivityStreamsOrderedCollectionPage sets a OrderedCollectionPage
	// value to be at the specified index for the property "to". Panics if
	// the index is out of bounds. Invalidates all iterators.
	SetActivityStreamsOrderedCollectionPage(idx int, v ActivityStreamsOrderedCollectionPage)
	// SetActivityStreamsOrganization sets a Organization value to be at the
	// specified index for the property "to". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsOrganization(idx int, v ActivityStreamsOrganization)
	// SetActivityStreamsPage sets a Page value to be at the specified index
	// for the property "to". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsPage(idx int, v ActivityStreamsPage)
	// SetActivityStreamsPerson sets a Person value to be at the specified
	// index for the property "to". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsPerson(idx int, v ActivityStreamsPerson)
	// SetActivityStreamsPlace sets a Place value to be at the specified index
	// for the property "to". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsPlace(idx int, v ActivityStreamsPlace)
	// SetActivityStreamsProfile sets a Profile value to be at the specified
	// index for the property "to". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsProfile(idx int, v ActivityStreamsProfile)
	// SetActivityStreamsQuestion sets a Question value to be at the specified
	// index for the property "to". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsQuestion(idx int, v ActivityStreamsQuestion)
	// SetActivityStreamsRead sets a Read value to be at the specified index
	// for the property "to". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsRead(idx int, v ActivityStreamsRead)
	// SetActivityStreamsReject sets a Reject value to be at the specified
	// index for the property "to". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsReject(idx int, v ActivityStreamsReject)
	// SetActivityStreamsRelationship sets a Relationship value to be at the
	// specified index for the property "to". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsRelationship(idx int, v ActivityStreamsRelationship)
	// SetActivityStreamsRemove sets a Remove value to be at the specified
	// index for the property "to". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsRemove(idx int, v ActivityStreamsRemove)
	// SetActivityStreamsService sets a Service value to be at the specified
	// index for the property "to". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsService(idx int, v ActivityStreamsService)
	// SetActivityStreamsTentativeAccept sets a TentativeAccept value to be at
	// the specified index for the property "to". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsTentativeAccept(idx int, v ActivityStreamsTentativeAccept)
	// SetActivityStreamsTentativeReject sets a TentativeReject value to be at
	// the specified index for the property "to". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsTentativeReject(idx int, v ActivityStreamsTentativeReject)
	// SetActivityStreamsTombstone sets a Tombstone value to be at the
	// specified index for the property "to". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetActivityStreamsTombstone(idx int, v ActivityStreamsTombstone)
	// SetActivityStreamsTravel sets a Travel value to be at the specified
	// index for the property "to". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsTravel(idx int, v ActivityStreamsTravel)
	// SetActivityStreamsUndo sets a Undo value to be at the specified index
	// for the property "to". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsUndo(idx int, v ActivityStreamsUndo)
	// SetActivityStreamsUpdate sets a Update value to be at the specified
	// index for the property "to". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsUpdate(idx int, v ActivityStreamsUpdate)
	// SetActivityStreamsVideo sets a Video value to be at the specified index
	// for the property "to". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsVideo(idx int, v ActivityStreamsVideo)
	// SetActivityStreamsView sets a View value to be at the specified index
	// for the property "to". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsView(idx int, v ActivityStreamsView)
	// SetForgeFedBranch sets a Branch value to be at the specified index for
	// the property "to". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedBranch(idx int, v ForgeFedBranch)
	// SetForgeFedCommit sets a Commit value to be at the specified index for
	// the property "to". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedCommit(idx int, v ForgeFedCommit)
	// SetForgeFedPush sets a Push value to be at the specified index for the
	// property "to". Panics if the index is out of bounds. Invalidates
	// all iterators.
	SetForgeFedPush(idx int, v ForgeFedPush)
	// SetForgeFedRepository sets a Repository value to be at the specified
	// index for the property "to". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedRepository(idx int, v ForgeFedRepository)
	// SetForgeFedTicket sets a Ticket value to be at the specified index for
	// the property "to". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedTicket(idx int, v ForgeFedTicket)
	// SetForgeFedTicketDependency sets a TicketDependency value to be at the
	// specified index for the property "to". Panics if the index is out
	// of bounds. Invalidates all iterators.
	SetForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
	// SetIRI sets an IRI value to be at the specified index for the property
	// "to". Panics if the index is out of bounds.
	SetIRI(idx int, v *url.URL)
	// SetTootEmoji sets a Emoji value to be at the specified index for the
	// property "to". Panics if the index is out of bounds. Invalidates
	// all iterators.
	SetTootEmoji(idx int, v TootEmoji)
	// SetTootIdentityProof sets a IdentityProof value to be at the specified
	// index for the property "to". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetTootIdentityProof(idx int, v TootIdentityProof)
	// SetType sets an arbitrary type value to the specified index of the
	// property "to". Invalidates all iterators. Returns an error if the
	// type is not a valid one to set for this property. Panics if the
	// index is out of bounds.
	SetType(idx int, t Type) error
	// Swap swaps the location of values at two indices for the "to" property.
	Swap(i, j int)
}

Identifies an entity considered to be part of the public primary audience of an Object

Example 108 (https://www.w3.org/TR/activitystreams-vocabulary/#ex123-jsonld):

{
  "actor": "http://sally.example.org",
  "object": "http://example.org/posts/1",
  "summary": "Sally offered the post to John",
  "target": "http://john.example.org",
  "to": "http://joe.example.org",
  "type": "Offer"
}

type ActivityStreamsToPropertyIterator

type ActivityStreamsToPropertyIterator interface {
	// GetActivityStreamsAccept returns the value of this property. When
	// IsActivityStreamsAccept returns false, GetActivityStreamsAccept
	// will return an arbitrary value.
	GetActivityStreamsAccept() ActivityStreamsAccept
	// GetActivityStreamsActivity returns the value of this property. When
	// IsActivityStreamsActivity returns false, GetActivityStreamsActivity
	// will return an arbitrary value.
	GetActivityStreamsActivity() ActivityStreamsActivity
	// GetActivityStreamsAdd returns the value of this property. When
	// IsActivityStreamsAdd returns false, GetActivityStreamsAdd will
	// return an arbitrary value.
	GetActivityStreamsAdd() ActivityStreamsAdd
	// GetActivityStreamsAnnounce returns the value of this property. When
	// IsActivityStreamsAnnounce returns false, GetActivityStreamsAnnounce
	// will return an arbitrary value.
	GetActivityStreamsAnnounce() ActivityStreamsAnnounce
	// GetActivityStreamsApplication returns the value of this property. When
	// IsActivityStreamsApplication returns false,
	// GetActivityStreamsApplication will return an arbitrary value.
	GetActivityStreamsApplication() ActivityStreamsApplication
	// GetActivityStreamsArrive returns the value of this property. When
	// IsActivityStreamsArrive returns false, GetActivityStreamsArrive
	// will return an arbitrary value.
	GetActivityStreamsArrive() ActivityStreamsArrive
	// GetActivityStreamsArticle returns the value of this property. When
	// IsActivityStreamsArticle returns false, GetActivityStreamsArticle
	// will return an arbitrary value.
	GetActivityStreamsArticle() ActivityStreamsArticle
	// GetActivityStreamsAudio returns the value of this property. When
	// IsActivityStreamsAudio returns false, GetActivityStreamsAudio will
	// return an arbitrary value.
	GetActivityStreamsAudio() ActivityStreamsAudio
	// GetActivityStreamsBlock returns the value of this property. When
	// IsActivityStreamsBlock returns false, GetActivityStreamsBlock will
	// return an arbitrary value.
	GetActivityStreamsBlock() ActivityStreamsBlock
	// GetActivityStreamsCollection returns the value of this property. When
	// IsActivityStreamsCollection returns false,
	// GetActivityStreamsCollection will return an arbitrary value.
	GetActivityStreamsCollection() ActivityStreamsCollection
	// GetActivityStreamsCollectionPage returns the value of this property.
	// When IsActivityStreamsCollectionPage returns false,
	// GetActivityStreamsCollectionPage will return an arbitrary value.
	GetActivityStreamsCollectionPage() ActivityStreamsCollectionPage
	// GetActivityStreamsCreate returns the value of this property. When
	// IsActivityStreamsCreate returns false, GetActivityStreamsCreate
	// will return an arbitrary value.
	GetActivityStreamsCreate() ActivityStreamsCreate
	// GetActivityStreamsDelete returns the value of this property. When
	// IsActivityStreamsDelete returns false, GetActivityStreamsDelete
	// will return an arbitrary value.
	GetActivityStreamsDelete() ActivityStreamsDelete
	// GetActivityStreamsDislike returns the value of this property. When
	// IsActivityStreamsDislike returns false, GetActivityStreamsDislike
	// will return an arbitrary value.
	GetActivityStreamsDislike() ActivityStreamsDislike
	// GetActivityStreamsDocument returns the value of this property. When
	// IsActivityStreamsDocument returns false, GetActivityStreamsDocument
	// will return an arbitrary value.
	GetActivityStreamsDocument() ActivityStreamsDocument
	// GetActivityStreamsEvent returns the value of this property. When
	// IsActivityStreamsEvent returns false, GetActivityStreamsEvent will
	// return an arbitrary value.
	GetActivityStreamsEvent() ActivityStreamsEvent
	// GetActivityStreamsFlag returns the value of this property. When
	// IsActivityStreamsFlag returns false, GetActivityStreamsFlag will
	// return an arbitrary value.
	GetActivityStreamsFlag() ActivityStreamsFlag
	// GetActivityStreamsFollow returns the value of this property. When
	// IsActivityStreamsFollow returns false, GetActivityStreamsFollow
	// will return an arbitrary value.
	GetActivityStreamsFollow() ActivityStreamsFollow
	// GetActivityStreamsGroup returns the value of this property. When
	// IsActivityStreamsGroup returns false, GetActivityStreamsGroup will
	// return an arbitrary value.
	GetActivityStreamsGroup() ActivityStreamsGroup
	// GetActivityStreamsIgnore returns the value of this property. When
	// IsActivityStreamsIgnore returns false, GetActivityStreamsIgnore
	// will return an arbitrary value.
	GetActivityStreamsIgnore() ActivityStreamsIgnore
	// GetActivityStreamsImage returns the value of this property. When
	// IsActivityStreamsImage returns false, GetActivityStreamsImage will
	// return an arbitrary value.
	GetActivityStreamsImage() ActivityStreamsImage
	// GetActivityStreamsIntransitiveActivity returns the value of this
	// property. When IsActivityStreamsIntransitiveActivity returns false,
	// GetActivityStreamsIntransitiveActivity will return an arbitrary
	// value.
	GetActivityStreamsIntransitiveActivity() ActivityStreamsIntransitiveActivity
	// GetActivityStreamsInvite returns the value of this property. When
	// IsActivityStreamsInvite returns false, GetActivityStreamsInvite
	// will return an arbitrary value.
	GetActivityStreamsInvite() ActivityStreamsInvite
	// GetActivityStreamsJoin returns the value of this property. When
	// IsActivityStreamsJoin returns false, GetActivityStreamsJoin will
	// return an arbitrary value.
	GetActivityStreamsJoin() ActivityStreamsJoin
	// GetActivityStreamsLeave returns the value of this property. When
	// IsActivityStreamsLeave returns false, GetActivityStreamsLeave will
	// return an arbitrary value.
	GetActivityStreamsLeave() ActivityStreamsLeave
	// GetActivityStreamsLike returns the value of this property. When
	// IsActivityStreamsLike returns false, GetActivityStreamsLike will
	// return an arbitrary value.
	GetActivityStreamsLike() ActivityStreamsLike
	// GetActivityStreamsLink returns the value of this property. When
	// IsActivityStreamsLink returns false, GetActivityStreamsLink will
	// return an arbitrary value.
	GetActivityStreamsLink() ActivityStreamsLink
	// GetActivityStreamsListen returns the value of this property. When
	// IsActivityStreamsListen returns false, GetActivityStreamsListen
	// will return an arbitrary value.
	GetActivityStreamsListen() ActivityStreamsListen
	// GetActivityStreamsMention returns the value of this property. When
	// IsActivityStreamsMention returns false, GetActivityStreamsMention
	// will return an arbitrary value.
	GetActivityStreamsMention() ActivityStreamsMention
	// GetActivityStreamsMove returns the value of this property. When
	// IsActivityStreamsMove returns false, GetActivityStreamsMove will
	// return an arbitrary value.
	GetActivityStreamsMove() ActivityStreamsMove
	// GetActivityStreamsNote returns the value of this property. When
	// IsActivityStreamsNote returns false, GetActivityStreamsNote will
	// return an arbitrary value.
	GetActivityStreamsNote() ActivityStreamsNote
	// GetActivityStreamsObject returns the value of this property. When
	// IsActivityStreamsObject returns false, GetActivityStreamsObject
	// will return an arbitrary value.
	GetActivityStreamsObject() ActivityStreamsObject
	// GetActivityStreamsOffer returns the value of this property. When
	// IsActivityStreamsOffer returns false, GetActivityStreamsOffer will
	// return an arbitrary value.
	GetActivityStreamsOffer() ActivityStreamsOffer
	// GetActivityStreamsOrderedCollection returns the value of this property.
	// When IsActivityStreamsOrderedCollection returns false,
	// GetActivityStreamsOrderedCollection will return an arbitrary value.
	GetActivityStreamsOrderedCollection() ActivityStreamsOrderedCollection
	// GetActivityStreamsOrderedCollectionPage returns the value of this
	// property. When IsActivityStreamsOrderedCollectionPage returns
	// false, GetActivityStreamsOrderedCollectionPage will return an
	// arbitrary value.
	GetActivityStreamsOrderedCollectionPage() ActivityStreamsOrderedCollectionPage
	// GetActivityStreamsOrganization returns the value of this property. When
	// IsActivityStreamsOrganization returns false,
	// GetActivityStreamsOrganization will return an arbitrary value.
	GetActivityStreamsOrganization() ActivityStreamsOrganization
	// GetActivityStreamsPage returns the value of this property. When
	// IsActivityStreamsPage returns false, GetActivityStreamsPage will
	// return an arbitrary value.
	GetActivityStreamsPage() ActivityStreamsPage
	// GetActivityStreamsPerson returns the value of this property. When
	// IsActivityStreamsPerson returns false, GetActivityStreamsPerson
	// will return an arbitrary value.
	GetActivityStreamsPerson() ActivityStreamsPerson
	// GetActivityStreamsPlace returns the value of this property. When
	// IsActivityStreamsPlace returns false, GetActivityStreamsPlace will
	// return an arbitrary value.
	GetActivityStreamsPlace() ActivityStreamsPlace
	// GetActivityStreamsProfile returns the value of this property. When
	// IsActivityStreamsProfile returns false, GetActivityStreamsProfile
	// will return an arbitrary value.
	GetActivityStreamsProfile() ActivityStreamsProfile
	// GetActivityStreamsQuestion returns the value of this property. When
	// IsActivityStreamsQuestion returns false, GetActivityStreamsQuestion
	// will return an arbitrary value.
	GetActivityStreamsQuestion() ActivityStreamsQuestion
	// GetActivityStreamsRead returns the value of this property. When
	// IsActivityStreamsRead returns false, GetActivityStreamsRead will
	// return an arbitrary value.
	GetActivityStreamsRead() ActivityStreamsRead
	// GetActivityStreamsReject returns the value of this property. When
	// IsActivityStreamsReject returns false, GetActivityStreamsReject
	// will return an arbitrary value.
	GetActivityStreamsReject() ActivityStreamsReject
	// GetActivityStreamsRelationship returns the value of this property. When
	// IsActivityStreamsRelationship returns false,
	// GetActivityStreamsRelationship will return an arbitrary value.
	GetActivityStreamsRelationship() ActivityStreamsRelationship
	// GetActivityStreamsRemove returns the value of this property. When
	// IsActivityStreamsRemove returns false, GetActivityStreamsRemove
	// will return an arbitrary value.
	GetActivityStreamsRemove() ActivityStreamsRemove
	// GetActivityStreamsService returns the value of this property. When
	// IsActivityStreamsService returns false, GetActivityStreamsService
	// will return an arbitrary value.
	GetActivityStreamsService() ActivityStreamsService
	// GetActivityStreamsTentativeAccept returns the value of this property.
	// When IsActivityStreamsTentativeAccept returns false,
	// GetActivityStreamsTentativeAccept will return an arbitrary value.
	GetActivityStreamsTentativeAccept() ActivityStreamsTentativeAccept
	// GetActivityStreamsTentativeReject returns the value of this property.
	// When IsActivityStreamsTentativeReject returns false,
	// GetActivityStreamsTentativeReject will return an arbitrary value.
	GetActivityStreamsTentativeReject() ActivityStreamsTentativeReject
	// GetActivityStreamsTombstone returns the value of this property. When
	// IsActivityStreamsTombstone returns false,
	// GetActivityStreamsTombstone will return an arbitrary value.
	GetActivityStreamsTombstone() ActivityStreamsTombstone
	// GetActivityStreamsTravel returns the value of this property. When
	// IsActivityStreamsTravel returns false, GetActivityStreamsTravel
	// will return an arbitrary value.
	GetActivityStreamsTravel() ActivityStreamsTravel
	// GetActivityStreamsUndo returns the value of this property. When
	// IsActivityStreamsUndo returns false, GetActivityStreamsUndo will
	// return an arbitrary value.
	GetActivityStreamsUndo() ActivityStreamsUndo
	// GetActivityStreamsUpdate returns the value of this property. When
	// IsActivityStreamsUpdate returns false, GetActivityStreamsUpdate
	// will return an arbitrary value.
	GetActivityStreamsUpdate() ActivityStreamsUpdate
	// GetActivityStreamsVideo returns the value of this property. When
	// IsActivityStreamsVideo returns false, GetActivityStreamsVideo will
	// return an arbitrary value.
	GetActivityStreamsVideo() ActivityStreamsVideo
	// GetActivityStreamsView returns the value of this property. When
	// IsActivityStreamsView returns false, GetActivityStreamsView will
	// return an arbitrary value.
	GetActivityStreamsView() ActivityStreamsView
	// GetForgeFedBranch returns the value of this property. When
	// IsForgeFedBranch returns false, GetForgeFedBranch will return an
	// arbitrary value.
	GetForgeFedBranch() ForgeFedBranch
	// GetForgeFedCommit returns the value of this property. When
	// IsForgeFedCommit returns false, GetForgeFedCommit will return an
	// arbitrary value.
	GetForgeFedCommit() ForgeFedCommit
	// GetForgeFedPush returns the value of this property. When IsForgeFedPush
	// returns false, GetForgeFedPush will return an arbitrary value.
	GetForgeFedPush() ForgeFedPush
	// GetForgeFedRepository returns the value of this property. When
	// IsForgeFedRepository returns false, GetForgeFedRepository will
	// return an arbitrary value.
	GetForgeFedRepository() ForgeFedRepository
	// GetForgeFedTicket returns the value of this property. When
	// IsForgeFedTicket returns false, GetForgeFedTicket will return an
	// arbitrary value.
	GetForgeFedTicket() ForgeFedTicket
	// GetForgeFedTicketDependency returns the value of this property. When
	// IsForgeFedTicketDependency returns false,
	// GetForgeFedTicketDependency will return an arbitrary value.
	GetForgeFedTicketDependency() ForgeFedTicketDependency
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return an arbitrary value.
	GetIRI() *url.URL
	// GetTootEmoji returns the value of this property. When IsTootEmoji
	// returns false, GetTootEmoji will return an arbitrary value.
	GetTootEmoji() TootEmoji
	// GetTootIdentityProof returns the value of this property. When
	// IsTootIdentityProof returns false, GetTootIdentityProof will return
	// an arbitrary value.
	GetTootIdentityProof() TootIdentityProof
	// GetType returns the value in this property as a Type. Returns nil if
	// the value is not an ActivityStreams type, such as an IRI or another
	// value.
	GetType() Type
	// HasAny returns true if any of the different values is set.
	HasAny() bool
	// IsActivityStreamsAccept returns true if this property has a type of
	// "Accept". When true, use the GetActivityStreamsAccept and
	// SetActivityStreamsAccept methods to access and set this property.
	IsActivityStreamsAccept() bool
	// IsActivityStreamsActivity returns true if this property has a type of
	// "Activity". When true, use the GetActivityStreamsActivity and
	// SetActivityStreamsActivity methods to access and set this property.
	IsActivityStreamsActivity() bool
	// IsActivityStreamsAdd returns true if this property has a type of "Add".
	// When true, use the GetActivityStreamsAdd and SetActivityStreamsAdd
	// methods to access and set this property.
	IsActivityStreamsAdd() bool
	// IsActivityStreamsAnnounce returns true if this property has a type of
	// "Announce". When true, use the GetActivityStreamsAnnounce and
	// SetActivityStreamsAnnounce methods to access and set this property.
	IsActivityStreamsAnnounce() bool
	// IsActivityStreamsApplication returns true if this property has a type
	// of "Application". When true, use the GetActivityStreamsApplication
	// and SetActivityStreamsApplication methods to access and set this
	// property.
	IsActivityStreamsApplication() bool
	// IsActivityStreamsArrive returns true if this property has a type of
	// "Arrive". When true, use the GetActivityStreamsArrive and
	// SetActivityStreamsArrive methods to access and set this property.
	IsActivityStreamsArrive() bool
	// IsActivityStreamsArticle returns true if this property has a type of
	// "Article". When true, use the GetActivityStreamsArticle and
	// SetActivityStreamsArticle methods to access and set this property.
	IsActivityStreamsArticle() bool
	// IsActivityStreamsAudio returns true if this property has a type of
	// "Audio". When true, use the GetActivityStreamsAudio and
	// SetActivityStreamsAudio methods to access and set this property.
	IsActivityStreamsAudio() bool
	// IsActivityStreamsBlock returns true if this property has a type of
	// "Block". When true, use the GetActivityStreamsBlock and
	// SetActivityStreamsBlock methods to access and set this property.
	IsActivityStreamsBlock() bool
	// IsActivityStreamsCollection returns true if this property has a type of
	// "Collection". When true, use the GetActivityStreamsCollection and
	// SetActivityStreamsCollection methods to access and set this
	// property.
	IsActivityStreamsCollection() bool
	// IsActivityStreamsCollectionPage returns true if this property has a
	// type of "CollectionPage". When true, use the
	// GetActivityStreamsCollectionPage and
	// SetActivityStreamsCollectionPage methods to access and set this
	// property.
	IsActivityStreamsCollectionPage() bool
	// IsActivityStreamsCreate returns true if this property has a type of
	// "Create". When true, use the GetActivityStreamsCreate and
	// SetActivityStreamsCreate methods to access and set this property.
	IsActivityStreamsCreate() bool
	// IsActivityStreamsDelete returns true if this property has a type of
	// "Delete". When true, use the GetActivityStreamsDelete and
	// SetActivityStreamsDelete methods to access and set this property.
	IsActivityStreamsDelete() bool
	// IsActivityStreamsDislike returns true if this property has a type of
	// "Dislike". When true, use the GetActivityStreamsDislike and
	// SetActivityStreamsDislike methods to access and set this property.
	IsActivityStreamsDislike() bool
	// IsActivityStreamsDocument returns true if this property has a type of
	// "Document". When true, use the GetActivityStreamsDocument and
	// SetActivityStreamsDocument methods to access and set this property.
	IsActivityStreamsDocument() bool
	// IsActivityStreamsEvent returns true if this property has a type of
	// "Event". When true, use the GetActivityStreamsEvent and
	// SetActivityStreamsEvent methods to access and set this property.
	IsActivityStreamsEvent() bool
	// IsActivityStreamsFlag returns true if this property has a type of
	// "Flag". When true, use the GetActivityStreamsFlag and
	// SetActivityStreamsFlag methods to access and set this property.
	IsActivityStreamsFlag() bool
	// IsActivityStreamsFollow returns true if this property has a type of
	// "Follow". When true, use the GetActivityStreamsFollow and
	// SetActivityStreamsFollow methods to access and set this property.
	IsActivityStreamsFollow() bool
	// IsActivityStreamsGroup returns true if this property has a type of
	// "Group". When true, use the GetActivityStreamsGroup and
	// SetActivityStreamsGroup methods to access and set this property.
	IsActivityStreamsGroup() bool
	// IsActivityStreamsIgnore returns true if this property has a type of
	// "Ignore". When true, use the GetActivityStreamsIgnore and
	// SetActivityStreamsIgnore methods to access and set this property.
	IsActivityStreamsIgnore() bool
	// IsActivityStreamsImage returns true if this property has a type of
	// "Image". When true, use the GetActivityStreamsImage and
	// SetActivityStreamsImage methods to access and set this property.
	IsActivityStreamsImage() bool
	// IsActivityStreamsIntransitiveActivity returns true if this property has
	// a type of "IntransitiveActivity". When true, use the
	// GetActivityStreamsIntransitiveActivity and
	// SetActivityStreamsIntransitiveActivity methods to access and set
	// this property.
	IsActivityStreamsIntransitiveActivity() bool
	// IsActivityStreamsInvite returns true if this property has a type of
	// "Invite". When true, use the GetActivityStreamsInvite and
	// SetActivityStreamsInvite methods to access and set this property.
	IsActivityStreamsInvite() bool
	// IsActivityStreamsJoin returns true if this property has a type of
	// "Join". When true, use the GetActivityStreamsJoin and
	// SetActivityStreamsJoin methods to access and set this property.
	IsActivityStreamsJoin() bool
	// IsActivityStreamsLeave returns true if this property has a type of
	// "Leave". When true, use the GetActivityStreamsLeave and
	// SetActivityStreamsLeave methods to access and set this property.
	IsActivityStreamsLeave() bool
	// IsActivityStreamsLike returns true if this property has a type of
	// "Like". When true, use the GetActivityStreamsLike and
	// SetActivityStreamsLike methods to access and set this property.
	IsActivityStreamsLike() bool
	// IsActivityStreamsLink returns true if this property has a type of
	// "Link". When true, use the GetActivityStreamsLink and
	// SetActivityStreamsLink methods to access and set this property.
	IsActivityStreamsLink() bool
	// IsActivityStreamsListen returns true if this property has a type of
	// "Listen". When true, use the GetActivityStreamsListen and
	// SetActivityStreamsListen methods to access and set this property.
	IsActivityStreamsListen() bool
	// IsActivityStreamsMention returns true if this property has a type of
	// "Mention". When true, use the GetActivityStreamsMention and
	// SetActivityStreamsMention methods to access and set this property.
	IsActivityStreamsMention() bool
	// IsActivityStreamsMove returns true if this property has a type of
	// "Move". When true, use the GetActivityStreamsMove and
	// SetActivityStreamsMove methods to access and set this property.
	IsActivityStreamsMove() bool
	// IsActivityStreamsNote returns true if this property has a type of
	// "Note". When true, use the GetActivityStreamsNote and
	// SetActivityStreamsNote methods to access and set this property.
	IsActivityStreamsNote() bool
	// IsActivityStreamsObject returns true if this property has a type of
	// "Object". When true, use the GetActivityStreamsObject and
	// SetActivityStreamsObject methods to access and set this property.
	IsActivityStreamsObject() bool
	// IsActivityStreamsOffer returns true if this property has a type of
	// "Offer". When true, use the GetActivityStreamsOffer and
	// SetActivityStreamsOffer methods to access and set this property.
	IsActivityStreamsOffer() bool
	// IsActivityStreamsOrderedCollection returns true if this property has a
	// type of "OrderedCollection". When true, use the
	// GetActivityStreamsOrderedCollection and
	// SetActivityStreamsOrderedCollection methods to access and set this
	// property.
	IsActivityStreamsOrderedCollection() bool
	// IsActivityStreamsOrderedCollectionPage returns true if this property
	// has a type of "OrderedCollectionPage". When true, use the
	// GetActivityStreamsOrderedCollectionPage and
	// SetActivityStreamsOrderedCollectionPage methods to access and set
	// this property.
	IsActivityStreamsOrderedCollectionPage() bool
	// IsActivityStreamsOrganization returns true if this property has a type
	// of "Organization". When true, use the
	// GetActivityStreamsOrganization and SetActivityStreamsOrganization
	// methods to access and set this property.
	IsActivityStreamsOrganization() bool
	// IsActivityStreamsPage returns true if this property has a type of
	// "Page". When true, use the GetActivityStreamsPage and
	// SetActivityStreamsPage methods to access and set this property.
	IsActivityStreamsPage() bool
	// IsActivityStreamsPerson returns true if this property has a type of
	// "Person". When true, use the GetActivityStreamsPerson and
	// SetActivityStreamsPerson methods to access and set this property.
	IsActivityStreamsPerson() bool
	// IsActivityStreamsPlace returns true if this property has a type of
	// "Place". When true, use the GetActivityStreamsPlace and
	// SetActivityStreamsPlace methods to access and set this property.
	IsActivityStreamsPlace() bool
	// IsActivityStreamsProfile returns true if this property has a type of
	// "Profile". When true, use the GetActivityStreamsProfile and
	// SetActivityStreamsProfile methods to access and set this property.
	IsActivityStreamsProfile() bool
	// IsActivityStreamsQuestion returns true if this property has a type of
	// "Question". When true, use the GetActivityStreamsQuestion and
	// SetActivityStreamsQuestion methods to access and set this property.
	IsActivityStreamsQuestion() bool
	// IsActivityStreamsRead returns true if this property has a type of
	// "Read". When true, use the GetActivityStreamsRead and
	// SetActivityStreamsRead methods to access and set this property.
	IsActivityStreamsRead() bool
	// IsActivityStreamsReject returns true if this property has a type of
	// "Reject". When true, use the GetActivityStreamsReject and
	// SetActivityStreamsReject methods to access and set this property.
	IsActivityStreamsReject() bool
	// IsActivityStreamsRelationship returns true if this property has a type
	// of "Relationship". When true, use the
	// GetActivityStreamsRelationship and SetActivityStreamsRelationship
	// methods to access and set this property.
	IsActivityStreamsRelationship() bool
	// IsActivityStreamsRemove returns true if this property has a type of
	// "Remove". When true, use the GetActivityStreamsRemove and
	// SetActivityStreamsRemove methods to access and set this property.
	IsActivityStreamsRemove() bool
	// IsActivityStreamsService returns true if this property has a type of
	// "Service". When true, use the GetActivityStreamsService and
	// SetActivityStreamsService methods to access and set this property.
	IsActivityStreamsService() bool
	// IsActivityStreamsTentativeAccept returns true if this property has a
	// type of "TentativeAccept". When true, use the
	// GetActivityStreamsTentativeAccept and
	// SetActivityStreamsTentativeAccept methods to access and set this
	// property.
	IsActivityStreamsTentativeAccept() bool
	// IsActivityStreamsTentativeReject returns true if this property has a
	// type of "TentativeReject". When true, use the
	// GetActivityStreamsTentativeReject and
	// SetActivityStreamsTentativeReject methods to access and set this
	// property.
	IsActivityStreamsTentativeReject() bool
	// IsActivityStreamsTombstone returns true if this property has a type of
	// "Tombstone". When true, use the GetActivityStreamsTombstone and
	// SetActivityStreamsTombstone methods to access and set this property.
	IsActivityStreamsTombstone() bool
	// IsActivityStreamsTravel returns true if this property has a type of
	// "Travel". When true, use the GetActivityStreamsTravel and
	// SetActivityStreamsTravel methods to access and set this property.
	IsActivityStreamsTravel() bool
	// IsActivityStreamsUndo returns true if this property has a type of
	// "Undo". When true, use the GetActivityStreamsUndo and
	// SetActivityStreamsUndo methods to access and set this property.
	IsActivityStreamsUndo() bool
	// IsActivityStreamsUpdate returns true if this property has a type of
	// "Update". When true, use the GetActivityStreamsUpdate and
	// SetActivityStreamsUpdate methods to access and set this property.
	IsActivityStreamsUpdate() bool
	// IsActivityStreamsVideo returns true if this property has a type of
	// "Video". When true, use the GetActivityStreamsVideo and
	// SetActivityStreamsVideo methods to access and set this property.
	IsActivityStreamsVideo() bool
	// IsActivityStreamsView returns true if this property has a type of
	// "View". When true, use the GetActivityStreamsView and
	// SetActivityStreamsView methods to access and set this property.
	IsActivityStreamsView() bool
	// IsForgeFedBranch returns true if this property has a type of "Branch".
	// When true, use the GetForgeFedBranch and SetForgeFedBranch methods
	// to access and set this property.
	IsForgeFedBranch() bool
	// IsForgeFedCommit returns true if this property has a type of "Commit".
	// When true, use the GetForgeFedCommit and SetForgeFedCommit methods
	// to access and set this property.
	IsForgeFedCommit() bool
	// IsForgeFedPush returns true if this property has a type of "Push". When
	// true, use the GetForgeFedPush and SetForgeFedPush methods to access
	// and set this property.
	IsForgeFedPush() bool
	// IsForgeFedRepository returns true if this property has a type of
	// "Repository". When true, use the GetForgeFedRepository and
	// SetForgeFedRepository methods to access and set this property.
	IsForgeFedRepository() bool
	// IsForgeFedTicket returns true if this property has a type of "Ticket".
	// When true, use the GetForgeFedTicket and SetForgeFedTicket methods
	// to access and set this property.
	IsForgeFedTicket() bool
	// IsForgeFedTicketDependency returns true if this property has a type of
	// "TicketDependency". When true, use the GetForgeFedTicketDependency
	// and SetForgeFedTicketDependency methods to access and set this
	// property.
	IsForgeFedTicketDependency() bool
	// IsIRI returns true if this property is an IRI. When true, use GetIRI
	// and SetIRI to access and set this property
	IsIRI() bool
	// IsTootEmoji returns true if this property has a type of "Emoji". When
	// true, use the GetTootEmoji and SetTootEmoji methods to access and
	// set this property.
	IsTootEmoji() bool
	// IsTootIdentityProof returns true if this property has a type of
	// "IdentityProof". When true, use the GetTootIdentityProof and
	// SetTootIdentityProof methods to access and set this property.
	IsTootIdentityProof() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsToPropertyIterator) bool
	// Name returns the name of this property: "ActivityStreamsTo".
	Name() string
	// Next returns the next iterator, or nil if there is no next iterator.
	Next() ActivityStreamsToPropertyIterator
	// Prev returns the previous iterator, or nil if there is no previous
	// iterator.
	Prev() ActivityStreamsToPropertyIterator
	// SetActivityStreamsAccept sets the value of this property. Calling
	// IsActivityStreamsAccept afterwards returns true.
	SetActivityStreamsAccept(v ActivityStreamsAccept)
	// SetActivityStreamsActivity sets the value of this property. Calling
	// IsActivityStreamsActivity afterwards returns true.
	SetActivityStreamsActivity(v ActivityStreamsActivity)
	// SetActivityStreamsAdd sets the value of this property. Calling
	// IsActivityStreamsAdd afterwards returns true.
	SetActivityStreamsAdd(v ActivityStreamsAdd)
	// SetActivityStreamsAnnounce sets the value of this property. Calling
	// IsActivityStreamsAnnounce afterwards returns true.
	SetActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// SetActivityStreamsApplication sets the value of this property. Calling
	// IsActivityStreamsApplication afterwards returns true.
	SetActivityStreamsApplication(v ActivityStreamsApplication)
	// SetActivityStreamsArrive sets the value of this property. Calling
	// IsActivityStreamsArrive afterwards returns true.
	SetActivityStreamsArrive(v ActivityStreamsArrive)
	// SetActivityStreamsArticle sets the value of this property. Calling
	// IsActivityStreamsArticle afterwards returns true.
	SetActivityStreamsArticle(v ActivityStreamsArticle)
	// SetActivityStreamsAudio sets the value of this property. Calling
	// IsActivityStreamsAudio afterwards returns true.
	SetActivityStreamsAudio(v ActivityStreamsAudio)
	// SetActivityStreamsBlock sets the value of this property. Calling
	// IsActivityStreamsBlock afterwards returns true.
	SetActivityStreamsBlock(v ActivityStreamsBlock)
	// SetActivityStreamsCollection sets the value of this property. Calling
	// IsActivityStreamsCollection afterwards returns true.
	SetActivityStreamsCollection(v ActivityStreamsCollection)
	// SetActivityStreamsCollectionPage sets the value of this property.
	// Calling IsActivityStreamsCollectionPage afterwards returns true.
	SetActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// SetActivityStreamsCreate sets the value of this property. Calling
	// IsActivityStreamsCreate afterwards returns true.
	SetActivityStreamsCreate(v ActivityStreamsCreate)
	// SetActivityStreamsDelete sets the value of this property. Calling
	// IsActivityStreamsDelete afterwards returns true.
	SetActivityStreamsDelete(v ActivityStreamsDelete)
	// SetActivityStreamsDislike sets the value of this property. Calling
	// IsActivityStreamsDislike afterwards returns true.
	SetActivityStreamsDislike(v ActivityStreamsDislike)
	// SetActivityStreamsDocument sets the value of this property. Calling
	// IsActivityStreamsDocument afterwards returns true.
	SetActivityStreamsDocument(v ActivityStreamsDocument)
	// SetActivityStreamsEvent sets the value of this property. Calling
	// IsActivityStreamsEvent afterwards returns true.
	SetActivityStreamsEvent(v ActivityStreamsEvent)
	// SetActivityStreamsFlag sets the value of this property. Calling
	// IsActivityStreamsFlag afterwards returns true.
	SetActivityStreamsFlag(v ActivityStreamsFlag)
	// SetActivityStreamsFollow sets the value of this property. Calling
	// IsActivityStreamsFollow afterwards returns true.
	SetActivityStreamsFollow(v ActivityStreamsFollow)
	// SetActivityStreamsGroup sets the value of this property. Calling
	// IsActivityStreamsGroup afterwards returns true.
	SetActivityStreamsGroup(v ActivityStreamsGroup)
	// SetActivityStreamsIgnore sets the value of this property. Calling
	// IsActivityStreamsIgnore afterwards returns true.
	SetActivityStreamsIgnore(v ActivityStreamsIgnore)
	// SetActivityStreamsImage sets the value of this property. Calling
	// IsActivityStreamsImage afterwards returns true.
	SetActivityStreamsImage(v ActivityStreamsImage)
	// SetActivityStreamsIntransitiveActivity sets the value of this property.
	// Calling IsActivityStreamsIntransitiveActivity afterwards returns
	// true.
	SetActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// SetActivityStreamsInvite sets the value of this property. Calling
	// IsActivityStreamsInvite afterwards returns true.
	SetActivityStreamsInvite(v ActivityStreamsInvite)
	// SetActivityStreamsJoin sets the value of this property. Calling
	// IsActivityStreamsJoin afterwards returns true.
	SetActivityStreamsJoin(v ActivityStreamsJoin)
	// SetActivityStreamsLeave sets the value of this property. Calling
	// IsActivityStreamsLeave afterwards returns true.
	SetActivityStreamsLeave(v ActivityStreamsLeave)
	// SetActivityStreamsLike sets the value of this property. Calling
	// IsActivityStreamsLike afterwards returns true.
	SetActivityStreamsLike(v ActivityStreamsLike)
	// SetActivityStreamsLink sets the value of this property. Calling
	// IsActivityStreamsLink afterwards returns true.
	SetActivityStreamsLink(v ActivityStreamsLink)
	// SetActivityStreamsListen sets the value of this property. Calling
	// IsActivityStreamsListen afterwards returns true.
	SetActivityStreamsListen(v ActivityStreamsListen)
	// SetActivityStreamsMention sets the value of this property. Calling
	// IsActivityStreamsMention afterwards returns true.
	SetActivityStreamsMention(v ActivityStreamsMention)
	// SetActivityStreamsMove sets the value of this property. Calling
	// IsActivityStreamsMove afterwards returns true.
	SetActivityStreamsMove(v ActivityStreamsMove)
	// SetActivityStreamsNote sets the value of this property. Calling
	// IsActivityStreamsNote afterwards returns true.
	SetActivityStreamsNote(v ActivityStreamsNote)
	// SetActivityStreamsObject sets the value of this property. Calling
	// IsActivityStreamsObject afterwards returns true.
	SetActivityStreamsObject(v ActivityStreamsObject)
	// SetActivityStreamsOffer sets the value of this property. Calling
	// IsActivityStreamsOffer afterwards returns true.
	SetActivityStreamsOffer(v ActivityStreamsOffer)
	// SetActivityStreamsOrderedCollection sets the value of this property.
	// Calling IsActivityStreamsOrderedCollection afterwards returns true.
	SetActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// SetActivityStreamsOrderedCollectionPage sets the value of this
	// property. Calling IsActivityStreamsOrderedCollectionPage afterwards
	// returns true.
	SetActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// SetActivityStreamsOrganization sets the value of this property. Calling
	// IsActivityStreamsOrganization afterwards returns true.
	SetActivityStreamsOrganization(v ActivityStreamsOrganization)
	// SetActivityStreamsPage sets the value of this property. Calling
	// IsActivityStreamsPage afterwards returns true.
	SetActivityStreamsPage(v ActivityStreamsPage)
	// SetActivityStreamsPerson sets the value of this property. Calling
	// IsActivityStreamsPerson afterwards returns true.
	SetActivityStreamsPerson(v ActivityStreamsPerson)
	// SetActivityStreamsPlace sets the value of this property. Calling
	// IsActivityStreamsPlace afterwards returns true.
	SetActivityStreamsPlace(v ActivityStreamsPlace)
	// SetActivityStreamsProfile sets the value of this property. Calling
	// IsActivityStreamsProfile afterwards returns true.
	SetActivityStreamsProfile(v ActivityStreamsProfile)
	// SetActivityStreamsQuestion sets the value of this property. Calling
	// IsActivityStreamsQuestion afterwards returns true.
	SetActivityStreamsQuestion(v ActivityStreamsQuestion)
	// SetActivityStreamsRead sets the value of this property. Calling
	// IsActivityStreamsRead afterwards returns true.
	SetActivityStreamsRead(v ActivityStreamsRead)
	// SetActivityStreamsReject sets the value of this property. Calling
	// IsActivityStreamsReject afterwards returns true.
	SetActivityStreamsReject(v ActivityStreamsReject)
	// SetActivityStreamsRelationship sets the value of this property. Calling
	// IsActivityStreamsRelationship afterwards returns true.
	SetActivityStreamsRelationship(v ActivityStreamsRelationship)
	// SetActivityStreamsRemove sets the value of this property. Calling
	// IsActivityStreamsRemove afterwards returns true.
	SetActivityStreamsRemove(v ActivityStreamsRemove)
	// SetActivityStreamsService sets the value of this property. Calling
	// IsActivityStreamsService afterwards returns true.
	SetActivityStreamsService(v ActivityStreamsService)
	// SetActivityStreamsTentativeAccept sets the value of this property.
	// Calling IsActivityStreamsTentativeAccept afterwards returns true.
	SetActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// SetActivityStreamsTentativeReject sets the value of this property.
	// Calling IsActivityStreamsTentativeReject afterwards returns true.
	SetActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// SetActivityStreamsTombstone sets the value of this property. Calling
	// IsActivityStreamsTombstone afterwards returns true.
	SetActivityStreamsTombstone(v ActivityStreamsTombstone)
	// SetActivityStreamsTravel sets the value of this property. Calling
	// IsActivityStreamsTravel afterwards returns true.
	SetActivityStreamsTravel(v ActivityStreamsTravel)
	// SetActivityStreamsUndo sets the value of this property. Calling
	// IsActivityStreamsUndo afterwards returns true.
	SetActivityStreamsUndo(v ActivityStreamsUndo)
	// SetActivityStreamsUpdate sets the value of this property. Calling
	// IsActivityStreamsUpdate afterwards returns true.
	SetActivityStreamsUpdate(v ActivityStreamsUpdate)
	// SetActivityStreamsVideo sets the value of this property. Calling
	// IsActivityStreamsVideo afterwards returns true.
	SetActivityStreamsVideo(v ActivityStreamsVideo)
	// SetActivityStreamsView sets the value of this property. Calling
	// IsActivityStreamsView afterwards returns true.
	SetActivityStreamsView(v ActivityStreamsView)
	// SetForgeFedBranch sets the value of this property. Calling
	// IsForgeFedBranch afterwards returns true.
	SetForgeFedBranch(v ForgeFedBranch)
	// SetForgeFedCommit sets the value of this property. Calling
	// IsForgeFedCommit afterwards returns true.
	SetForgeFedCommit(v ForgeFedCommit)
	// SetForgeFedPush sets the value of this property. Calling IsForgeFedPush
	// afterwards returns true.
	SetForgeFedPush(v ForgeFedPush)
	// SetForgeFedRepository sets the value of this property. Calling
	// IsForgeFedRepository afterwards returns true.
	SetForgeFedRepository(v ForgeFedRepository)
	// SetForgeFedTicket sets the value of this property. Calling
	// IsForgeFedTicket afterwards returns true.
	SetForgeFedTicket(v ForgeFedTicket)
	// SetForgeFedTicketDependency sets the value of this property. Calling
	// IsForgeFedTicketDependency afterwards returns true.
	SetForgeFedTicketDependency(v ForgeFedTicketDependency)
	// SetIRI sets the value of this property. Calling IsIRI afterwards
	// returns true.
	SetIRI(v *url.URL)
	// SetTootEmoji sets the value of this property. Calling IsTootEmoji
	// afterwards returns true.
	SetTootEmoji(v TootEmoji)
	// SetTootIdentityProof sets the value of this property. Calling
	// IsTootIdentityProof afterwards returns true.
	SetTootIdentityProof(v TootIdentityProof)
	// SetType attempts to set the property for the arbitrary type. Returns an
	// error if it is not a valid type to set on this property.
	SetType(t Type) error
}

ActivityStreamsToPropertyIterator represents a single value for the "to" property.

type ActivityStreamsTombstone

type ActivityStreamsTombstone interface {
	// GetActivityStreamsAltitude returns the "altitude" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAltitude() ActivityStreamsAltitudeProperty
	// GetActivityStreamsAttachment returns the "attachment" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAttachment() ActivityStreamsAttachmentProperty
	// GetActivityStreamsAttributedTo returns the "attributedTo" property if
	// it exists, and nil otherwise.
	GetActivityStreamsAttributedTo() ActivityStreamsAttributedToProperty
	// GetActivityStreamsAudience returns the "audience" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAudience() ActivityStreamsAudienceProperty
	// GetActivityStreamsBcc returns the "bcc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBcc() ActivityStreamsBccProperty
	// GetActivityStreamsBto returns the "bto" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBto() ActivityStreamsBtoProperty
	// GetActivityStreamsCc returns the "cc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsCc() ActivityStreamsCcProperty
	// GetActivityStreamsContent returns the "content" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContent() ActivityStreamsContentProperty
	// GetActivityStreamsContext returns the "context" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContext() ActivityStreamsContextProperty
	// GetActivityStreamsDeleted returns the "deleted" property if it exists,
	// and nil otherwise.
	GetActivityStreamsDeleted() ActivityStreamsDeletedProperty
	// GetActivityStreamsDuration returns the "duration" property if it
	// exists, and nil otherwise.
	GetActivityStreamsDuration() ActivityStreamsDurationProperty
	// GetActivityStreamsEndTime returns the "endTime" property if it exists,
	// and nil otherwise.
	GetActivityStreamsEndTime() ActivityStreamsEndTimeProperty
	// GetActivityStreamsFormerType returns the "formerType" property if it
	// exists, and nil otherwise.
	GetActivityStreamsFormerType() ActivityStreamsFormerTypeProperty
	// GetActivityStreamsGenerator returns the "generator" property if it
	// exists, and nil otherwise.
	GetActivityStreamsGenerator() ActivityStreamsGeneratorProperty
	// GetActivityStreamsIcon returns the "icon" property if it exists, and
	// nil otherwise.
	GetActivityStreamsIcon() ActivityStreamsIconProperty
	// GetActivityStreamsImage returns the "image" property if it exists, and
	// nil otherwise.
	GetActivityStreamsImage() ActivityStreamsImageProperty
	// GetActivityStreamsInReplyTo returns the "inReplyTo" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInReplyTo() ActivityStreamsInReplyToProperty
	// GetActivityStreamsLikes returns the "likes" property if it exists, and
	// nil otherwise.
	GetActivityStreamsLikes() ActivityStreamsLikesProperty
	// GetActivityStreamsLocation returns the "location" property if it
	// exists, and nil otherwise.
	GetActivityStreamsLocation() ActivityStreamsLocationProperty
	// GetActivityStreamsMediaType returns the "mediaType" property if it
	// exists, and nil otherwise.
	GetActivityStreamsMediaType() ActivityStreamsMediaTypeProperty
	// GetActivityStreamsName returns the "name" property if it exists, and
	// nil otherwise.
	GetActivityStreamsName() ActivityStreamsNameProperty
	// GetActivityStreamsObject returns the "object" property if it exists,
	// and nil otherwise.
	GetActivityStreamsObject() ActivityStreamsObjectProperty
	// GetActivityStreamsPreview returns the "preview" property if it exists,
	// and nil otherwise.
	GetActivityStreamsPreview() ActivityStreamsPreviewProperty
	// GetActivityStreamsPublished returns the "published" property if it
	// exists, and nil otherwise.
	GetActivityStreamsPublished() ActivityStreamsPublishedProperty
	// GetActivityStreamsReplies returns the "replies" property if it exists,
	// and nil otherwise.
	GetActivityStreamsReplies() ActivityStreamsRepliesProperty
	// GetActivityStreamsShares returns the "shares" property if it exists,
	// and nil otherwise.
	GetActivityStreamsShares() ActivityStreamsSharesProperty
	// GetActivityStreamsSource returns the "source" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSource() ActivityStreamsSourceProperty
	// GetActivityStreamsStartTime returns the "startTime" property if it
	// exists, and nil otherwise.
	GetActivityStreamsStartTime() ActivityStreamsStartTimeProperty
	// GetActivityStreamsSummary returns the "summary" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSummary() ActivityStreamsSummaryProperty
	// GetActivityStreamsTag returns the "tag" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTag() ActivityStreamsTagProperty
	// GetActivityStreamsTo returns the "to" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTo() ActivityStreamsToProperty
	// GetActivityStreamsUpdated returns the "updated" property if it exists,
	// and nil otherwise.
	GetActivityStreamsUpdated() ActivityStreamsUpdatedProperty
	// GetActivityStreamsUrl returns the "url" property if it exists, and nil
	// otherwise.
	GetActivityStreamsUrl() ActivityStreamsUrlProperty
	// GetForgeFedTeam returns the "team" property if it exists, and nil
	// otherwise.
	GetForgeFedTeam() ForgeFedTeamProperty
	// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
	// it exists, and nil otherwise.
	GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
	// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
	// it exists, and nil otherwise.
	GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
	// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
	GetJSONLDId() JSONLDIdProperty
	// GetJSONLDType returns the "type" property if it exists, and nil
	// otherwise.
	GetJSONLDType() JSONLDTypeProperty
	// GetTypeName returns the name of this type.
	GetTypeName() string
	// GetUnknownProperties returns the unknown properties for the Tombstone
	// type. Note that this should not be used by app developers. It is
	// only used to help determine which implementation is LessThan the
	// other. Developers who are creating a different implementation of
	// this type's interface can use this method in their LessThan
	// implementation, but routine ActivityPub applications should not use
	// this to bypass the code generation tool.
	GetUnknownProperties() map[string]interface{}
	// IsExtending returns true if the Tombstone type extends from the other
	// type.
	IsExtending(other Type) bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this type and the specific properties that are set. The value
	// in the map is the alias used to import the type and its properties.
	JSONLDContext() map[string]string
	// LessThan computes if this Tombstone is lesser, with an arbitrary but
	// stable determination.
	LessThan(o ActivityStreamsTombstone) bool
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format.
	Serialize() (map[string]interface{}, error)
	// SetActivityStreamsAltitude sets the "altitude" property.
	SetActivityStreamsAltitude(i ActivityStreamsAltitudeProperty)
	// SetActivityStreamsAttachment sets the "attachment" property.
	SetActivityStreamsAttachment(i ActivityStreamsAttachmentProperty)
	// SetActivityStreamsAttributedTo sets the "attributedTo" property.
	SetActivityStreamsAttributedTo(i ActivityStreamsAttributedToProperty)
	// SetActivityStreamsAudience sets the "audience" property.
	SetActivityStreamsAudience(i ActivityStreamsAudienceProperty)
	// SetActivityStreamsBcc sets the "bcc" property.
	SetActivityStreamsBcc(i ActivityStreamsBccProperty)
	// SetActivityStreamsBto sets the "bto" property.
	SetActivityStreamsBto(i ActivityStreamsBtoProperty)
	// SetActivityStreamsCc sets the "cc" property.
	SetActivityStreamsCc(i ActivityStreamsCcProperty)
	// SetActivityStreamsContent sets the "content" property.
	SetActivityStreamsContent(i ActivityStreamsContentProperty)
	// SetActivityStreamsContext sets the "context" property.
	SetActivityStreamsContext(i ActivityStreamsContextProperty)
	// SetActivityStreamsDeleted sets the "deleted" property.
	SetActivityStreamsDeleted(i ActivityStreamsDeletedProperty)
	// SetActivityStreamsDuration sets the "duration" property.
	SetActivityStreamsDuration(i ActivityStreamsDurationProperty)
	// SetActivityStreamsEndTime sets the "endTime" property.
	SetActivityStreamsEndTime(i ActivityStreamsEndTimeProperty)
	// SetActivityStreamsFormerType sets the "formerType" property.
	SetActivityStreamsFormerType(i ActivityStreamsFormerTypeProperty)
	// SetActivityStreamsGenerator sets the "generator" property.
	SetActivityStreamsGenerator(i ActivityStreamsGeneratorProperty)
	// SetActivityStreamsIcon sets the "icon" property.
	SetActivityStreamsIcon(i ActivityStreamsIconProperty)
	// SetActivityStreamsImage sets the "image" property.
	SetActivityStreamsImage(i ActivityStreamsImageProperty)
	// SetActivityStreamsInReplyTo sets the "inReplyTo" property.
	SetActivityStreamsInReplyTo(i ActivityStreamsInReplyToProperty)
	// SetActivityStreamsLikes sets the "likes" property.
	SetActivityStreamsLikes(i ActivityStreamsLikesProperty)
	// SetActivityStreamsLocation sets the "location" property.
	SetActivityStreamsLocation(i ActivityStreamsLocationProperty)
	// SetActivityStreamsMediaType sets the "mediaType" property.
	SetActivityStreamsMediaType(i ActivityStreamsMediaTypeProperty)
	// SetActivityStreamsName sets the "name" property.
	SetActivityStreamsName(i ActivityStreamsNameProperty)
	// SetActivityStreamsObject sets the "object" property.
	SetActivityStreamsObject(i ActivityStreamsObjectProperty)
	// SetActivityStreamsPreview sets the "preview" property.
	SetActivityStreamsPreview(i ActivityStreamsPreviewProperty)
	// SetActivityStreamsPublished sets the "published" property.
	SetActivityStreamsPublished(i ActivityStreamsPublishedProperty)
	// SetActivityStreamsReplies sets the "replies" property.
	SetActivityStreamsReplies(i ActivityStreamsRepliesProperty)
	// SetActivityStreamsShares sets the "shares" property.
	SetActivityStreamsShares(i ActivityStreamsSharesProperty)
	// SetActivityStreamsSource sets the "source" property.
	SetActivityStreamsSource(i ActivityStreamsSourceProperty)
	// SetActivityStreamsStartTime sets the "startTime" property.
	SetActivityStreamsStartTime(i ActivityStreamsStartTimeProperty)
	// SetActivityStreamsSummary sets the "summary" property.
	SetActivityStreamsSummary(i ActivityStreamsSummaryProperty)
	// SetActivityStreamsTag sets the "tag" property.
	SetActivityStreamsTag(i ActivityStreamsTagProperty)
	// SetActivityStreamsTo sets the "to" property.
	SetActivityStreamsTo(i ActivityStreamsToProperty)
	// SetActivityStreamsUpdated sets the "updated" property.
	SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
	// SetActivityStreamsUrl sets the "url" property.
	SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
	// SetForgeFedTeam sets the "team" property.
	SetForgeFedTeam(i ForgeFedTeamProperty)
	// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
	SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
	// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
	SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
	// SetJSONLDId sets the "id" property.
	SetJSONLDId(i JSONLDIdProperty)
	// SetJSONLDType sets the "type" property.
	SetJSONLDType(i JSONLDTypeProperty)
	// VocabularyURI returns the vocabulary's URI as a string.
	VocabularyURI() string
}

A Tombstone represents a content object that has been deleted. It can be used in Collections to signify that there used to be an object at this position, but it has been deleted.

Example 60 (https://www.w3.org/TR/activitystreams-vocabulary/#ex184b-jsonld):

{
  "name": "Vacation photos 2016",
  "orderedItems": [
    {
      "id": "http://image.example/1",
      "type": "Image"
    },
    {
      "deleted": "2016-03-17T00:00:00Z",
      "formerType": "/Image",
      "id": "http://image.example/2",
      "type": "Tombstone"
    },
    {
      "id": "http://image.example/3",
      "type": "Image"
    }
  ],
  "totalItems": 3,
  "type": "OrderedCollection"
}

type ActivityStreamsTotalItemsProperty

type ActivityStreamsTotalItemsProperty interface {
	// Clear ensures no value of this property is set. Calling
	// IsXMLSchemaNonNegativeInteger afterwards will return false.
	Clear()
	// Get returns the value of this property. When
	// IsXMLSchemaNonNegativeInteger returns false, Get will return any
	// arbitrary value.
	Get() int
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return any arbitrary value.
	GetIRI() *url.URL
	// HasAny returns true if the value or IRI is set.
	HasAny() bool
	// IsIRI returns true if this property is an IRI.
	IsIRI() bool
	// IsXMLSchemaNonNegativeInteger returns true if this property is set and
	// not an IRI.
	IsXMLSchemaNonNegativeInteger() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsTotalItemsProperty) bool
	// Name returns the name of this property: "totalItems".
	Name() string
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// Set sets the value of this property. Calling
	// IsXMLSchemaNonNegativeInteger afterwards will return true.
	Set(v int)
	// SetIRI sets the value of this property. Calling IsIRI afterwards will
	// return true.
	SetIRI(v *url.URL)
}

A non-negative integer specifying the total number of objects contained by the logical view of the collection. This number might not reflect the actual number of items serialized within the Collection object instance.

Example 135 (https://www.w3.org/TR/activitystreams-vocabulary/#ex156-jsonld):

{
  "items": [
    {
      "name": "Which Staircase Should I Use",
      "type": "Note"
    },
    {
      "name": "Something to Remember",
      "type": "Note"
    }
  ],
  "summary": "Sally's notes",
  "totalItems": 2,
  "type": "Collection"
}

type ActivityStreamsTravel

type ActivityStreamsTravel interface {
	// GetActivityStreamsActor returns the "actor" property if it exists, and
	// nil otherwise.
	GetActivityStreamsActor() ActivityStreamsActorProperty
	// GetActivityStreamsAltitude returns the "altitude" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAltitude() ActivityStreamsAltitudeProperty
	// GetActivityStreamsAttachment returns the "attachment" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAttachment() ActivityStreamsAttachmentProperty
	// GetActivityStreamsAttributedTo returns the "attributedTo" property if
	// it exists, and nil otherwise.
	GetActivityStreamsAttributedTo() ActivityStreamsAttributedToProperty
	// GetActivityStreamsAudience returns the "audience" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAudience() ActivityStreamsAudienceProperty
	// GetActivityStreamsBcc returns the "bcc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBcc() ActivityStreamsBccProperty
	// GetActivityStreamsBto returns the "bto" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBto() ActivityStreamsBtoProperty
	// GetActivityStreamsCc returns the "cc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsCc() ActivityStreamsCcProperty
	// GetActivityStreamsContent returns the "content" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContent() ActivityStreamsContentProperty
	// GetActivityStreamsContext returns the "context" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContext() ActivityStreamsContextProperty
	// GetActivityStreamsDuration returns the "duration" property if it
	// exists, and nil otherwise.
	GetActivityStreamsDuration() ActivityStreamsDurationProperty
	// GetActivityStreamsEndTime returns the "endTime" property if it exists,
	// and nil otherwise.
	GetActivityStreamsEndTime() ActivityStreamsEndTimeProperty
	// GetActivityStreamsGenerator returns the "generator" property if it
	// exists, and nil otherwise.
	GetActivityStreamsGenerator() ActivityStreamsGeneratorProperty
	// GetActivityStreamsIcon returns the "icon" property if it exists, and
	// nil otherwise.
	GetActivityStreamsIcon() ActivityStreamsIconProperty
	// GetActivityStreamsImage returns the "image" property if it exists, and
	// nil otherwise.
	GetActivityStreamsImage() ActivityStreamsImageProperty
	// GetActivityStreamsInReplyTo returns the "inReplyTo" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInReplyTo() ActivityStreamsInReplyToProperty
	// GetActivityStreamsInstrument returns the "instrument" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInstrument() ActivityStreamsInstrumentProperty
	// GetActivityStreamsLikes returns the "likes" property if it exists, and
	// nil otherwise.
	GetActivityStreamsLikes() ActivityStreamsLikesProperty
	// GetActivityStreamsLocation returns the "location" property if it
	// exists, and nil otherwise.
	GetActivityStreamsLocation() ActivityStreamsLocationProperty
	// GetActivityStreamsMediaType returns the "mediaType" property if it
	// exists, and nil otherwise.
	GetActivityStreamsMediaType() ActivityStreamsMediaTypeProperty
	// GetActivityStreamsName returns the "name" property if it exists, and
	// nil otherwise.
	GetActivityStreamsName() ActivityStreamsNameProperty
	// GetActivityStreamsOrigin returns the "origin" property if it exists,
	// and nil otherwise.
	GetActivityStreamsOrigin() ActivityStreamsOriginProperty
	// GetActivityStreamsPreview returns the "preview" property if it exists,
	// and nil otherwise.
	GetActivityStreamsPreview() ActivityStreamsPreviewProperty
	// GetActivityStreamsPublished returns the "published" property if it
	// exists, and nil otherwise.
	GetActivityStreamsPublished() ActivityStreamsPublishedProperty
	// GetActivityStreamsReplies returns the "replies" property if it exists,
	// and nil otherwise.
	GetActivityStreamsReplies() ActivityStreamsRepliesProperty
	// GetActivityStreamsResult returns the "result" property if it exists,
	// and nil otherwise.
	GetActivityStreamsResult() ActivityStreamsResultProperty
	// GetActivityStreamsShares returns the "shares" property if it exists,
	// and nil otherwise.
	GetActivityStreamsShares() ActivityStreamsSharesProperty
	// GetActivityStreamsSource returns the "source" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSource() ActivityStreamsSourceProperty
	// GetActivityStreamsStartTime returns the "startTime" property if it
	// exists, and nil otherwise.
	GetActivityStreamsStartTime() ActivityStreamsStartTimeProperty
	// GetActivityStreamsSummary returns the "summary" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSummary() ActivityStreamsSummaryProperty
	// GetActivityStreamsTag returns the "tag" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTag() ActivityStreamsTagProperty
	// GetActivityStreamsTarget returns the "target" property if it exists,
	// and nil otherwise.
	GetActivityStreamsTarget() ActivityStreamsTargetProperty
	// GetActivityStreamsTo returns the "to" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTo() ActivityStreamsToProperty
	// GetActivityStreamsUpdated returns the "updated" property if it exists,
	// and nil otherwise.
	GetActivityStreamsUpdated() ActivityStreamsUpdatedProperty
	// GetActivityStreamsUrl returns the "url" property if it exists, and nil
	// otherwise.
	GetActivityStreamsUrl() ActivityStreamsUrlProperty
	// GetForgeFedTeam returns the "team" property if it exists, and nil
	// otherwise.
	GetForgeFedTeam() ForgeFedTeamProperty
	// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
	// it exists, and nil otherwise.
	GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
	// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
	// it exists, and nil otherwise.
	GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
	// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
	GetJSONLDId() JSONLDIdProperty
	// GetJSONLDType returns the "type" property if it exists, and nil
	// otherwise.
	GetJSONLDType() JSONLDTypeProperty
	// GetTypeName returns the name of this type.
	GetTypeName() string
	// GetUnknownProperties returns the unknown properties for the Travel
	// type. Note that this should not be used by app developers. It is
	// only used to help determine which implementation is LessThan the
	// other. Developers who are creating a different implementation of
	// this type's interface can use this method in their LessThan
	// implementation, but routine ActivityPub applications should not use
	// this to bypass the code generation tool.
	GetUnknownProperties() map[string]interface{}
	// IsExtending returns true if the Travel type extends from the other type.
	IsExtending(other Type) bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this type and the specific properties that are set. The value
	// in the map is the alias used to import the type and its properties.
	JSONLDContext() map[string]string
	// LessThan computes if this Travel is lesser, with an arbitrary but
	// stable determination.
	LessThan(o ActivityStreamsTravel) bool
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format.
	Serialize() (map[string]interface{}, error)
	// SetActivityStreamsActor sets the "actor" property.
	SetActivityStreamsActor(i ActivityStreamsActorProperty)
	// SetActivityStreamsAltitude sets the "altitude" property.
	SetActivityStreamsAltitude(i ActivityStreamsAltitudeProperty)
	// SetActivityStreamsAttachment sets the "attachment" property.
	SetActivityStreamsAttachment(i ActivityStreamsAttachmentProperty)
	// SetActivityStreamsAttributedTo sets the "attributedTo" property.
	SetActivityStreamsAttributedTo(i ActivityStreamsAttributedToProperty)
	// SetActivityStreamsAudience sets the "audience" property.
	SetActivityStreamsAudience(i ActivityStreamsAudienceProperty)
	// SetActivityStreamsBcc sets the "bcc" property.
	SetActivityStreamsBcc(i ActivityStreamsBccProperty)
	// SetActivityStreamsBto sets the "bto" property.
	SetActivityStreamsBto(i ActivityStreamsBtoProperty)
	// SetActivityStreamsCc sets the "cc" property.
	SetActivityStreamsCc(i ActivityStreamsCcProperty)
	// SetActivityStreamsContent sets the "content" property.
	SetActivityStreamsContent(i ActivityStreamsContentProperty)
	// SetActivityStreamsContext sets the "context" property.
	SetActivityStreamsContext(i ActivityStreamsContextProperty)
	// SetActivityStreamsDuration sets the "duration" property.
	SetActivityStreamsDuration(i ActivityStreamsDurationProperty)
	// SetActivityStreamsEndTime sets the "endTime" property.
	SetActivityStreamsEndTime(i ActivityStreamsEndTimeProperty)
	// SetActivityStreamsGenerator sets the "generator" property.
	SetActivityStreamsGenerator(i ActivityStreamsGeneratorProperty)
	// SetActivityStreamsIcon sets the "icon" property.
	SetActivityStreamsIcon(i ActivityStreamsIconProperty)
	// SetActivityStreamsImage sets the "image" property.
	SetActivityStreamsImage(i ActivityStreamsImageProperty)
	// SetActivityStreamsInReplyTo sets the "inReplyTo" property.
	SetActivityStreamsInReplyTo(i ActivityStreamsInReplyToProperty)
	// SetActivityStreamsInstrument sets the "instrument" property.
	SetActivityStreamsInstrument(i ActivityStreamsInstrumentProperty)
	// SetActivityStreamsLikes sets the "likes" property.
	SetActivityStreamsLikes(i ActivityStreamsLikesProperty)
	// SetActivityStreamsLocation sets the "location" property.
	SetActivityStreamsLocation(i ActivityStreamsLocationProperty)
	// SetActivityStreamsMediaType sets the "mediaType" property.
	SetActivityStreamsMediaType(i ActivityStreamsMediaTypeProperty)
	// SetActivityStreamsName sets the "name" property.
	SetActivityStreamsName(i ActivityStreamsNameProperty)
	// SetActivityStreamsOrigin sets the "origin" property.
	SetActivityStreamsOrigin(i ActivityStreamsOriginProperty)
	// SetActivityStreamsPreview sets the "preview" property.
	SetActivityStreamsPreview(i ActivityStreamsPreviewProperty)
	// SetActivityStreamsPublished sets the "published" property.
	SetActivityStreamsPublished(i ActivityStreamsPublishedProperty)
	// SetActivityStreamsReplies sets the "replies" property.
	SetActivityStreamsReplies(i ActivityStreamsRepliesProperty)
	// SetActivityStreamsResult sets the "result" property.
	SetActivityStreamsResult(i ActivityStreamsResultProperty)
	// SetActivityStreamsShares sets the "shares" property.
	SetActivityStreamsShares(i ActivityStreamsSharesProperty)
	// SetActivityStreamsSource sets the "source" property.
	SetActivityStreamsSource(i ActivityStreamsSourceProperty)
	// SetActivityStreamsStartTime sets the "startTime" property.
	SetActivityStreamsStartTime(i ActivityStreamsStartTimeProperty)
	// SetActivityStreamsSummary sets the "summary" property.
	SetActivityStreamsSummary(i ActivityStreamsSummaryProperty)
	// SetActivityStreamsTag sets the "tag" property.
	SetActivityStreamsTag(i ActivityStreamsTagProperty)
	// SetActivityStreamsTarget sets the "target" property.
	SetActivityStreamsTarget(i ActivityStreamsTargetProperty)
	// SetActivityStreamsTo sets the "to" property.
	SetActivityStreamsTo(i ActivityStreamsToProperty)
	// SetActivityStreamsUpdated sets the "updated" property.
	SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
	// SetActivityStreamsUrl sets the "url" property.
	SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
	// SetForgeFedTeam sets the "team" property.
	SetForgeFedTeam(i ForgeFedTeamProperty)
	// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
	SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
	// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
	SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
	// SetJSONLDId sets the "id" property.
	SetJSONLDId(i JSONLDIdProperty)
	// SetJSONLDType sets the "type" property.
	SetJSONLDType(i JSONLDTypeProperty)
	// VocabularyURI returns the vocabulary's URI as a string.
	VocabularyURI() string
}

Indicates that the actor is traveling to target from origin. Travel is an IntransitiveActivity whose actor specifies the direct object. If the target or origin are not specified, either can be determined by context.

Example 35 (https://www.w3.org/TR/activitystreams-vocabulary/#ex169-jsonld):

{
  "actor": {
    "name": "Sally",
    "type": "Person"
  },
  "origin": {
    "name": "Work",
    "type": "Place"
  },
  "summary": "Sally went home from work",
  "target": {
    "name": "Home",
    "type": "Place"
  },
  "type": "Travel"
}

type ActivityStreamsUndo

type ActivityStreamsUndo interface {
	// GetActivityStreamsActor returns the "actor" property if it exists, and
	// nil otherwise.
	GetActivityStreamsActor() ActivityStreamsActorProperty
	// GetActivityStreamsAltitude returns the "altitude" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAltitude() ActivityStreamsAltitudeProperty
	// GetActivityStreamsAttachment returns the "attachment" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAttachment() ActivityStreamsAttachmentProperty
	// GetActivityStreamsAttributedTo returns the "attributedTo" property if
	// it exists, and nil otherwise.
	GetActivityStreamsAttributedTo() ActivityStreamsAttributedToProperty
	// GetActivityStreamsAudience returns the "audience" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAudience() ActivityStreamsAudienceProperty
	// GetActivityStreamsBcc returns the "bcc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBcc() ActivityStreamsBccProperty
	// GetActivityStreamsBto returns the "bto" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBto() ActivityStreamsBtoProperty
	// GetActivityStreamsCc returns the "cc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsCc() ActivityStreamsCcProperty
	// GetActivityStreamsContent returns the "content" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContent() ActivityStreamsContentProperty
	// GetActivityStreamsContext returns the "context" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContext() ActivityStreamsContextProperty
	// GetActivityStreamsDuration returns the "duration" property if it
	// exists, and nil otherwise.
	GetActivityStreamsDuration() ActivityStreamsDurationProperty
	// GetActivityStreamsEndTime returns the "endTime" property if it exists,
	// and nil otherwise.
	GetActivityStreamsEndTime() ActivityStreamsEndTimeProperty
	// GetActivityStreamsGenerator returns the "generator" property if it
	// exists, and nil otherwise.
	GetActivityStreamsGenerator() ActivityStreamsGeneratorProperty
	// GetActivityStreamsIcon returns the "icon" property if it exists, and
	// nil otherwise.
	GetActivityStreamsIcon() ActivityStreamsIconProperty
	// GetActivityStreamsImage returns the "image" property if it exists, and
	// nil otherwise.
	GetActivityStreamsImage() ActivityStreamsImageProperty
	// GetActivityStreamsInReplyTo returns the "inReplyTo" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInReplyTo() ActivityStreamsInReplyToProperty
	// GetActivityStreamsInstrument returns the "instrument" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInstrument() ActivityStreamsInstrumentProperty
	// GetActivityStreamsLikes returns the "likes" property if it exists, and
	// nil otherwise.
	GetActivityStreamsLikes() ActivityStreamsLikesProperty
	// GetActivityStreamsLocation returns the "location" property if it
	// exists, and nil otherwise.
	GetActivityStreamsLocation() ActivityStreamsLocationProperty
	// GetActivityStreamsMediaType returns the "mediaType" property if it
	// exists, and nil otherwise.
	GetActivityStreamsMediaType() ActivityStreamsMediaTypeProperty
	// GetActivityStreamsName returns the "name" property if it exists, and
	// nil otherwise.
	GetActivityStreamsName() ActivityStreamsNameProperty
	// GetActivityStreamsObject returns the "object" property if it exists,
	// and nil otherwise.
	GetActivityStreamsObject() ActivityStreamsObjectProperty
	// GetActivityStreamsOrigin returns the "origin" property if it exists,
	// and nil otherwise.
	GetActivityStreamsOrigin() ActivityStreamsOriginProperty
	// GetActivityStreamsPreview returns the "preview" property if it exists,
	// and nil otherwise.
	GetActivityStreamsPreview() ActivityStreamsPreviewProperty
	// GetActivityStreamsPublished returns the "published" property if it
	// exists, and nil otherwise.
	GetActivityStreamsPublished() ActivityStreamsPublishedProperty
	// GetActivityStreamsReplies returns the "replies" property if it exists,
	// and nil otherwise.
	GetActivityStreamsReplies() ActivityStreamsRepliesProperty
	// GetActivityStreamsResult returns the "result" property if it exists,
	// and nil otherwise.
	GetActivityStreamsResult() ActivityStreamsResultProperty
	// GetActivityStreamsShares returns the "shares" property if it exists,
	// and nil otherwise.
	GetActivityStreamsShares() ActivityStreamsSharesProperty
	// GetActivityStreamsSource returns the "source" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSource() ActivityStreamsSourceProperty
	// GetActivityStreamsStartTime returns the "startTime" property if it
	// exists, and nil otherwise.
	GetActivityStreamsStartTime() ActivityStreamsStartTimeProperty
	// GetActivityStreamsSummary returns the "summary" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSummary() ActivityStreamsSummaryProperty
	// GetActivityStreamsTag returns the "tag" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTag() ActivityStreamsTagProperty
	// GetActivityStreamsTarget returns the "target" property if it exists,
	// and nil otherwise.
	GetActivityStreamsTarget() ActivityStreamsTargetProperty
	// GetActivityStreamsTo returns the "to" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTo() ActivityStreamsToProperty
	// GetActivityStreamsUpdated returns the "updated" property if it exists,
	// and nil otherwise.
	GetActivityStreamsUpdated() ActivityStreamsUpdatedProperty
	// GetActivityStreamsUrl returns the "url" property if it exists, and nil
	// otherwise.
	GetActivityStreamsUrl() ActivityStreamsUrlProperty
	// GetForgeFedTeam returns the "team" property if it exists, and nil
	// otherwise.
	GetForgeFedTeam() ForgeFedTeamProperty
	// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
	// it exists, and nil otherwise.
	GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
	// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
	// it exists, and nil otherwise.
	GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
	// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
	GetJSONLDId() JSONLDIdProperty
	// GetJSONLDType returns the "type" property if it exists, and nil
	// otherwise.
	GetJSONLDType() JSONLDTypeProperty
	// GetTypeName returns the name of this type.
	GetTypeName() string
	// GetUnknownProperties returns the unknown properties for the Undo type.
	// Note that this should not be used by app developers. It is only
	// used to help determine which implementation is LessThan the other.
	// Developers who are creating a different implementation of this
	// type's interface can use this method in their LessThan
	// implementation, but routine ActivityPub applications should not use
	// this to bypass the code generation tool.
	GetUnknownProperties() map[string]interface{}
	// IsExtending returns true if the Undo type extends from the other type.
	IsExtending(other Type) bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this type and the specific properties that are set. The value
	// in the map is the alias used to import the type and its properties.
	JSONLDContext() map[string]string
	// LessThan computes if this Undo is lesser, with an arbitrary but stable
	// determination.
	LessThan(o ActivityStreamsUndo) bool
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format.
	Serialize() (map[string]interface{}, error)
	// SetActivityStreamsActor sets the "actor" property.
	SetActivityStreamsActor(i ActivityStreamsActorProperty)
	// SetActivityStreamsAltitude sets the "altitude" property.
	SetActivityStreamsAltitude(i ActivityStreamsAltitudeProperty)
	// SetActivityStreamsAttachment sets the "attachment" property.
	SetActivityStreamsAttachment(i ActivityStreamsAttachmentProperty)
	// SetActivityStreamsAttributedTo sets the "attributedTo" property.
	SetActivityStreamsAttributedTo(i ActivityStreamsAttributedToProperty)
	// SetActivityStreamsAudience sets the "audience" property.
	SetActivityStreamsAudience(i ActivityStreamsAudienceProperty)
	// SetActivityStreamsBcc sets the "bcc" property.
	SetActivityStreamsBcc(i ActivityStreamsBccProperty)
	// SetActivityStreamsBto sets the "bto" property.
	SetActivityStreamsBto(i ActivityStreamsBtoProperty)
	// SetActivityStreamsCc sets the "cc" property.
	SetActivityStreamsCc(i ActivityStreamsCcProperty)
	// SetActivityStreamsContent sets the "content" property.
	SetActivityStreamsContent(i ActivityStreamsContentProperty)
	// SetActivityStreamsContext sets the "context" property.
	SetActivityStreamsContext(i ActivityStreamsContextProperty)
	// SetActivityStreamsDuration sets the "duration" property.
	SetActivityStreamsDuration(i ActivityStreamsDurationProperty)
	// SetActivityStreamsEndTime sets the "endTime" property.
	SetActivityStreamsEndTime(i ActivityStreamsEndTimeProperty)
	// SetActivityStreamsGenerator sets the "generator" property.
	SetActivityStreamsGenerator(i ActivityStreamsGeneratorProperty)
	// SetActivityStreamsIcon sets the "icon" property.
	SetActivityStreamsIcon(i ActivityStreamsIconProperty)
	// SetActivityStreamsImage sets the "image" property.
	SetActivityStreamsImage(i ActivityStreamsImageProperty)
	// SetActivityStreamsInReplyTo sets the "inReplyTo" property.
	SetActivityStreamsInReplyTo(i ActivityStreamsInReplyToProperty)
	// SetActivityStreamsInstrument sets the "instrument" property.
	SetActivityStreamsInstrument(i ActivityStreamsInstrumentProperty)
	// SetActivityStreamsLikes sets the "likes" property.
	SetActivityStreamsLikes(i ActivityStreamsLikesProperty)
	// SetActivityStreamsLocation sets the "location" property.
	SetActivityStreamsLocation(i ActivityStreamsLocationProperty)
	// SetActivityStreamsMediaType sets the "mediaType" property.
	SetActivityStreamsMediaType(i ActivityStreamsMediaTypeProperty)
	// SetActivityStreamsName sets the "name" property.
	SetActivityStreamsName(i ActivityStreamsNameProperty)
	// SetActivityStreamsObject sets the "object" property.
	SetActivityStreamsObject(i ActivityStreamsObjectProperty)
	// SetActivityStreamsOrigin sets the "origin" property.
	SetActivityStreamsOrigin(i ActivityStreamsOriginProperty)
	// SetActivityStreamsPreview sets the "preview" property.
	SetActivityStreamsPreview(i ActivityStreamsPreviewProperty)
	// SetActivityStreamsPublished sets the "published" property.
	SetActivityStreamsPublished(i ActivityStreamsPublishedProperty)
	// SetActivityStreamsReplies sets the "replies" property.
	SetActivityStreamsReplies(i ActivityStreamsRepliesProperty)
	// SetActivityStreamsResult sets the "result" property.
	SetActivityStreamsResult(i ActivityStreamsResultProperty)
	// SetActivityStreamsShares sets the "shares" property.
	SetActivityStreamsShares(i ActivityStreamsSharesProperty)
	// SetActivityStreamsSource sets the "source" property.
	SetActivityStreamsSource(i ActivityStreamsSourceProperty)
	// SetActivityStreamsStartTime sets the "startTime" property.
	SetActivityStreamsStartTime(i ActivityStreamsStartTimeProperty)
	// SetActivityStreamsSummary sets the "summary" property.
	SetActivityStreamsSummary(i ActivityStreamsSummaryProperty)
	// SetActivityStreamsTag sets the "tag" property.
	SetActivityStreamsTag(i ActivityStreamsTagProperty)
	// SetActivityStreamsTarget sets the "target" property.
	SetActivityStreamsTarget(i ActivityStreamsTargetProperty)
	// SetActivityStreamsTo sets the "to" property.
	SetActivityStreamsTo(i ActivityStreamsToProperty)
	// SetActivityStreamsUpdated sets the "updated" property.
	SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
	// SetActivityStreamsUrl sets the "url" property.
	SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
	// SetForgeFedTeam sets the "team" property.
	SetForgeFedTeam(i ForgeFedTeamProperty)
	// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
	SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
	// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
	SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
	// SetJSONLDId sets the "id" property.
	SetJSONLDId(i JSONLDIdProperty)
	// SetJSONLDType sets the "type" property.
	SetJSONLDType(i JSONLDTypeProperty)
	// VocabularyURI returns the vocabulary's URI as a string.
	VocabularyURI() string
}

Indicates that the actor is undoing the object. In most cases, the object will be an Activity describing some previously performed action (for instance, a person may have previously "liked" an article but, for whatever reason, might choose to undo that like at some later point in time). The target and origin typically have no defined meaning.

Example 29 (https://www.w3.org/TR/activitystreams-vocabulary/#ex32-jsonld):

{
  "actor": "http://sally.example.org",
  "object": {
    "actor": "http://sally.example.org",
    "object": "http://example.org/posts/1",
    "target": "http://john.example.org",
    "type": "Offer"
  },
  "summary": "Sally retracted her offer to John",
  "type": "Undo"
}

type ActivityStreamsUnitsProperty

type ActivityStreamsUnitsProperty interface {
	// Clear ensures no value of this property is set. Calling HasAny or any
	// of the 'Is' methods afterwards will return false.
	Clear()
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return an arbitrary value.
	GetIRI() *url.URL
	// GetXMLSchemaAnyURI returns the value of this property. When
	// IsXMLSchemaAnyURI returns false, GetXMLSchemaAnyURI will return an
	// arbitrary value.
	GetXMLSchemaAnyURI() *url.URL
	// GetXMLSchemaString returns the value of this property. When
	// IsXMLSchemaString returns false, GetXMLSchemaString will return an
	// arbitrary value.
	GetXMLSchemaString() string
	// HasAny returns true if any of the different values is set.
	HasAny() bool
	// IsIRI returns true if this property is an IRI. When true, use GetIRI
	// and SetIRI to access and set this property
	IsIRI() bool
	// IsXMLSchemaAnyURI returns true if this property has a type of "anyURI".
	// When true, use the GetXMLSchemaAnyURI and SetXMLSchemaAnyURI
	// methods to access and set this property.
	IsXMLSchemaAnyURI() bool
	// IsXMLSchemaString returns true if this property has a type of "string".
	// When true, use the GetXMLSchemaString and SetXMLSchemaString
	// methods to access and set this property.
	IsXMLSchemaString() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsUnitsProperty) bool
	// Name returns the name of this property: "units".
	Name() string
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// SetIRI sets the value of this property. Calling IsIRI afterwards
	// returns true.
	SetIRI(v *url.URL)
	// SetXMLSchemaAnyURI sets the value of this property. Calling
	// IsXMLSchemaAnyURI afterwards returns true.
	SetXMLSchemaAnyURI(v *url.URL)
	// SetXMLSchemaString sets the value of this property. Calling
	// IsXMLSchemaString afterwards returns true.
	SetXMLSchemaString(v string)
}

Specifies the measurement units for the radius and altitude properties on a Place object. If not specified, the default is assumed to be "m" for "meters".

Example 136 (https://www.w3.org/TR/activitystreams-vocabulary/#ex157-jsonld):

{
  "latitude": 36.75,
  "longitude": 119.7667,
  "name": "Fresno Area",
  "radius": 15,
  "type": "Place",
  "units": "miles"
}

type ActivityStreamsUpdate

type ActivityStreamsUpdate interface {
	// GetActivityStreamsActor returns the "actor" property if it exists, and
	// nil otherwise.
	GetActivityStreamsActor() ActivityStreamsActorProperty
	// GetActivityStreamsAltitude returns the "altitude" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAltitude() ActivityStreamsAltitudeProperty
	// GetActivityStreamsAttachment returns the "attachment" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAttachment() ActivityStreamsAttachmentProperty
	// GetActivityStreamsAttributedTo returns the "attributedTo" property if
	// it exists, and nil otherwise.
	GetActivityStreamsAttributedTo() ActivityStreamsAttributedToProperty
	// GetActivityStreamsAudience returns the "audience" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAudience() ActivityStreamsAudienceProperty
	// GetActivityStreamsBcc returns the "bcc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBcc() ActivityStreamsBccProperty
	// GetActivityStreamsBto returns the "bto" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBto() ActivityStreamsBtoProperty
	// GetActivityStreamsCc returns the "cc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsCc() ActivityStreamsCcProperty
	// GetActivityStreamsContent returns the "content" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContent() ActivityStreamsContentProperty
	// GetActivityStreamsContext returns the "context" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContext() ActivityStreamsContextProperty
	// GetActivityStreamsDuration returns the "duration" property if it
	// exists, and nil otherwise.
	GetActivityStreamsDuration() ActivityStreamsDurationProperty
	// GetActivityStreamsEndTime returns the "endTime" property if it exists,
	// and nil otherwise.
	GetActivityStreamsEndTime() ActivityStreamsEndTimeProperty
	// GetActivityStreamsGenerator returns the "generator" property if it
	// exists, and nil otherwise.
	GetActivityStreamsGenerator() ActivityStreamsGeneratorProperty
	// GetActivityStreamsIcon returns the "icon" property if it exists, and
	// nil otherwise.
	GetActivityStreamsIcon() ActivityStreamsIconProperty
	// GetActivityStreamsImage returns the "image" property if it exists, and
	// nil otherwise.
	GetActivityStreamsImage() ActivityStreamsImageProperty
	// GetActivityStreamsInReplyTo returns the "inReplyTo" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInReplyTo() ActivityStreamsInReplyToProperty
	// GetActivityStreamsInstrument returns the "instrument" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInstrument() ActivityStreamsInstrumentProperty
	// GetActivityStreamsLikes returns the "likes" property if it exists, and
	// nil otherwise.
	GetActivityStreamsLikes() ActivityStreamsLikesProperty
	// GetActivityStreamsLocation returns the "location" property if it
	// exists, and nil otherwise.
	GetActivityStreamsLocation() ActivityStreamsLocationProperty
	// GetActivityStreamsMediaType returns the "mediaType" property if it
	// exists, and nil otherwise.
	GetActivityStreamsMediaType() ActivityStreamsMediaTypeProperty
	// GetActivityStreamsName returns the "name" property if it exists, and
	// nil otherwise.
	GetActivityStreamsName() ActivityStreamsNameProperty
	// GetActivityStreamsObject returns the "object" property if it exists,
	// and nil otherwise.
	GetActivityStreamsObject() ActivityStreamsObjectProperty
	// GetActivityStreamsOrigin returns the "origin" property if it exists,
	// and nil otherwise.
	GetActivityStreamsOrigin() ActivityStreamsOriginProperty
	// GetActivityStreamsPreview returns the "preview" property if it exists,
	// and nil otherwise.
	GetActivityStreamsPreview() ActivityStreamsPreviewProperty
	// GetActivityStreamsPublished returns the "published" property if it
	// exists, and nil otherwise.
	GetActivityStreamsPublished() ActivityStreamsPublishedProperty
	// GetActivityStreamsReplies returns the "replies" property if it exists,
	// and nil otherwise.
	GetActivityStreamsReplies() ActivityStreamsRepliesProperty
	// GetActivityStreamsResult returns the "result" property if it exists,
	// and nil otherwise.
	GetActivityStreamsResult() ActivityStreamsResultProperty
	// GetActivityStreamsShares returns the "shares" property if it exists,
	// and nil otherwise.
	GetActivityStreamsShares() ActivityStreamsSharesProperty
	// GetActivityStreamsSource returns the "source" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSource() ActivityStreamsSourceProperty
	// GetActivityStreamsStartTime returns the "startTime" property if it
	// exists, and nil otherwise.
	GetActivityStreamsStartTime() ActivityStreamsStartTimeProperty
	// GetActivityStreamsSummary returns the "summary" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSummary() ActivityStreamsSummaryProperty
	// GetActivityStreamsTag returns the "tag" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTag() ActivityStreamsTagProperty
	// GetActivityStreamsTarget returns the "target" property if it exists,
	// and nil otherwise.
	GetActivityStreamsTarget() ActivityStreamsTargetProperty
	// GetActivityStreamsTo returns the "to" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTo() ActivityStreamsToProperty
	// GetActivityStreamsUpdated returns the "updated" property if it exists,
	// and nil otherwise.
	GetActivityStreamsUpdated() ActivityStreamsUpdatedProperty
	// GetActivityStreamsUrl returns the "url" property if it exists, and nil
	// otherwise.
	GetActivityStreamsUrl() ActivityStreamsUrlProperty
	// GetForgeFedTeam returns the "team" property if it exists, and nil
	// otherwise.
	GetForgeFedTeam() ForgeFedTeamProperty
	// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
	// it exists, and nil otherwise.
	GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
	// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
	// it exists, and nil otherwise.
	GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
	// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
	GetJSONLDId() JSONLDIdProperty
	// GetJSONLDType returns the "type" property if it exists, and nil
	// otherwise.
	GetJSONLDType() JSONLDTypeProperty
	// GetTypeName returns the name of this type.
	GetTypeName() string
	// GetUnknownProperties returns the unknown properties for the Update
	// type. Note that this should not be used by app developers. It is
	// only used to help determine which implementation is LessThan the
	// other. Developers who are creating a different implementation of
	// this type's interface can use this method in their LessThan
	// implementation, but routine ActivityPub applications should not use
	// this to bypass the code generation tool.
	GetUnknownProperties() map[string]interface{}
	// IsExtending returns true if the Update type extends from the other type.
	IsExtending(other Type) bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this type and the specific properties that are set. The value
	// in the map is the alias used to import the type and its properties.
	JSONLDContext() map[string]string
	// LessThan computes if this Update is lesser, with an arbitrary but
	// stable determination.
	LessThan(o ActivityStreamsUpdate) bool
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format.
	Serialize() (map[string]interface{}, error)
	// SetActivityStreamsActor sets the "actor" property.
	SetActivityStreamsActor(i ActivityStreamsActorProperty)
	// SetActivityStreamsAltitude sets the "altitude" property.
	SetActivityStreamsAltitude(i ActivityStreamsAltitudeProperty)
	// SetActivityStreamsAttachment sets the "attachment" property.
	SetActivityStreamsAttachment(i ActivityStreamsAttachmentProperty)
	// SetActivityStreamsAttributedTo sets the "attributedTo" property.
	SetActivityStreamsAttributedTo(i ActivityStreamsAttributedToProperty)
	// SetActivityStreamsAudience sets the "audience" property.
	SetActivityStreamsAudience(i ActivityStreamsAudienceProperty)
	// SetActivityStreamsBcc sets the "bcc" property.
	SetActivityStreamsBcc(i ActivityStreamsBccProperty)
	// SetActivityStreamsBto sets the "bto" property.
	SetActivityStreamsBto(i ActivityStreamsBtoProperty)
	// SetActivityStreamsCc sets the "cc" property.
	SetActivityStreamsCc(i ActivityStreamsCcProperty)
	// SetActivityStreamsContent sets the "content" property.
	SetActivityStreamsContent(i ActivityStreamsContentProperty)
	// SetActivityStreamsContext sets the "context" property.
	SetActivityStreamsContext(i ActivityStreamsContextProperty)
	// SetActivityStreamsDuration sets the "duration" property.
	SetActivityStreamsDuration(i ActivityStreamsDurationProperty)
	// SetActivityStreamsEndTime sets the "endTime" property.
	SetActivityStreamsEndTime(i ActivityStreamsEndTimeProperty)
	// SetActivityStreamsGenerator sets the "generator" property.
	SetActivityStreamsGenerator(i ActivityStreamsGeneratorProperty)
	// SetActivityStreamsIcon sets the "icon" property.
	SetActivityStreamsIcon(i ActivityStreamsIconProperty)
	// SetActivityStreamsImage sets the "image" property.
	SetActivityStreamsImage(i ActivityStreamsImageProperty)
	// SetActivityStreamsInReplyTo sets the "inReplyTo" property.
	SetActivityStreamsInReplyTo(i ActivityStreamsInReplyToProperty)
	// SetActivityStreamsInstrument sets the "instrument" property.
	SetActivityStreamsInstrument(i ActivityStreamsInstrumentProperty)
	// SetActivityStreamsLikes sets the "likes" property.
	SetActivityStreamsLikes(i ActivityStreamsLikesProperty)
	// SetActivityStreamsLocation sets the "location" property.
	SetActivityStreamsLocation(i ActivityStreamsLocationProperty)
	// SetActivityStreamsMediaType sets the "mediaType" property.
	SetActivityStreamsMediaType(i ActivityStreamsMediaTypeProperty)
	// SetActivityStreamsName sets the "name" property.
	SetActivityStreamsName(i ActivityStreamsNameProperty)
	// SetActivityStreamsObject sets the "object" property.
	SetActivityStreamsObject(i ActivityStreamsObjectProperty)
	// SetActivityStreamsOrigin sets the "origin" property.
	SetActivityStreamsOrigin(i ActivityStreamsOriginProperty)
	// SetActivityStreamsPreview sets the "preview" property.
	SetActivityStreamsPreview(i ActivityStreamsPreviewProperty)
	// SetActivityStreamsPublished sets the "published" property.
	SetActivityStreamsPublished(i ActivityStreamsPublishedProperty)
	// SetActivityStreamsReplies sets the "replies" property.
	SetActivityStreamsReplies(i ActivityStreamsRepliesProperty)
	// SetActivityStreamsResult sets the "result" property.
	SetActivityStreamsResult(i ActivityStreamsResultProperty)
	// SetActivityStreamsShares sets the "shares" property.
	SetActivityStreamsShares(i ActivityStreamsSharesProperty)
	// SetActivityStreamsSource sets the "source" property.
	SetActivityStreamsSource(i ActivityStreamsSourceProperty)
	// SetActivityStreamsStartTime sets the "startTime" property.
	SetActivityStreamsStartTime(i ActivityStreamsStartTimeProperty)
	// SetActivityStreamsSummary sets the "summary" property.
	SetActivityStreamsSummary(i ActivityStreamsSummaryProperty)
	// SetActivityStreamsTag sets the "tag" property.
	SetActivityStreamsTag(i ActivityStreamsTagProperty)
	// SetActivityStreamsTarget sets the "target" property.
	SetActivityStreamsTarget(i ActivityStreamsTargetProperty)
	// SetActivityStreamsTo sets the "to" property.
	SetActivityStreamsTo(i ActivityStreamsToProperty)
	// SetActivityStreamsUpdated sets the "updated" property.
	SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
	// SetActivityStreamsUrl sets the "url" property.
	SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
	// SetForgeFedTeam sets the "team" property.
	SetForgeFedTeam(i ForgeFedTeamProperty)
	// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
	SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
	// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
	SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
	// SetJSONLDId sets the "id" property.
	SetJSONLDId(i JSONLDIdProperty)
	// SetJSONLDType sets the "type" property.
	SetJSONLDType(i JSONLDTypeProperty)
	// VocabularyURI returns the vocabulary's URI as a string.
	VocabularyURI() string
}

Indicates that the actor has updated the object. Note, however, that this vocabulary does not define a mechanism for describing the actual set of modifications made to object. The target and origin typically have no defined meaning.

Example 30 (https://www.w3.org/TR/activitystreams-vocabulary/#ex33-jsonld):

{
  "actor": {
    "name": "Sally",
    "type": "Person"
  },
  "object": "http://example.org/notes/1",
  "summary": "Sally updated her note",
  "type": "Update"
}

type ActivityStreamsUpdatedProperty

type ActivityStreamsUpdatedProperty interface {
	// Clear ensures no value of this property is set. Calling
	// IsXMLSchemaDateTime afterwards will return false.
	Clear()
	// Get returns the value of this property. When IsXMLSchemaDateTime
	// returns false, Get will return any arbitrary value.
	Get() time.Time
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return any arbitrary value.
	GetIRI() *url.URL
	// HasAny returns true if the value or IRI is set.
	HasAny() bool
	// IsIRI returns true if this property is an IRI.
	IsIRI() bool
	// IsXMLSchemaDateTime returns true if this property is set and not an IRI.
	IsXMLSchemaDateTime() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsUpdatedProperty) bool
	// Name returns the name of this property: "updated".
	Name() string
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// Set sets the value of this property. Calling IsXMLSchemaDateTime
	// afterwards will return true.
	Set(v time.Time)
	// SetIRI sets the value of this property. Calling IsIRI afterwards will
	// return true.
	SetIRI(v *url.URL)
}

The date and time at which the object was updated

Example 137 (https://www.w3.org/TR/activitystreams-vocabulary/#ex158-jsonld):

{
  "content": "Mush it up so it does not have the same shape as the can.",
  "name": "Cranberry Sauce Idea",
  "type": "Note",
  "updated": "2014-12-12T12:12:12Z"
}

type ActivityStreamsUrlProperty

type ActivityStreamsUrlProperty interface {
	// AppendActivityStreamsLink appends a Link value to the back of a list of
	// the property "url". Invalidates iterators that are traversing using
	// Prev.
	AppendActivityStreamsLink(v ActivityStreamsLink)
	// AppendActivityStreamsMention appends a Mention value to the back of a
	// list of the property "url". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsMention(v ActivityStreamsMention)
	// AppendIRI appends an IRI value to the back of a list of the property
	// "url"
	AppendIRI(v *url.URL)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "url". Invalidates iterators that are traversing using
	// Prev. Returns an error if the type is not a valid one to set for
	// this property.
	AppendType(t Type) error
	// AppendXMLSchemaAnyURI appends a anyURI value to the back of a list of
	// the property "url". Invalidates iterators that are traversing using
	// Prev.
	AppendXMLSchemaAnyURI(v *url.URL)
	// At returns the property value for the specified index. Panics if the
	// index is out of bounds.
	At(index int) ActivityStreamsUrlPropertyIterator
	// Begin returns the first iterator, or nil if empty. Can be used with the
	// iterator's Next method and this property's End method to iterate
	// from front to back through all values.
	Begin() ActivityStreamsUrlPropertyIterator
	// Empty returns returns true if there are no elements.
	Empty() bool
	// End returns beyond-the-last iterator, which is nil. Can be used with
	// the iterator's Next method and this property's Begin method to
	// iterate from front to back through all values.
	End() ActivityStreamsUrlPropertyIterator
	// InsertActivityStreamsLink inserts a Link value at the specified index
	// for a property "url". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsLink(idx int, v ActivityStreamsLink)
	// InsertActivityStreamsMention inserts a Mention value at the specified
	// index for a property "url". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsMention(idx int, v ActivityStreamsMention)
	// Insert inserts an IRI value at the specified index for a property
	// "url". Existing elements at that index and higher are shifted back
	// once. Invalidates all iterators.
	InsertIRI(idx int, v *url.URL)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "url". Invalidates all iterators. Returns an error if
	// the type is not a valid one to set for this property.
	InsertType(idx int, t Type) error
	// InsertXMLSchemaAnyURI inserts a anyURI value at the specified index for
	// a property "url". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertXMLSchemaAnyURI(idx int, v *url.URL)
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API method specifically needed only for alternate
	// implementations for go-fed. Applications should not use this
	// method. Panics if the index is out of bounds.
	KindIndex(idx int) int
	// Len returns the number of values that exist for the "url" property.
	Len() (length int)
	// Less computes whether another property is less than this one. Mixing
	// types results in a consistent but arbitrary ordering
	Less(i, j int) bool
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsUrlProperty) bool
	// Name returns the name of this property ("url") with any alias.
	Name() string
	// PrependActivityStreamsLink prepends a Link value to the front of a list
	// of the property "url". Invalidates all iterators.
	PrependActivityStreamsLink(v ActivityStreamsLink)
	// PrependActivityStreamsMention prepends a Mention value to the front of
	// a list of the property "url". Invalidates all iterators.
	PrependActivityStreamsMention(v ActivityStreamsMention)
	// PrependIRI prepends an IRI value to the front of a list of the property
	// "url".
	PrependIRI(v *url.URL)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "url". Invalidates all iterators. Returns an error if
	// the type is not a valid one to set for this property.
	PrependType(t Type) error
	// PrependXMLSchemaAnyURI prepends a anyURI value to the front of a list
	// of the property "url". Invalidates all iterators.
	PrependXMLSchemaAnyURI(v *url.URL)
	// Remove deletes an element at the specified index from a list of the
	// property "url", regardless of its type. Panics if the index is out
	// of bounds. Invalidates all iterators.
	Remove(idx int)
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// SetActivityStreamsLink sets a Link value to be at the specified index
	// for the property "url". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsLink(idx int, v ActivityStreamsLink)
	// SetActivityStreamsMention sets a Mention value to be at the specified
	// index for the property "url". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsMention(idx int, v ActivityStreamsMention)
	// SetIRI sets an IRI value to be at the specified index for the property
	// "url". Panics if the index is out of bounds.
	SetIRI(idx int, v *url.URL)
	// SetType sets an arbitrary type value to the specified index of the
	// property "url". Invalidates all iterators. Returns an error if the
	// type is not a valid one to set for this property. Panics if the
	// index is out of bounds.
	SetType(idx int, t Type) error
	// SetXMLSchemaAnyURI sets a anyURI value to be at the specified index for
	// the property "url". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetXMLSchemaAnyURI(idx int, v *url.URL)
	// Swap swaps the location of values at two indices for the "url" property.
	Swap(i, j int)
}

Identifies one or more links to representations of the object

Example 109 (https://www.w3.org/TR/activitystreams-vocabulary/#ex124-jsonld):

{
  "name": "4Q Sales Forecast",
  "type": "Document",
  "url": "http://example.org/4q-sales-forecast.pdf"
}

Example 110 (https://www.w3.org/TR/activitystreams-vocabulary/#ex125-jsonld):

{
  "name": "4Q Sales Forecast",
  "type": "Document",
  "url": {
    "type": "owl:Class",
    "url": "http://example.org/4q-sales-forecast.pdf"
  }
}

Example 111 (https://www.w3.org/TR/activitystreams-vocabulary/#ex126-jsonld):

{
  "name": "4Q Sales Forecast",
  "type": "Document",
  "url": [
    {
      "mediaType": "application/pdf",
      "type": "owl:Class",
      "url": "http://example.org/4q-sales-forecast.pdf"
    },
    {
      "mediaType": "text/html",
      "type": "owl:Class",
      "url": "http://example.org/4q-sales-forecast.html"
    }
  ]
}

type ActivityStreamsUrlPropertyIterator

type ActivityStreamsUrlPropertyIterator interface {
	// GetActivityStreamsLink returns the value of this property. When
	// IsActivityStreamsLink returns false, GetActivityStreamsLink will
	// return an arbitrary value.
	GetActivityStreamsLink() ActivityStreamsLink
	// GetActivityStreamsMention returns the value of this property. When
	// IsActivityStreamsMention returns false, GetActivityStreamsMention
	// will return an arbitrary value.
	GetActivityStreamsMention() ActivityStreamsMention
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return an arbitrary value.
	GetIRI() *url.URL
	// GetType returns the value in this property as a Type. Returns nil if
	// the value is not an ActivityStreams type, such as an IRI or another
	// value.
	GetType() Type
	// GetXMLSchemaAnyURI returns the value of this property. When
	// IsXMLSchemaAnyURI returns false, GetXMLSchemaAnyURI will return an
	// arbitrary value.
	GetXMLSchemaAnyURI() *url.URL
	// HasAny returns true if any of the different values is set.
	HasAny() bool
	// IsActivityStreamsLink returns true if this property has a type of
	// "Link". When true, use the GetActivityStreamsLink and
	// SetActivityStreamsLink methods to access and set this property.
	IsActivityStreamsLink() bool
	// IsActivityStreamsMention returns true if this property has a type of
	// "Mention". When true, use the GetActivityStreamsMention and
	// SetActivityStreamsMention methods to access and set this property.
	IsActivityStreamsMention() bool
	// IsIRI returns true if this property is an IRI. When true, use GetIRI
	// and SetIRI to access and set this property
	IsIRI() bool
	// IsXMLSchemaAnyURI returns true if this property has a type of "anyURI".
	// When true, use the GetXMLSchemaAnyURI and SetXMLSchemaAnyURI
	// methods to access and set this property.
	IsXMLSchemaAnyURI() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsUrlPropertyIterator) bool
	// Name returns the name of this property: "ActivityStreamsUrl".
	Name() string
	// Next returns the next iterator, or nil if there is no next iterator.
	Next() ActivityStreamsUrlPropertyIterator
	// Prev returns the previous iterator, or nil if there is no previous
	// iterator.
	Prev() ActivityStreamsUrlPropertyIterator
	// SetActivityStreamsLink sets the value of this property. Calling
	// IsActivityStreamsLink afterwards returns true.
	SetActivityStreamsLink(v ActivityStreamsLink)
	// SetActivityStreamsMention sets the value of this property. Calling
	// IsActivityStreamsMention afterwards returns true.
	SetActivityStreamsMention(v ActivityStreamsMention)
	// SetIRI sets the value of this property. Calling IsIRI afterwards
	// returns true.
	SetIRI(v *url.URL)
	// SetType attempts to set the property for the arbitrary type. Returns an
	// error if it is not a valid type to set on this property.
	SetType(t Type) error
	// SetXMLSchemaAnyURI sets the value of this property. Calling
	// IsXMLSchemaAnyURI afterwards returns true.
	SetXMLSchemaAnyURI(v *url.URL)
}

ActivityStreamsUrlPropertyIterator represents a single value for the "url" property.

type ActivityStreamsVideo

type ActivityStreamsVideo interface {
	// GetActivityStreamsAltitude returns the "altitude" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAltitude() ActivityStreamsAltitudeProperty
	// GetActivityStreamsAttachment returns the "attachment" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAttachment() ActivityStreamsAttachmentProperty
	// GetActivityStreamsAttributedTo returns the "attributedTo" property if
	// it exists, and nil otherwise.
	GetActivityStreamsAttributedTo() ActivityStreamsAttributedToProperty
	// GetActivityStreamsAudience returns the "audience" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAudience() ActivityStreamsAudienceProperty
	// GetActivityStreamsBcc returns the "bcc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBcc() ActivityStreamsBccProperty
	// GetActivityStreamsBto returns the "bto" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBto() ActivityStreamsBtoProperty
	// GetActivityStreamsCc returns the "cc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsCc() ActivityStreamsCcProperty
	// GetActivityStreamsContent returns the "content" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContent() ActivityStreamsContentProperty
	// GetActivityStreamsContext returns the "context" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContext() ActivityStreamsContextProperty
	// GetActivityStreamsDuration returns the "duration" property if it
	// exists, and nil otherwise.
	GetActivityStreamsDuration() ActivityStreamsDurationProperty
	// GetActivityStreamsEndTime returns the "endTime" property if it exists,
	// and nil otherwise.
	GetActivityStreamsEndTime() ActivityStreamsEndTimeProperty
	// GetActivityStreamsGenerator returns the "generator" property if it
	// exists, and nil otherwise.
	GetActivityStreamsGenerator() ActivityStreamsGeneratorProperty
	// GetActivityStreamsIcon returns the "icon" property if it exists, and
	// nil otherwise.
	GetActivityStreamsIcon() ActivityStreamsIconProperty
	// GetActivityStreamsImage returns the "image" property if it exists, and
	// nil otherwise.
	GetActivityStreamsImage() ActivityStreamsImageProperty
	// GetActivityStreamsInReplyTo returns the "inReplyTo" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInReplyTo() ActivityStreamsInReplyToProperty
	// GetActivityStreamsLikes returns the "likes" property if it exists, and
	// nil otherwise.
	GetActivityStreamsLikes() ActivityStreamsLikesProperty
	// GetActivityStreamsLocation returns the "location" property if it
	// exists, and nil otherwise.
	GetActivityStreamsLocation() ActivityStreamsLocationProperty
	// GetActivityStreamsMediaType returns the "mediaType" property if it
	// exists, and nil otherwise.
	GetActivityStreamsMediaType() ActivityStreamsMediaTypeProperty
	// GetActivityStreamsName returns the "name" property if it exists, and
	// nil otherwise.
	GetActivityStreamsName() ActivityStreamsNameProperty
	// GetActivityStreamsObject returns the "object" property if it exists,
	// and nil otherwise.
	GetActivityStreamsObject() ActivityStreamsObjectProperty
	// GetActivityStreamsPreview returns the "preview" property if it exists,
	// and nil otherwise.
	GetActivityStreamsPreview() ActivityStreamsPreviewProperty
	// GetActivityStreamsPublished returns the "published" property if it
	// exists, and nil otherwise.
	GetActivityStreamsPublished() ActivityStreamsPublishedProperty
	// GetActivityStreamsReplies returns the "replies" property if it exists,
	// and nil otherwise.
	GetActivityStreamsReplies() ActivityStreamsRepliesProperty
	// GetActivityStreamsShares returns the "shares" property if it exists,
	// and nil otherwise.
	GetActivityStreamsShares() ActivityStreamsSharesProperty
	// GetActivityStreamsSource returns the "source" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSource() ActivityStreamsSourceProperty
	// GetActivityStreamsStartTime returns the "startTime" property if it
	// exists, and nil otherwise.
	GetActivityStreamsStartTime() ActivityStreamsStartTimeProperty
	// GetActivityStreamsSummary returns the "summary" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSummary() ActivityStreamsSummaryProperty
	// GetActivityStreamsTag returns the "tag" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTag() ActivityStreamsTagProperty
	// GetActivityStreamsTo returns the "to" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTo() ActivityStreamsToProperty
	// GetActivityStreamsUpdated returns the "updated" property if it exists,
	// and nil otherwise.
	GetActivityStreamsUpdated() ActivityStreamsUpdatedProperty
	// GetActivityStreamsUrl returns the "url" property if it exists, and nil
	// otherwise.
	GetActivityStreamsUrl() ActivityStreamsUrlProperty
	// GetForgeFedTeam returns the "team" property if it exists, and nil
	// otherwise.
	GetForgeFedTeam() ForgeFedTeamProperty
	// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
	// it exists, and nil otherwise.
	GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
	// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
	// it exists, and nil otherwise.
	GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
	// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
	GetJSONLDId() JSONLDIdProperty
	// GetJSONLDType returns the "type" property if it exists, and nil
	// otherwise.
	GetJSONLDType() JSONLDTypeProperty
	// GetTootBlurhash returns the "blurhash" property if it exists, and nil
	// otherwise.
	GetTootBlurhash() TootBlurhashProperty
	// GetTypeName returns the name of this type.
	GetTypeName() string
	// GetUnknownProperties returns the unknown properties for the Video type.
	// Note that this should not be used by app developers. It is only
	// used to help determine which implementation is LessThan the other.
	// Developers who are creating a different implementation of this
	// type's interface can use this method in their LessThan
	// implementation, but routine ActivityPub applications should not use
	// this to bypass the code generation tool.
	GetUnknownProperties() map[string]interface{}
	// IsExtending returns true if the Video type extends from the other type.
	IsExtending(other Type) bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this type and the specific properties that are set. The value
	// in the map is the alias used to import the type and its properties.
	JSONLDContext() map[string]string
	// LessThan computes if this Video is lesser, with an arbitrary but stable
	// determination.
	LessThan(o ActivityStreamsVideo) bool
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format.
	Serialize() (map[string]interface{}, error)
	// SetActivityStreamsAltitude sets the "altitude" property.
	SetActivityStreamsAltitude(i ActivityStreamsAltitudeProperty)
	// SetActivityStreamsAttachment sets the "attachment" property.
	SetActivityStreamsAttachment(i ActivityStreamsAttachmentProperty)
	// SetActivityStreamsAttributedTo sets the "attributedTo" property.
	SetActivityStreamsAttributedTo(i ActivityStreamsAttributedToProperty)
	// SetActivityStreamsAudience sets the "audience" property.
	SetActivityStreamsAudience(i ActivityStreamsAudienceProperty)
	// SetActivityStreamsBcc sets the "bcc" property.
	SetActivityStreamsBcc(i ActivityStreamsBccProperty)
	// SetActivityStreamsBto sets the "bto" property.
	SetActivityStreamsBto(i ActivityStreamsBtoProperty)
	// SetActivityStreamsCc sets the "cc" property.
	SetActivityStreamsCc(i ActivityStreamsCcProperty)
	// SetActivityStreamsContent sets the "content" property.
	SetActivityStreamsContent(i ActivityStreamsContentProperty)
	// SetActivityStreamsContext sets the "context" property.
	SetActivityStreamsContext(i ActivityStreamsContextProperty)
	// SetActivityStreamsDuration sets the "duration" property.
	SetActivityStreamsDuration(i ActivityStreamsDurationProperty)
	// SetActivityStreamsEndTime sets the "endTime" property.
	SetActivityStreamsEndTime(i ActivityStreamsEndTimeProperty)
	// SetActivityStreamsGenerator sets the "generator" property.
	SetActivityStreamsGenerator(i ActivityStreamsGeneratorProperty)
	// SetActivityStreamsIcon sets the "icon" property.
	SetActivityStreamsIcon(i ActivityStreamsIconProperty)
	// SetActivityStreamsImage sets the "image" property.
	SetActivityStreamsImage(i ActivityStreamsImageProperty)
	// SetActivityStreamsInReplyTo sets the "inReplyTo" property.
	SetActivityStreamsInReplyTo(i ActivityStreamsInReplyToProperty)
	// SetActivityStreamsLikes sets the "likes" property.
	SetActivityStreamsLikes(i ActivityStreamsLikesProperty)
	// SetActivityStreamsLocation sets the "location" property.
	SetActivityStreamsLocation(i ActivityStreamsLocationProperty)
	// SetActivityStreamsMediaType sets the "mediaType" property.
	SetActivityStreamsMediaType(i ActivityStreamsMediaTypeProperty)
	// SetActivityStreamsName sets the "name" property.
	SetActivityStreamsName(i ActivityStreamsNameProperty)
	// SetActivityStreamsObject sets the "object" property.
	SetActivityStreamsObject(i ActivityStreamsObjectProperty)
	// SetActivityStreamsPreview sets the "preview" property.
	SetActivityStreamsPreview(i ActivityStreamsPreviewProperty)
	// SetActivityStreamsPublished sets the "published" property.
	SetActivityStreamsPublished(i ActivityStreamsPublishedProperty)
	// SetActivityStreamsReplies sets the "replies" property.
	SetActivityStreamsReplies(i ActivityStreamsRepliesProperty)
	// SetActivityStreamsShares sets the "shares" property.
	SetActivityStreamsShares(i ActivityStreamsSharesProperty)
	// SetActivityStreamsSource sets the "source" property.
	SetActivityStreamsSource(i ActivityStreamsSourceProperty)
	// SetActivityStreamsStartTime sets the "startTime" property.
	SetActivityStreamsStartTime(i ActivityStreamsStartTimeProperty)
	// SetActivityStreamsSummary sets the "summary" property.
	SetActivityStreamsSummary(i ActivityStreamsSummaryProperty)
	// SetActivityStreamsTag sets the "tag" property.
	SetActivityStreamsTag(i ActivityStreamsTagProperty)
	// SetActivityStreamsTo sets the "to" property.
	SetActivityStreamsTo(i ActivityStreamsToProperty)
	// SetActivityStreamsUpdated sets the "updated" property.
	SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
	// SetActivityStreamsUrl sets the "url" property.
	SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
	// SetForgeFedTeam sets the "team" property.
	SetForgeFedTeam(i ForgeFedTeamProperty)
	// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
	SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
	// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
	SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
	// SetJSONLDId sets the "id" property.
	SetJSONLDId(i JSONLDIdProperty)
	// SetJSONLDType sets the "type" property.
	SetJSONLDType(i JSONLDTypeProperty)
	// SetTootBlurhash sets the "blurhash" property.
	SetTootBlurhash(i TootBlurhashProperty)
	// VocabularyURI returns the vocabulary's URI as a string.
	VocabularyURI() string
}

Represents a video document of any kind.

Example 52 (https://www.w3.org/TR/activitystreams-vocabulary/#ex51-jsonld):

{
  "duration": "PT2H",
  "name": "Puppy Plays With Ball",
  "type": "Video",
  "url": "http://example.org/video.mkv"
}

type ActivityStreamsView

type ActivityStreamsView interface {
	// GetActivityStreamsActor returns the "actor" property if it exists, and
	// nil otherwise.
	GetActivityStreamsActor() ActivityStreamsActorProperty
	// GetActivityStreamsAltitude returns the "altitude" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAltitude() ActivityStreamsAltitudeProperty
	// GetActivityStreamsAttachment returns the "attachment" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAttachment() ActivityStreamsAttachmentProperty
	// GetActivityStreamsAttributedTo returns the "attributedTo" property if
	// it exists, and nil otherwise.
	GetActivityStreamsAttributedTo() ActivityStreamsAttributedToProperty
	// GetActivityStreamsAudience returns the "audience" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAudience() ActivityStreamsAudienceProperty
	// GetActivityStreamsBcc returns the "bcc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBcc() ActivityStreamsBccProperty
	// GetActivityStreamsBto returns the "bto" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBto() ActivityStreamsBtoProperty
	// GetActivityStreamsCc returns the "cc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsCc() ActivityStreamsCcProperty
	// GetActivityStreamsContent returns the "content" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContent() ActivityStreamsContentProperty
	// GetActivityStreamsContext returns the "context" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContext() ActivityStreamsContextProperty
	// GetActivityStreamsDuration returns the "duration" property if it
	// exists, and nil otherwise.
	GetActivityStreamsDuration() ActivityStreamsDurationProperty
	// GetActivityStreamsEndTime returns the "endTime" property if it exists,
	// and nil otherwise.
	GetActivityStreamsEndTime() ActivityStreamsEndTimeProperty
	// GetActivityStreamsGenerator returns the "generator" property if it
	// exists, and nil otherwise.
	GetActivityStreamsGenerator() ActivityStreamsGeneratorProperty
	// GetActivityStreamsIcon returns the "icon" property if it exists, and
	// nil otherwise.
	GetActivityStreamsIcon() ActivityStreamsIconProperty
	// GetActivityStreamsImage returns the "image" property if it exists, and
	// nil otherwise.
	GetActivityStreamsImage() ActivityStreamsImageProperty
	// GetActivityStreamsInReplyTo returns the "inReplyTo" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInReplyTo() ActivityStreamsInReplyToProperty
	// GetActivityStreamsInstrument returns the "instrument" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInstrument() ActivityStreamsInstrumentProperty
	// GetActivityStreamsLikes returns the "likes" property if it exists, and
	// nil otherwise.
	GetActivityStreamsLikes() ActivityStreamsLikesProperty
	// GetActivityStreamsLocation returns the "location" property if it
	// exists, and nil otherwise.
	GetActivityStreamsLocation() ActivityStreamsLocationProperty
	// GetActivityStreamsMediaType returns the "mediaType" property if it
	// exists, and nil otherwise.
	GetActivityStreamsMediaType() ActivityStreamsMediaTypeProperty
	// GetActivityStreamsName returns the "name" property if it exists, and
	// nil otherwise.
	GetActivityStreamsName() ActivityStreamsNameProperty
	// GetActivityStreamsObject returns the "object" property if it exists,
	// and nil otherwise.
	GetActivityStreamsObject() ActivityStreamsObjectProperty
	// GetActivityStreamsOrigin returns the "origin" property if it exists,
	// and nil otherwise.
	GetActivityStreamsOrigin() ActivityStreamsOriginProperty
	// GetActivityStreamsPreview returns the "preview" property if it exists,
	// and nil otherwise.
	GetActivityStreamsPreview() ActivityStreamsPreviewProperty
	// GetActivityStreamsPublished returns the "published" property if it
	// exists, and nil otherwise.
	GetActivityStreamsPublished() ActivityStreamsPublishedProperty
	// GetActivityStreamsReplies returns the "replies" property if it exists,
	// and nil otherwise.
	GetActivityStreamsReplies() ActivityStreamsRepliesProperty
	// GetActivityStreamsResult returns the "result" property if it exists,
	// and nil otherwise.
	GetActivityStreamsResult() ActivityStreamsResultProperty
	// GetActivityStreamsShares returns the "shares" property if it exists,
	// and nil otherwise.
	GetActivityStreamsShares() ActivityStreamsSharesProperty
	// GetActivityStreamsSource returns the "source" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSource() ActivityStreamsSourceProperty
	// GetActivityStreamsStartTime returns the "startTime" property if it
	// exists, and nil otherwise.
	GetActivityStreamsStartTime() ActivityStreamsStartTimeProperty
	// GetActivityStreamsSummary returns the "summary" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSummary() ActivityStreamsSummaryProperty
	// GetActivityStreamsTag returns the "tag" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTag() ActivityStreamsTagProperty
	// GetActivityStreamsTarget returns the "target" property if it exists,
	// and nil otherwise.
	GetActivityStreamsTarget() ActivityStreamsTargetProperty
	// GetActivityStreamsTo returns the "to" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTo() ActivityStreamsToProperty
	// GetActivityStreamsUpdated returns the "updated" property if it exists,
	// and nil otherwise.
	GetActivityStreamsUpdated() ActivityStreamsUpdatedProperty
	// GetActivityStreamsUrl returns the "url" property if it exists, and nil
	// otherwise.
	GetActivityStreamsUrl() ActivityStreamsUrlProperty
	// GetForgeFedTeam returns the "team" property if it exists, and nil
	// otherwise.
	GetForgeFedTeam() ForgeFedTeamProperty
	// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
	// it exists, and nil otherwise.
	GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
	// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
	// it exists, and nil otherwise.
	GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
	// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
	GetJSONLDId() JSONLDIdProperty
	// GetJSONLDType returns the "type" property if it exists, and nil
	// otherwise.
	GetJSONLDType() JSONLDTypeProperty
	// GetTypeName returns the name of this type.
	GetTypeName() string
	// GetUnknownProperties returns the unknown properties for the View type.
	// Note that this should not be used by app developers. It is only
	// used to help determine which implementation is LessThan the other.
	// Developers who are creating a different implementation of this
	// type's interface can use this method in their LessThan
	// implementation, but routine ActivityPub applications should not use
	// this to bypass the code generation tool.
	GetUnknownProperties() map[string]interface{}
	// IsExtending returns true if the View type extends from the other type.
	IsExtending(other Type) bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this type and the specific properties that are set. The value
	// in the map is the alias used to import the type and its properties.
	JSONLDContext() map[string]string
	// LessThan computes if this View is lesser, with an arbitrary but stable
	// determination.
	LessThan(o ActivityStreamsView) bool
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format.
	Serialize() (map[string]interface{}, error)
	// SetActivityStreamsActor sets the "actor" property.
	SetActivityStreamsActor(i ActivityStreamsActorProperty)
	// SetActivityStreamsAltitude sets the "altitude" property.
	SetActivityStreamsAltitude(i ActivityStreamsAltitudeProperty)
	// SetActivityStreamsAttachment sets the "attachment" property.
	SetActivityStreamsAttachment(i ActivityStreamsAttachmentProperty)
	// SetActivityStreamsAttributedTo sets the "attributedTo" property.
	SetActivityStreamsAttributedTo(i ActivityStreamsAttributedToProperty)
	// SetActivityStreamsAudience sets the "audience" property.
	SetActivityStreamsAudience(i ActivityStreamsAudienceProperty)
	// SetActivityStreamsBcc sets the "bcc" property.
	SetActivityStreamsBcc(i ActivityStreamsBccProperty)
	// SetActivityStreamsBto sets the "bto" property.
	SetActivityStreamsBto(i ActivityStreamsBtoProperty)
	// SetActivityStreamsCc sets the "cc" property.
	SetActivityStreamsCc(i ActivityStreamsCcProperty)
	// SetActivityStreamsContent sets the "content" property.
	SetActivityStreamsContent(i ActivityStreamsContentProperty)
	// SetActivityStreamsContext sets the "context" property.
	SetActivityStreamsContext(i ActivityStreamsContextProperty)
	// SetActivityStreamsDuration sets the "duration" property.
	SetActivityStreamsDuration(i ActivityStreamsDurationProperty)
	// SetActivityStreamsEndTime sets the "endTime" property.
	SetActivityStreamsEndTime(i ActivityStreamsEndTimeProperty)
	// SetActivityStreamsGenerator sets the "generator" property.
	SetActivityStreamsGenerator(i ActivityStreamsGeneratorProperty)
	// SetActivityStreamsIcon sets the "icon" property.
	SetActivityStreamsIcon(i ActivityStreamsIconProperty)
	// SetActivityStreamsImage sets the "image" property.
	SetActivityStreamsImage(i ActivityStreamsImageProperty)
	// SetActivityStreamsInReplyTo sets the "inReplyTo" property.
	SetActivityStreamsInReplyTo(i ActivityStreamsInReplyToProperty)
	// SetActivityStreamsInstrument sets the "instrument" property.
	SetActivityStreamsInstrument(i ActivityStreamsInstrumentProperty)
	// SetActivityStreamsLikes sets the "likes" property.
	SetActivityStreamsLikes(i ActivityStreamsLikesProperty)
	// SetActivityStreamsLocation sets the "location" property.
	SetActivityStreamsLocation(i ActivityStreamsLocationProperty)
	// SetActivityStreamsMediaType sets the "mediaType" property.
	SetActivityStreamsMediaType(i ActivityStreamsMediaTypeProperty)
	// SetActivityStreamsName sets the "name" property.
	SetActivityStreamsName(i ActivityStreamsNameProperty)
	// SetActivityStreamsObject sets the "object" property.
	SetActivityStreamsObject(i ActivityStreamsObjectProperty)
	// SetActivityStreamsOrigin sets the "origin" property.
	SetActivityStreamsOrigin(i ActivityStreamsOriginProperty)
	// SetActivityStreamsPreview sets the "preview" property.
	SetActivityStreamsPreview(i ActivityStreamsPreviewProperty)
	// SetActivityStreamsPublished sets the "published" property.
	SetActivityStreamsPublished(i ActivityStreamsPublishedProperty)
	// SetActivityStreamsReplies sets the "replies" property.
	SetActivityStreamsReplies(i ActivityStreamsRepliesProperty)
	// SetActivityStreamsResult sets the "result" property.
	SetActivityStreamsResult(i ActivityStreamsResultProperty)
	// SetActivityStreamsShares sets the "shares" property.
	SetActivityStreamsShares(i ActivityStreamsSharesProperty)
	// SetActivityStreamsSource sets the "source" property.
	SetActivityStreamsSource(i ActivityStreamsSourceProperty)
	// SetActivityStreamsStartTime sets the "startTime" property.
	SetActivityStreamsStartTime(i ActivityStreamsStartTimeProperty)
	// SetActivityStreamsSummary sets the "summary" property.
	SetActivityStreamsSummary(i ActivityStreamsSummaryProperty)
	// SetActivityStreamsTag sets the "tag" property.
	SetActivityStreamsTag(i ActivityStreamsTagProperty)
	// SetActivityStreamsTarget sets the "target" property.
	SetActivityStreamsTarget(i ActivityStreamsTargetProperty)
	// SetActivityStreamsTo sets the "to" property.
	SetActivityStreamsTo(i ActivityStreamsToProperty)
	// SetActivityStreamsUpdated sets the "updated" property.
	SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
	// SetActivityStreamsUrl sets the "url" property.
	SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
	// SetForgeFedTeam sets the "team" property.
	SetForgeFedTeam(i ForgeFedTeamProperty)
	// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
	SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
	// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
	SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
	// SetJSONLDId sets the "id" property.
	SetJSONLDId(i JSONLDIdProperty)
	// SetJSONLDType sets the "type" property.
	SetJSONLDType(i JSONLDTypeProperty)
	// VocabularyURI returns the vocabulary's URI as a string.
	VocabularyURI() string
}

Indicates that the actor has viewed the object.

Example 31 (https://www.w3.org/TR/activitystreams-vocabulary/#ex161-jsonld):

{
  "actor": {
    "name": "Sally",
    "type": "Person"
  },
  "object": {
    "name": "What You Should Know About Activity Streams",
    "type": "Article"
  },
  "summary": "Sally read an article",
  "type": "View"
}

type ActivityStreamsWidthProperty

type ActivityStreamsWidthProperty interface {
	// Clear ensures no value of this property is set. Calling
	// IsXMLSchemaNonNegativeInteger afterwards will return false.
	Clear()
	// Get returns the value of this property. When
	// IsXMLSchemaNonNegativeInteger returns false, Get will return any
	// arbitrary value.
	Get() int
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return any arbitrary value.
	GetIRI() *url.URL
	// HasAny returns true if the value or IRI is set.
	HasAny() bool
	// IsIRI returns true if this property is an IRI.
	IsIRI() bool
	// IsXMLSchemaNonNegativeInteger returns true if this property is set and
	// not an IRI.
	IsXMLSchemaNonNegativeInteger() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ActivityStreamsWidthProperty) bool
	// Name returns the name of this property: "width".
	Name() string
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// Set sets the value of this property. Calling
	// IsXMLSchemaNonNegativeInteger afterwards will return true.
	Set(v int)
	// SetIRI sets the value of this property. Calling IsIRI afterwards will
	// return true.
	SetIRI(v *url.URL)
}

On a Link, specifies a hint as to the rendering width in device-independent pixels of the linked resource.

Example 138 (https://www.w3.org/TR/activitystreams-vocabulary/#ex159-jsonld):

{
  "height": 100,
  "type": "Link",
  "url": "http://example.org/image.png",
  "width": 100
}

type ForgeFedAssignedToProperty

type ForgeFedAssignedToProperty interface {
	// Clear ensures no value of this property is set. Calling
	// IsActivityStreamsPerson afterwards will return false.
	Clear()
	// Get returns the value of this property. When IsActivityStreamsPerson
	// returns false, Get will return any arbitrary value.
	Get() ActivityStreamsPerson
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return any arbitrary value.
	GetIRI() *url.URL
	// GetType returns the value in this property as a Type. Returns nil if
	// the value is not an ActivityStreams type, such as an IRI or another
	// value.
	GetType() Type
	// HasAny returns true if the value or IRI is set.
	HasAny() bool
	// IsActivityStreamsPerson returns true if this property is set and not an
	// IRI.
	IsActivityStreamsPerson() bool
	// IsIRI returns true if this property is an IRI.
	IsIRI() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ForgeFedAssignedToProperty) bool
	// Name returns the name of this property: "assignedTo".
	Name() string
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// Set sets the value of this property. Calling IsActivityStreamsPerson
	// afterwards will return true.
	Set(v ActivityStreamsPerson)
	// SetIRI sets the value of this property. Calling IsIRI afterwards will
	// return true.
	SetIRI(v *url.URL)
	// SetType attempts to set the property for the arbitrary type. Returns an
	// error if it is not a valid type to set on this property.
	SetType(t Type) error
}

Identifies the Person assigned to work on this Ticket.

type ForgeFedBranch

type ForgeFedBranch interface {
	// GetActivityStreamsAltitude returns the "altitude" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAltitude() ActivityStreamsAltitudeProperty
	// GetActivityStreamsAttachment returns the "attachment" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAttachment() ActivityStreamsAttachmentProperty
	// GetActivityStreamsAttributedTo returns the "attributedTo" property if
	// it exists, and nil otherwise.
	GetActivityStreamsAttributedTo() ActivityStreamsAttributedToProperty
	// GetActivityStreamsAudience returns the "audience" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAudience() ActivityStreamsAudienceProperty
	// GetActivityStreamsBcc returns the "bcc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBcc() ActivityStreamsBccProperty
	// GetActivityStreamsBto returns the "bto" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBto() ActivityStreamsBtoProperty
	// GetActivityStreamsCc returns the "cc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsCc() ActivityStreamsCcProperty
	// GetActivityStreamsContent returns the "content" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContent() ActivityStreamsContentProperty
	// GetActivityStreamsContext returns the "context" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContext() ActivityStreamsContextProperty
	// GetActivityStreamsDuration returns the "duration" property if it
	// exists, and nil otherwise.
	GetActivityStreamsDuration() ActivityStreamsDurationProperty
	// GetActivityStreamsEndTime returns the "endTime" property if it exists,
	// and nil otherwise.
	GetActivityStreamsEndTime() ActivityStreamsEndTimeProperty
	// GetActivityStreamsGenerator returns the "generator" property if it
	// exists, and nil otherwise.
	GetActivityStreamsGenerator() ActivityStreamsGeneratorProperty
	// GetActivityStreamsIcon returns the "icon" property if it exists, and
	// nil otherwise.
	GetActivityStreamsIcon() ActivityStreamsIconProperty
	// GetActivityStreamsImage returns the "image" property if it exists, and
	// nil otherwise.
	GetActivityStreamsImage() ActivityStreamsImageProperty
	// GetActivityStreamsInReplyTo returns the "inReplyTo" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInReplyTo() ActivityStreamsInReplyToProperty
	// GetActivityStreamsLikes returns the "likes" property if it exists, and
	// nil otherwise.
	GetActivityStreamsLikes() ActivityStreamsLikesProperty
	// GetActivityStreamsLocation returns the "location" property if it
	// exists, and nil otherwise.
	GetActivityStreamsLocation() ActivityStreamsLocationProperty
	// GetActivityStreamsMediaType returns the "mediaType" property if it
	// exists, and nil otherwise.
	GetActivityStreamsMediaType() ActivityStreamsMediaTypeProperty
	// GetActivityStreamsName returns the "name" property if it exists, and
	// nil otherwise.
	GetActivityStreamsName() ActivityStreamsNameProperty
	// GetActivityStreamsObject returns the "object" property if it exists,
	// and nil otherwise.
	GetActivityStreamsObject() ActivityStreamsObjectProperty
	// GetActivityStreamsPreview returns the "preview" property if it exists,
	// and nil otherwise.
	GetActivityStreamsPreview() ActivityStreamsPreviewProperty
	// GetActivityStreamsPublished returns the "published" property if it
	// exists, and nil otherwise.
	GetActivityStreamsPublished() ActivityStreamsPublishedProperty
	// GetActivityStreamsReplies returns the "replies" property if it exists,
	// and nil otherwise.
	GetActivityStreamsReplies() ActivityStreamsRepliesProperty
	// GetActivityStreamsShares returns the "shares" property if it exists,
	// and nil otherwise.
	GetActivityStreamsShares() ActivityStreamsSharesProperty
	// GetActivityStreamsSource returns the "source" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSource() ActivityStreamsSourceProperty
	// GetActivityStreamsStartTime returns the "startTime" property if it
	// exists, and nil otherwise.
	GetActivityStreamsStartTime() ActivityStreamsStartTimeProperty
	// GetActivityStreamsSummary returns the "summary" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSummary() ActivityStreamsSummaryProperty
	// GetActivityStreamsTag returns the "tag" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTag() ActivityStreamsTagProperty
	// GetActivityStreamsTo returns the "to" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTo() ActivityStreamsToProperty
	// GetActivityStreamsUpdated returns the "updated" property if it exists,
	// and nil otherwise.
	GetActivityStreamsUpdated() ActivityStreamsUpdatedProperty
	// GetActivityStreamsUrl returns the "url" property if it exists, and nil
	// otherwise.
	GetActivityStreamsUrl() ActivityStreamsUrlProperty
	// GetForgeFedRef returns the "ref" property if it exists, and nil
	// otherwise.
	GetForgeFedRef() ForgeFedRefProperty
	// GetForgeFedTeam returns the "team" property if it exists, and nil
	// otherwise.
	GetForgeFedTeam() ForgeFedTeamProperty
	// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
	// it exists, and nil otherwise.
	GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
	// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
	// it exists, and nil otherwise.
	GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
	// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
	GetJSONLDId() JSONLDIdProperty
	// GetJSONLDType returns the "type" property if it exists, and nil
	// otherwise.
	GetJSONLDType() JSONLDTypeProperty
	// GetTypeName returns the name of this type.
	GetTypeName() string
	// GetUnknownProperties returns the unknown properties for the Branch
	// type. Note that this should not be used by app developers. It is
	// only used to help determine which implementation is LessThan the
	// other. Developers who are creating a different implementation of
	// this type's interface can use this method in their LessThan
	// implementation, but routine ActivityPub applications should not use
	// this to bypass the code generation tool.
	GetUnknownProperties() map[string]interface{}
	// IsExtending returns true if the Branch type extends from the other type.
	IsExtending(other Type) bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this type and the specific properties that are set. The value
	// in the map is the alias used to import the type and its properties.
	JSONLDContext() map[string]string
	// LessThan computes if this Branch is lesser, with an arbitrary but
	// stable determination.
	LessThan(o ForgeFedBranch) bool
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format.
	Serialize() (map[string]interface{}, error)
	// SetActivityStreamsAltitude sets the "altitude" property.
	SetActivityStreamsAltitude(i ActivityStreamsAltitudeProperty)
	// SetActivityStreamsAttachment sets the "attachment" property.
	SetActivityStreamsAttachment(i ActivityStreamsAttachmentProperty)
	// SetActivityStreamsAttributedTo sets the "attributedTo" property.
	SetActivityStreamsAttributedTo(i ActivityStreamsAttributedToProperty)
	// SetActivityStreamsAudience sets the "audience" property.
	SetActivityStreamsAudience(i ActivityStreamsAudienceProperty)
	// SetActivityStreamsBcc sets the "bcc" property.
	SetActivityStreamsBcc(i ActivityStreamsBccProperty)
	// SetActivityStreamsBto sets the "bto" property.
	SetActivityStreamsBto(i ActivityStreamsBtoProperty)
	// SetActivityStreamsCc sets the "cc" property.
	SetActivityStreamsCc(i ActivityStreamsCcProperty)
	// SetActivityStreamsContent sets the "content" property.
	SetActivityStreamsContent(i ActivityStreamsContentProperty)
	// SetActivityStreamsContext sets the "context" property.
	SetActivityStreamsContext(i ActivityStreamsContextProperty)
	// SetActivityStreamsDuration sets the "duration" property.
	SetActivityStreamsDuration(i ActivityStreamsDurationProperty)
	// SetActivityStreamsEndTime sets the "endTime" property.
	SetActivityStreamsEndTime(i ActivityStreamsEndTimeProperty)
	// SetActivityStreamsGenerator sets the "generator" property.
	SetActivityStreamsGenerator(i ActivityStreamsGeneratorProperty)
	// SetActivityStreamsIcon sets the "icon" property.
	SetActivityStreamsIcon(i ActivityStreamsIconProperty)
	// SetActivityStreamsImage sets the "image" property.
	SetActivityStreamsImage(i ActivityStreamsImageProperty)
	// SetActivityStreamsInReplyTo sets the "inReplyTo" property.
	SetActivityStreamsInReplyTo(i ActivityStreamsInReplyToProperty)
	// SetActivityStreamsLikes sets the "likes" property.
	SetActivityStreamsLikes(i ActivityStreamsLikesProperty)
	// SetActivityStreamsLocation sets the "location" property.
	SetActivityStreamsLocation(i ActivityStreamsLocationProperty)
	// SetActivityStreamsMediaType sets the "mediaType" property.
	SetActivityStreamsMediaType(i ActivityStreamsMediaTypeProperty)
	// SetActivityStreamsName sets the "name" property.
	SetActivityStreamsName(i ActivityStreamsNameProperty)
	// SetActivityStreamsObject sets the "object" property.
	SetActivityStreamsObject(i ActivityStreamsObjectProperty)
	// SetActivityStreamsPreview sets the "preview" property.
	SetActivityStreamsPreview(i ActivityStreamsPreviewProperty)
	// SetActivityStreamsPublished sets the "published" property.
	SetActivityStreamsPublished(i ActivityStreamsPublishedProperty)
	// SetActivityStreamsReplies sets the "replies" property.
	SetActivityStreamsReplies(i ActivityStreamsRepliesProperty)
	// SetActivityStreamsShares sets the "shares" property.
	SetActivityStreamsShares(i ActivityStreamsSharesProperty)
	// SetActivityStreamsSource sets the "source" property.
	SetActivityStreamsSource(i ActivityStreamsSourceProperty)
	// SetActivityStreamsStartTime sets the "startTime" property.
	SetActivityStreamsStartTime(i ActivityStreamsStartTimeProperty)
	// SetActivityStreamsSummary sets the "summary" property.
	SetActivityStreamsSummary(i ActivityStreamsSummaryProperty)
	// SetActivityStreamsTag sets the "tag" property.
	SetActivityStreamsTag(i ActivityStreamsTagProperty)
	// SetActivityStreamsTo sets the "to" property.
	SetActivityStreamsTo(i ActivityStreamsToProperty)
	// SetActivityStreamsUpdated sets the "updated" property.
	SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
	// SetActivityStreamsUrl sets the "url" property.
	SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
	// SetForgeFedRef sets the "ref" property.
	SetForgeFedRef(i ForgeFedRefProperty)
	// SetForgeFedTeam sets the "team" property.
	SetForgeFedTeam(i ForgeFedTeamProperty)
	// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
	SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
	// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
	SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
	// SetJSONLDId sets the "id" property.
	SetJSONLDId(i JSONLDIdProperty)
	// SetJSONLDType sets the "type" property.
	SetJSONLDType(i JSONLDTypeProperty)
	// VocabularyURI returns the vocabulary's URI as a string.
	VocabularyURI() string
}

Represents a named variable reference to a version of the Repository, typically used for committing changes in parallel to other development, and usually eventually merging the changes into the main history line.

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    "https://forgefed.peers.community/ns"
  ],
  "context": "https://example.dev/luke/myrepo",
  "id": "https://example.dev/luke/myrepo/branches/master",
  "name": "master",
  "ref": "refs/heads/master",
  "type": "Branch"
}

type ForgeFedCommit

type ForgeFedCommit interface {
	// GetActivityStreamsAltitude returns the "altitude" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAltitude() ActivityStreamsAltitudeProperty
	// GetActivityStreamsAttachment returns the "attachment" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAttachment() ActivityStreamsAttachmentProperty
	// GetActivityStreamsAttributedTo returns the "attributedTo" property if
	// it exists, and nil otherwise.
	GetActivityStreamsAttributedTo() ActivityStreamsAttributedToProperty
	// GetActivityStreamsAudience returns the "audience" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAudience() ActivityStreamsAudienceProperty
	// GetActivityStreamsBcc returns the "bcc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBcc() ActivityStreamsBccProperty
	// GetActivityStreamsBto returns the "bto" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBto() ActivityStreamsBtoProperty
	// GetActivityStreamsCc returns the "cc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsCc() ActivityStreamsCcProperty
	// GetActivityStreamsContent returns the "content" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContent() ActivityStreamsContentProperty
	// GetActivityStreamsContext returns the "context" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContext() ActivityStreamsContextProperty
	// GetActivityStreamsDuration returns the "duration" property if it
	// exists, and nil otherwise.
	GetActivityStreamsDuration() ActivityStreamsDurationProperty
	// GetActivityStreamsEndTime returns the "endTime" property if it exists,
	// and nil otherwise.
	GetActivityStreamsEndTime() ActivityStreamsEndTimeProperty
	// GetActivityStreamsGenerator returns the "generator" property if it
	// exists, and nil otherwise.
	GetActivityStreamsGenerator() ActivityStreamsGeneratorProperty
	// GetActivityStreamsIcon returns the "icon" property if it exists, and
	// nil otherwise.
	GetActivityStreamsIcon() ActivityStreamsIconProperty
	// GetActivityStreamsImage returns the "image" property if it exists, and
	// nil otherwise.
	GetActivityStreamsImage() ActivityStreamsImageProperty
	// GetActivityStreamsInReplyTo returns the "inReplyTo" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInReplyTo() ActivityStreamsInReplyToProperty
	// GetActivityStreamsLikes returns the "likes" property if it exists, and
	// nil otherwise.
	GetActivityStreamsLikes() ActivityStreamsLikesProperty
	// GetActivityStreamsLocation returns the "location" property if it
	// exists, and nil otherwise.
	GetActivityStreamsLocation() ActivityStreamsLocationProperty
	// GetActivityStreamsMediaType returns the "mediaType" property if it
	// exists, and nil otherwise.
	GetActivityStreamsMediaType() ActivityStreamsMediaTypeProperty
	// GetActivityStreamsName returns the "name" property if it exists, and
	// nil otherwise.
	GetActivityStreamsName() ActivityStreamsNameProperty
	// GetActivityStreamsObject returns the "object" property if it exists,
	// and nil otherwise.
	GetActivityStreamsObject() ActivityStreamsObjectProperty
	// GetActivityStreamsPreview returns the "preview" property if it exists,
	// and nil otherwise.
	GetActivityStreamsPreview() ActivityStreamsPreviewProperty
	// GetActivityStreamsPublished returns the "published" property if it
	// exists, and nil otherwise.
	GetActivityStreamsPublished() ActivityStreamsPublishedProperty
	// GetActivityStreamsReplies returns the "replies" property if it exists,
	// and nil otherwise.
	GetActivityStreamsReplies() ActivityStreamsRepliesProperty
	// GetActivityStreamsShares returns the "shares" property if it exists,
	// and nil otherwise.
	GetActivityStreamsShares() ActivityStreamsSharesProperty
	// GetActivityStreamsSource returns the "source" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSource() ActivityStreamsSourceProperty
	// GetActivityStreamsStartTime returns the "startTime" property if it
	// exists, and nil otherwise.
	GetActivityStreamsStartTime() ActivityStreamsStartTimeProperty
	// GetActivityStreamsSummary returns the "summary" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSummary() ActivityStreamsSummaryProperty
	// GetActivityStreamsTag returns the "tag" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTag() ActivityStreamsTagProperty
	// GetActivityStreamsTo returns the "to" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTo() ActivityStreamsToProperty
	// GetActivityStreamsUpdated returns the "updated" property if it exists,
	// and nil otherwise.
	GetActivityStreamsUpdated() ActivityStreamsUpdatedProperty
	// GetActivityStreamsUrl returns the "url" property if it exists, and nil
	// otherwise.
	GetActivityStreamsUrl() ActivityStreamsUrlProperty
	// GetForgeFedCommitted returns the "committed" property if it exists, and
	// nil otherwise.
	GetForgeFedCommitted() ForgeFedCommittedProperty
	// GetForgeFedCommittedBy returns the "committedBy" property if it exists,
	// and nil otherwise.
	GetForgeFedCommittedBy() ForgeFedCommittedByProperty
	// GetForgeFedDescription returns the "description" property if it exists,
	// and nil otherwise.
	GetForgeFedDescription() ForgeFedDescriptionProperty
	// GetForgeFedFilesAdded returns the "filesAdded" property if it exists,
	// and nil otherwise.
	GetForgeFedFilesAdded() ForgeFedFilesAddedProperty
	// GetForgeFedFilesModified returns the "filesModified" property if it
	// exists, and nil otherwise.
	GetForgeFedFilesModified() ForgeFedFilesModifiedProperty
	// GetForgeFedFilesRemoved returns the "filesRemoved" property if it
	// exists, and nil otherwise.
	GetForgeFedFilesRemoved() ForgeFedFilesRemovedProperty
	// GetForgeFedHash returns the "hash" property if it exists, and nil
	// otherwise.
	GetForgeFedHash() ForgeFedHashProperty
	// GetForgeFedTeam returns the "team" property if it exists, and nil
	// otherwise.
	GetForgeFedTeam() ForgeFedTeamProperty
	// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
	// it exists, and nil otherwise.
	GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
	// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
	// it exists, and nil otherwise.
	GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
	// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
	GetJSONLDId() JSONLDIdProperty
	// GetJSONLDType returns the "type" property if it exists, and nil
	// otherwise.
	GetJSONLDType() JSONLDTypeProperty
	// GetTypeName returns the name of this type.
	GetTypeName() string
	// GetUnknownProperties returns the unknown properties for the Commit
	// type. Note that this should not be used by app developers. It is
	// only used to help determine which implementation is LessThan the
	// other. Developers who are creating a different implementation of
	// this type's interface can use this method in their LessThan
	// implementation, but routine ActivityPub applications should not use
	// this to bypass the code generation tool.
	GetUnknownProperties() map[string]interface{}
	// IsExtending returns true if the Commit type extends from the other type.
	IsExtending(other Type) bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this type and the specific properties that are set. The value
	// in the map is the alias used to import the type and its properties.
	JSONLDContext() map[string]string
	// LessThan computes if this Commit is lesser, with an arbitrary but
	// stable determination.
	LessThan(o ForgeFedCommit) bool
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format.
	Serialize() (map[string]interface{}, error)
	// SetActivityStreamsAltitude sets the "altitude" property.
	SetActivityStreamsAltitude(i ActivityStreamsAltitudeProperty)
	// SetActivityStreamsAttachment sets the "attachment" property.
	SetActivityStreamsAttachment(i ActivityStreamsAttachmentProperty)
	// SetActivityStreamsAttributedTo sets the "attributedTo" property.
	SetActivityStreamsAttributedTo(i ActivityStreamsAttributedToProperty)
	// SetActivityStreamsAudience sets the "audience" property.
	SetActivityStreamsAudience(i ActivityStreamsAudienceProperty)
	// SetActivityStreamsBcc sets the "bcc" property.
	SetActivityStreamsBcc(i ActivityStreamsBccProperty)
	// SetActivityStreamsBto sets the "bto" property.
	SetActivityStreamsBto(i ActivityStreamsBtoProperty)
	// SetActivityStreamsCc sets the "cc" property.
	SetActivityStreamsCc(i ActivityStreamsCcProperty)
	// SetActivityStreamsContent sets the "content" property.
	SetActivityStreamsContent(i ActivityStreamsContentProperty)
	// SetActivityStreamsContext sets the "context" property.
	SetActivityStreamsContext(i ActivityStreamsContextProperty)
	// SetActivityStreamsDuration sets the "duration" property.
	SetActivityStreamsDuration(i ActivityStreamsDurationProperty)
	// SetActivityStreamsEndTime sets the "endTime" property.
	SetActivityStreamsEndTime(i ActivityStreamsEndTimeProperty)
	// SetActivityStreamsGenerator sets the "generator" property.
	SetActivityStreamsGenerator(i ActivityStreamsGeneratorProperty)
	// SetActivityStreamsIcon sets the "icon" property.
	SetActivityStreamsIcon(i ActivityStreamsIconProperty)
	// SetActivityStreamsImage sets the "image" property.
	SetActivityStreamsImage(i ActivityStreamsImageProperty)
	// SetActivityStreamsInReplyTo sets the "inReplyTo" property.
	SetActivityStreamsInReplyTo(i ActivityStreamsInReplyToProperty)
	// SetActivityStreamsLikes sets the "likes" property.
	SetActivityStreamsLikes(i ActivityStreamsLikesProperty)
	// SetActivityStreamsLocation sets the "location" property.
	SetActivityStreamsLocation(i ActivityStreamsLocationProperty)
	// SetActivityStreamsMediaType sets the "mediaType" property.
	SetActivityStreamsMediaType(i ActivityStreamsMediaTypeProperty)
	// SetActivityStreamsName sets the "name" property.
	SetActivityStreamsName(i ActivityStreamsNameProperty)
	// SetActivityStreamsObject sets the "object" property.
	SetActivityStreamsObject(i ActivityStreamsObjectProperty)
	// SetActivityStreamsPreview sets the "preview" property.
	SetActivityStreamsPreview(i ActivityStreamsPreviewProperty)
	// SetActivityStreamsPublished sets the "published" property.
	SetActivityStreamsPublished(i ActivityStreamsPublishedProperty)
	// SetActivityStreamsReplies sets the "replies" property.
	SetActivityStreamsReplies(i ActivityStreamsRepliesProperty)
	// SetActivityStreamsShares sets the "shares" property.
	SetActivityStreamsShares(i ActivityStreamsSharesProperty)
	// SetActivityStreamsSource sets the "source" property.
	SetActivityStreamsSource(i ActivityStreamsSourceProperty)
	// SetActivityStreamsStartTime sets the "startTime" property.
	SetActivityStreamsStartTime(i ActivityStreamsStartTimeProperty)
	// SetActivityStreamsSummary sets the "summary" property.
	SetActivityStreamsSummary(i ActivityStreamsSummaryProperty)
	// SetActivityStreamsTag sets the "tag" property.
	SetActivityStreamsTag(i ActivityStreamsTagProperty)
	// SetActivityStreamsTo sets the "to" property.
	SetActivityStreamsTo(i ActivityStreamsToProperty)
	// SetActivityStreamsUpdated sets the "updated" property.
	SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
	// SetActivityStreamsUrl sets the "url" property.
	SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
	// SetForgeFedCommitted sets the "committed" property.
	SetForgeFedCommitted(i ForgeFedCommittedProperty)
	// SetForgeFedCommittedBy sets the "committedBy" property.
	SetForgeFedCommittedBy(i ForgeFedCommittedByProperty)
	// SetForgeFedDescription sets the "description" property.
	SetForgeFedDescription(i ForgeFedDescriptionProperty)
	// SetForgeFedFilesAdded sets the "filesAdded" property.
	SetForgeFedFilesAdded(i ForgeFedFilesAddedProperty)
	// SetForgeFedFilesModified sets the "filesModified" property.
	SetForgeFedFilesModified(i ForgeFedFilesModifiedProperty)
	// SetForgeFedFilesRemoved sets the "filesRemoved" property.
	SetForgeFedFilesRemoved(i ForgeFedFilesRemovedProperty)
	// SetForgeFedHash sets the "hash" property.
	SetForgeFedHash(i ForgeFedHashProperty)
	// SetForgeFedTeam sets the "team" property.
	SetForgeFedTeam(i ForgeFedTeamProperty)
	// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
	SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
	// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
	SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
	// SetJSONLDId sets the "id" property.
	SetJSONLDId(i JSONLDIdProperty)
	// SetJSONLDType sets the "type" property.
	SetJSONLDType(i JSONLDTypeProperty)
	// VocabularyURI returns the vocabulary's URI as a string.
	VocabularyURI() string
}

Represents a named set of changes in the history of a Repository. This is called "commit" in Git, Mercurial and Monotone; "patch" in Darcs; sometimes called "change set". Note that Commit is a set of changes that already exists in a repo’s history, while a Patch is a separate proposed change set, that could be applied and pushed to a repo, resulting with a Commit.

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    "https://forgefed.peers.community/ns"
  ],
  "attributedTo": "https://example.dev/bob",
  "committed": "2019-07-26T23:45:01Z",
  "committedBy": "https://example.dev/alice",
  "context": "https://example.dev/alice/myrepo",
  "created": "2019-07-11T12:34:56Z",
  "description": {
    "content": "It's about time people can install on their computers!",
    "mediaType": "text/plain"
  },
  "hash": "109ec9a09c7df7fec775d2ba0b9d466e5643ec8c",
  "id": "https://example.dev/alice/myrepo/commits/109ec9a09c7df7fec775d2ba0b9d466e5643ec8c",
  "summary": "Add an installation script, fixes issue #89",
  "type": "Commit"
}

type ForgeFedCommittedByProperty

type ForgeFedCommittedByProperty interface {
	// Clear ensures no value of this property is set. Calling HasAny or any
	// of the 'Is' methods afterwards will return false.
	Clear()
	// GetActivityStreamsAccept returns the value of this property. When
	// IsActivityStreamsAccept returns false, GetActivityStreamsAccept
	// will return an arbitrary value.
	GetActivityStreamsAccept() ActivityStreamsAccept
	// GetActivityStreamsActivity returns the value of this property. When
	// IsActivityStreamsActivity returns false, GetActivityStreamsActivity
	// will return an arbitrary value.
	GetActivityStreamsActivity() ActivityStreamsActivity
	// GetActivityStreamsAdd returns the value of this property. When
	// IsActivityStreamsAdd returns false, GetActivityStreamsAdd will
	// return an arbitrary value.
	GetActivityStreamsAdd() ActivityStreamsAdd
	// GetActivityStreamsAnnounce returns the value of this property. When
	// IsActivityStreamsAnnounce returns false, GetActivityStreamsAnnounce
	// will return an arbitrary value.
	GetActivityStreamsAnnounce() ActivityStreamsAnnounce
	// GetActivityStreamsApplication returns the value of this property. When
	// IsActivityStreamsApplication returns false,
	// GetActivityStreamsApplication will return an arbitrary value.
	GetActivityStreamsApplication() ActivityStreamsApplication
	// GetActivityStreamsArrive returns the value of this property. When
	// IsActivityStreamsArrive returns false, GetActivityStreamsArrive
	// will return an arbitrary value.
	GetActivityStreamsArrive() ActivityStreamsArrive
	// GetActivityStreamsArticle returns the value of this property. When
	// IsActivityStreamsArticle returns false, GetActivityStreamsArticle
	// will return an arbitrary value.
	GetActivityStreamsArticle() ActivityStreamsArticle
	// GetActivityStreamsAudio returns the value of this property. When
	// IsActivityStreamsAudio returns false, GetActivityStreamsAudio will
	// return an arbitrary value.
	GetActivityStreamsAudio() ActivityStreamsAudio
	// GetActivityStreamsBlock returns the value of this property. When
	// IsActivityStreamsBlock returns false, GetActivityStreamsBlock will
	// return an arbitrary value.
	GetActivityStreamsBlock() ActivityStreamsBlock
	// GetActivityStreamsCollection returns the value of this property. When
	// IsActivityStreamsCollection returns false,
	// GetActivityStreamsCollection will return an arbitrary value.
	GetActivityStreamsCollection() ActivityStreamsCollection
	// GetActivityStreamsCollectionPage returns the value of this property.
	// When IsActivityStreamsCollectionPage returns false,
	// GetActivityStreamsCollectionPage will return an arbitrary value.
	GetActivityStreamsCollectionPage() ActivityStreamsCollectionPage
	// GetActivityStreamsCreate returns the value of this property. When
	// IsActivityStreamsCreate returns false, GetActivityStreamsCreate
	// will return an arbitrary value.
	GetActivityStreamsCreate() ActivityStreamsCreate
	// GetActivityStreamsDelete returns the value of this property. When
	// IsActivityStreamsDelete returns false, GetActivityStreamsDelete
	// will return an arbitrary value.
	GetActivityStreamsDelete() ActivityStreamsDelete
	// GetActivityStreamsDislike returns the value of this property. When
	// IsActivityStreamsDislike returns false, GetActivityStreamsDislike
	// will return an arbitrary value.
	GetActivityStreamsDislike() ActivityStreamsDislike
	// GetActivityStreamsDocument returns the value of this property. When
	// IsActivityStreamsDocument returns false, GetActivityStreamsDocument
	// will return an arbitrary value.
	GetActivityStreamsDocument() ActivityStreamsDocument
	// GetActivityStreamsEvent returns the value of this property. When
	// IsActivityStreamsEvent returns false, GetActivityStreamsEvent will
	// return an arbitrary value.
	GetActivityStreamsEvent() ActivityStreamsEvent
	// GetActivityStreamsFlag returns the value of this property. When
	// IsActivityStreamsFlag returns false, GetActivityStreamsFlag will
	// return an arbitrary value.
	GetActivityStreamsFlag() ActivityStreamsFlag
	// GetActivityStreamsFollow returns the value of this property. When
	// IsActivityStreamsFollow returns false, GetActivityStreamsFollow
	// will return an arbitrary value.
	GetActivityStreamsFollow() ActivityStreamsFollow
	// GetActivityStreamsGroup returns the value of this property. When
	// IsActivityStreamsGroup returns false, GetActivityStreamsGroup will
	// return an arbitrary value.
	GetActivityStreamsGroup() ActivityStreamsGroup
	// GetActivityStreamsIgnore returns the value of this property. When
	// IsActivityStreamsIgnore returns false, GetActivityStreamsIgnore
	// will return an arbitrary value.
	GetActivityStreamsIgnore() ActivityStreamsIgnore
	// GetActivityStreamsImage returns the value of this property. When
	// IsActivityStreamsImage returns false, GetActivityStreamsImage will
	// return an arbitrary value.
	GetActivityStreamsImage() ActivityStreamsImage
	// GetActivityStreamsIntransitiveActivity returns the value of this
	// property. When IsActivityStreamsIntransitiveActivity returns false,
	// GetActivityStreamsIntransitiveActivity will return an arbitrary
	// value.
	GetActivityStreamsIntransitiveActivity() ActivityStreamsIntransitiveActivity
	// GetActivityStreamsInvite returns the value of this property. When
	// IsActivityStreamsInvite returns false, GetActivityStreamsInvite
	// will return an arbitrary value.
	GetActivityStreamsInvite() ActivityStreamsInvite
	// GetActivityStreamsJoin returns the value of this property. When
	// IsActivityStreamsJoin returns false, GetActivityStreamsJoin will
	// return an arbitrary value.
	GetActivityStreamsJoin() ActivityStreamsJoin
	// GetActivityStreamsLeave returns the value of this property. When
	// IsActivityStreamsLeave returns false, GetActivityStreamsLeave will
	// return an arbitrary value.
	GetActivityStreamsLeave() ActivityStreamsLeave
	// GetActivityStreamsLike returns the value of this property. When
	// IsActivityStreamsLike returns false, GetActivityStreamsLike will
	// return an arbitrary value.
	GetActivityStreamsLike() ActivityStreamsLike
	// GetActivityStreamsListen returns the value of this property. When
	// IsActivityStreamsListen returns false, GetActivityStreamsListen
	// will return an arbitrary value.
	GetActivityStreamsListen() ActivityStreamsListen
	// GetActivityStreamsMove returns the value of this property. When
	// IsActivityStreamsMove returns false, GetActivityStreamsMove will
	// return an arbitrary value.
	GetActivityStreamsMove() ActivityStreamsMove
	// GetActivityStreamsNote returns the value of this property. When
	// IsActivityStreamsNote returns false, GetActivityStreamsNote will
	// return an arbitrary value.
	GetActivityStreamsNote() ActivityStreamsNote
	// GetActivityStreamsObject returns the value of this property. When
	// IsActivityStreamsObject returns false, GetActivityStreamsObject
	// will return an arbitrary value.
	GetActivityStreamsObject() ActivityStreamsObject
	// GetActivityStreamsOffer returns the value of this property. When
	// IsActivityStreamsOffer returns false, GetActivityStreamsOffer will
	// return an arbitrary value.
	GetActivityStreamsOffer() ActivityStreamsOffer
	// GetActivityStreamsOrderedCollection returns the value of this property.
	// When IsActivityStreamsOrderedCollection returns false,
	// GetActivityStreamsOrderedCollection will return an arbitrary value.
	GetActivityStreamsOrderedCollection() ActivityStreamsOrderedCollection
	// GetActivityStreamsOrderedCollectionPage returns the value of this
	// property. When IsActivityStreamsOrderedCollectionPage returns
	// false, GetActivityStreamsOrderedCollectionPage will return an
	// arbitrary value.
	GetActivityStreamsOrderedCollectionPage() ActivityStreamsOrderedCollectionPage
	// GetActivityStreamsOrganization returns the value of this property. When
	// IsActivityStreamsOrganization returns false,
	// GetActivityStreamsOrganization will return an arbitrary value.
	GetActivityStreamsOrganization() ActivityStreamsOrganization
	// GetActivityStreamsPage returns the value of this property. When
	// IsActivityStreamsPage returns false, GetActivityStreamsPage will
	// return an arbitrary value.
	GetActivityStreamsPage() ActivityStreamsPage
	// GetActivityStreamsPerson returns the value of this property. When
	// IsActivityStreamsPerson returns false, GetActivityStreamsPerson
	// will return an arbitrary value.
	GetActivityStreamsPerson() ActivityStreamsPerson
	// GetActivityStreamsPlace returns the value of this property. When
	// IsActivityStreamsPlace returns false, GetActivityStreamsPlace will
	// return an arbitrary value.
	GetActivityStreamsPlace() ActivityStreamsPlace
	// GetActivityStreamsProfile returns the value of this property. When
	// IsActivityStreamsProfile returns false, GetActivityStreamsProfile
	// will return an arbitrary value.
	GetActivityStreamsProfile() ActivityStreamsProfile
	// GetActivityStreamsQuestion returns the value of this property. When
	// IsActivityStreamsQuestion returns false, GetActivityStreamsQuestion
	// will return an arbitrary value.
	GetActivityStreamsQuestion() ActivityStreamsQuestion
	// GetActivityStreamsRead returns the value of this property. When
	// IsActivityStreamsRead returns false, GetActivityStreamsRead will
	// return an arbitrary value.
	GetActivityStreamsRead() ActivityStreamsRead
	// GetActivityStreamsReject returns the value of this property. When
	// IsActivityStreamsReject returns false, GetActivityStreamsReject
	// will return an arbitrary value.
	GetActivityStreamsReject() ActivityStreamsReject
	// GetActivityStreamsRelationship returns the value of this property. When
	// IsActivityStreamsRelationship returns false,
	// GetActivityStreamsRelationship will return an arbitrary value.
	GetActivityStreamsRelationship() ActivityStreamsRelationship
	// GetActivityStreamsRemove returns the value of this property. When
	// IsActivityStreamsRemove returns false, GetActivityStreamsRemove
	// will return an arbitrary value.
	GetActivityStreamsRemove() ActivityStreamsRemove
	// GetActivityStreamsService returns the value of this property. When
	// IsActivityStreamsService returns false, GetActivityStreamsService
	// will return an arbitrary value.
	GetActivityStreamsService() ActivityStreamsService
	// GetActivityStreamsTentativeAccept returns the value of this property.
	// When IsActivityStreamsTentativeAccept returns false,
	// GetActivityStreamsTentativeAccept will return an arbitrary value.
	GetActivityStreamsTentativeAccept() ActivityStreamsTentativeAccept
	// GetActivityStreamsTentativeReject returns the value of this property.
	// When IsActivityStreamsTentativeReject returns false,
	// GetActivityStreamsTentativeReject will return an arbitrary value.
	GetActivityStreamsTentativeReject() ActivityStreamsTentativeReject
	// GetActivityStreamsTombstone returns the value of this property. When
	// IsActivityStreamsTombstone returns false,
	// GetActivityStreamsTombstone will return an arbitrary value.
	GetActivityStreamsTombstone() ActivityStreamsTombstone
	// GetActivityStreamsTravel returns the value of this property. When
	// IsActivityStreamsTravel returns false, GetActivityStreamsTravel
	// will return an arbitrary value.
	GetActivityStreamsTravel() ActivityStreamsTravel
	// GetActivityStreamsUndo returns the value of this property. When
	// IsActivityStreamsUndo returns false, GetActivityStreamsUndo will
	// return an arbitrary value.
	GetActivityStreamsUndo() ActivityStreamsUndo
	// GetActivityStreamsUpdate returns the value of this property. When
	// IsActivityStreamsUpdate returns false, GetActivityStreamsUpdate
	// will return an arbitrary value.
	GetActivityStreamsUpdate() ActivityStreamsUpdate
	// GetActivityStreamsVideo returns the value of this property. When
	// IsActivityStreamsVideo returns false, GetActivityStreamsVideo will
	// return an arbitrary value.
	GetActivityStreamsVideo() ActivityStreamsVideo
	// GetActivityStreamsView returns the value of this property. When
	// IsActivityStreamsView returns false, GetActivityStreamsView will
	// return an arbitrary value.
	GetActivityStreamsView() ActivityStreamsView
	// GetForgeFedBranch returns the value of this property. When
	// IsForgeFedBranch returns false, GetForgeFedBranch will return an
	// arbitrary value.
	GetForgeFedBranch() ForgeFedBranch
	// GetForgeFedCommit returns the value of this property. When
	// IsForgeFedCommit returns false, GetForgeFedCommit will return an
	// arbitrary value.
	GetForgeFedCommit() ForgeFedCommit
	// GetForgeFedPush returns the value of this property. When IsForgeFedPush
	// returns false, GetForgeFedPush will return an arbitrary value.
	GetForgeFedPush() ForgeFedPush
	// GetForgeFedRepository returns the value of this property. When
	// IsForgeFedRepository returns false, GetForgeFedRepository will
	// return an arbitrary value.
	GetForgeFedRepository() ForgeFedRepository
	// GetForgeFedTicket returns the value of this property. When
	// IsForgeFedTicket returns false, GetForgeFedTicket will return an
	// arbitrary value.
	GetForgeFedTicket() ForgeFedTicket
	// GetForgeFedTicketDependency returns the value of this property. When
	// IsForgeFedTicketDependency returns false,
	// GetForgeFedTicketDependency will return an arbitrary value.
	GetForgeFedTicketDependency() ForgeFedTicketDependency
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return an arbitrary value.
	GetIRI() *url.URL
	// GetTootEmoji returns the value of this property. When IsTootEmoji
	// returns false, GetTootEmoji will return an arbitrary value.
	GetTootEmoji() TootEmoji
	// GetTootIdentityProof returns the value of this property. When
	// IsTootIdentityProof returns false, GetTootIdentityProof will return
	// an arbitrary value.
	GetTootIdentityProof() TootIdentityProof
	// GetType returns the value in this property as a Type. Returns nil if
	// the value is not an ActivityStreams type, such as an IRI or another
	// value.
	GetType() Type
	// HasAny returns true if any of the different values is set.
	HasAny() bool
	// IsActivityStreamsAccept returns true if this property has a type of
	// "Accept". When true, use the GetActivityStreamsAccept and
	// SetActivityStreamsAccept methods to access and set this property.
	IsActivityStreamsAccept() bool
	// IsActivityStreamsActivity returns true if this property has a type of
	// "Activity". When true, use the GetActivityStreamsActivity and
	// SetActivityStreamsActivity methods to access and set this property.
	IsActivityStreamsActivity() bool
	// IsActivityStreamsAdd returns true if this property has a type of "Add".
	// When true, use the GetActivityStreamsAdd and SetActivityStreamsAdd
	// methods to access and set this property.
	IsActivityStreamsAdd() bool
	// IsActivityStreamsAnnounce returns true if this property has a type of
	// "Announce". When true, use the GetActivityStreamsAnnounce and
	// SetActivityStreamsAnnounce methods to access and set this property.
	IsActivityStreamsAnnounce() bool
	// IsActivityStreamsApplication returns true if this property has a type
	// of "Application". When true, use the GetActivityStreamsApplication
	// and SetActivityStreamsApplication methods to access and set this
	// property.
	IsActivityStreamsApplication() bool
	// IsActivityStreamsArrive returns true if this property has a type of
	// "Arrive". When true, use the GetActivityStreamsArrive and
	// SetActivityStreamsArrive methods to access and set this property.
	IsActivityStreamsArrive() bool
	// IsActivityStreamsArticle returns true if this property has a type of
	// "Article". When true, use the GetActivityStreamsArticle and
	// SetActivityStreamsArticle methods to access and set this property.
	IsActivityStreamsArticle() bool
	// IsActivityStreamsAudio returns true if this property has a type of
	// "Audio". When true, use the GetActivityStreamsAudio and
	// SetActivityStreamsAudio methods to access and set this property.
	IsActivityStreamsAudio() bool
	// IsActivityStreamsBlock returns true if this property has a type of
	// "Block". When true, use the GetActivityStreamsBlock and
	// SetActivityStreamsBlock methods to access and set this property.
	IsActivityStreamsBlock() bool
	// IsActivityStreamsCollection returns true if this property has a type of
	// "Collection". When true, use the GetActivityStreamsCollection and
	// SetActivityStreamsCollection methods to access and set this
	// property.
	IsActivityStreamsCollection() bool
	// IsActivityStreamsCollectionPage returns true if this property has a
	// type of "CollectionPage". When true, use the
	// GetActivityStreamsCollectionPage and
	// SetActivityStreamsCollectionPage methods to access and set this
	// property.
	IsActivityStreamsCollectionPage() bool
	// IsActivityStreamsCreate returns true if this property has a type of
	// "Create". When true, use the GetActivityStreamsCreate and
	// SetActivityStreamsCreate methods to access and set this property.
	IsActivityStreamsCreate() bool
	// IsActivityStreamsDelete returns true if this property has a type of
	// "Delete". When true, use the GetActivityStreamsDelete and
	// SetActivityStreamsDelete methods to access and set this property.
	IsActivityStreamsDelete() bool
	// IsActivityStreamsDislike returns true if this property has a type of
	// "Dislike". When true, use the GetActivityStreamsDislike and
	// SetActivityStreamsDislike methods to access and set this property.
	IsActivityStreamsDislike() bool
	// IsActivityStreamsDocument returns true if this property has a type of
	// "Document". When true, use the GetActivityStreamsDocument and
	// SetActivityStreamsDocument methods to access and set this property.
	IsActivityStreamsDocument() bool
	// IsActivityStreamsEvent returns true if this property has a type of
	// "Event". When true, use the GetActivityStreamsEvent and
	// SetActivityStreamsEvent methods to access and set this property.
	IsActivityStreamsEvent() bool
	// IsActivityStreamsFlag returns true if this property has a type of
	// "Flag". When true, use the GetActivityStreamsFlag and
	// SetActivityStreamsFlag methods to access and set this property.
	IsActivityStreamsFlag() bool
	// IsActivityStreamsFollow returns true if this property has a type of
	// "Follow". When true, use the GetActivityStreamsFollow and
	// SetActivityStreamsFollow methods to access and set this property.
	IsActivityStreamsFollow() bool
	// IsActivityStreamsGroup returns true if this property has a type of
	// "Group". When true, use the GetActivityStreamsGroup and
	// SetActivityStreamsGroup methods to access and set this property.
	IsActivityStreamsGroup() bool
	// IsActivityStreamsIgnore returns true if this property has a type of
	// "Ignore". When true, use the GetActivityStreamsIgnore and
	// SetActivityStreamsIgnore methods to access and set this property.
	IsActivityStreamsIgnore() bool
	// IsActivityStreamsImage returns true if this property has a type of
	// "Image". When true, use the GetActivityStreamsImage and
	// SetActivityStreamsImage methods to access and set this property.
	IsActivityStreamsImage() bool
	// IsActivityStreamsIntransitiveActivity returns true if this property has
	// a type of "IntransitiveActivity". When true, use the
	// GetActivityStreamsIntransitiveActivity and
	// SetActivityStreamsIntransitiveActivity methods to access and set
	// this property.
	IsActivityStreamsIntransitiveActivity() bool
	// IsActivityStreamsInvite returns true if this property has a type of
	// "Invite". When true, use the GetActivityStreamsInvite and
	// SetActivityStreamsInvite methods to access and set this property.
	IsActivityStreamsInvite() bool
	// IsActivityStreamsJoin returns true if this property has a type of
	// "Join". When true, use the GetActivityStreamsJoin and
	// SetActivityStreamsJoin methods to access and set this property.
	IsActivityStreamsJoin() bool
	// IsActivityStreamsLeave returns true if this property has a type of
	// "Leave". When true, use the GetActivityStreamsLeave and
	// SetActivityStreamsLeave methods to access and set this property.
	IsActivityStreamsLeave() bool
	// IsActivityStreamsLike returns true if this property has a type of
	// "Like". When true, use the GetActivityStreamsLike and
	// SetActivityStreamsLike methods to access and set this property.
	IsActivityStreamsLike() bool
	// IsActivityStreamsListen returns true if this property has a type of
	// "Listen". When true, use the GetActivityStreamsListen and
	// SetActivityStreamsListen methods to access and set this property.
	IsActivityStreamsListen() bool
	// IsActivityStreamsMove returns true if this property has a type of
	// "Move". When true, use the GetActivityStreamsMove and
	// SetActivityStreamsMove methods to access and set this property.
	IsActivityStreamsMove() bool
	// IsActivityStreamsNote returns true if this property has a type of
	// "Note". When true, use the GetActivityStreamsNote and
	// SetActivityStreamsNote methods to access and set this property.
	IsActivityStreamsNote() bool
	// IsActivityStreamsObject returns true if this property has a type of
	// "Object". When true, use the GetActivityStreamsObject and
	// SetActivityStreamsObject methods to access and set this property.
	IsActivityStreamsObject() bool
	// IsActivityStreamsOffer returns true if this property has a type of
	// "Offer". When true, use the GetActivityStreamsOffer and
	// SetActivityStreamsOffer methods to access and set this property.
	IsActivityStreamsOffer() bool
	// IsActivityStreamsOrderedCollection returns true if this property has a
	// type of "OrderedCollection". When true, use the
	// GetActivityStreamsOrderedCollection and
	// SetActivityStreamsOrderedCollection methods to access and set this
	// property.
	IsActivityStreamsOrderedCollection() bool
	// IsActivityStreamsOrderedCollectionPage returns true if this property
	// has a type of "OrderedCollectionPage". When true, use the
	// GetActivityStreamsOrderedCollectionPage and
	// SetActivityStreamsOrderedCollectionPage methods to access and set
	// this property.
	IsActivityStreamsOrderedCollectionPage() bool
	// IsActivityStreamsOrganization returns true if this property has a type
	// of "Organization". When true, use the
	// GetActivityStreamsOrganization and SetActivityStreamsOrganization
	// methods to access and set this property.
	IsActivityStreamsOrganization() bool
	// IsActivityStreamsPage returns true if this property has a type of
	// "Page". When true, use the GetActivityStreamsPage and
	// SetActivityStreamsPage methods to access and set this property.
	IsActivityStreamsPage() bool
	// IsActivityStreamsPerson returns true if this property has a type of
	// "Person". When true, use the GetActivityStreamsPerson and
	// SetActivityStreamsPerson methods to access and set this property.
	IsActivityStreamsPerson() bool
	// IsActivityStreamsPlace returns true if this property has a type of
	// "Place". When true, use the GetActivityStreamsPlace and
	// SetActivityStreamsPlace methods to access and set this property.
	IsActivityStreamsPlace() bool
	// IsActivityStreamsProfile returns true if this property has a type of
	// "Profile". When true, use the GetActivityStreamsProfile and
	// SetActivityStreamsProfile methods to access and set this property.
	IsActivityStreamsProfile() bool
	// IsActivityStreamsQuestion returns true if this property has a type of
	// "Question". When true, use the GetActivityStreamsQuestion and
	// SetActivityStreamsQuestion methods to access and set this property.
	IsActivityStreamsQuestion() bool
	// IsActivityStreamsRead returns true if this property has a type of
	// "Read". When true, use the GetActivityStreamsRead and
	// SetActivityStreamsRead methods to access and set this property.
	IsActivityStreamsRead() bool
	// IsActivityStreamsReject returns true if this property has a type of
	// "Reject". When true, use the GetActivityStreamsReject and
	// SetActivityStreamsReject methods to access and set this property.
	IsActivityStreamsReject() bool
	// IsActivityStreamsRelationship returns true if this property has a type
	// of "Relationship". When true, use the
	// GetActivityStreamsRelationship and SetActivityStreamsRelationship
	// methods to access and set this property.
	IsActivityStreamsRelationship() bool
	// IsActivityStreamsRemove returns true if this property has a type of
	// "Remove". When true, use the GetActivityStreamsRemove and
	// SetActivityStreamsRemove methods to access and set this property.
	IsActivityStreamsRemove() bool
	// IsActivityStreamsService returns true if this property has a type of
	// "Service". When true, use the GetActivityStreamsService and
	// SetActivityStreamsService methods to access and set this property.
	IsActivityStreamsService() bool
	// IsActivityStreamsTentativeAccept returns true if this property has a
	// type of "TentativeAccept". When true, use the
	// GetActivityStreamsTentativeAccept and
	// SetActivityStreamsTentativeAccept methods to access and set this
	// property.
	IsActivityStreamsTentativeAccept() bool
	// IsActivityStreamsTentativeReject returns true if this property has a
	// type of "TentativeReject". When true, use the
	// GetActivityStreamsTentativeReject and
	// SetActivityStreamsTentativeReject methods to access and set this
	// property.
	IsActivityStreamsTentativeReject() bool
	// IsActivityStreamsTombstone returns true if this property has a type of
	// "Tombstone". When true, use the GetActivityStreamsTombstone and
	// SetActivityStreamsTombstone methods to access and set this property.
	IsActivityStreamsTombstone() bool
	// IsActivityStreamsTravel returns true if this property has a type of
	// "Travel". When true, use the GetActivityStreamsTravel and
	// SetActivityStreamsTravel methods to access and set this property.
	IsActivityStreamsTravel() bool
	// IsActivityStreamsUndo returns true if this property has a type of
	// "Undo". When true, use the GetActivityStreamsUndo and
	// SetActivityStreamsUndo methods to access and set this property.
	IsActivityStreamsUndo() bool
	// IsActivityStreamsUpdate returns true if this property has a type of
	// "Update". When true, use the GetActivityStreamsUpdate and
	// SetActivityStreamsUpdate methods to access and set this property.
	IsActivityStreamsUpdate() bool
	// IsActivityStreamsVideo returns true if this property has a type of
	// "Video". When true, use the GetActivityStreamsVideo and
	// SetActivityStreamsVideo methods to access and set this property.
	IsActivityStreamsVideo() bool
	// IsActivityStreamsView returns true if this property has a type of
	// "View". When true, use the GetActivityStreamsView and
	// SetActivityStreamsView methods to access and set this property.
	IsActivityStreamsView() bool
	// IsForgeFedBranch returns true if this property has a type of "Branch".
	// When true, use the GetForgeFedBranch and SetForgeFedBranch methods
	// to access and set this property.
	IsForgeFedBranch() bool
	// IsForgeFedCommit returns true if this property has a type of "Commit".
	// When true, use the GetForgeFedCommit and SetForgeFedCommit methods
	// to access and set this property.
	IsForgeFedCommit() bool
	// IsForgeFedPush returns true if this property has a type of "Push". When
	// true, use the GetForgeFedPush and SetForgeFedPush methods to access
	// and set this property.
	IsForgeFedPush() bool
	// IsForgeFedRepository returns true if this property has a type of
	// "Repository". When true, use the GetForgeFedRepository and
	// SetForgeFedRepository methods to access and set this property.
	IsForgeFedRepository() bool
	// IsForgeFedTicket returns true if this property has a type of "Ticket".
	// When true, use the GetForgeFedTicket and SetForgeFedTicket methods
	// to access and set this property.
	IsForgeFedTicket() bool
	// IsForgeFedTicketDependency returns true if this property has a type of
	// "TicketDependency". When true, use the GetForgeFedTicketDependency
	// and SetForgeFedTicketDependency methods to access and set this
	// property.
	IsForgeFedTicketDependency() bool
	// IsIRI returns true if this property is an IRI. When true, use GetIRI
	// and SetIRI to access and set this property
	IsIRI() bool
	// IsTootEmoji returns true if this property has a type of "Emoji". When
	// true, use the GetTootEmoji and SetTootEmoji methods to access and
	// set this property.
	IsTootEmoji() bool
	// IsTootIdentityProof returns true if this property has a type of
	// "IdentityProof". When true, use the GetTootIdentityProof and
	// SetTootIdentityProof methods to access and set this property.
	IsTootIdentityProof() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ForgeFedCommittedByProperty) bool
	// Name returns the name of this property: "committedBy".
	Name() string
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// SetActivityStreamsAccept sets the value of this property. Calling
	// IsActivityStreamsAccept afterwards returns true.
	SetActivityStreamsAccept(v ActivityStreamsAccept)
	// SetActivityStreamsActivity sets the value of this property. Calling
	// IsActivityStreamsActivity afterwards returns true.
	SetActivityStreamsActivity(v ActivityStreamsActivity)
	// SetActivityStreamsAdd sets the value of this property. Calling
	// IsActivityStreamsAdd afterwards returns true.
	SetActivityStreamsAdd(v ActivityStreamsAdd)
	// SetActivityStreamsAnnounce sets the value of this property. Calling
	// IsActivityStreamsAnnounce afterwards returns true.
	SetActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// SetActivityStreamsApplication sets the value of this property. Calling
	// IsActivityStreamsApplication afterwards returns true.
	SetActivityStreamsApplication(v ActivityStreamsApplication)
	// SetActivityStreamsArrive sets the value of this property. Calling
	// IsActivityStreamsArrive afterwards returns true.
	SetActivityStreamsArrive(v ActivityStreamsArrive)
	// SetActivityStreamsArticle sets the value of this property. Calling
	// IsActivityStreamsArticle afterwards returns true.
	SetActivityStreamsArticle(v ActivityStreamsArticle)
	// SetActivityStreamsAudio sets the value of this property. Calling
	// IsActivityStreamsAudio afterwards returns true.
	SetActivityStreamsAudio(v ActivityStreamsAudio)
	// SetActivityStreamsBlock sets the value of this property. Calling
	// IsActivityStreamsBlock afterwards returns true.
	SetActivityStreamsBlock(v ActivityStreamsBlock)
	// SetActivityStreamsCollection sets the value of this property. Calling
	// IsActivityStreamsCollection afterwards returns true.
	SetActivityStreamsCollection(v ActivityStreamsCollection)
	// SetActivityStreamsCollectionPage sets the value of this property.
	// Calling IsActivityStreamsCollectionPage afterwards returns true.
	SetActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// SetActivityStreamsCreate sets the value of this property. Calling
	// IsActivityStreamsCreate afterwards returns true.
	SetActivityStreamsCreate(v ActivityStreamsCreate)
	// SetActivityStreamsDelete sets the value of this property. Calling
	// IsActivityStreamsDelete afterwards returns true.
	SetActivityStreamsDelete(v ActivityStreamsDelete)
	// SetActivityStreamsDislike sets the value of this property. Calling
	// IsActivityStreamsDislike afterwards returns true.
	SetActivityStreamsDislike(v ActivityStreamsDislike)
	// SetActivityStreamsDocument sets the value of this property. Calling
	// IsActivityStreamsDocument afterwards returns true.
	SetActivityStreamsDocument(v ActivityStreamsDocument)
	// SetActivityStreamsEvent sets the value of this property. Calling
	// IsActivityStreamsEvent afterwards returns true.
	SetActivityStreamsEvent(v ActivityStreamsEvent)
	// SetActivityStreamsFlag sets the value of this property. Calling
	// IsActivityStreamsFlag afterwards returns true.
	SetActivityStreamsFlag(v ActivityStreamsFlag)
	// SetActivityStreamsFollow sets the value of this property. Calling
	// IsActivityStreamsFollow afterwards returns true.
	SetActivityStreamsFollow(v ActivityStreamsFollow)
	// SetActivityStreamsGroup sets the value of this property. Calling
	// IsActivityStreamsGroup afterwards returns true.
	SetActivityStreamsGroup(v ActivityStreamsGroup)
	// SetActivityStreamsIgnore sets the value of this property. Calling
	// IsActivityStreamsIgnore afterwards returns true.
	SetActivityStreamsIgnore(v ActivityStreamsIgnore)
	// SetActivityStreamsImage sets the value of this property. Calling
	// IsActivityStreamsImage afterwards returns true.
	SetActivityStreamsImage(v ActivityStreamsImage)
	// SetActivityStreamsIntransitiveActivity sets the value of this property.
	// Calling IsActivityStreamsIntransitiveActivity afterwards returns
	// true.
	SetActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// SetActivityStreamsInvite sets the value of this property. Calling
	// IsActivityStreamsInvite afterwards returns true.
	SetActivityStreamsInvite(v ActivityStreamsInvite)
	// SetActivityStreamsJoin sets the value of this property. Calling
	// IsActivityStreamsJoin afterwards returns true.
	SetActivityStreamsJoin(v ActivityStreamsJoin)
	// SetActivityStreamsLeave sets the value of this property. Calling
	// IsActivityStreamsLeave afterwards returns true.
	SetActivityStreamsLeave(v ActivityStreamsLeave)
	// SetActivityStreamsLike sets the value of this property. Calling
	// IsActivityStreamsLike afterwards returns true.
	SetActivityStreamsLike(v ActivityStreamsLike)
	// SetActivityStreamsListen sets the value of this property. Calling
	// IsActivityStreamsListen afterwards returns true.
	SetActivityStreamsListen(v ActivityStreamsListen)
	// SetActivityStreamsMove sets the value of this property. Calling
	// IsActivityStreamsMove afterwards returns true.
	SetActivityStreamsMove(v ActivityStreamsMove)
	// SetActivityStreamsNote sets the value of this property. Calling
	// IsActivityStreamsNote afterwards returns true.
	SetActivityStreamsNote(v ActivityStreamsNote)
	// SetActivityStreamsObject sets the value of this property. Calling
	// IsActivityStreamsObject afterwards returns true.
	SetActivityStreamsObject(v ActivityStreamsObject)
	// SetActivityStreamsOffer sets the value of this property. Calling
	// IsActivityStreamsOffer afterwards returns true.
	SetActivityStreamsOffer(v ActivityStreamsOffer)
	// SetActivityStreamsOrderedCollection sets the value of this property.
	// Calling IsActivityStreamsOrderedCollection afterwards returns true.
	SetActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// SetActivityStreamsOrderedCollectionPage sets the value of this
	// property. Calling IsActivityStreamsOrderedCollectionPage afterwards
	// returns true.
	SetActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// SetActivityStreamsOrganization sets the value of this property. Calling
	// IsActivityStreamsOrganization afterwards returns true.
	SetActivityStreamsOrganization(v ActivityStreamsOrganization)
	// SetActivityStreamsPage sets the value of this property. Calling
	// IsActivityStreamsPage afterwards returns true.
	SetActivityStreamsPage(v ActivityStreamsPage)
	// SetActivityStreamsPerson sets the value of this property. Calling
	// IsActivityStreamsPerson afterwards returns true.
	SetActivityStreamsPerson(v ActivityStreamsPerson)
	// SetActivityStreamsPlace sets the value of this property. Calling
	// IsActivityStreamsPlace afterwards returns true.
	SetActivityStreamsPlace(v ActivityStreamsPlace)
	// SetActivityStreamsProfile sets the value of this property. Calling
	// IsActivityStreamsProfile afterwards returns true.
	SetActivityStreamsProfile(v ActivityStreamsProfile)
	// SetActivityStreamsQuestion sets the value of this property. Calling
	// IsActivityStreamsQuestion afterwards returns true.
	SetActivityStreamsQuestion(v ActivityStreamsQuestion)
	// SetActivityStreamsRead sets the value of this property. Calling
	// IsActivityStreamsRead afterwards returns true.
	SetActivityStreamsRead(v ActivityStreamsRead)
	// SetActivityStreamsReject sets the value of this property. Calling
	// IsActivityStreamsReject afterwards returns true.
	SetActivityStreamsReject(v ActivityStreamsReject)
	// SetActivityStreamsRelationship sets the value of this property. Calling
	// IsActivityStreamsRelationship afterwards returns true.
	SetActivityStreamsRelationship(v ActivityStreamsRelationship)
	// SetActivityStreamsRemove sets the value of this property. Calling
	// IsActivityStreamsRemove afterwards returns true.
	SetActivityStreamsRemove(v ActivityStreamsRemove)
	// SetActivityStreamsService sets the value of this property. Calling
	// IsActivityStreamsService afterwards returns true.
	SetActivityStreamsService(v ActivityStreamsService)
	// SetActivityStreamsTentativeAccept sets the value of this property.
	// Calling IsActivityStreamsTentativeAccept afterwards returns true.
	SetActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// SetActivityStreamsTentativeReject sets the value of this property.
	// Calling IsActivityStreamsTentativeReject afterwards returns true.
	SetActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// SetActivityStreamsTombstone sets the value of this property. Calling
	// IsActivityStreamsTombstone afterwards returns true.
	SetActivityStreamsTombstone(v ActivityStreamsTombstone)
	// SetActivityStreamsTravel sets the value of this property. Calling
	// IsActivityStreamsTravel afterwards returns true.
	SetActivityStreamsTravel(v ActivityStreamsTravel)
	// SetActivityStreamsUndo sets the value of this property. Calling
	// IsActivityStreamsUndo afterwards returns true.
	SetActivityStreamsUndo(v ActivityStreamsUndo)
	// SetActivityStreamsUpdate sets the value of this property. Calling
	// IsActivityStreamsUpdate afterwards returns true.
	SetActivityStreamsUpdate(v ActivityStreamsUpdate)
	// SetActivityStreamsVideo sets the value of this property. Calling
	// IsActivityStreamsVideo afterwards returns true.
	SetActivityStreamsVideo(v ActivityStreamsVideo)
	// SetActivityStreamsView sets the value of this property. Calling
	// IsActivityStreamsView afterwards returns true.
	SetActivityStreamsView(v ActivityStreamsView)
	// SetForgeFedBranch sets the value of this property. Calling
	// IsForgeFedBranch afterwards returns true.
	SetForgeFedBranch(v ForgeFedBranch)
	// SetForgeFedCommit sets the value of this property. Calling
	// IsForgeFedCommit afterwards returns true.
	SetForgeFedCommit(v ForgeFedCommit)
	// SetForgeFedPush sets the value of this property. Calling IsForgeFedPush
	// afterwards returns true.
	SetForgeFedPush(v ForgeFedPush)
	// SetForgeFedRepository sets the value of this property. Calling
	// IsForgeFedRepository afterwards returns true.
	SetForgeFedRepository(v ForgeFedRepository)
	// SetForgeFedTicket sets the value of this property. Calling
	// IsForgeFedTicket afterwards returns true.
	SetForgeFedTicket(v ForgeFedTicket)
	// SetForgeFedTicketDependency sets the value of this property. Calling
	// IsForgeFedTicketDependency afterwards returns true.
	SetForgeFedTicketDependency(v ForgeFedTicketDependency)
	// SetIRI sets the value of this property. Calling IsIRI afterwards
	// returns true.
	SetIRI(v *url.URL)
	// SetTootEmoji sets the value of this property. Calling IsTootEmoji
	// afterwards returns true.
	SetTootEmoji(v TootEmoji)
	// SetTootIdentityProof sets the value of this property. Calling
	// IsTootIdentityProof afterwards returns true.
	SetTootIdentityProof(v TootIdentityProof)
	// SetType attempts to set the property for the arbitrary type. Returns an
	// error if it is not a valid type to set on this property.
	SetType(t Type) error
}

Identifies the actor (usually a person, but could be something else, e.g. a bot) that added a set of changes to the version-control Repository. Sometimes the author of the changes and the committer of those changes aren’t the same actor, in which case the committedBy property can be used to specify who added the changes to the repository. For example, when applying a patch to a repository, e.g. a Git repository, the author would be the person who made the patch, and the committer would be the person who applied the patch to their copy of the repository.

type ForgeFedCommittedProperty

type ForgeFedCommittedProperty interface {
	// Clear ensures no value of this property is set. Calling
	// IsXMLSchemaDateTime afterwards will return false.
	Clear()
	// Get returns the value of this property. When IsXMLSchemaDateTime
	// returns false, Get will return any arbitrary value.
	Get() time.Time
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return any arbitrary value.
	GetIRI() *url.URL
	// HasAny returns true if the value or IRI is set.
	HasAny() bool
	// IsIRI returns true if this property is an IRI.
	IsIRI() bool
	// IsXMLSchemaDateTime returns true if this property is set and not an IRI.
	IsXMLSchemaDateTime() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ForgeFedCommittedProperty) bool
	// Name returns the name of this property: "committed".
	Name() string
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// Set sets the value of this property. Calling IsXMLSchemaDateTime
	// afterwards will return true.
	Set(v time.Time)
	// SetIRI sets the value of this property. Calling IsIRI afterwards will
	// return true.
	SetIRI(v *url.URL)
}

Specifies the time that a set of changes was committed into the Repository and became a Commit in it. This can be different from the time the set of changes was produced, e.g. if one person creates a patch and sends to another, and the other person then applies the patch to their copy of the repository. We call the former event "created" and the latter event "committed", and this latter event is specified by the committed property.

type ForgeFedDependantsProperty

type ForgeFedDependantsProperty interface {
	// Clear ensures no value of this property is set. Calling HasAny or any
	// of the 'Is' methods afterwards will return false.
	Clear()
	// GetActivityStreamsOrderedCollection returns the value of this property.
	// When IsActivityStreamsOrderedCollection returns false,
	// GetActivityStreamsOrderedCollection will return an arbitrary value.
	GetActivityStreamsOrderedCollection() ActivityStreamsOrderedCollection
	// GetActivityStreamsOrderedCollectionPage returns the value of this
	// property. When IsActivityStreamsOrderedCollectionPage returns
	// false, GetActivityStreamsOrderedCollectionPage will return an
	// arbitrary value.
	GetActivityStreamsOrderedCollectionPage() ActivityStreamsOrderedCollectionPage
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return an arbitrary value.
	GetIRI() *url.URL
	// GetType returns the value in this property as a Type. Returns nil if
	// the value is not an ActivityStreams type, such as an IRI or another
	// value.
	GetType() Type
	// HasAny returns true if any of the different values is set.
	HasAny() bool
	// IsActivityStreamsOrderedCollection returns true if this property has a
	// type of "OrderedCollection". When true, use the
	// GetActivityStreamsOrderedCollection and
	// SetActivityStreamsOrderedCollection methods to access and set this
	// property.
	IsActivityStreamsOrderedCollection() bool
	// IsActivityStreamsOrderedCollectionPage returns true if this property
	// has a type of "OrderedCollectionPage". When true, use the
	// GetActivityStreamsOrderedCollectionPage and
	// SetActivityStreamsOrderedCollectionPage methods to access and set
	// this property.
	IsActivityStreamsOrderedCollectionPage() bool
	// IsIRI returns true if this property is an IRI. When true, use GetIRI
	// and SetIRI to access and set this property
	IsIRI() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ForgeFedDependantsProperty) bool
	// Name returns the name of this property: "dependants".
	Name() string
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// SetActivityStreamsOrderedCollection sets the value of this property.
	// Calling IsActivityStreamsOrderedCollection afterwards returns true.
	SetActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// SetActivityStreamsOrderedCollectionPage sets the value of this
	// property. Calling IsActivityStreamsOrderedCollectionPage afterwards
	// returns true.
	SetActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// SetIRI sets the value of this property. Calling IsIRI afterwards
	// returns true.
	SetIRI(v *url.URL)
	// SetType attempts to set the property for the arbitrary type. Returns an
	// error if it is not a valid type to set on this property.
	SetType(t Type) error
}

Identifies a Collection of TicketDependency which specify tickets that depends on this Ticket, i.e. this ticket is the object of the dependsOn relationship. Often called "reverse dependencies".

type ForgeFedDependedByProperty

type ForgeFedDependedByProperty interface {
	// AppendForgeFedTicket appends a Ticket value to the back of a list of
	// the property "dependedBy". Invalidates iterators that are
	// traversing using Prev.
	AppendForgeFedTicket(v ForgeFedTicket)
	// AppendIRI appends an IRI value to the back of a list of the property
	// "dependedBy"
	AppendIRI(v *url.URL)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "dependedBy". Invalidates iterators that are
	// traversing using Prev. Returns an error if the type is not a valid
	// one to set for this property.
	AppendType(t Type) error
	// At returns the property value for the specified index. Panics if the
	// index is out of bounds.
	At(index int) ForgeFedDependedByPropertyIterator
	// Begin returns the first iterator, or nil if empty. Can be used with the
	// iterator's Next method and this property's End method to iterate
	// from front to back through all values.
	Begin() ForgeFedDependedByPropertyIterator
	// Empty returns returns true if there are no elements.
	Empty() bool
	// End returns beyond-the-last iterator, which is nil. Can be used with
	// the iterator's Next method and this property's Begin method to
	// iterate from front to back through all values.
	End() ForgeFedDependedByPropertyIterator
	// InsertForgeFedTicket inserts a Ticket value at the specified index for
	// a property "dependedBy". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertForgeFedTicket(idx int, v ForgeFedTicket)
	// Insert inserts an IRI value at the specified index for a property
	// "dependedBy". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertIRI(idx int, v *url.URL)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "dependedBy". Invalidates all iterators. Returns an
	// error if the type is not a valid one to set for this property.
	InsertType(idx int, t Type) error
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API method specifically needed only for alternate
	// implementations for go-fed. Applications should not use this
	// method. Panics if the index is out of bounds.
	KindIndex(idx int) int
	// Len returns the number of values that exist for the "dependedBy"
	// property.
	Len() (length int)
	// Less computes whether another property is less than this one. Mixing
	// types results in a consistent but arbitrary ordering
	Less(i, j int) bool
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ForgeFedDependedByProperty) bool
	// Name returns the name of this property ("dependedBy") with any alias.
	Name() string
	// PrependForgeFedTicket prepends a Ticket value to the front of a list of
	// the property "dependedBy". Invalidates all iterators.
	PrependForgeFedTicket(v ForgeFedTicket)
	// PrependIRI prepends an IRI value to the front of a list of the property
	// "dependedBy".
	PrependIRI(v *url.URL)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "dependedBy". Invalidates all iterators. Returns an
	// error if the type is not a valid one to set for this property.
	PrependType(t Type) error
	// Remove deletes an element at the specified index from a list of the
	// property "dependedBy", regardless of its type. Panics if the index
	// is out of bounds. Invalidates all iterators.
	Remove(idx int)
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// Set sets a Ticket value to be at the specified index for the property
	// "dependedBy". Panics if the index is out of bounds. Invalidates all
	// iterators.
	Set(idx int, v ForgeFedTicket)
	// SetIRI sets an IRI value to be at the specified index for the property
	// "dependedBy". Panics if the index is out of bounds.
	SetIRI(idx int, v *url.URL)
	// SetType sets an arbitrary type value to the specified index of the
	// property "dependedBy". Invalidates all iterators. Returns an error
	// if the type is not a valid one to set for this property. Panics if
	// the index is out of bounds.
	SetType(idx int, t Type) error
	// Swap swaps the location of values at two indices for the "dependedBy"
	// property.
	Swap(i, j int)
}

Identifies one or more tickets which depend on this Ticket, i.e. they can’t be resolved without this tickets being resolved too.

type ForgeFedDependedByPropertyIterator

type ForgeFedDependedByPropertyIterator interface {
	// Get returns the value of this property. When IsForgeFedTicket returns
	// false, Get will return any arbitrary value.
	Get() ForgeFedTicket
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return any arbitrary value.
	GetIRI() *url.URL
	// GetType returns the value in this property as a Type. Returns nil if
	// the value is not an ActivityStreams type, such as an IRI or another
	// value.
	GetType() Type
	// HasAny returns true if the value or IRI is set.
	HasAny() bool
	// IsForgeFedTicket returns true if this property is set and not an IRI.
	IsForgeFedTicket() bool
	// IsIRI returns true if this property is an IRI.
	IsIRI() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ForgeFedDependedByPropertyIterator) bool
	// Name returns the name of this property: "ForgeFedDependedBy".
	Name() string
	// Next returns the next iterator, or nil if there is no next iterator.
	Next() ForgeFedDependedByPropertyIterator
	// Prev returns the previous iterator, or nil if there is no previous
	// iterator.
	Prev() ForgeFedDependedByPropertyIterator
	// Set sets the value of this property. Calling IsForgeFedTicket
	// afterwards will return true.
	Set(v ForgeFedTicket)
	// SetIRI sets the value of this property. Calling IsIRI afterwards will
	// return true.
	SetIRI(v *url.URL)
	// SetType attempts to set the property for the arbitrary type. Returns an
	// error if it is not a valid type to set on this property.
	SetType(t Type) error
}

ForgeFedDependedByPropertyIterator represents a single value for the "dependedBy" property.

type ForgeFedDependenciesProperty

type ForgeFedDependenciesProperty interface {
	// Clear ensures no value of this property is set. Calling HasAny or any
	// of the 'Is' methods afterwards will return false.
	Clear()
	// GetActivityStreamsOrderedCollection returns the value of this property.
	// When IsActivityStreamsOrderedCollection returns false,
	// GetActivityStreamsOrderedCollection will return an arbitrary value.
	GetActivityStreamsOrderedCollection() ActivityStreamsOrderedCollection
	// GetActivityStreamsOrderedCollectionPage returns the value of this
	// property. When IsActivityStreamsOrderedCollectionPage returns
	// false, GetActivityStreamsOrderedCollectionPage will return an
	// arbitrary value.
	GetActivityStreamsOrderedCollectionPage() ActivityStreamsOrderedCollectionPage
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return an arbitrary value.
	GetIRI() *url.URL
	// GetType returns the value in this property as a Type. Returns nil if
	// the value is not an ActivityStreams type, such as an IRI or another
	// value.
	GetType() Type
	// HasAny returns true if any of the different values is set.
	HasAny() bool
	// IsActivityStreamsOrderedCollection returns true if this property has a
	// type of "OrderedCollection". When true, use the
	// GetActivityStreamsOrderedCollection and
	// SetActivityStreamsOrderedCollection methods to access and set this
	// property.
	IsActivityStreamsOrderedCollection() bool
	// IsActivityStreamsOrderedCollectionPage returns true if this property
	// has a type of "OrderedCollectionPage". When true, use the
	// GetActivityStreamsOrderedCollectionPage and
	// SetActivityStreamsOrderedCollectionPage methods to access and set
	// this property.
	IsActivityStreamsOrderedCollectionPage() bool
	// IsIRI returns true if this property is an IRI. When true, use GetIRI
	// and SetIRI to access and set this property
	IsIRI() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ForgeFedDependenciesProperty) bool
	// Name returns the name of this property: "dependencies".
	Name() string
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// SetActivityStreamsOrderedCollection sets the value of this property.
	// Calling IsActivityStreamsOrderedCollection afterwards returns true.
	SetActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// SetActivityStreamsOrderedCollectionPage sets the value of this
	// property. Calling IsActivityStreamsOrderedCollectionPage afterwards
	// returns true.
	SetActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// SetIRI sets the value of this property. Calling IsIRI afterwards
	// returns true.
	SetIRI(v *url.URL)
	// SetType attempts to set the property for the arbitrary type. Returns an
	// error if it is not a valid type to set on this property.
	SetType(t Type) error
}

Identifies a Collection of TicketDependency which specify tickets that this Ticket depends on, i.e. this ticket is the subject of the dependsOn relationship.

type ForgeFedDependsOnProperty

type ForgeFedDependsOnProperty interface {
	// AppendForgeFedTicket appends a Ticket value to the back of a list of
	// the property "dependsOn". Invalidates iterators that are traversing
	// using Prev.
	AppendForgeFedTicket(v ForgeFedTicket)
	// AppendIRI appends an IRI value to the back of a list of the property
	// "dependsOn"
	AppendIRI(v *url.URL)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "dependsOn". Invalidates iterators that are traversing
	// using Prev. Returns an error if the type is not a valid one to set
	// for this property.
	AppendType(t Type) error
	// At returns the property value for the specified index. Panics if the
	// index is out of bounds.
	At(index int) ForgeFedDependsOnPropertyIterator
	// Begin returns the first iterator, or nil if empty. Can be used with the
	// iterator's Next method and this property's End method to iterate
	// from front to back through all values.
	Begin() ForgeFedDependsOnPropertyIterator
	// Empty returns returns true if there are no elements.
	Empty() bool
	// End returns beyond-the-last iterator, which is nil. Can be used with
	// the iterator's Next method and this property's Begin method to
	// iterate from front to back through all values.
	End() ForgeFedDependsOnPropertyIterator
	// InsertForgeFedTicket inserts a Ticket value at the specified index for
	// a property "dependsOn". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertForgeFedTicket(idx int, v ForgeFedTicket)
	// Insert inserts an IRI value at the specified index for a property
	// "dependsOn". Existing elements at that index and higher are shifted
	// back once. Invalidates all iterators.
	InsertIRI(idx int, v *url.URL)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "dependsOn". Invalidates all iterators. Returns an
	// error if the type is not a valid one to set for this property.
	InsertType(idx int, t Type) error
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API method specifically needed only for alternate
	// implementations for go-fed. Applications should not use this
	// method. Panics if the index is out of bounds.
	KindIndex(idx int) int
	// Len returns the number of values that exist for the "dependsOn"
	// property.
	Len() (length int)
	// Less computes whether another property is less than this one. Mixing
	// types results in a consistent but arbitrary ordering
	Less(i, j int) bool
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ForgeFedDependsOnProperty) bool
	// Name returns the name of this property ("dependsOn") with any alias.
	Name() string
	// PrependForgeFedTicket prepends a Ticket value to the front of a list of
	// the property "dependsOn". Invalidates all iterators.
	PrependForgeFedTicket(v ForgeFedTicket)
	// PrependIRI prepends an IRI value to the front of a list of the property
	// "dependsOn".
	PrependIRI(v *url.URL)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "dependsOn". Invalidates all iterators. Returns an
	// error if the type is not a valid one to set for this property.
	PrependType(t Type) error
	// Remove deletes an element at the specified index from a list of the
	// property "dependsOn", regardless of its type. Panics if the index
	// is out of bounds. Invalidates all iterators.
	Remove(idx int)
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// Set sets a Ticket value to be at the specified index for the property
	// "dependsOn". Panics if the index is out of bounds. Invalidates all
	// iterators.
	Set(idx int, v ForgeFedTicket)
	// SetIRI sets an IRI value to be at the specified index for the property
	// "dependsOn". Panics if the index is out of bounds.
	SetIRI(idx int, v *url.URL)
	// SetType sets an arbitrary type value to the specified index of the
	// property "dependsOn". Invalidates all iterators. Returns an error
	// if the type is not a valid one to set for this property. Panics if
	// the index is out of bounds.
	SetType(idx int, t Type) error
	// Swap swaps the location of values at two indices for the "dependsOn"
	// property.
	Swap(i, j int)
}

Identifies one or more tickets on which this Ticket depends, i.e. it can’t be resolved without those tickets being resolved too.

type ForgeFedDependsOnPropertyIterator

type ForgeFedDependsOnPropertyIterator interface {
	// Get returns the value of this property. When IsForgeFedTicket returns
	// false, Get will return any arbitrary value.
	Get() ForgeFedTicket
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return any arbitrary value.
	GetIRI() *url.URL
	// GetType returns the value in this property as a Type. Returns nil if
	// the value is not an ActivityStreams type, such as an IRI or another
	// value.
	GetType() Type
	// HasAny returns true if the value or IRI is set.
	HasAny() bool
	// IsForgeFedTicket returns true if this property is set and not an IRI.
	IsForgeFedTicket() bool
	// IsIRI returns true if this property is an IRI.
	IsIRI() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ForgeFedDependsOnPropertyIterator) bool
	// Name returns the name of this property: "ForgeFedDependsOn".
	Name() string
	// Next returns the next iterator, or nil if there is no next iterator.
	Next() ForgeFedDependsOnPropertyIterator
	// Prev returns the previous iterator, or nil if there is no previous
	// iterator.
	Prev() ForgeFedDependsOnPropertyIterator
	// Set sets the value of this property. Calling IsForgeFedTicket
	// afterwards will return true.
	Set(v ForgeFedTicket)
	// SetIRI sets the value of this property. Calling IsIRI afterwards will
	// return true.
	SetIRI(v *url.URL)
	// SetType attempts to set the property for the arbitrary type. Returns an
	// error if it is not a valid type to set on this property.
	SetType(t Type) error
}

ForgeFedDependsOnPropertyIterator represents a single value for the "dependsOn" property.

type ForgeFedDescriptionProperty

type ForgeFedDescriptionProperty interface {
	// Clear ensures no value of this property is set. Calling HasAny or any
	// of the 'Is' methods afterwards will return false.
	Clear()
	// GetActivityStreamsAccept returns the value of this property. When
	// IsActivityStreamsAccept returns false, GetActivityStreamsAccept
	// will return an arbitrary value.
	GetActivityStreamsAccept() ActivityStreamsAccept
	// GetActivityStreamsActivity returns the value of this property. When
	// IsActivityStreamsActivity returns false, GetActivityStreamsActivity
	// will return an arbitrary value.
	GetActivityStreamsActivity() ActivityStreamsActivity
	// GetActivityStreamsAdd returns the value of this property. When
	// IsActivityStreamsAdd returns false, GetActivityStreamsAdd will
	// return an arbitrary value.
	GetActivityStreamsAdd() ActivityStreamsAdd
	// GetActivityStreamsAnnounce returns the value of this property. When
	// IsActivityStreamsAnnounce returns false, GetActivityStreamsAnnounce
	// will return an arbitrary value.
	GetActivityStreamsAnnounce() ActivityStreamsAnnounce
	// GetActivityStreamsApplication returns the value of this property. When
	// IsActivityStreamsApplication returns false,
	// GetActivityStreamsApplication will return an arbitrary value.
	GetActivityStreamsApplication() ActivityStreamsApplication
	// GetActivityStreamsArrive returns the value of this property. When
	// IsActivityStreamsArrive returns false, GetActivityStreamsArrive
	// will return an arbitrary value.
	GetActivityStreamsArrive() ActivityStreamsArrive
	// GetActivityStreamsArticle returns the value of this property. When
	// IsActivityStreamsArticle returns false, GetActivityStreamsArticle
	// will return an arbitrary value.
	GetActivityStreamsArticle() ActivityStreamsArticle
	// GetActivityStreamsAudio returns the value of this property. When
	// IsActivityStreamsAudio returns false, GetActivityStreamsAudio will
	// return an arbitrary value.
	GetActivityStreamsAudio() ActivityStreamsAudio
	// GetActivityStreamsBlock returns the value of this property. When
	// IsActivityStreamsBlock returns false, GetActivityStreamsBlock will
	// return an arbitrary value.
	GetActivityStreamsBlock() ActivityStreamsBlock
	// GetActivityStreamsCollection returns the value of this property. When
	// IsActivityStreamsCollection returns false,
	// GetActivityStreamsCollection will return an arbitrary value.
	GetActivityStreamsCollection() ActivityStreamsCollection
	// GetActivityStreamsCollectionPage returns the value of this property.
	// When IsActivityStreamsCollectionPage returns false,
	// GetActivityStreamsCollectionPage will return an arbitrary value.
	GetActivityStreamsCollectionPage() ActivityStreamsCollectionPage
	// GetActivityStreamsCreate returns the value of this property. When
	// IsActivityStreamsCreate returns false, GetActivityStreamsCreate
	// will return an arbitrary value.
	GetActivityStreamsCreate() ActivityStreamsCreate
	// GetActivityStreamsDelete returns the value of this property. When
	// IsActivityStreamsDelete returns false, GetActivityStreamsDelete
	// will return an arbitrary value.
	GetActivityStreamsDelete() ActivityStreamsDelete
	// GetActivityStreamsDislike returns the value of this property. When
	// IsActivityStreamsDislike returns false, GetActivityStreamsDislike
	// will return an arbitrary value.
	GetActivityStreamsDislike() ActivityStreamsDislike
	// GetActivityStreamsDocument returns the value of this property. When
	// IsActivityStreamsDocument returns false, GetActivityStreamsDocument
	// will return an arbitrary value.
	GetActivityStreamsDocument() ActivityStreamsDocument
	// GetActivityStreamsEvent returns the value of this property. When
	// IsActivityStreamsEvent returns false, GetActivityStreamsEvent will
	// return an arbitrary value.
	GetActivityStreamsEvent() ActivityStreamsEvent
	// GetActivityStreamsFlag returns the value of this property. When
	// IsActivityStreamsFlag returns false, GetActivityStreamsFlag will
	// return an arbitrary value.
	GetActivityStreamsFlag() ActivityStreamsFlag
	// GetActivityStreamsFollow returns the value of this property. When
	// IsActivityStreamsFollow returns false, GetActivityStreamsFollow
	// will return an arbitrary value.
	GetActivityStreamsFollow() ActivityStreamsFollow
	// GetActivityStreamsGroup returns the value of this property. When
	// IsActivityStreamsGroup returns false, GetActivityStreamsGroup will
	// return an arbitrary value.
	GetActivityStreamsGroup() ActivityStreamsGroup
	// GetActivityStreamsIgnore returns the value of this property. When
	// IsActivityStreamsIgnore returns false, GetActivityStreamsIgnore
	// will return an arbitrary value.
	GetActivityStreamsIgnore() ActivityStreamsIgnore
	// GetActivityStreamsImage returns the value of this property. When
	// IsActivityStreamsImage returns false, GetActivityStreamsImage will
	// return an arbitrary value.
	GetActivityStreamsImage() ActivityStreamsImage
	// GetActivityStreamsIntransitiveActivity returns the value of this
	// property. When IsActivityStreamsIntransitiveActivity returns false,
	// GetActivityStreamsIntransitiveActivity will return an arbitrary
	// value.
	GetActivityStreamsIntransitiveActivity() ActivityStreamsIntransitiveActivity
	// GetActivityStreamsInvite returns the value of this property. When
	// IsActivityStreamsInvite returns false, GetActivityStreamsInvite
	// will return an arbitrary value.
	GetActivityStreamsInvite() ActivityStreamsInvite
	// GetActivityStreamsJoin returns the value of this property. When
	// IsActivityStreamsJoin returns false, GetActivityStreamsJoin will
	// return an arbitrary value.
	GetActivityStreamsJoin() ActivityStreamsJoin
	// GetActivityStreamsLeave returns the value of this property. When
	// IsActivityStreamsLeave returns false, GetActivityStreamsLeave will
	// return an arbitrary value.
	GetActivityStreamsLeave() ActivityStreamsLeave
	// GetActivityStreamsLike returns the value of this property. When
	// IsActivityStreamsLike returns false, GetActivityStreamsLike will
	// return an arbitrary value.
	GetActivityStreamsLike() ActivityStreamsLike
	// GetActivityStreamsListen returns the value of this property. When
	// IsActivityStreamsListen returns false, GetActivityStreamsListen
	// will return an arbitrary value.
	GetActivityStreamsListen() ActivityStreamsListen
	// GetActivityStreamsMove returns the value of this property. When
	// IsActivityStreamsMove returns false, GetActivityStreamsMove will
	// return an arbitrary value.
	GetActivityStreamsMove() ActivityStreamsMove
	// GetActivityStreamsNote returns the value of this property. When
	// IsActivityStreamsNote returns false, GetActivityStreamsNote will
	// return an arbitrary value.
	GetActivityStreamsNote() ActivityStreamsNote
	// GetActivityStreamsObject returns the value of this property. When
	// IsActivityStreamsObject returns false, GetActivityStreamsObject
	// will return an arbitrary value.
	GetActivityStreamsObject() ActivityStreamsObject
	// GetActivityStreamsOffer returns the value of this property. When
	// IsActivityStreamsOffer returns false, GetActivityStreamsOffer will
	// return an arbitrary value.
	GetActivityStreamsOffer() ActivityStreamsOffer
	// GetActivityStreamsOrderedCollection returns the value of this property.
	// When IsActivityStreamsOrderedCollection returns false,
	// GetActivityStreamsOrderedCollection will return an arbitrary value.
	GetActivityStreamsOrderedCollection() ActivityStreamsOrderedCollection
	// GetActivityStreamsOrderedCollectionPage returns the value of this
	// property. When IsActivityStreamsOrderedCollectionPage returns
	// false, GetActivityStreamsOrderedCollectionPage will return an
	// arbitrary value.
	GetActivityStreamsOrderedCollectionPage() ActivityStreamsOrderedCollectionPage
	// GetActivityStreamsOrganization returns the value of this property. When
	// IsActivityStreamsOrganization returns false,
	// GetActivityStreamsOrganization will return an arbitrary value.
	GetActivityStreamsOrganization() ActivityStreamsOrganization
	// GetActivityStreamsPage returns the value of this property. When
	// IsActivityStreamsPage returns false, GetActivityStreamsPage will
	// return an arbitrary value.
	GetActivityStreamsPage() ActivityStreamsPage
	// GetActivityStreamsPerson returns the value of this property. When
	// IsActivityStreamsPerson returns false, GetActivityStreamsPerson
	// will return an arbitrary value.
	GetActivityStreamsPerson() ActivityStreamsPerson
	// GetActivityStreamsPlace returns the value of this property. When
	// IsActivityStreamsPlace returns false, GetActivityStreamsPlace will
	// return an arbitrary value.
	GetActivityStreamsPlace() ActivityStreamsPlace
	// GetActivityStreamsProfile returns the value of this property. When
	// IsActivityStreamsProfile returns false, GetActivityStreamsProfile
	// will return an arbitrary value.
	GetActivityStreamsProfile() ActivityStreamsProfile
	// GetActivityStreamsQuestion returns the value of this property. When
	// IsActivityStreamsQuestion returns false, GetActivityStreamsQuestion
	// will return an arbitrary value.
	GetActivityStreamsQuestion() ActivityStreamsQuestion
	// GetActivityStreamsRead returns the value of this property. When
	// IsActivityStreamsRead returns false, GetActivityStreamsRead will
	// return an arbitrary value.
	GetActivityStreamsRead() ActivityStreamsRead
	// GetActivityStreamsReject returns the value of this property. When
	// IsActivityStreamsReject returns false, GetActivityStreamsReject
	// will return an arbitrary value.
	GetActivityStreamsReject() ActivityStreamsReject
	// GetActivityStreamsRelationship returns the value of this property. When
	// IsActivityStreamsRelationship returns false,
	// GetActivityStreamsRelationship will return an arbitrary value.
	GetActivityStreamsRelationship() ActivityStreamsRelationship
	// GetActivityStreamsRemove returns the value of this property. When
	// IsActivityStreamsRemove returns false, GetActivityStreamsRemove
	// will return an arbitrary value.
	GetActivityStreamsRemove() ActivityStreamsRemove
	// GetActivityStreamsService returns the value of this property. When
	// IsActivityStreamsService returns false, GetActivityStreamsService
	// will return an arbitrary value.
	GetActivityStreamsService() ActivityStreamsService
	// GetActivityStreamsTentativeAccept returns the value of this property.
	// When IsActivityStreamsTentativeAccept returns false,
	// GetActivityStreamsTentativeAccept will return an arbitrary value.
	GetActivityStreamsTentativeAccept() ActivityStreamsTentativeAccept
	// GetActivityStreamsTentativeReject returns the value of this property.
	// When IsActivityStreamsTentativeReject returns false,
	// GetActivityStreamsTentativeReject will return an arbitrary value.
	GetActivityStreamsTentativeReject() ActivityStreamsTentativeReject
	// GetActivityStreamsTombstone returns the value of this property. When
	// IsActivityStreamsTombstone returns false,
	// GetActivityStreamsTombstone will return an arbitrary value.
	GetActivityStreamsTombstone() ActivityStreamsTombstone
	// GetActivityStreamsTravel returns the value of this property. When
	// IsActivityStreamsTravel returns false, GetActivityStreamsTravel
	// will return an arbitrary value.
	GetActivityStreamsTravel() ActivityStreamsTravel
	// GetActivityStreamsUndo returns the value of this property. When
	// IsActivityStreamsUndo returns false, GetActivityStreamsUndo will
	// return an arbitrary value.
	GetActivityStreamsUndo() ActivityStreamsUndo
	// GetActivityStreamsUpdate returns the value of this property. When
	// IsActivityStreamsUpdate returns false, GetActivityStreamsUpdate
	// will return an arbitrary value.
	GetActivityStreamsUpdate() ActivityStreamsUpdate
	// GetActivityStreamsVideo returns the value of this property. When
	// IsActivityStreamsVideo returns false, GetActivityStreamsVideo will
	// return an arbitrary value.
	GetActivityStreamsVideo() ActivityStreamsVideo
	// GetActivityStreamsView returns the value of this property. When
	// IsActivityStreamsView returns false, GetActivityStreamsView will
	// return an arbitrary value.
	GetActivityStreamsView() ActivityStreamsView
	// GetForgeFedBranch returns the value of this property. When
	// IsForgeFedBranch returns false, GetForgeFedBranch will return an
	// arbitrary value.
	GetForgeFedBranch() ForgeFedBranch
	// GetForgeFedCommit returns the value of this property. When
	// IsForgeFedCommit returns false, GetForgeFedCommit will return an
	// arbitrary value.
	GetForgeFedCommit() ForgeFedCommit
	// GetForgeFedPush returns the value of this property. When IsForgeFedPush
	// returns false, GetForgeFedPush will return an arbitrary value.
	GetForgeFedPush() ForgeFedPush
	// GetForgeFedRepository returns the value of this property. When
	// IsForgeFedRepository returns false, GetForgeFedRepository will
	// return an arbitrary value.
	GetForgeFedRepository() ForgeFedRepository
	// GetForgeFedTicket returns the value of this property. When
	// IsForgeFedTicket returns false, GetForgeFedTicket will return an
	// arbitrary value.
	GetForgeFedTicket() ForgeFedTicket
	// GetForgeFedTicketDependency returns the value of this property. When
	// IsForgeFedTicketDependency returns false,
	// GetForgeFedTicketDependency will return an arbitrary value.
	GetForgeFedTicketDependency() ForgeFedTicketDependency
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return an arbitrary value.
	GetIRI() *url.URL
	// GetTootEmoji returns the value of this property. When IsTootEmoji
	// returns false, GetTootEmoji will return an arbitrary value.
	GetTootEmoji() TootEmoji
	// GetTootIdentityProof returns the value of this property. When
	// IsTootIdentityProof returns false, GetTootIdentityProof will return
	// an arbitrary value.
	GetTootIdentityProof() TootIdentityProof
	// GetType returns the value in this property as a Type. Returns nil if
	// the value is not an ActivityStreams type, such as an IRI or another
	// value.
	GetType() Type
	// HasAny returns true if any of the different values is set.
	HasAny() bool
	// IsActivityStreamsAccept returns true if this property has a type of
	// "Accept". When true, use the GetActivityStreamsAccept and
	// SetActivityStreamsAccept methods to access and set this property.
	IsActivityStreamsAccept() bool
	// IsActivityStreamsActivity returns true if this property has a type of
	// "Activity". When true, use the GetActivityStreamsActivity and
	// SetActivityStreamsActivity methods to access and set this property.
	IsActivityStreamsActivity() bool
	// IsActivityStreamsAdd returns true if this property has a type of "Add".
	// When true, use the GetActivityStreamsAdd and SetActivityStreamsAdd
	// methods to access and set this property.
	IsActivityStreamsAdd() bool
	// IsActivityStreamsAnnounce returns true if this property has a type of
	// "Announce". When true, use the GetActivityStreamsAnnounce and
	// SetActivityStreamsAnnounce methods to access and set this property.
	IsActivityStreamsAnnounce() bool
	// IsActivityStreamsApplication returns true if this property has a type
	// of "Application". When true, use the GetActivityStreamsApplication
	// and SetActivityStreamsApplication methods to access and set this
	// property.
	IsActivityStreamsApplication() bool
	// IsActivityStreamsArrive returns true if this property has a type of
	// "Arrive". When true, use the GetActivityStreamsArrive and
	// SetActivityStreamsArrive methods to access and set this property.
	IsActivityStreamsArrive() bool
	// IsActivityStreamsArticle returns true if this property has a type of
	// "Article". When true, use the GetActivityStreamsArticle and
	// SetActivityStreamsArticle methods to access and set this property.
	IsActivityStreamsArticle() bool
	// IsActivityStreamsAudio returns true if this property has a type of
	// "Audio". When true, use the GetActivityStreamsAudio and
	// SetActivityStreamsAudio methods to access and set this property.
	IsActivityStreamsAudio() bool
	// IsActivityStreamsBlock returns true if this property has a type of
	// "Block". When true, use the GetActivityStreamsBlock and
	// SetActivityStreamsBlock methods to access and set this property.
	IsActivityStreamsBlock() bool
	// IsActivityStreamsCollection returns true if this property has a type of
	// "Collection". When true, use the GetActivityStreamsCollection and
	// SetActivityStreamsCollection methods to access and set this
	// property.
	IsActivityStreamsCollection() bool
	// IsActivityStreamsCollectionPage returns true if this property has a
	// type of "CollectionPage". When true, use the
	// GetActivityStreamsCollectionPage and
	// SetActivityStreamsCollectionPage methods to access and set this
	// property.
	IsActivityStreamsCollectionPage() bool
	// IsActivityStreamsCreate returns true if this property has a type of
	// "Create". When true, use the GetActivityStreamsCreate and
	// SetActivityStreamsCreate methods to access and set this property.
	IsActivityStreamsCreate() bool
	// IsActivityStreamsDelete returns true if this property has a type of
	// "Delete". When true, use the GetActivityStreamsDelete and
	// SetActivityStreamsDelete methods to access and set this property.
	IsActivityStreamsDelete() bool
	// IsActivityStreamsDislike returns true if this property has a type of
	// "Dislike". When true, use the GetActivityStreamsDislike and
	// SetActivityStreamsDislike methods to access and set this property.
	IsActivityStreamsDislike() bool
	// IsActivityStreamsDocument returns true if this property has a type of
	// "Document". When true, use the GetActivityStreamsDocument and
	// SetActivityStreamsDocument methods to access and set this property.
	IsActivityStreamsDocument() bool
	// IsActivityStreamsEvent returns true if this property has a type of
	// "Event". When true, use the GetActivityStreamsEvent and
	// SetActivityStreamsEvent methods to access and set this property.
	IsActivityStreamsEvent() bool
	// IsActivityStreamsFlag returns true if this property has a type of
	// "Flag". When true, use the GetActivityStreamsFlag and
	// SetActivityStreamsFlag methods to access and set this property.
	IsActivityStreamsFlag() bool
	// IsActivityStreamsFollow returns true if this property has a type of
	// "Follow". When true, use the GetActivityStreamsFollow and
	// SetActivityStreamsFollow methods to access and set this property.
	IsActivityStreamsFollow() bool
	// IsActivityStreamsGroup returns true if this property has a type of
	// "Group". When true, use the GetActivityStreamsGroup and
	// SetActivityStreamsGroup methods to access and set this property.
	IsActivityStreamsGroup() bool
	// IsActivityStreamsIgnore returns true if this property has a type of
	// "Ignore". When true, use the GetActivityStreamsIgnore and
	// SetActivityStreamsIgnore methods to access and set this property.
	IsActivityStreamsIgnore() bool
	// IsActivityStreamsImage returns true if this property has a type of
	// "Image". When true, use the GetActivityStreamsImage and
	// SetActivityStreamsImage methods to access and set this property.
	IsActivityStreamsImage() bool
	// IsActivityStreamsIntransitiveActivity returns true if this property has
	// a type of "IntransitiveActivity". When true, use the
	// GetActivityStreamsIntransitiveActivity and
	// SetActivityStreamsIntransitiveActivity methods to access and set
	// this property.
	IsActivityStreamsIntransitiveActivity() bool
	// IsActivityStreamsInvite returns true if this property has a type of
	// "Invite". When true, use the GetActivityStreamsInvite and
	// SetActivityStreamsInvite methods to access and set this property.
	IsActivityStreamsInvite() bool
	// IsActivityStreamsJoin returns true if this property has a type of
	// "Join". When true, use the GetActivityStreamsJoin and
	// SetActivityStreamsJoin methods to access and set this property.
	IsActivityStreamsJoin() bool
	// IsActivityStreamsLeave returns true if this property has a type of
	// "Leave". When true, use the GetActivityStreamsLeave and
	// SetActivityStreamsLeave methods to access and set this property.
	IsActivityStreamsLeave() bool
	// IsActivityStreamsLike returns true if this property has a type of
	// "Like". When true, use the GetActivityStreamsLike and
	// SetActivityStreamsLike methods to access and set this property.
	IsActivityStreamsLike() bool
	// IsActivityStreamsListen returns true if this property has a type of
	// "Listen". When true, use the GetActivityStreamsListen and
	// SetActivityStreamsListen methods to access and set this property.
	IsActivityStreamsListen() bool
	// IsActivityStreamsMove returns true if this property has a type of
	// "Move". When true, use the GetActivityStreamsMove and
	// SetActivityStreamsMove methods to access and set this property.
	IsActivityStreamsMove() bool
	// IsActivityStreamsNote returns true if this property has a type of
	// "Note". When true, use the GetActivityStreamsNote and
	// SetActivityStreamsNote methods to access and set this property.
	IsActivityStreamsNote() bool
	// IsActivityStreamsObject returns true if this property has a type of
	// "Object". When true, use the GetActivityStreamsObject and
	// SetActivityStreamsObject methods to access and set this property.
	IsActivityStreamsObject() bool
	// IsActivityStreamsOffer returns true if this property has a type of
	// "Offer". When true, use the GetActivityStreamsOffer and
	// SetActivityStreamsOffer methods to access and set this property.
	IsActivityStreamsOffer() bool
	// IsActivityStreamsOrderedCollection returns true if this property has a
	// type of "OrderedCollection". When true, use the
	// GetActivityStreamsOrderedCollection and
	// SetActivityStreamsOrderedCollection methods to access and set this
	// property.
	IsActivityStreamsOrderedCollection() bool
	// IsActivityStreamsOrderedCollectionPage returns true if this property
	// has a type of "OrderedCollectionPage". When true, use the
	// GetActivityStreamsOrderedCollectionPage and
	// SetActivityStreamsOrderedCollectionPage methods to access and set
	// this property.
	IsActivityStreamsOrderedCollectionPage() bool
	// IsActivityStreamsOrganization returns true if this property has a type
	// of "Organization". When true, use the
	// GetActivityStreamsOrganization and SetActivityStreamsOrganization
	// methods to access and set this property.
	IsActivityStreamsOrganization() bool
	// IsActivityStreamsPage returns true if this property has a type of
	// "Page". When true, use the GetActivityStreamsPage and
	// SetActivityStreamsPage methods to access and set this property.
	IsActivityStreamsPage() bool
	// IsActivityStreamsPerson returns true if this property has a type of
	// "Person". When true, use the GetActivityStreamsPerson and
	// SetActivityStreamsPerson methods to access and set this property.
	IsActivityStreamsPerson() bool
	// IsActivityStreamsPlace returns true if this property has a type of
	// "Place". When true, use the GetActivityStreamsPlace and
	// SetActivityStreamsPlace methods to access and set this property.
	IsActivityStreamsPlace() bool
	// IsActivityStreamsProfile returns true if this property has a type of
	// "Profile". When true, use the GetActivityStreamsProfile and
	// SetActivityStreamsProfile methods to access and set this property.
	IsActivityStreamsProfile() bool
	// IsActivityStreamsQuestion returns true if this property has a type of
	// "Question". When true, use the GetActivityStreamsQuestion and
	// SetActivityStreamsQuestion methods to access and set this property.
	IsActivityStreamsQuestion() bool
	// IsActivityStreamsRead returns true if this property has a type of
	// "Read". When true, use the GetActivityStreamsRead and
	// SetActivityStreamsRead methods to access and set this property.
	IsActivityStreamsRead() bool
	// IsActivityStreamsReject returns true if this property has a type of
	// "Reject". When true, use the GetActivityStreamsReject and
	// SetActivityStreamsReject methods to access and set this property.
	IsActivityStreamsReject() bool
	// IsActivityStreamsRelationship returns true if this property has a type
	// of "Relationship". When true, use the
	// GetActivityStreamsRelationship and SetActivityStreamsRelationship
	// methods to access and set this property.
	IsActivityStreamsRelationship() bool
	// IsActivityStreamsRemove returns true if this property has a type of
	// "Remove". When true, use the GetActivityStreamsRemove and
	// SetActivityStreamsRemove methods to access and set this property.
	IsActivityStreamsRemove() bool
	// IsActivityStreamsService returns true if this property has a type of
	// "Service". When true, use the GetActivityStreamsService and
	// SetActivityStreamsService methods to access and set this property.
	IsActivityStreamsService() bool
	// IsActivityStreamsTentativeAccept returns true if this property has a
	// type of "TentativeAccept". When true, use the
	// GetActivityStreamsTentativeAccept and
	// SetActivityStreamsTentativeAccept methods to access and set this
	// property.
	IsActivityStreamsTentativeAccept() bool
	// IsActivityStreamsTentativeReject returns true if this property has a
	// type of "TentativeReject". When true, use the
	// GetActivityStreamsTentativeReject and
	// SetActivityStreamsTentativeReject methods to access and set this
	// property.
	IsActivityStreamsTentativeReject() bool
	// IsActivityStreamsTombstone returns true if this property has a type of
	// "Tombstone". When true, use the GetActivityStreamsTombstone and
	// SetActivityStreamsTombstone methods to access and set this property.
	IsActivityStreamsTombstone() bool
	// IsActivityStreamsTravel returns true if this property has a type of
	// "Travel". When true, use the GetActivityStreamsTravel and
	// SetActivityStreamsTravel methods to access and set this property.
	IsActivityStreamsTravel() bool
	// IsActivityStreamsUndo returns true if this property has a type of
	// "Undo". When true, use the GetActivityStreamsUndo and
	// SetActivityStreamsUndo methods to access and set this property.
	IsActivityStreamsUndo() bool
	// IsActivityStreamsUpdate returns true if this property has a type of
	// "Update". When true, use the GetActivityStreamsUpdate and
	// SetActivityStreamsUpdate methods to access and set this property.
	IsActivityStreamsUpdate() bool
	// IsActivityStreamsVideo returns true if this property has a type of
	// "Video". When true, use the GetActivityStreamsVideo and
	// SetActivityStreamsVideo methods to access and set this property.
	IsActivityStreamsVideo() bool
	// IsActivityStreamsView returns true if this property has a type of
	// "View". When true, use the GetActivityStreamsView and
	// SetActivityStreamsView methods to access and set this property.
	IsActivityStreamsView() bool
	// IsForgeFedBranch returns true if this property has a type of "Branch".
	// When true, use the GetForgeFedBranch and SetForgeFedBranch methods
	// to access and set this property.
	IsForgeFedBranch() bool
	// IsForgeFedCommit returns true if this property has a type of "Commit".
	// When true, use the GetForgeFedCommit and SetForgeFedCommit methods
	// to access and set this property.
	IsForgeFedCommit() bool
	// IsForgeFedPush returns true if this property has a type of "Push". When
	// true, use the GetForgeFedPush and SetForgeFedPush methods to access
	// and set this property.
	IsForgeFedPush() bool
	// IsForgeFedRepository returns true if this property has a type of
	// "Repository". When true, use the GetForgeFedRepository and
	// SetForgeFedRepository methods to access and set this property.
	IsForgeFedRepository() bool
	// IsForgeFedTicket returns true if this property has a type of "Ticket".
	// When true, use the GetForgeFedTicket and SetForgeFedTicket methods
	// to access and set this property.
	IsForgeFedTicket() bool
	// IsForgeFedTicketDependency returns true if this property has a type of
	// "TicketDependency". When true, use the GetForgeFedTicketDependency
	// and SetForgeFedTicketDependency methods to access and set this
	// property.
	IsForgeFedTicketDependency() bool
	// IsIRI returns true if this property is an IRI. When true, use GetIRI
	// and SetIRI to access and set this property
	IsIRI() bool
	// IsTootEmoji returns true if this property has a type of "Emoji". When
	// true, use the GetTootEmoji and SetTootEmoji methods to access and
	// set this property.
	IsTootEmoji() bool
	// IsTootIdentityProof returns true if this property has a type of
	// "IdentityProof". When true, use the GetTootIdentityProof and
	// SetTootIdentityProof methods to access and set this property.
	IsTootIdentityProof() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ForgeFedDescriptionProperty) bool
	// Name returns the name of this property: "description".
	Name() string
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// SetActivityStreamsAccept sets the value of this property. Calling
	// IsActivityStreamsAccept afterwards returns true.
	SetActivityStreamsAccept(v ActivityStreamsAccept)
	// SetActivityStreamsActivity sets the value of this property. Calling
	// IsActivityStreamsActivity afterwards returns true.
	SetActivityStreamsActivity(v ActivityStreamsActivity)
	// SetActivityStreamsAdd sets the value of this property. Calling
	// IsActivityStreamsAdd afterwards returns true.
	SetActivityStreamsAdd(v ActivityStreamsAdd)
	// SetActivityStreamsAnnounce sets the value of this property. Calling
	// IsActivityStreamsAnnounce afterwards returns true.
	SetActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// SetActivityStreamsApplication sets the value of this property. Calling
	// IsActivityStreamsApplication afterwards returns true.
	SetActivityStreamsApplication(v ActivityStreamsApplication)
	// SetActivityStreamsArrive sets the value of this property. Calling
	// IsActivityStreamsArrive afterwards returns true.
	SetActivityStreamsArrive(v ActivityStreamsArrive)
	// SetActivityStreamsArticle sets the value of this property. Calling
	// IsActivityStreamsArticle afterwards returns true.
	SetActivityStreamsArticle(v ActivityStreamsArticle)
	// SetActivityStreamsAudio sets the value of this property. Calling
	// IsActivityStreamsAudio afterwards returns true.
	SetActivityStreamsAudio(v ActivityStreamsAudio)
	// SetActivityStreamsBlock sets the value of this property. Calling
	// IsActivityStreamsBlock afterwards returns true.
	SetActivityStreamsBlock(v ActivityStreamsBlock)
	// SetActivityStreamsCollection sets the value of this property. Calling
	// IsActivityStreamsCollection afterwards returns true.
	SetActivityStreamsCollection(v ActivityStreamsCollection)
	// SetActivityStreamsCollectionPage sets the value of this property.
	// Calling IsActivityStreamsCollectionPage afterwards returns true.
	SetActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// SetActivityStreamsCreate sets the value of this property. Calling
	// IsActivityStreamsCreate afterwards returns true.
	SetActivityStreamsCreate(v ActivityStreamsCreate)
	// SetActivityStreamsDelete sets the value of this property. Calling
	// IsActivityStreamsDelete afterwards returns true.
	SetActivityStreamsDelete(v ActivityStreamsDelete)
	// SetActivityStreamsDislike sets the value of this property. Calling
	// IsActivityStreamsDislike afterwards returns true.
	SetActivityStreamsDislike(v ActivityStreamsDislike)
	// SetActivityStreamsDocument sets the value of this property. Calling
	// IsActivityStreamsDocument afterwards returns true.
	SetActivityStreamsDocument(v ActivityStreamsDocument)
	// SetActivityStreamsEvent sets the value of this property. Calling
	// IsActivityStreamsEvent afterwards returns true.
	SetActivityStreamsEvent(v ActivityStreamsEvent)
	// SetActivityStreamsFlag sets the value of this property. Calling
	// IsActivityStreamsFlag afterwards returns true.
	SetActivityStreamsFlag(v ActivityStreamsFlag)
	// SetActivityStreamsFollow sets the value of this property. Calling
	// IsActivityStreamsFollow afterwards returns true.
	SetActivityStreamsFollow(v ActivityStreamsFollow)
	// SetActivityStreamsGroup sets the value of this property. Calling
	// IsActivityStreamsGroup afterwards returns true.
	SetActivityStreamsGroup(v ActivityStreamsGroup)
	// SetActivityStreamsIgnore sets the value of this property. Calling
	// IsActivityStreamsIgnore afterwards returns true.
	SetActivityStreamsIgnore(v ActivityStreamsIgnore)
	// SetActivityStreamsImage sets the value of this property. Calling
	// IsActivityStreamsImage afterwards returns true.
	SetActivityStreamsImage(v ActivityStreamsImage)
	// SetActivityStreamsIntransitiveActivity sets the value of this property.
	// Calling IsActivityStreamsIntransitiveActivity afterwards returns
	// true.
	SetActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// SetActivityStreamsInvite sets the value of this property. Calling
	// IsActivityStreamsInvite afterwards returns true.
	SetActivityStreamsInvite(v ActivityStreamsInvite)
	// SetActivityStreamsJoin sets the value of this property. Calling
	// IsActivityStreamsJoin afterwards returns true.
	SetActivityStreamsJoin(v ActivityStreamsJoin)
	// SetActivityStreamsLeave sets the value of this property. Calling
	// IsActivityStreamsLeave afterwards returns true.
	SetActivityStreamsLeave(v ActivityStreamsLeave)
	// SetActivityStreamsLike sets the value of this property. Calling
	// IsActivityStreamsLike afterwards returns true.
	SetActivityStreamsLike(v ActivityStreamsLike)
	// SetActivityStreamsListen sets the value of this property. Calling
	// IsActivityStreamsListen afterwards returns true.
	SetActivityStreamsListen(v ActivityStreamsListen)
	// SetActivityStreamsMove sets the value of this property. Calling
	// IsActivityStreamsMove afterwards returns true.
	SetActivityStreamsMove(v ActivityStreamsMove)
	// SetActivityStreamsNote sets the value of this property. Calling
	// IsActivityStreamsNote afterwards returns true.
	SetActivityStreamsNote(v ActivityStreamsNote)
	// SetActivityStreamsObject sets the value of this property. Calling
	// IsActivityStreamsObject afterwards returns true.
	SetActivityStreamsObject(v ActivityStreamsObject)
	// SetActivityStreamsOffer sets the value of this property. Calling
	// IsActivityStreamsOffer afterwards returns true.
	SetActivityStreamsOffer(v ActivityStreamsOffer)
	// SetActivityStreamsOrderedCollection sets the value of this property.
	// Calling IsActivityStreamsOrderedCollection afterwards returns true.
	SetActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// SetActivityStreamsOrderedCollectionPage sets the value of this
	// property. Calling IsActivityStreamsOrderedCollectionPage afterwards
	// returns true.
	SetActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// SetActivityStreamsOrganization sets the value of this property. Calling
	// IsActivityStreamsOrganization afterwards returns true.
	SetActivityStreamsOrganization(v ActivityStreamsOrganization)
	// SetActivityStreamsPage sets the value of this property. Calling
	// IsActivityStreamsPage afterwards returns true.
	SetActivityStreamsPage(v ActivityStreamsPage)
	// SetActivityStreamsPerson sets the value of this property. Calling
	// IsActivityStreamsPerson afterwards returns true.
	SetActivityStreamsPerson(v ActivityStreamsPerson)
	// SetActivityStreamsPlace sets the value of this property. Calling
	// IsActivityStreamsPlace afterwards returns true.
	SetActivityStreamsPlace(v ActivityStreamsPlace)
	// SetActivityStreamsProfile sets the value of this property. Calling
	// IsActivityStreamsProfile afterwards returns true.
	SetActivityStreamsProfile(v ActivityStreamsProfile)
	// SetActivityStreamsQuestion sets the value of this property. Calling
	// IsActivityStreamsQuestion afterwards returns true.
	SetActivityStreamsQuestion(v ActivityStreamsQuestion)
	// SetActivityStreamsRead sets the value of this property. Calling
	// IsActivityStreamsRead afterwards returns true.
	SetActivityStreamsRead(v ActivityStreamsRead)
	// SetActivityStreamsReject sets the value of this property. Calling
	// IsActivityStreamsReject afterwards returns true.
	SetActivityStreamsReject(v ActivityStreamsReject)
	// SetActivityStreamsRelationship sets the value of this property. Calling
	// IsActivityStreamsRelationship afterwards returns true.
	SetActivityStreamsRelationship(v ActivityStreamsRelationship)
	// SetActivityStreamsRemove sets the value of this property. Calling
	// IsActivityStreamsRemove afterwards returns true.
	SetActivityStreamsRemove(v ActivityStreamsRemove)
	// SetActivityStreamsService sets the value of this property. Calling
	// IsActivityStreamsService afterwards returns true.
	SetActivityStreamsService(v ActivityStreamsService)
	// SetActivityStreamsTentativeAccept sets the value of this property.
	// Calling IsActivityStreamsTentativeAccept afterwards returns true.
	SetActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// SetActivityStreamsTentativeReject sets the value of this property.
	// Calling IsActivityStreamsTentativeReject afterwards returns true.
	SetActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// SetActivityStreamsTombstone sets the value of this property. Calling
	// IsActivityStreamsTombstone afterwards returns true.
	SetActivityStreamsTombstone(v ActivityStreamsTombstone)
	// SetActivityStreamsTravel sets the value of this property. Calling
	// IsActivityStreamsTravel afterwards returns true.
	SetActivityStreamsTravel(v ActivityStreamsTravel)
	// SetActivityStreamsUndo sets the value of this property. Calling
	// IsActivityStreamsUndo afterwards returns true.
	SetActivityStreamsUndo(v ActivityStreamsUndo)
	// SetActivityStreamsUpdate sets the value of this property. Calling
	// IsActivityStreamsUpdate afterwards returns true.
	SetActivityStreamsUpdate(v ActivityStreamsUpdate)
	// SetActivityStreamsVideo sets the value of this property. Calling
	// IsActivityStreamsVideo afterwards returns true.
	SetActivityStreamsVideo(v ActivityStreamsVideo)
	// SetActivityStreamsView sets the value of this property. Calling
	// IsActivityStreamsView afterwards returns true.
	SetActivityStreamsView(v ActivityStreamsView)
	// SetForgeFedBranch sets the value of this property. Calling
	// IsForgeFedBranch afterwards returns true.
	SetForgeFedBranch(v ForgeFedBranch)
	// SetForgeFedCommit sets the value of this property. Calling
	// IsForgeFedCommit afterwards returns true.
	SetForgeFedCommit(v ForgeFedCommit)
	// SetForgeFedPush sets the value of this property. Calling IsForgeFedPush
	// afterwards returns true.
	SetForgeFedPush(v ForgeFedPush)
	// SetForgeFedRepository sets the value of this property. Calling
	// IsForgeFedRepository afterwards returns true.
	SetForgeFedRepository(v ForgeFedRepository)
	// SetForgeFedTicket sets the value of this property. Calling
	// IsForgeFedTicket afterwards returns true.
	SetForgeFedTicket(v ForgeFedTicket)
	// SetForgeFedTicketDependency sets the value of this property. Calling
	// IsForgeFedTicketDependency afterwards returns true.
	SetForgeFedTicketDependency(v ForgeFedTicketDependency)
	// SetIRI sets the value of this property. Calling IsIRI afterwards
	// returns true.
	SetIRI(v *url.URL)
	// SetTootEmoji sets the value of this property. Calling IsTootEmoji
	// afterwards returns true.
	SetTootEmoji(v TootEmoji)
	// SetTootIdentityProof sets the value of this property. Calling
	// IsTootIdentityProof afterwards returns true.
	SetTootIdentityProof(v TootIdentityProof)
	// SetType attempts to set the property for the arbitrary type. Returns an
	// error if it is not a valid type to set on this property.
	SetType(t Type) error
}

Specifies the description text of a Commit, which is an optional possibly multi-line text provided in addition to the one-line commit title. The range of the description property works the same way the range of the ActivityPub source property works.

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    "https://forgefed.peers.community/ns"
  ],
  "attributedTo": "https://example.dev/bob",
  "context": "https://example.dev/alice/myrepo",
  "created": "2019-07-11T12:34:56Z",
  "description": {
    "content": "It's about time people can install on their computers!",
    "mediaType": "text/plain"
  },
  "hash": "109ec9a09c7df7fec775d2ba0b9d466e5643ec8c",
  "id": "https://example.dev/alice/myrepo/commits/109ec9a09c7df7fec775d2ba0b9d466e5643ec8c",
  "summary": "Add an installation script, fixes issue #89",
  "type": "Commit"
}

type ForgeFedEarlyItemsProperty

type ForgeFedEarlyItemsProperty interface {
	// AppendActivityStreamsAccept appends a Accept value to the back of a
	// list of the property "earlyItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsAccept(v ActivityStreamsAccept)
	// AppendActivityStreamsActivity appends a Activity value to the back of a
	// list of the property "earlyItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsActivity(v ActivityStreamsActivity)
	// AppendActivityStreamsAdd appends a Add value to the back of a list of
	// the property "earlyItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsAdd(v ActivityStreamsAdd)
	// AppendActivityStreamsAnnounce appends a Announce value to the back of a
	// list of the property "earlyItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// AppendActivityStreamsApplication appends a Application value to the
	// back of a list of the property "earlyItems". Invalidates iterators
	// that are traversing using Prev.
	AppendActivityStreamsApplication(v ActivityStreamsApplication)
	// AppendActivityStreamsArrive appends a Arrive value to the back of a
	// list of the property "earlyItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsArrive(v ActivityStreamsArrive)
	// AppendActivityStreamsArticle appends a Article value to the back of a
	// list of the property "earlyItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsArticle(v ActivityStreamsArticle)
	// AppendActivityStreamsAudio appends a Audio value to the back of a list
	// of the property "earlyItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsAudio(v ActivityStreamsAudio)
	// AppendActivityStreamsBlock appends a Block value to the back of a list
	// of the property "earlyItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsBlock(v ActivityStreamsBlock)
	// AppendActivityStreamsCollection appends a Collection value to the back
	// of a list of the property "earlyItems". Invalidates iterators that
	// are traversing using Prev.
	AppendActivityStreamsCollection(v ActivityStreamsCollection)
	// AppendActivityStreamsCollectionPage appends a CollectionPage value to
	// the back of a list of the property "earlyItems". Invalidates
	// iterators that are traversing using Prev.
	AppendActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// AppendActivityStreamsCreate appends a Create value to the back of a
	// list of the property "earlyItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsCreate(v ActivityStreamsCreate)
	// AppendActivityStreamsDelete appends a Delete value to the back of a
	// list of the property "earlyItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDelete(v ActivityStreamsDelete)
	// AppendActivityStreamsDislike appends a Dislike value to the back of a
	// list of the property "earlyItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDislike(v ActivityStreamsDislike)
	// AppendActivityStreamsDocument appends a Document value to the back of a
	// list of the property "earlyItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsDocument(v ActivityStreamsDocument)
	// AppendActivityStreamsEvent appends a Event value to the back of a list
	// of the property "earlyItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsEvent(v ActivityStreamsEvent)
	// AppendActivityStreamsFlag appends a Flag value to the back of a list of
	// the property "earlyItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsFlag(v ActivityStreamsFlag)
	// AppendActivityStreamsFollow appends a Follow value to the back of a
	// list of the property "earlyItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsFollow(v ActivityStreamsFollow)
	// AppendActivityStreamsGroup appends a Group value to the back of a list
	// of the property "earlyItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsGroup(v ActivityStreamsGroup)
	// AppendActivityStreamsIgnore appends a Ignore value to the back of a
	// list of the property "earlyItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsIgnore(v ActivityStreamsIgnore)
	// AppendActivityStreamsImage appends a Image value to the back of a list
	// of the property "earlyItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsImage(v ActivityStreamsImage)
	// AppendActivityStreamsIntransitiveActivity appends a
	// IntransitiveActivity value to the back of a list of the property
	// "earlyItems". Invalidates iterators that are traversing using Prev.
	AppendActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// AppendActivityStreamsInvite appends a Invite value to the back of a
	// list of the property "earlyItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsInvite(v ActivityStreamsInvite)
	// AppendActivityStreamsJoin appends a Join value to the back of a list of
	// the property "earlyItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsJoin(v ActivityStreamsJoin)
	// AppendActivityStreamsLeave appends a Leave value to the back of a list
	// of the property "earlyItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsLeave(v ActivityStreamsLeave)
	// AppendActivityStreamsLike appends a Like value to the back of a list of
	// the property "earlyItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsLike(v ActivityStreamsLike)
	// AppendActivityStreamsLink appends a Link value to the back of a list of
	// the property "earlyItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsLink(v ActivityStreamsLink)
	// AppendActivityStreamsListen appends a Listen value to the back of a
	// list of the property "earlyItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsListen(v ActivityStreamsListen)
	// AppendActivityStreamsMention appends a Mention value to the back of a
	// list of the property "earlyItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsMention(v ActivityStreamsMention)
	// AppendActivityStreamsMove appends a Move value to the back of a list of
	// the property "earlyItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsMove(v ActivityStreamsMove)
	// AppendActivityStreamsNote appends a Note value to the back of a list of
	// the property "earlyItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsNote(v ActivityStreamsNote)
	// AppendActivityStreamsObject appends a Object value to the back of a
	// list of the property "earlyItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsObject(v ActivityStreamsObject)
	// AppendActivityStreamsOffer appends a Offer value to the back of a list
	// of the property "earlyItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsOffer(v ActivityStreamsOffer)
	// AppendActivityStreamsOrderedCollection appends a OrderedCollection
	// value to the back of a list of the property "earlyItems".
	// Invalidates iterators that are traversing using Prev.
	AppendActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// AppendActivityStreamsOrderedCollectionPage appends a
	// OrderedCollectionPage value to the back of a list of the property
	// "earlyItems". Invalidates iterators that are traversing using Prev.
	AppendActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// AppendActivityStreamsOrganization appends a Organization value to the
	// back of a list of the property "earlyItems". Invalidates iterators
	// that are traversing using Prev.
	AppendActivityStreamsOrganization(v ActivityStreamsOrganization)
	// AppendActivityStreamsPage appends a Page value to the back of a list of
	// the property "earlyItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsPage(v ActivityStreamsPage)
	// AppendActivityStreamsPerson appends a Person value to the back of a
	// list of the property "earlyItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsPerson(v ActivityStreamsPerson)
	// AppendActivityStreamsPlace appends a Place value to the back of a list
	// of the property "earlyItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsPlace(v ActivityStreamsPlace)
	// AppendActivityStreamsProfile appends a Profile value to the back of a
	// list of the property "earlyItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsProfile(v ActivityStreamsProfile)
	// AppendActivityStreamsQuestion appends a Question value to the back of a
	// list of the property "earlyItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsQuestion(v ActivityStreamsQuestion)
	// AppendActivityStreamsRead appends a Read value to the back of a list of
	// the property "earlyItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsRead(v ActivityStreamsRead)
	// AppendActivityStreamsReject appends a Reject value to the back of a
	// list of the property "earlyItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsReject(v ActivityStreamsReject)
	// AppendActivityStreamsRelationship appends a Relationship value to the
	// back of a list of the property "earlyItems". Invalidates iterators
	// that are traversing using Prev.
	AppendActivityStreamsRelationship(v ActivityStreamsRelationship)
	// AppendActivityStreamsRemove appends a Remove value to the back of a
	// list of the property "earlyItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsRemove(v ActivityStreamsRemove)
	// AppendActivityStreamsService appends a Service value to the back of a
	// list of the property "earlyItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsService(v ActivityStreamsService)
	// AppendActivityStreamsTentativeAccept appends a TentativeAccept value to
	// the back of a list of the property "earlyItems". Invalidates
	// iterators that are traversing using Prev.
	AppendActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// AppendActivityStreamsTentativeReject appends a TentativeReject value to
	// the back of a list of the property "earlyItems". Invalidates
	// iterators that are traversing using Prev.
	AppendActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// AppendActivityStreamsTombstone appends a Tombstone value to the back of
	// a list of the property "earlyItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsTombstone(v ActivityStreamsTombstone)
	// AppendActivityStreamsTravel appends a Travel value to the back of a
	// list of the property "earlyItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsTravel(v ActivityStreamsTravel)
	// AppendActivityStreamsUndo appends a Undo value to the back of a list of
	// the property "earlyItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsUndo(v ActivityStreamsUndo)
	// AppendActivityStreamsUpdate appends a Update value to the back of a
	// list of the property "earlyItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsUpdate(v ActivityStreamsUpdate)
	// AppendActivityStreamsVideo appends a Video value to the back of a list
	// of the property "earlyItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsVideo(v ActivityStreamsVideo)
	// AppendActivityStreamsView appends a View value to the back of a list of
	// the property "earlyItems". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsView(v ActivityStreamsView)
	// AppendForgeFedBranch appends a Branch value to the back of a list of
	// the property "earlyItems". Invalidates iterators that are
	// traversing using Prev.
	AppendForgeFedBranch(v ForgeFedBranch)
	// AppendForgeFedCommit appends a Commit value to the back of a list of
	// the property "earlyItems". Invalidates iterators that are
	// traversing using Prev.
	AppendForgeFedCommit(v ForgeFedCommit)
	// AppendForgeFedPush appends a Push value to the back of a list of the
	// property "earlyItems". Invalidates iterators that are traversing
	// using Prev.
	AppendForgeFedPush(v ForgeFedPush)
	// AppendForgeFedRepository appends a Repository value to the back of a
	// list of the property "earlyItems". Invalidates iterators that are
	// traversing using Prev.
	AppendForgeFedRepository(v ForgeFedRepository)
	// AppendForgeFedTicket appends a Ticket value to the back of a list of
	// the property "earlyItems". Invalidates iterators that are
	// traversing using Prev.
	AppendForgeFedTicket(v ForgeFedTicket)
	// AppendForgeFedTicketDependency appends a TicketDependency value to the
	// back of a list of the property "earlyItems". Invalidates iterators
	// that are traversing using Prev.
	AppendForgeFedTicketDependency(v ForgeFedTicketDependency)
	// AppendIRI appends an IRI value to the back of a list of the property
	// "earlyItems"
	AppendIRI(v *url.URL)
	// AppendTootEmoji appends a Emoji value to the back of a list of the
	// property "earlyItems". Invalidates iterators that are traversing
	// using Prev.
	AppendTootEmoji(v TootEmoji)
	// AppendTootIdentityProof appends a IdentityProof value to the back of a
	// list of the property "earlyItems". Invalidates iterators that are
	// traversing using Prev.
	AppendTootIdentityProof(v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "earlyItems". Invalidates iterators that are
	// traversing using Prev. Returns an error if the type is not a valid
	// one to set for this property.
	AppendType(t Type) error
	// At returns the property value for the specified index. Panics if the
	// index is out of bounds.
	At(index int) ForgeFedEarlyItemsPropertyIterator
	// Begin returns the first iterator, or nil if empty. Can be used with the
	// iterator's Next method and this property's End method to iterate
	// from front to back through all values.
	Begin() ForgeFedEarlyItemsPropertyIterator
	// Empty returns returns true if there are no elements.
	Empty() bool
	// End returns beyond-the-last iterator, which is nil. Can be used with
	// the iterator's Next method and this property's Begin method to
	// iterate from front to back through all values.
	End() ForgeFedEarlyItemsPropertyIterator
	// InsertActivityStreamsAccept inserts a Accept value at the specified
	// index for a property "earlyItems". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAccept(idx int, v ActivityStreamsAccept)
	// InsertActivityStreamsActivity inserts a Activity value at the specified
	// index for a property "earlyItems". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsActivity(idx int, v ActivityStreamsActivity)
	// InsertActivityStreamsAdd inserts a Add value at the specified index for
	// a property "earlyItems". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAdd(idx int, v ActivityStreamsAdd)
	// InsertActivityStreamsAnnounce inserts a Announce value at the specified
	// index for a property "earlyItems". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAnnounce(idx int, v ActivityStreamsAnnounce)
	// InsertActivityStreamsApplication inserts a Application value at the
	// specified index for a property "earlyItems". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsApplication(idx int, v ActivityStreamsApplication)
	// InsertActivityStreamsArrive inserts a Arrive value at the specified
	// index for a property "earlyItems". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsArrive(idx int, v ActivityStreamsArrive)
	// InsertActivityStreamsArticle inserts a Article value at the specified
	// index for a property "earlyItems". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsArticle(idx int, v ActivityStreamsArticle)
	// InsertActivityStreamsAudio inserts a Audio value at the specified index
	// for a property "earlyItems". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAudio(idx int, v ActivityStreamsAudio)
	// InsertActivityStreamsBlock inserts a Block value at the specified index
	// for a property "earlyItems". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsBlock(idx int, v ActivityStreamsBlock)
	// InsertActivityStreamsCollection inserts a Collection value at the
	// specified index for a property "earlyItems". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsCollection(idx int, v ActivityStreamsCollection)
	// InsertActivityStreamsCollectionPage inserts a CollectionPage value at
	// the specified index for a property "earlyItems". Existing elements
	// at that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsCollectionPage(idx int, v ActivityStreamsCollectionPage)
	// InsertActivityStreamsCreate inserts a Create value at the specified
	// index for a property "earlyItems". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsCreate(idx int, v ActivityStreamsCreate)
	// InsertActivityStreamsDelete inserts a Delete value at the specified
	// index for a property "earlyItems". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDelete(idx int, v ActivityStreamsDelete)
	// InsertActivityStreamsDislike inserts a Dislike value at the specified
	// index for a property "earlyItems". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDislike(idx int, v ActivityStreamsDislike)
	// InsertActivityStreamsDocument inserts a Document value at the specified
	// index for a property "earlyItems". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDocument(idx int, v ActivityStreamsDocument)
	// InsertActivityStreamsEvent inserts a Event value at the specified index
	// for a property "earlyItems". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsEvent(idx int, v ActivityStreamsEvent)
	// InsertActivityStreamsFlag inserts a Flag value at the specified index
	// for a property "earlyItems". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsFlag(idx int, v ActivityStreamsFlag)
	// InsertActivityStreamsFollow inserts a Follow value at the specified
	// index for a property "earlyItems". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsFollow(idx int, v ActivityStreamsFollow)
	// InsertActivityStreamsGroup inserts a Group value at the specified index
	// for a property "earlyItems". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsGroup(idx int, v ActivityStreamsGroup)
	// InsertActivityStreamsIgnore inserts a Ignore value at the specified
	// index for a property "earlyItems". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsIgnore(idx int, v ActivityStreamsIgnore)
	// InsertActivityStreamsImage inserts a Image value at the specified index
	// for a property "earlyItems". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsImage(idx int, v ActivityStreamsImage)
	// InsertActivityStreamsIntransitiveActivity inserts a
	// IntransitiveActivity value at the specified index for a property
	// "earlyItems". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertActivityStreamsIntransitiveActivity(idx int, v ActivityStreamsIntransitiveActivity)
	// InsertActivityStreamsInvite inserts a Invite value at the specified
	// index for a property "earlyItems". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsInvite(idx int, v ActivityStreamsInvite)
	// InsertActivityStreamsJoin inserts a Join value at the specified index
	// for a property "earlyItems". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsJoin(idx int, v ActivityStreamsJoin)
	// InsertActivityStreamsLeave inserts a Leave value at the specified index
	// for a property "earlyItems". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsLeave(idx int, v ActivityStreamsLeave)
	// InsertActivityStreamsLike inserts a Like value at the specified index
	// for a property "earlyItems". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsLike(idx int, v ActivityStreamsLike)
	// InsertActivityStreamsLink inserts a Link value at the specified index
	// for a property "earlyItems". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsLink(idx int, v ActivityStreamsLink)
	// InsertActivityStreamsListen inserts a Listen value at the specified
	// index for a property "earlyItems". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsListen(idx int, v ActivityStreamsListen)
	// InsertActivityStreamsMention inserts a Mention value at the specified
	// index for a property "earlyItems". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsMention(idx int, v ActivityStreamsMention)
	// InsertActivityStreamsMove inserts a Move value at the specified index
	// for a property "earlyItems". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsMove(idx int, v ActivityStreamsMove)
	// InsertActivityStreamsNote inserts a Note value at the specified index
	// for a property "earlyItems". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsNote(idx int, v ActivityStreamsNote)
	// InsertActivityStreamsObject inserts a Object value at the specified
	// index for a property "earlyItems". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsObject(idx int, v ActivityStreamsObject)
	// InsertActivityStreamsOffer inserts a Offer value at the specified index
	// for a property "earlyItems". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsOffer(idx int, v ActivityStreamsOffer)
	// InsertActivityStreamsOrderedCollection inserts a OrderedCollection
	// value at the specified index for a property "earlyItems". Existing
	// elements at that index and higher are shifted back once.
	// Invalidates all iterators.
	InsertActivityStreamsOrderedCollection(idx int, v ActivityStreamsOrderedCollection)
	// InsertActivityStreamsOrderedCollectionPage inserts a
	// OrderedCollectionPage value at the specified index for a property
	// "earlyItems". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertActivityStreamsOrderedCollectionPage(idx int, v ActivityStreamsOrderedCollectionPage)
	// InsertActivityStreamsOrganization inserts a Organization value at the
	// specified index for a property "earlyItems". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsOrganization(idx int, v ActivityStreamsOrganization)
	// InsertActivityStreamsPage inserts a Page value at the specified index
	// for a property "earlyItems". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsPage(idx int, v ActivityStreamsPage)
	// InsertActivityStreamsPerson inserts a Person value at the specified
	// index for a property "earlyItems". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsPerson(idx int, v ActivityStreamsPerson)
	// InsertActivityStreamsPlace inserts a Place value at the specified index
	// for a property "earlyItems". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsPlace(idx int, v ActivityStreamsPlace)
	// InsertActivityStreamsProfile inserts a Profile value at the specified
	// index for a property "earlyItems". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsProfile(idx int, v ActivityStreamsProfile)
	// InsertActivityStreamsQuestion inserts a Question value at the specified
	// index for a property "earlyItems". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsQuestion(idx int, v ActivityStreamsQuestion)
	// InsertActivityStreamsRead inserts a Read value at the specified index
	// for a property "earlyItems". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsRead(idx int, v ActivityStreamsRead)
	// InsertActivityStreamsReject inserts a Reject value at the specified
	// index for a property "earlyItems". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsReject(idx int, v ActivityStreamsReject)
	// InsertActivityStreamsRelationship inserts a Relationship value at the
	// specified index for a property "earlyItems". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsRelationship(idx int, v ActivityStreamsRelationship)
	// InsertActivityStreamsRemove inserts a Remove value at the specified
	// index for a property "earlyItems". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsRemove(idx int, v ActivityStreamsRemove)
	// InsertActivityStreamsService inserts a Service value at the specified
	// index for a property "earlyItems". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsService(idx int, v ActivityStreamsService)
	// InsertActivityStreamsTentativeAccept inserts a TentativeAccept value at
	// the specified index for a property "earlyItems". Existing elements
	// at that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsTentativeAccept(idx int, v ActivityStreamsTentativeAccept)
	// InsertActivityStreamsTentativeReject inserts a TentativeReject value at
	// the specified index for a property "earlyItems". Existing elements
	// at that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsTentativeReject(idx int, v ActivityStreamsTentativeReject)
	// InsertActivityStreamsTombstone inserts a Tombstone value at the
	// specified index for a property "earlyItems". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertActivityStreamsTombstone(idx int, v ActivityStreamsTombstone)
	// InsertActivityStreamsTravel inserts a Travel value at the specified
	// index for a property "earlyItems". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsTravel(idx int, v ActivityStreamsTravel)
	// InsertActivityStreamsUndo inserts a Undo value at the specified index
	// for a property "earlyItems". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsUndo(idx int, v ActivityStreamsUndo)
	// InsertActivityStreamsUpdate inserts a Update value at the specified
	// index for a property "earlyItems". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsUpdate(idx int, v ActivityStreamsUpdate)
	// InsertActivityStreamsVideo inserts a Video value at the specified index
	// for a property "earlyItems". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsVideo(idx int, v ActivityStreamsVideo)
	// InsertActivityStreamsView inserts a View value at the specified index
	// for a property "earlyItems". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsView(idx int, v ActivityStreamsView)
	// InsertForgeFedBranch inserts a Branch value at the specified index for
	// a property "earlyItems". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertForgeFedBranch(idx int, v ForgeFedBranch)
	// InsertForgeFedCommit inserts a Commit value at the specified index for
	// a property "earlyItems". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertForgeFedCommit(idx int, v ForgeFedCommit)
	// InsertForgeFedPush inserts a Push value at the specified index for a
	// property "earlyItems". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertForgeFedPush(idx int, v ForgeFedPush)
	// InsertForgeFedRepository inserts a Repository value at the specified
	// index for a property "earlyItems". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertForgeFedRepository(idx int, v ForgeFedRepository)
	// InsertForgeFedTicket inserts a Ticket value at the specified index for
	// a property "earlyItems". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertForgeFedTicket(idx int, v ForgeFedTicket)
	// InsertForgeFedTicketDependency inserts a TicketDependency value at the
	// specified index for a property "earlyItems". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
	// Insert inserts an IRI value at the specified index for a property
	// "earlyItems". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertIRI(idx int, v *url.URL)
	// InsertTootEmoji inserts a Emoji value at the specified index for a
	// property "earlyItems". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertTootEmoji(idx int, v TootEmoji)
	// InsertTootIdentityProof inserts a IdentityProof value at the specified
	// index for a property "earlyItems". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertTootIdentityProof(idx int, v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "earlyItems". Invalidates all iterators. Returns an
	// error if the type is not a valid one to set for this property.
	InsertType(idx int, t Type) error
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API method specifically needed only for alternate
	// implementations for go-fed. Applications should not use this
	// method. Panics if the index is out of bounds.
	KindIndex(idx int) int
	// Len returns the number of values that exist for the "earlyItems"
	// property.
	Len() (length int)
	// Less computes whether another property is less than this one. Mixing
	// types results in a consistent but arbitrary ordering
	Less(i, j int) bool
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ForgeFedEarlyItemsProperty) bool
	// Name returns the name of this property ("earlyItems") with any alias.
	Name() string
	// PrependActivityStreamsAccept prepends a Accept value to the front of a
	// list of the property "earlyItems". Invalidates all iterators.
	PrependActivityStreamsAccept(v ActivityStreamsAccept)
	// PrependActivityStreamsActivity prepends a Activity value to the front
	// of a list of the property "earlyItems". Invalidates all iterators.
	PrependActivityStreamsActivity(v ActivityStreamsActivity)
	// PrependActivityStreamsAdd prepends a Add value to the front of a list
	// of the property "earlyItems". Invalidates all iterators.
	PrependActivityStreamsAdd(v ActivityStreamsAdd)
	// PrependActivityStreamsAnnounce prepends a Announce value to the front
	// of a list of the property "earlyItems". Invalidates all iterators.
	PrependActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// PrependActivityStreamsApplication prepends a Application value to the
	// front of a list of the property "earlyItems". Invalidates all
	// iterators.
	PrependActivityStreamsApplication(v ActivityStreamsApplication)
	// PrependActivityStreamsArrive prepends a Arrive value to the front of a
	// list of the property "earlyItems". Invalidates all iterators.
	PrependActivityStreamsArrive(v ActivityStreamsArrive)
	// PrependActivityStreamsArticle prepends a Article value to the front of
	// a list of the property "earlyItems". Invalidates all iterators.
	PrependActivityStreamsArticle(v ActivityStreamsArticle)
	// PrependActivityStreamsAudio prepends a Audio value to the front of a
	// list of the property "earlyItems". Invalidates all iterators.
	PrependActivityStreamsAudio(v ActivityStreamsAudio)
	// PrependActivityStreamsBlock prepends a Block value to the front of a
	// list of the property "earlyItems". Invalidates all iterators.
	PrependActivityStreamsBlock(v ActivityStreamsBlock)
	// PrependActivityStreamsCollection prepends a Collection value to the
	// front of a list of the property "earlyItems". Invalidates all
	// iterators.
	PrependActivityStreamsCollection(v ActivityStreamsCollection)
	// PrependActivityStreamsCollectionPage prepends a CollectionPage value to
	// the front of a list of the property "earlyItems". Invalidates all
	// iterators.
	PrependActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// PrependActivityStreamsCreate prepends a Create value to the front of a
	// list of the property "earlyItems". Invalidates all iterators.
	PrependActivityStreamsCreate(v ActivityStreamsCreate)
	// PrependActivityStreamsDelete prepends a Delete value to the front of a
	// list of the property "earlyItems". Invalidates all iterators.
	PrependActivityStreamsDelete(v ActivityStreamsDelete)
	// PrependActivityStreamsDislike prepends a Dislike value to the front of
	// a list of the property "earlyItems". Invalidates all iterators.
	PrependActivityStreamsDislike(v ActivityStreamsDislike)
	// PrependActivityStreamsDocument prepends a Document value to the front
	// of a list of the property "earlyItems". Invalidates all iterators.
	PrependActivityStreamsDocument(v ActivityStreamsDocument)
	// PrependActivityStreamsEvent prepends a Event value to the front of a
	// list of the property "earlyItems". Invalidates all iterators.
	PrependActivityStreamsEvent(v ActivityStreamsEvent)
	// PrependActivityStreamsFlag prepends a Flag value to the front of a list
	// of the property "earlyItems". Invalidates all iterators.
	PrependActivityStreamsFlag(v ActivityStreamsFlag)
	// PrependActivityStreamsFollow prepends a Follow value to the front of a
	// list of the property "earlyItems". Invalidates all iterators.
	PrependActivityStreamsFollow(v ActivityStreamsFollow)
	// PrependActivityStreamsGroup prepends a Group value to the front of a
	// list of the property "earlyItems". Invalidates all iterators.
	PrependActivityStreamsGroup(v ActivityStreamsGroup)
	// PrependActivityStreamsIgnore prepends a Ignore value to the front of a
	// list of the property "earlyItems". Invalidates all iterators.
	PrependActivityStreamsIgnore(v ActivityStreamsIgnore)
	// PrependActivityStreamsImage prepends a Image value to the front of a
	// list of the property "earlyItems". Invalidates all iterators.
	PrependActivityStreamsImage(v ActivityStreamsImage)
	// PrependActivityStreamsIntransitiveActivity prepends a
	// IntransitiveActivity value to the front of a list of the property
	// "earlyItems". Invalidates all iterators.
	PrependActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// PrependActivityStreamsInvite prepends a Invite value to the front of a
	// list of the property "earlyItems". Invalidates all iterators.
	PrependActivityStreamsInvite(v ActivityStreamsInvite)
	// PrependActivityStreamsJoin prepends a Join value to the front of a list
	// of the property "earlyItems". Invalidates all iterators.
	PrependActivityStreamsJoin(v ActivityStreamsJoin)
	// PrependActivityStreamsLeave prepends a Leave value to the front of a
	// list of the property "earlyItems". Invalidates all iterators.
	PrependActivityStreamsLeave(v ActivityStreamsLeave)
	// PrependActivityStreamsLike prepends a Like value to the front of a list
	// of the property "earlyItems". Invalidates all iterators.
	PrependActivityStreamsLike(v ActivityStreamsLike)
	// PrependActivityStreamsLink prepends a Link value to the front of a list
	// of the property "earlyItems". Invalidates all iterators.
	PrependActivityStreamsLink(v ActivityStreamsLink)
	// PrependActivityStreamsListen prepends a Listen value to the front of a
	// list of the property "earlyItems". Invalidates all iterators.
	PrependActivityStreamsListen(v ActivityStreamsListen)
	// PrependActivityStreamsMention prepends a Mention value to the front of
	// a list of the property "earlyItems". Invalidates all iterators.
	PrependActivityStreamsMention(v ActivityStreamsMention)
	// PrependActivityStreamsMove prepends a Move value to the front of a list
	// of the property "earlyItems". Invalidates all iterators.
	PrependActivityStreamsMove(v ActivityStreamsMove)
	// PrependActivityStreamsNote prepends a Note value to the front of a list
	// of the property "earlyItems". Invalidates all iterators.
	PrependActivityStreamsNote(v ActivityStreamsNote)
	// PrependActivityStreamsObject prepends a Object value to the front of a
	// list of the property "earlyItems". Invalidates all iterators.
	PrependActivityStreamsObject(v ActivityStreamsObject)
	// PrependActivityStreamsOffer prepends a Offer value to the front of a
	// list of the property "earlyItems". Invalidates all iterators.
	PrependActivityStreamsOffer(v ActivityStreamsOffer)
	// PrependActivityStreamsOrderedCollection prepends a OrderedCollection
	// value to the front of a list of the property "earlyItems".
	// Invalidates all iterators.
	PrependActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// PrependActivityStreamsOrderedCollectionPage prepends a
	// OrderedCollectionPage value to the front of a list of the property
	// "earlyItems". Invalidates all iterators.
	PrependActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// PrependActivityStreamsOrganization prepends a Organization value to the
	// front of a list of the property "earlyItems". Invalidates all
	// iterators.
	PrependActivityStreamsOrganization(v ActivityStreamsOrganization)
	// PrependActivityStreamsPage prepends a Page value to the front of a list
	// of the property "earlyItems". Invalidates all iterators.
	PrependActivityStreamsPage(v ActivityStreamsPage)
	// PrependActivityStreamsPerson prepends a Person value to the front of a
	// list of the property "earlyItems". Invalidates all iterators.
	PrependActivityStreamsPerson(v ActivityStreamsPerson)
	// PrependActivityStreamsPlace prepends a Place value to the front of a
	// list of the property "earlyItems". Invalidates all iterators.
	PrependActivityStreamsPlace(v ActivityStreamsPlace)
	// PrependActivityStreamsProfile prepends a Profile value to the front of
	// a list of the property "earlyItems". Invalidates all iterators.
	PrependActivityStreamsProfile(v ActivityStreamsProfile)
	// PrependActivityStreamsQuestion prepends a Question value to the front
	// of a list of the property "earlyItems". Invalidates all iterators.
	PrependActivityStreamsQuestion(v ActivityStreamsQuestion)
	// PrependActivityStreamsRead prepends a Read value to the front of a list
	// of the property "earlyItems". Invalidates all iterators.
	PrependActivityStreamsRead(v ActivityStreamsRead)
	// PrependActivityStreamsReject prepends a Reject value to the front of a
	// list of the property "earlyItems". Invalidates all iterators.
	PrependActivityStreamsReject(v ActivityStreamsReject)
	// PrependActivityStreamsRelationship prepends a Relationship value to the
	// front of a list of the property "earlyItems". Invalidates all
	// iterators.
	PrependActivityStreamsRelationship(v ActivityStreamsRelationship)
	// PrependActivityStreamsRemove prepends a Remove value to the front of a
	// list of the property "earlyItems". Invalidates all iterators.
	PrependActivityStreamsRemove(v ActivityStreamsRemove)
	// PrependActivityStreamsService prepends a Service value to the front of
	// a list of the property "earlyItems". Invalidates all iterators.
	PrependActivityStreamsService(v ActivityStreamsService)
	// PrependActivityStreamsTentativeAccept prepends a TentativeAccept value
	// to the front of a list of the property "earlyItems". Invalidates
	// all iterators.
	PrependActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// PrependActivityStreamsTentativeReject prepends a TentativeReject value
	// to the front of a list of the property "earlyItems". Invalidates
	// all iterators.
	PrependActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// PrependActivityStreamsTombstone prepends a Tombstone value to the front
	// of a list of the property "earlyItems". Invalidates all iterators.
	PrependActivityStreamsTombstone(v ActivityStreamsTombstone)
	// PrependActivityStreamsTravel prepends a Travel value to the front of a
	// list of the property "earlyItems". Invalidates all iterators.
	PrependActivityStreamsTravel(v ActivityStreamsTravel)
	// PrependActivityStreamsUndo prepends a Undo value to the front of a list
	// of the property "earlyItems". Invalidates all iterators.
	PrependActivityStreamsUndo(v ActivityStreamsUndo)
	// PrependActivityStreamsUpdate prepends a Update value to the front of a
	// list of the property "earlyItems". Invalidates all iterators.
	PrependActivityStreamsUpdate(v ActivityStreamsUpdate)
	// PrependActivityStreamsVideo prepends a Video value to the front of a
	// list of the property "earlyItems". Invalidates all iterators.
	PrependActivityStreamsVideo(v ActivityStreamsVideo)
	// PrependActivityStreamsView prepends a View value to the front of a list
	// of the property "earlyItems". Invalidates all iterators.
	PrependActivityStreamsView(v ActivityStreamsView)
	// PrependForgeFedBranch prepends a Branch value to the front of a list of
	// the property "earlyItems". Invalidates all iterators.
	PrependForgeFedBranch(v ForgeFedBranch)
	// PrependForgeFedCommit prepends a Commit value to the front of a list of
	// the property "earlyItems". Invalidates all iterators.
	PrependForgeFedCommit(v ForgeFedCommit)
	// PrependForgeFedPush prepends a Push value to the front of a list of the
	// property "earlyItems". Invalidates all iterators.
	PrependForgeFedPush(v ForgeFedPush)
	// PrependForgeFedRepository prepends a Repository value to the front of a
	// list of the property "earlyItems". Invalidates all iterators.
	PrependForgeFedRepository(v ForgeFedRepository)
	// PrependForgeFedTicket prepends a Ticket value to the front of a list of
	// the property "earlyItems". Invalidates all iterators.
	PrependForgeFedTicket(v ForgeFedTicket)
	// PrependForgeFedTicketDependency prepends a TicketDependency value to
	// the front of a list of the property "earlyItems". Invalidates all
	// iterators.
	PrependForgeFedTicketDependency(v ForgeFedTicketDependency)
	// PrependIRI prepends an IRI value to the front of a list of the property
	// "earlyItems".
	PrependIRI(v *url.URL)
	// PrependTootEmoji prepends a Emoji value to the front of a list of the
	// property "earlyItems". Invalidates all iterators.
	PrependTootEmoji(v TootEmoji)
	// PrependTootIdentityProof prepends a IdentityProof value to the front of
	// a list of the property "earlyItems". Invalidates all iterators.
	PrependTootIdentityProof(v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "earlyItems". Invalidates all iterators. Returns an
	// error if the type is not a valid one to set for this property.
	PrependType(t Type) error
	// Remove deletes an element at the specified index from a list of the
	// property "earlyItems", regardless of its type. Panics if the index
	// is out of bounds. Invalidates all iterators.
	Remove(idx int)
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// SetActivityStreamsAccept sets a Accept value to be at the specified
	// index for the property "earlyItems". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsAccept(idx int, v ActivityStreamsAccept)
	// SetActivityStreamsActivity sets a Activity value to be at the specified
	// index for the property "earlyItems". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsActivity(idx int, v ActivityStreamsActivity)
	// SetActivityStreamsAdd sets a Add value to be at the specified index for
	// the property "earlyItems". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsAdd(idx int, v ActivityStreamsAdd)
	// SetActivityStreamsAnnounce sets a Announce value to be at the specified
	// index for the property "earlyItems". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsAnnounce(idx int, v ActivityStreamsAnnounce)
	// SetActivityStreamsApplication sets a Application value to be at the
	// specified index for the property "earlyItems". Panics if the index
	// is out of bounds. Invalidates all iterators.
	SetActivityStreamsApplication(idx int, v ActivityStreamsApplication)
	// SetActivityStreamsArrive sets a Arrive value to be at the specified
	// index for the property "earlyItems". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsArrive(idx int, v ActivityStreamsArrive)
	// SetActivityStreamsArticle sets a Article value to be at the specified
	// index for the property "earlyItems". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsArticle(idx int, v ActivityStreamsArticle)
	// SetActivityStreamsAudio sets a Audio value to be at the specified index
	// for the property "earlyItems". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsAudio(idx int, v ActivityStreamsAudio)
	// SetActivityStreamsBlock sets a Block value to be at the specified index
	// for the property "earlyItems". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsBlock(idx int, v ActivityStreamsBlock)
	// SetActivityStreamsCollection sets a Collection value to be at the
	// specified index for the property "earlyItems". Panics if the index
	// is out of bounds. Invalidates all iterators.
	SetActivityStreamsCollection(idx int, v ActivityStreamsCollection)
	// SetActivityStreamsCollectionPage sets a CollectionPage value to be at
	// the specified index for the property "earlyItems". Panics if the
	// index is out of bounds. Invalidates all iterators.
	SetActivityStreamsCollectionPage(idx int, v ActivityStreamsCollectionPage)
	// SetActivityStreamsCreate sets a Create value to be at the specified
	// index for the property "earlyItems". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsCreate(idx int, v ActivityStreamsCreate)
	// SetActivityStreamsDelete sets a Delete value to be at the specified
	// index for the property "earlyItems". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsDelete(idx int, v ActivityStreamsDelete)
	// SetActivityStreamsDislike sets a Dislike value to be at the specified
	// index for the property "earlyItems". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsDislike(idx int, v ActivityStreamsDislike)
	// SetActivityStreamsDocument sets a Document value to be at the specified
	// index for the property "earlyItems". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsDocument(idx int, v ActivityStreamsDocument)
	// SetActivityStreamsEvent sets a Event value to be at the specified index
	// for the property "earlyItems". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsEvent(idx int, v ActivityStreamsEvent)
	// SetActivityStreamsFlag sets a Flag value to be at the specified index
	// for the property "earlyItems". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsFlag(idx int, v ActivityStreamsFlag)
	// SetActivityStreamsFollow sets a Follow value to be at the specified
	// index for the property "earlyItems". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsFollow(idx int, v ActivityStreamsFollow)
	// SetActivityStreamsGroup sets a Group value to be at the specified index
	// for the property "earlyItems". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsGroup(idx int, v ActivityStreamsGroup)
	// SetActivityStreamsIgnore sets a Ignore value to be at the specified
	// index for the property "earlyItems". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsIgnore(idx int, v ActivityStreamsIgnore)
	// SetActivityStreamsImage sets a Image value to be at the specified index
	// for the property "earlyItems". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsImage(idx int, v ActivityStreamsImage)
	// SetActivityStreamsIntransitiveActivity sets a IntransitiveActivity
	// value to be at the specified index for the property "earlyItems".
	// Panics if the index is out of bounds. Invalidates all iterators.
	SetActivityStreamsIntransitiveActivity(idx int, v ActivityStreamsIntransitiveActivity)
	// SetActivityStreamsInvite sets a Invite value to be at the specified
	// index for the property "earlyItems". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsInvite(idx int, v ActivityStreamsInvite)
	// SetActivityStreamsJoin sets a Join value to be at the specified index
	// for the property "earlyItems". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsJoin(idx int, v ActivityStreamsJoin)
	// SetActivityStreamsLeave sets a Leave value to be at the specified index
	// for the property "earlyItems". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsLeave(idx int, v ActivityStreamsLeave)
	// SetActivityStreamsLike sets a Like value to be at the specified index
	// for the property "earlyItems". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsLike(idx int, v ActivityStreamsLike)
	// SetActivityStreamsLink sets a Link value to be at the specified index
	// for the property "earlyItems". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsLink(idx int, v ActivityStreamsLink)
	// SetActivityStreamsListen sets a Listen value to be at the specified
	// index for the property "earlyItems". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsListen(idx int, v ActivityStreamsListen)
	// SetActivityStreamsMention sets a Mention value to be at the specified
	// index for the property "earlyItems". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsMention(idx int, v ActivityStreamsMention)
	// SetActivityStreamsMove sets a Move value to be at the specified index
	// for the property "earlyItems". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsMove(idx int, v ActivityStreamsMove)
	// SetActivityStreamsNote sets a Note value to be at the specified index
	// for the property "earlyItems". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsNote(idx int, v ActivityStreamsNote)
	// SetActivityStreamsObject sets a Object value to be at the specified
	// index for the property "earlyItems". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsObject(idx int, v ActivityStreamsObject)
	// SetActivityStreamsOffer sets a Offer value to be at the specified index
	// for the property "earlyItems". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsOffer(idx int, v ActivityStreamsOffer)
	// SetActivityStreamsOrderedCollection sets a OrderedCollection value to
	// be at the specified index for the property "earlyItems". Panics if
	// the index is out of bounds. Invalidates all iterators.
	SetActivityStreamsOrderedCollection(idx int, v ActivityStreamsOrderedCollection)
	// SetActivityStreamsOrderedCollectionPage sets a OrderedCollectionPage
	// value to be at the specified index for the property "earlyItems".
	// Panics if the index is out of bounds. Invalidates all iterators.
	SetActivityStreamsOrderedCollectionPage(idx int, v ActivityStreamsOrderedCollectionPage)
	// SetActivityStreamsOrganization sets a Organization value to be at the
	// specified index for the property "earlyItems". Panics if the index
	// is out of bounds. Invalidates all iterators.
	SetActivityStreamsOrganization(idx int, v ActivityStreamsOrganization)
	// SetActivityStreamsPage sets a Page value to be at the specified index
	// for the property "earlyItems". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsPage(idx int, v ActivityStreamsPage)
	// SetActivityStreamsPerson sets a Person value to be at the specified
	// index for the property "earlyItems". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsPerson(idx int, v ActivityStreamsPerson)
	// SetActivityStreamsPlace sets a Place value to be at the specified index
	// for the property "earlyItems". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsPlace(idx int, v ActivityStreamsPlace)
	// SetActivityStreamsProfile sets a Profile value to be at the specified
	// index for the property "earlyItems". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsProfile(idx int, v ActivityStreamsProfile)
	// SetActivityStreamsQuestion sets a Question value to be at the specified
	// index for the property "earlyItems". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsQuestion(idx int, v ActivityStreamsQuestion)
	// SetActivityStreamsRead sets a Read value to be at the specified index
	// for the property "earlyItems". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsRead(idx int, v ActivityStreamsRead)
	// SetActivityStreamsReject sets a Reject value to be at the specified
	// index for the property "earlyItems". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsReject(idx int, v ActivityStreamsReject)
	// SetActivityStreamsRelationship sets a Relationship value to be at the
	// specified index for the property "earlyItems". Panics if the index
	// is out of bounds. Invalidates all iterators.
	SetActivityStreamsRelationship(idx int, v ActivityStreamsRelationship)
	// SetActivityStreamsRemove sets a Remove value to be at the specified
	// index for the property "earlyItems". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsRemove(idx int, v ActivityStreamsRemove)
	// SetActivityStreamsService sets a Service value to be at the specified
	// index for the property "earlyItems". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsService(idx int, v ActivityStreamsService)
	// SetActivityStreamsTentativeAccept sets a TentativeAccept value to be at
	// the specified index for the property "earlyItems". Panics if the
	// index is out of bounds. Invalidates all iterators.
	SetActivityStreamsTentativeAccept(idx int, v ActivityStreamsTentativeAccept)
	// SetActivityStreamsTentativeReject sets a TentativeReject value to be at
	// the specified index for the property "earlyItems". Panics if the
	// index is out of bounds. Invalidates all iterators.
	SetActivityStreamsTentativeReject(idx int, v ActivityStreamsTentativeReject)
	// SetActivityStreamsTombstone sets a Tombstone value to be at the
	// specified index for the property "earlyItems". Panics if the index
	// is out of bounds. Invalidates all iterators.
	SetActivityStreamsTombstone(idx int, v ActivityStreamsTombstone)
	// SetActivityStreamsTravel sets a Travel value to be at the specified
	// index for the property "earlyItems". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsTravel(idx int, v ActivityStreamsTravel)
	// SetActivityStreamsUndo sets a Undo value to be at the specified index
	// for the property "earlyItems". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsUndo(idx int, v ActivityStreamsUndo)
	// SetActivityStreamsUpdate sets a Update value to be at the specified
	// index for the property "earlyItems". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsUpdate(idx int, v ActivityStreamsUpdate)
	// SetActivityStreamsVideo sets a Video value to be at the specified index
	// for the property "earlyItems". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsVideo(idx int, v ActivityStreamsVideo)
	// SetActivityStreamsView sets a View value to be at the specified index
	// for the property "earlyItems". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsView(idx int, v ActivityStreamsView)
	// SetForgeFedBranch sets a Branch value to be at the specified index for
	// the property "earlyItems". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedBranch(idx int, v ForgeFedBranch)
	// SetForgeFedCommit sets a Commit value to be at the specified index for
	// the property "earlyItems". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedCommit(idx int, v ForgeFedCommit)
	// SetForgeFedPush sets a Push value to be at the specified index for the
	// property "earlyItems". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedPush(idx int, v ForgeFedPush)
	// SetForgeFedRepository sets a Repository value to be at the specified
	// index for the property "earlyItems". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetForgeFedRepository(idx int, v ForgeFedRepository)
	// SetForgeFedTicket sets a Ticket value to be at the specified index for
	// the property "earlyItems". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedTicket(idx int, v ForgeFedTicket)
	// SetForgeFedTicketDependency sets a TicketDependency value to be at the
	// specified index for the property "earlyItems". Panics if the index
	// is out of bounds. Invalidates all iterators.
	SetForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
	// SetIRI sets an IRI value to be at the specified index for the property
	// "earlyItems". Panics if the index is out of bounds.
	SetIRI(idx int, v *url.URL)
	// SetTootEmoji sets a Emoji value to be at the specified index for the
	// property "earlyItems". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetTootEmoji(idx int, v TootEmoji)
	// SetTootIdentityProof sets a IdentityProof value to be at the specified
	// index for the property "earlyItems". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetTootIdentityProof(idx int, v TootIdentityProof)
	// SetType sets an arbitrary type value to the specified index of the
	// property "earlyItems". Invalidates all iterators. Returns an error
	// if the type is not a valid one to set for this property. Panics if
	// the index is out of bounds.
	SetType(idx int, t Type) error
	// Swap swaps the location of values at two indices for the "earlyItems"
	// property.
	Swap(i, j int)
}

In an ordered collection (or an ordered collection page) in which items (or orderedItems) contains a continuous subset of the collection’s items from one end, earlyItems identifiers a continuous subset from the other end. For example, if items lists the chronologically latest items, earlyItems would list the chrologically earliest items. The ordering rule for items in earlyItems MUST be the same as in items. For examle, if items lists items in reverse chronogical order, then so does earlyItems.

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    "https://forgefed.peers.community/ns"
  ],
  "earlyItems": [
    "https://dev.example/aviva/outbox/3",
    "https://dev.example/aviva/outbox/2",
    "https://dev.example/aviva/outbox/1"
  ],
  "id": "https://dev.example/aviva/outbox",
  "orderedItems": [
    "https://dev.example/aviva/outbox/712",
    "https://dev.example/aviva/outbox/711",
    "https://dev.example/aviva/outbox/710"
  ],
  "totalItems": 712,
  "type": "OrderedCollection"
}

type ForgeFedEarlyItemsPropertyIterator

type ForgeFedEarlyItemsPropertyIterator interface {
	// GetActivityStreamsAccept returns the value of this property. When
	// IsActivityStreamsAccept returns false, GetActivityStreamsAccept
	// will return an arbitrary value.
	GetActivityStreamsAccept() ActivityStreamsAccept
	// GetActivityStreamsActivity returns the value of this property. When
	// IsActivityStreamsActivity returns false, GetActivityStreamsActivity
	// will return an arbitrary value.
	GetActivityStreamsActivity() ActivityStreamsActivity
	// GetActivityStreamsAdd returns the value of this property. When
	// IsActivityStreamsAdd returns false, GetActivityStreamsAdd will
	// return an arbitrary value.
	GetActivityStreamsAdd() ActivityStreamsAdd
	// GetActivityStreamsAnnounce returns the value of this property. When
	// IsActivityStreamsAnnounce returns false, GetActivityStreamsAnnounce
	// will return an arbitrary value.
	GetActivityStreamsAnnounce() ActivityStreamsAnnounce
	// GetActivityStreamsApplication returns the value of this property. When
	// IsActivityStreamsApplication returns false,
	// GetActivityStreamsApplication will return an arbitrary value.
	GetActivityStreamsApplication() ActivityStreamsApplication
	// GetActivityStreamsArrive returns the value of this property. When
	// IsActivityStreamsArrive returns false, GetActivityStreamsArrive
	// will return an arbitrary value.
	GetActivityStreamsArrive() ActivityStreamsArrive
	// GetActivityStreamsArticle returns the value of this property. When
	// IsActivityStreamsArticle returns false, GetActivityStreamsArticle
	// will return an arbitrary value.
	GetActivityStreamsArticle() ActivityStreamsArticle
	// GetActivityStreamsAudio returns the value of this property. When
	// IsActivityStreamsAudio returns false, GetActivityStreamsAudio will
	// return an arbitrary value.
	GetActivityStreamsAudio() ActivityStreamsAudio
	// GetActivityStreamsBlock returns the value of this property. When
	// IsActivityStreamsBlock returns false, GetActivityStreamsBlock will
	// return an arbitrary value.
	GetActivityStreamsBlock() ActivityStreamsBlock
	// GetActivityStreamsCollection returns the value of this property. When
	// IsActivityStreamsCollection returns false,
	// GetActivityStreamsCollection will return an arbitrary value.
	GetActivityStreamsCollection() ActivityStreamsCollection
	// GetActivityStreamsCollectionPage returns the value of this property.
	// When IsActivityStreamsCollectionPage returns false,
	// GetActivityStreamsCollectionPage will return an arbitrary value.
	GetActivityStreamsCollectionPage() ActivityStreamsCollectionPage
	// GetActivityStreamsCreate returns the value of this property. When
	// IsActivityStreamsCreate returns false, GetActivityStreamsCreate
	// will return an arbitrary value.
	GetActivityStreamsCreate() ActivityStreamsCreate
	// GetActivityStreamsDelete returns the value of this property. When
	// IsActivityStreamsDelete returns false, GetActivityStreamsDelete
	// will return an arbitrary value.
	GetActivityStreamsDelete() ActivityStreamsDelete
	// GetActivityStreamsDislike returns the value of this property. When
	// IsActivityStreamsDislike returns false, GetActivityStreamsDislike
	// will return an arbitrary value.
	GetActivityStreamsDislike() ActivityStreamsDislike
	// GetActivityStreamsDocument returns the value of this property. When
	// IsActivityStreamsDocument returns false, GetActivityStreamsDocument
	// will return an arbitrary value.
	GetActivityStreamsDocument() ActivityStreamsDocument
	// GetActivityStreamsEvent returns the value of this property. When
	// IsActivityStreamsEvent returns false, GetActivityStreamsEvent will
	// return an arbitrary value.
	GetActivityStreamsEvent() ActivityStreamsEvent
	// GetActivityStreamsFlag returns the value of this property. When
	// IsActivityStreamsFlag returns false, GetActivityStreamsFlag will
	// return an arbitrary value.
	GetActivityStreamsFlag() ActivityStreamsFlag
	// GetActivityStreamsFollow returns the value of this property. When
	// IsActivityStreamsFollow returns false, GetActivityStreamsFollow
	// will return an arbitrary value.
	GetActivityStreamsFollow() ActivityStreamsFollow
	// GetActivityStreamsGroup returns the value of this property. When
	// IsActivityStreamsGroup returns false, GetActivityStreamsGroup will
	// return an arbitrary value.
	GetActivityStreamsGroup() ActivityStreamsGroup
	// GetActivityStreamsIgnore returns the value of this property. When
	// IsActivityStreamsIgnore returns false, GetActivityStreamsIgnore
	// will return an arbitrary value.
	GetActivityStreamsIgnore() ActivityStreamsIgnore
	// GetActivityStreamsImage returns the value of this property. When
	// IsActivityStreamsImage returns false, GetActivityStreamsImage will
	// return an arbitrary value.
	GetActivityStreamsImage() ActivityStreamsImage
	// GetActivityStreamsIntransitiveActivity returns the value of this
	// property. When IsActivityStreamsIntransitiveActivity returns false,
	// GetActivityStreamsIntransitiveActivity will return an arbitrary
	// value.
	GetActivityStreamsIntransitiveActivity() ActivityStreamsIntransitiveActivity
	// GetActivityStreamsInvite returns the value of this property. When
	// IsActivityStreamsInvite returns false, GetActivityStreamsInvite
	// will return an arbitrary value.
	GetActivityStreamsInvite() ActivityStreamsInvite
	// GetActivityStreamsJoin returns the value of this property. When
	// IsActivityStreamsJoin returns false, GetActivityStreamsJoin will
	// return an arbitrary value.
	GetActivityStreamsJoin() ActivityStreamsJoin
	// GetActivityStreamsLeave returns the value of this property. When
	// IsActivityStreamsLeave returns false, GetActivityStreamsLeave will
	// return an arbitrary value.
	GetActivityStreamsLeave() ActivityStreamsLeave
	// GetActivityStreamsLike returns the value of this property. When
	// IsActivityStreamsLike returns false, GetActivityStreamsLike will
	// return an arbitrary value.
	GetActivityStreamsLike() ActivityStreamsLike
	// GetActivityStreamsLink returns the value of this property. When
	// IsActivityStreamsLink returns false, GetActivityStreamsLink will
	// return an arbitrary value.
	GetActivityStreamsLink() ActivityStreamsLink
	// GetActivityStreamsListen returns the value of this property. When
	// IsActivityStreamsListen returns false, GetActivityStreamsListen
	// will return an arbitrary value.
	GetActivityStreamsListen() ActivityStreamsListen
	// GetActivityStreamsMention returns the value of this property. When
	// IsActivityStreamsMention returns false, GetActivityStreamsMention
	// will return an arbitrary value.
	GetActivityStreamsMention() ActivityStreamsMention
	// GetActivityStreamsMove returns the value of this property. When
	// IsActivityStreamsMove returns false, GetActivityStreamsMove will
	// return an arbitrary value.
	GetActivityStreamsMove() ActivityStreamsMove
	// GetActivityStreamsNote returns the value of this property. When
	// IsActivityStreamsNote returns false, GetActivityStreamsNote will
	// return an arbitrary value.
	GetActivityStreamsNote() ActivityStreamsNote
	// GetActivityStreamsObject returns the value of this property. When
	// IsActivityStreamsObject returns false, GetActivityStreamsObject
	// will return an arbitrary value.
	GetActivityStreamsObject() ActivityStreamsObject
	// GetActivityStreamsOffer returns the value of this property. When
	// IsActivityStreamsOffer returns false, GetActivityStreamsOffer will
	// return an arbitrary value.
	GetActivityStreamsOffer() ActivityStreamsOffer
	// GetActivityStreamsOrderedCollection returns the value of this property.
	// When IsActivityStreamsOrderedCollection returns false,
	// GetActivityStreamsOrderedCollection will return an arbitrary value.
	GetActivityStreamsOrderedCollection() ActivityStreamsOrderedCollection
	// GetActivityStreamsOrderedCollectionPage returns the value of this
	// property. When IsActivityStreamsOrderedCollectionPage returns
	// false, GetActivityStreamsOrderedCollectionPage will return an
	// arbitrary value.
	GetActivityStreamsOrderedCollectionPage() ActivityStreamsOrderedCollectionPage
	// GetActivityStreamsOrganization returns the value of this property. When
	// IsActivityStreamsOrganization returns false,
	// GetActivityStreamsOrganization will return an arbitrary value.
	GetActivityStreamsOrganization() ActivityStreamsOrganization
	// GetActivityStreamsPage returns the value of this property. When
	// IsActivityStreamsPage returns false, GetActivityStreamsPage will
	// return an arbitrary value.
	GetActivityStreamsPage() ActivityStreamsPage
	// GetActivityStreamsPerson returns the value of this property. When
	// IsActivityStreamsPerson returns false, GetActivityStreamsPerson
	// will return an arbitrary value.
	GetActivityStreamsPerson() ActivityStreamsPerson
	// GetActivityStreamsPlace returns the value of this property. When
	// IsActivityStreamsPlace returns false, GetActivityStreamsPlace will
	// return an arbitrary value.
	GetActivityStreamsPlace() ActivityStreamsPlace
	// GetActivityStreamsProfile returns the value of this property. When
	// IsActivityStreamsProfile returns false, GetActivityStreamsProfile
	// will return an arbitrary value.
	GetActivityStreamsProfile() ActivityStreamsProfile
	// GetActivityStreamsQuestion returns the value of this property. When
	// IsActivityStreamsQuestion returns false, GetActivityStreamsQuestion
	// will return an arbitrary value.
	GetActivityStreamsQuestion() ActivityStreamsQuestion
	// GetActivityStreamsRead returns the value of this property. When
	// IsActivityStreamsRead returns false, GetActivityStreamsRead will
	// return an arbitrary value.
	GetActivityStreamsRead() ActivityStreamsRead
	// GetActivityStreamsReject returns the value of this property. When
	// IsActivityStreamsReject returns false, GetActivityStreamsReject
	// will return an arbitrary value.
	GetActivityStreamsReject() ActivityStreamsReject
	// GetActivityStreamsRelationship returns the value of this property. When
	// IsActivityStreamsRelationship returns false,
	// GetActivityStreamsRelationship will return an arbitrary value.
	GetActivityStreamsRelationship() ActivityStreamsRelationship
	// GetActivityStreamsRemove returns the value of this property. When
	// IsActivityStreamsRemove returns false, GetActivityStreamsRemove
	// will return an arbitrary value.
	GetActivityStreamsRemove() ActivityStreamsRemove
	// GetActivityStreamsService returns the value of this property. When
	// IsActivityStreamsService returns false, GetActivityStreamsService
	// will return an arbitrary value.
	GetActivityStreamsService() ActivityStreamsService
	// GetActivityStreamsTentativeAccept returns the value of this property.
	// When IsActivityStreamsTentativeAccept returns false,
	// GetActivityStreamsTentativeAccept will return an arbitrary value.
	GetActivityStreamsTentativeAccept() ActivityStreamsTentativeAccept
	// GetActivityStreamsTentativeReject returns the value of this property.
	// When IsActivityStreamsTentativeReject returns false,
	// GetActivityStreamsTentativeReject will return an arbitrary value.
	GetActivityStreamsTentativeReject() ActivityStreamsTentativeReject
	// GetActivityStreamsTombstone returns the value of this property. When
	// IsActivityStreamsTombstone returns false,
	// GetActivityStreamsTombstone will return an arbitrary value.
	GetActivityStreamsTombstone() ActivityStreamsTombstone
	// GetActivityStreamsTravel returns the value of this property. When
	// IsActivityStreamsTravel returns false, GetActivityStreamsTravel
	// will return an arbitrary value.
	GetActivityStreamsTravel() ActivityStreamsTravel
	// GetActivityStreamsUndo returns the value of this property. When
	// IsActivityStreamsUndo returns false, GetActivityStreamsUndo will
	// return an arbitrary value.
	GetActivityStreamsUndo() ActivityStreamsUndo
	// GetActivityStreamsUpdate returns the value of this property. When
	// IsActivityStreamsUpdate returns false, GetActivityStreamsUpdate
	// will return an arbitrary value.
	GetActivityStreamsUpdate() ActivityStreamsUpdate
	// GetActivityStreamsVideo returns the value of this property. When
	// IsActivityStreamsVideo returns false, GetActivityStreamsVideo will
	// return an arbitrary value.
	GetActivityStreamsVideo() ActivityStreamsVideo
	// GetActivityStreamsView returns the value of this property. When
	// IsActivityStreamsView returns false, GetActivityStreamsView will
	// return an arbitrary value.
	GetActivityStreamsView() ActivityStreamsView
	// GetForgeFedBranch returns the value of this property. When
	// IsForgeFedBranch returns false, GetForgeFedBranch will return an
	// arbitrary value.
	GetForgeFedBranch() ForgeFedBranch
	// GetForgeFedCommit returns the value of this property. When
	// IsForgeFedCommit returns false, GetForgeFedCommit will return an
	// arbitrary value.
	GetForgeFedCommit() ForgeFedCommit
	// GetForgeFedPush returns the value of this property. When IsForgeFedPush
	// returns false, GetForgeFedPush will return an arbitrary value.
	GetForgeFedPush() ForgeFedPush
	// GetForgeFedRepository returns the value of this property. When
	// IsForgeFedRepository returns false, GetForgeFedRepository will
	// return an arbitrary value.
	GetForgeFedRepository() ForgeFedRepository
	// GetForgeFedTicket returns the value of this property. When
	// IsForgeFedTicket returns false, GetForgeFedTicket will return an
	// arbitrary value.
	GetForgeFedTicket() ForgeFedTicket
	// GetForgeFedTicketDependency returns the value of this property. When
	// IsForgeFedTicketDependency returns false,
	// GetForgeFedTicketDependency will return an arbitrary value.
	GetForgeFedTicketDependency() ForgeFedTicketDependency
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return an arbitrary value.
	GetIRI() *url.URL
	// GetTootEmoji returns the value of this property. When IsTootEmoji
	// returns false, GetTootEmoji will return an arbitrary value.
	GetTootEmoji() TootEmoji
	// GetTootIdentityProof returns the value of this property. When
	// IsTootIdentityProof returns false, GetTootIdentityProof will return
	// an arbitrary value.
	GetTootIdentityProof() TootIdentityProof
	// GetType returns the value in this property as a Type. Returns nil if
	// the value is not an ActivityStreams type, such as an IRI or another
	// value.
	GetType() Type
	// HasAny returns true if any of the different values is set.
	HasAny() bool
	// IsActivityStreamsAccept returns true if this property has a type of
	// "Accept". When true, use the GetActivityStreamsAccept and
	// SetActivityStreamsAccept methods to access and set this property.
	IsActivityStreamsAccept() bool
	// IsActivityStreamsActivity returns true if this property has a type of
	// "Activity". When true, use the GetActivityStreamsActivity and
	// SetActivityStreamsActivity methods to access and set this property.
	IsActivityStreamsActivity() bool
	// IsActivityStreamsAdd returns true if this property has a type of "Add".
	// When true, use the GetActivityStreamsAdd and SetActivityStreamsAdd
	// methods to access and set this property.
	IsActivityStreamsAdd() bool
	// IsActivityStreamsAnnounce returns true if this property has a type of
	// "Announce". When true, use the GetActivityStreamsAnnounce and
	// SetActivityStreamsAnnounce methods to access and set this property.
	IsActivityStreamsAnnounce() bool
	// IsActivityStreamsApplication returns true if this property has a type
	// of "Application". When true, use the GetActivityStreamsApplication
	// and SetActivityStreamsApplication methods to access and set this
	// property.
	IsActivityStreamsApplication() bool
	// IsActivityStreamsArrive returns true if this property has a type of
	// "Arrive". When true, use the GetActivityStreamsArrive and
	// SetActivityStreamsArrive methods to access and set this property.
	IsActivityStreamsArrive() bool
	// IsActivityStreamsArticle returns true if this property has a type of
	// "Article". When true, use the GetActivityStreamsArticle and
	// SetActivityStreamsArticle methods to access and set this property.
	IsActivityStreamsArticle() bool
	// IsActivityStreamsAudio returns true if this property has a type of
	// "Audio". When true, use the GetActivityStreamsAudio and
	// SetActivityStreamsAudio methods to access and set this property.
	IsActivityStreamsAudio() bool
	// IsActivityStreamsBlock returns true if this property has a type of
	// "Block". When true, use the GetActivityStreamsBlock and
	// SetActivityStreamsBlock methods to access and set this property.
	IsActivityStreamsBlock() bool
	// IsActivityStreamsCollection returns true if this property has a type of
	// "Collection". When true, use the GetActivityStreamsCollection and
	// SetActivityStreamsCollection methods to access and set this
	// property.
	IsActivityStreamsCollection() bool
	// IsActivityStreamsCollectionPage returns true if this property has a
	// type of "CollectionPage". When true, use the
	// GetActivityStreamsCollectionPage and
	// SetActivityStreamsCollectionPage methods to access and set this
	// property.
	IsActivityStreamsCollectionPage() bool
	// IsActivityStreamsCreate returns true if this property has a type of
	// "Create". When true, use the GetActivityStreamsCreate and
	// SetActivityStreamsCreate methods to access and set this property.
	IsActivityStreamsCreate() bool
	// IsActivityStreamsDelete returns true if this property has a type of
	// "Delete". When true, use the GetActivityStreamsDelete and
	// SetActivityStreamsDelete methods to access and set this property.
	IsActivityStreamsDelete() bool
	// IsActivityStreamsDislike returns true if this property has a type of
	// "Dislike". When true, use the GetActivityStreamsDislike and
	// SetActivityStreamsDislike methods to access and set this property.
	IsActivityStreamsDislike() bool
	// IsActivityStreamsDocument returns true if this property has a type of
	// "Document". When true, use the GetActivityStreamsDocument and
	// SetActivityStreamsDocument methods to access and set this property.
	IsActivityStreamsDocument() bool
	// IsActivityStreamsEvent returns true if this property has a type of
	// "Event". When true, use the GetActivityStreamsEvent and
	// SetActivityStreamsEvent methods to access and set this property.
	IsActivityStreamsEvent() bool
	// IsActivityStreamsFlag returns true if this property has a type of
	// "Flag". When true, use the GetActivityStreamsFlag and
	// SetActivityStreamsFlag methods to access and set this property.
	IsActivityStreamsFlag() bool
	// IsActivityStreamsFollow returns true if this property has a type of
	// "Follow". When true, use the GetActivityStreamsFollow and
	// SetActivityStreamsFollow methods to access and set this property.
	IsActivityStreamsFollow() bool
	// IsActivityStreamsGroup returns true if this property has a type of
	// "Group". When true, use the GetActivityStreamsGroup and
	// SetActivityStreamsGroup methods to access and set this property.
	IsActivityStreamsGroup() bool
	// IsActivityStreamsIgnore returns true if this property has a type of
	// "Ignore". When true, use the GetActivityStreamsIgnore and
	// SetActivityStreamsIgnore methods to access and set this property.
	IsActivityStreamsIgnore() bool
	// IsActivityStreamsImage returns true if this property has a type of
	// "Image". When true, use the GetActivityStreamsImage and
	// SetActivityStreamsImage methods to access and set this property.
	IsActivityStreamsImage() bool
	// IsActivityStreamsIntransitiveActivity returns true if this property has
	// a type of "IntransitiveActivity". When true, use the
	// GetActivityStreamsIntransitiveActivity and
	// SetActivityStreamsIntransitiveActivity methods to access and set
	// this property.
	IsActivityStreamsIntransitiveActivity() bool
	// IsActivityStreamsInvite returns true if this property has a type of
	// "Invite". When true, use the GetActivityStreamsInvite and
	// SetActivityStreamsInvite methods to access and set this property.
	IsActivityStreamsInvite() bool
	// IsActivityStreamsJoin returns true if this property has a type of
	// "Join". When true, use the GetActivityStreamsJoin and
	// SetActivityStreamsJoin methods to access and set this property.
	IsActivityStreamsJoin() bool
	// IsActivityStreamsLeave returns true if this property has a type of
	// "Leave". When true, use the GetActivityStreamsLeave and
	// SetActivityStreamsLeave methods to access and set this property.
	IsActivityStreamsLeave() bool
	// IsActivityStreamsLike returns true if this property has a type of
	// "Like". When true, use the GetActivityStreamsLike and
	// SetActivityStreamsLike methods to access and set this property.
	IsActivityStreamsLike() bool
	// IsActivityStreamsLink returns true if this property has a type of
	// "Link". When true, use the GetActivityStreamsLink and
	// SetActivityStreamsLink methods to access and set this property.
	IsActivityStreamsLink() bool
	// IsActivityStreamsListen returns true if this property has a type of
	// "Listen". When true, use the GetActivityStreamsListen and
	// SetActivityStreamsListen methods to access and set this property.
	IsActivityStreamsListen() bool
	// IsActivityStreamsMention returns true if this property has a type of
	// "Mention". When true, use the GetActivityStreamsMention and
	// SetActivityStreamsMention methods to access and set this property.
	IsActivityStreamsMention() bool
	// IsActivityStreamsMove returns true if this property has a type of
	// "Move". When true, use the GetActivityStreamsMove and
	// SetActivityStreamsMove methods to access and set this property.
	IsActivityStreamsMove() bool
	// IsActivityStreamsNote returns true if this property has a type of
	// "Note". When true, use the GetActivityStreamsNote and
	// SetActivityStreamsNote methods to access and set this property.
	IsActivityStreamsNote() bool
	// IsActivityStreamsObject returns true if this property has a type of
	// "Object". When true, use the GetActivityStreamsObject and
	// SetActivityStreamsObject methods to access and set this property.
	IsActivityStreamsObject() bool
	// IsActivityStreamsOffer returns true if this property has a type of
	// "Offer". When true, use the GetActivityStreamsOffer and
	// SetActivityStreamsOffer methods to access and set this property.
	IsActivityStreamsOffer() bool
	// IsActivityStreamsOrderedCollection returns true if this property has a
	// type of "OrderedCollection". When true, use the
	// GetActivityStreamsOrderedCollection and
	// SetActivityStreamsOrderedCollection methods to access and set this
	// property.
	IsActivityStreamsOrderedCollection() bool
	// IsActivityStreamsOrderedCollectionPage returns true if this property
	// has a type of "OrderedCollectionPage". When true, use the
	// GetActivityStreamsOrderedCollectionPage and
	// SetActivityStreamsOrderedCollectionPage methods to access and set
	// this property.
	IsActivityStreamsOrderedCollectionPage() bool
	// IsActivityStreamsOrganization returns true if this property has a type
	// of "Organization". When true, use the
	// GetActivityStreamsOrganization and SetActivityStreamsOrganization
	// methods to access and set this property.
	IsActivityStreamsOrganization() bool
	// IsActivityStreamsPage returns true if this property has a type of
	// "Page". When true, use the GetActivityStreamsPage and
	// SetActivityStreamsPage methods to access and set this property.
	IsActivityStreamsPage() bool
	// IsActivityStreamsPerson returns true if this property has a type of
	// "Person". When true, use the GetActivityStreamsPerson and
	// SetActivityStreamsPerson methods to access and set this property.
	IsActivityStreamsPerson() bool
	// IsActivityStreamsPlace returns true if this property has a type of
	// "Place". When true, use the GetActivityStreamsPlace and
	// SetActivityStreamsPlace methods to access and set this property.
	IsActivityStreamsPlace() bool
	// IsActivityStreamsProfile returns true if this property has a type of
	// "Profile". When true, use the GetActivityStreamsProfile and
	// SetActivityStreamsProfile methods to access and set this property.
	IsActivityStreamsProfile() bool
	// IsActivityStreamsQuestion returns true if this property has a type of
	// "Question". When true, use the GetActivityStreamsQuestion and
	// SetActivityStreamsQuestion methods to access and set this property.
	IsActivityStreamsQuestion() bool
	// IsActivityStreamsRead returns true if this property has a type of
	// "Read". When true, use the GetActivityStreamsRead and
	// SetActivityStreamsRead methods to access and set this property.
	IsActivityStreamsRead() bool
	// IsActivityStreamsReject returns true if this property has a type of
	// "Reject". When true, use the GetActivityStreamsReject and
	// SetActivityStreamsReject methods to access and set this property.
	IsActivityStreamsReject() bool
	// IsActivityStreamsRelationship returns true if this property has a type
	// of "Relationship". When true, use the
	// GetActivityStreamsRelationship and SetActivityStreamsRelationship
	// methods to access and set this property.
	IsActivityStreamsRelationship() bool
	// IsActivityStreamsRemove returns true if this property has a type of
	// "Remove". When true, use the GetActivityStreamsRemove and
	// SetActivityStreamsRemove methods to access and set this property.
	IsActivityStreamsRemove() bool
	// IsActivityStreamsService returns true if this property has a type of
	// "Service". When true, use the GetActivityStreamsService and
	// SetActivityStreamsService methods to access and set this property.
	IsActivityStreamsService() bool
	// IsActivityStreamsTentativeAccept returns true if this property has a
	// type of "TentativeAccept". When true, use the
	// GetActivityStreamsTentativeAccept and
	// SetActivityStreamsTentativeAccept methods to access and set this
	// property.
	IsActivityStreamsTentativeAccept() bool
	// IsActivityStreamsTentativeReject returns true if this property has a
	// type of "TentativeReject". When true, use the
	// GetActivityStreamsTentativeReject and
	// SetActivityStreamsTentativeReject methods to access and set this
	// property.
	IsActivityStreamsTentativeReject() bool
	// IsActivityStreamsTombstone returns true if this property has a type of
	// "Tombstone". When true, use the GetActivityStreamsTombstone and
	// SetActivityStreamsTombstone methods to access and set this property.
	IsActivityStreamsTombstone() bool
	// IsActivityStreamsTravel returns true if this property has a type of
	// "Travel". When true, use the GetActivityStreamsTravel and
	// SetActivityStreamsTravel methods to access and set this property.
	IsActivityStreamsTravel() bool
	// IsActivityStreamsUndo returns true if this property has a type of
	// "Undo". When true, use the GetActivityStreamsUndo and
	// SetActivityStreamsUndo methods to access and set this property.
	IsActivityStreamsUndo() bool
	// IsActivityStreamsUpdate returns true if this property has a type of
	// "Update". When true, use the GetActivityStreamsUpdate and
	// SetActivityStreamsUpdate methods to access and set this property.
	IsActivityStreamsUpdate() bool
	// IsActivityStreamsVideo returns true if this property has a type of
	// "Video". When true, use the GetActivityStreamsVideo and
	// SetActivityStreamsVideo methods to access and set this property.
	IsActivityStreamsVideo() bool
	// IsActivityStreamsView returns true if this property has a type of
	// "View". When true, use the GetActivityStreamsView and
	// SetActivityStreamsView methods to access and set this property.
	IsActivityStreamsView() bool
	// IsForgeFedBranch returns true if this property has a type of "Branch".
	// When true, use the GetForgeFedBranch and SetForgeFedBranch methods
	// to access and set this property.
	IsForgeFedBranch() bool
	// IsForgeFedCommit returns true if this property has a type of "Commit".
	// When true, use the GetForgeFedCommit and SetForgeFedCommit methods
	// to access and set this property.
	IsForgeFedCommit() bool
	// IsForgeFedPush returns true if this property has a type of "Push". When
	// true, use the GetForgeFedPush and SetForgeFedPush methods to access
	// and set this property.
	IsForgeFedPush() bool
	// IsForgeFedRepository returns true if this property has a type of
	// "Repository". When true, use the GetForgeFedRepository and
	// SetForgeFedRepository methods to access and set this property.
	IsForgeFedRepository() bool
	// IsForgeFedTicket returns true if this property has a type of "Ticket".
	// When true, use the GetForgeFedTicket and SetForgeFedTicket methods
	// to access and set this property.
	IsForgeFedTicket() bool
	// IsForgeFedTicketDependency returns true if this property has a type of
	// "TicketDependency". When true, use the GetForgeFedTicketDependency
	// and SetForgeFedTicketDependency methods to access and set this
	// property.
	IsForgeFedTicketDependency() bool
	// IsIRI returns true if this property is an IRI. When true, use GetIRI
	// and SetIRI to access and set this property
	IsIRI() bool
	// IsTootEmoji returns true if this property has a type of "Emoji". When
	// true, use the GetTootEmoji and SetTootEmoji methods to access and
	// set this property.
	IsTootEmoji() bool
	// IsTootIdentityProof returns true if this property has a type of
	// "IdentityProof". When true, use the GetTootIdentityProof and
	// SetTootIdentityProof methods to access and set this property.
	IsTootIdentityProof() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ForgeFedEarlyItemsPropertyIterator) bool
	// Name returns the name of this property: "ForgeFedEarlyItems".
	Name() string
	// Next returns the next iterator, or nil if there is no next iterator.
	Next() ForgeFedEarlyItemsPropertyIterator
	// Prev returns the previous iterator, or nil if there is no previous
	// iterator.
	Prev() ForgeFedEarlyItemsPropertyIterator
	// SetActivityStreamsAccept sets the value of this property. Calling
	// IsActivityStreamsAccept afterwards returns true.
	SetActivityStreamsAccept(v ActivityStreamsAccept)
	// SetActivityStreamsActivity sets the value of this property. Calling
	// IsActivityStreamsActivity afterwards returns true.
	SetActivityStreamsActivity(v ActivityStreamsActivity)
	// SetActivityStreamsAdd sets the value of this property. Calling
	// IsActivityStreamsAdd afterwards returns true.
	SetActivityStreamsAdd(v ActivityStreamsAdd)
	// SetActivityStreamsAnnounce sets the value of this property. Calling
	// IsActivityStreamsAnnounce afterwards returns true.
	SetActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// SetActivityStreamsApplication sets the value of this property. Calling
	// IsActivityStreamsApplication afterwards returns true.
	SetActivityStreamsApplication(v ActivityStreamsApplication)
	// SetActivityStreamsArrive sets the value of this property. Calling
	// IsActivityStreamsArrive afterwards returns true.
	SetActivityStreamsArrive(v ActivityStreamsArrive)
	// SetActivityStreamsArticle sets the value of this property. Calling
	// IsActivityStreamsArticle afterwards returns true.
	SetActivityStreamsArticle(v ActivityStreamsArticle)
	// SetActivityStreamsAudio sets the value of this property. Calling
	// IsActivityStreamsAudio afterwards returns true.
	SetActivityStreamsAudio(v ActivityStreamsAudio)
	// SetActivityStreamsBlock sets the value of this property. Calling
	// IsActivityStreamsBlock afterwards returns true.
	SetActivityStreamsBlock(v ActivityStreamsBlock)
	// SetActivityStreamsCollection sets the value of this property. Calling
	// IsActivityStreamsCollection afterwards returns true.
	SetActivityStreamsCollection(v ActivityStreamsCollection)
	// SetActivityStreamsCollectionPage sets the value of this property.
	// Calling IsActivityStreamsCollectionPage afterwards returns true.
	SetActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// SetActivityStreamsCreate sets the value of this property. Calling
	// IsActivityStreamsCreate afterwards returns true.
	SetActivityStreamsCreate(v ActivityStreamsCreate)
	// SetActivityStreamsDelete sets the value of this property. Calling
	// IsActivityStreamsDelete afterwards returns true.
	SetActivityStreamsDelete(v ActivityStreamsDelete)
	// SetActivityStreamsDislike sets the value of this property. Calling
	// IsActivityStreamsDislike afterwards returns true.
	SetActivityStreamsDislike(v ActivityStreamsDislike)
	// SetActivityStreamsDocument sets the value of this property. Calling
	// IsActivityStreamsDocument afterwards returns true.
	SetActivityStreamsDocument(v ActivityStreamsDocument)
	// SetActivityStreamsEvent sets the value of this property. Calling
	// IsActivityStreamsEvent afterwards returns true.
	SetActivityStreamsEvent(v ActivityStreamsEvent)
	// SetActivityStreamsFlag sets the value of this property. Calling
	// IsActivityStreamsFlag afterwards returns true.
	SetActivityStreamsFlag(v ActivityStreamsFlag)
	// SetActivityStreamsFollow sets the value of this property. Calling
	// IsActivityStreamsFollow afterwards returns true.
	SetActivityStreamsFollow(v ActivityStreamsFollow)
	// SetActivityStreamsGroup sets the value of this property. Calling
	// IsActivityStreamsGroup afterwards returns true.
	SetActivityStreamsGroup(v ActivityStreamsGroup)
	// SetActivityStreamsIgnore sets the value of this property. Calling
	// IsActivityStreamsIgnore afterwards returns true.
	SetActivityStreamsIgnore(v ActivityStreamsIgnore)
	// SetActivityStreamsImage sets the value of this property. Calling
	// IsActivityStreamsImage afterwards returns true.
	SetActivityStreamsImage(v ActivityStreamsImage)
	// SetActivityStreamsIntransitiveActivity sets the value of this property.
	// Calling IsActivityStreamsIntransitiveActivity afterwards returns
	// true.
	SetActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// SetActivityStreamsInvite sets the value of this property. Calling
	// IsActivityStreamsInvite afterwards returns true.
	SetActivityStreamsInvite(v ActivityStreamsInvite)
	// SetActivityStreamsJoin sets the value of this property. Calling
	// IsActivityStreamsJoin afterwards returns true.
	SetActivityStreamsJoin(v ActivityStreamsJoin)
	// SetActivityStreamsLeave sets the value of this property. Calling
	// IsActivityStreamsLeave afterwards returns true.
	SetActivityStreamsLeave(v ActivityStreamsLeave)
	// SetActivityStreamsLike sets the value of this property. Calling
	// IsActivityStreamsLike afterwards returns true.
	SetActivityStreamsLike(v ActivityStreamsLike)
	// SetActivityStreamsLink sets the value of this property. Calling
	// IsActivityStreamsLink afterwards returns true.
	SetActivityStreamsLink(v ActivityStreamsLink)
	// SetActivityStreamsListen sets the value of this property. Calling
	// IsActivityStreamsListen afterwards returns true.
	SetActivityStreamsListen(v ActivityStreamsListen)
	// SetActivityStreamsMention sets the value of this property. Calling
	// IsActivityStreamsMention afterwards returns true.
	SetActivityStreamsMention(v ActivityStreamsMention)
	// SetActivityStreamsMove sets the value of this property. Calling
	// IsActivityStreamsMove afterwards returns true.
	SetActivityStreamsMove(v ActivityStreamsMove)
	// SetActivityStreamsNote sets the value of this property. Calling
	// IsActivityStreamsNote afterwards returns true.
	SetActivityStreamsNote(v ActivityStreamsNote)
	// SetActivityStreamsObject sets the value of this property. Calling
	// IsActivityStreamsObject afterwards returns true.
	SetActivityStreamsObject(v ActivityStreamsObject)
	// SetActivityStreamsOffer sets the value of this property. Calling
	// IsActivityStreamsOffer afterwards returns true.
	SetActivityStreamsOffer(v ActivityStreamsOffer)
	// SetActivityStreamsOrderedCollection sets the value of this property.
	// Calling IsActivityStreamsOrderedCollection afterwards returns true.
	SetActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// SetActivityStreamsOrderedCollectionPage sets the value of this
	// property. Calling IsActivityStreamsOrderedCollectionPage afterwards
	// returns true.
	SetActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// SetActivityStreamsOrganization sets the value of this property. Calling
	// IsActivityStreamsOrganization afterwards returns true.
	SetActivityStreamsOrganization(v ActivityStreamsOrganization)
	// SetActivityStreamsPage sets the value of this property. Calling
	// IsActivityStreamsPage afterwards returns true.
	SetActivityStreamsPage(v ActivityStreamsPage)
	// SetActivityStreamsPerson sets the value of this property. Calling
	// IsActivityStreamsPerson afterwards returns true.
	SetActivityStreamsPerson(v ActivityStreamsPerson)
	// SetActivityStreamsPlace sets the value of this property. Calling
	// IsActivityStreamsPlace afterwards returns true.
	SetActivityStreamsPlace(v ActivityStreamsPlace)
	// SetActivityStreamsProfile sets the value of this property. Calling
	// IsActivityStreamsProfile afterwards returns true.
	SetActivityStreamsProfile(v ActivityStreamsProfile)
	// SetActivityStreamsQuestion sets the value of this property. Calling
	// IsActivityStreamsQuestion afterwards returns true.
	SetActivityStreamsQuestion(v ActivityStreamsQuestion)
	// SetActivityStreamsRead sets the value of this property. Calling
	// IsActivityStreamsRead afterwards returns true.
	SetActivityStreamsRead(v ActivityStreamsRead)
	// SetActivityStreamsReject sets the value of this property. Calling
	// IsActivityStreamsReject afterwards returns true.
	SetActivityStreamsReject(v ActivityStreamsReject)
	// SetActivityStreamsRelationship sets the value of this property. Calling
	// IsActivityStreamsRelationship afterwards returns true.
	SetActivityStreamsRelationship(v ActivityStreamsRelationship)
	// SetActivityStreamsRemove sets the value of this property. Calling
	// IsActivityStreamsRemove afterwards returns true.
	SetActivityStreamsRemove(v ActivityStreamsRemove)
	// SetActivityStreamsService sets the value of this property. Calling
	// IsActivityStreamsService afterwards returns true.
	SetActivityStreamsService(v ActivityStreamsService)
	// SetActivityStreamsTentativeAccept sets the value of this property.
	// Calling IsActivityStreamsTentativeAccept afterwards returns true.
	SetActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// SetActivityStreamsTentativeReject sets the value of this property.
	// Calling IsActivityStreamsTentativeReject afterwards returns true.
	SetActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// SetActivityStreamsTombstone sets the value of this property. Calling
	// IsActivityStreamsTombstone afterwards returns true.
	SetActivityStreamsTombstone(v ActivityStreamsTombstone)
	// SetActivityStreamsTravel sets the value of this property. Calling
	// IsActivityStreamsTravel afterwards returns true.
	SetActivityStreamsTravel(v ActivityStreamsTravel)
	// SetActivityStreamsUndo sets the value of this property. Calling
	// IsActivityStreamsUndo afterwards returns true.
	SetActivityStreamsUndo(v ActivityStreamsUndo)
	// SetActivityStreamsUpdate sets the value of this property. Calling
	// IsActivityStreamsUpdate afterwards returns true.
	SetActivityStreamsUpdate(v ActivityStreamsUpdate)
	// SetActivityStreamsVideo sets the value of this property. Calling
	// IsActivityStreamsVideo afterwards returns true.
	SetActivityStreamsVideo(v ActivityStreamsVideo)
	// SetActivityStreamsView sets the value of this property. Calling
	// IsActivityStreamsView afterwards returns true.
	SetActivityStreamsView(v ActivityStreamsView)
	// SetForgeFedBranch sets the value of this property. Calling
	// IsForgeFedBranch afterwards returns true.
	SetForgeFedBranch(v ForgeFedBranch)
	// SetForgeFedCommit sets the value of this property. Calling
	// IsForgeFedCommit afterwards returns true.
	SetForgeFedCommit(v ForgeFedCommit)
	// SetForgeFedPush sets the value of this property. Calling IsForgeFedPush
	// afterwards returns true.
	SetForgeFedPush(v ForgeFedPush)
	// SetForgeFedRepository sets the value of this property. Calling
	// IsForgeFedRepository afterwards returns true.
	SetForgeFedRepository(v ForgeFedRepository)
	// SetForgeFedTicket sets the value of this property. Calling
	// IsForgeFedTicket afterwards returns true.
	SetForgeFedTicket(v ForgeFedTicket)
	// SetForgeFedTicketDependency sets the value of this property. Calling
	// IsForgeFedTicketDependency afterwards returns true.
	SetForgeFedTicketDependency(v ForgeFedTicketDependency)
	// SetIRI sets the value of this property. Calling IsIRI afterwards
	// returns true.
	SetIRI(v *url.URL)
	// SetTootEmoji sets the value of this property. Calling IsTootEmoji
	// afterwards returns true.
	SetTootEmoji(v TootEmoji)
	// SetTootIdentityProof sets the value of this property. Calling
	// IsTootIdentityProof afterwards returns true.
	SetTootIdentityProof(v TootIdentityProof)
	// SetType attempts to set the property for the arbitrary type. Returns an
	// error if it is not a valid type to set on this property.
	SetType(t Type) error
}

ForgeFedEarlyItemsPropertyIterator represents a single value for the "earlyItems" property.

type ForgeFedFilesAddedProperty

type ForgeFedFilesAddedProperty interface {
	// AppendIRI appends an IRI value to the back of a list of the property
	// "filesAdded"
	AppendIRI(v *url.URL)
	// AppendXMLSchemaString appends a string value to the back of a list of
	// the property "filesAdded". Invalidates iterators that are
	// traversing using Prev.
	AppendXMLSchemaString(v string)
	// At returns the property value for the specified index. Panics if the
	// index is out of bounds.
	At(index int) ForgeFedFilesAddedPropertyIterator
	// Begin returns the first iterator, or nil if empty. Can be used with the
	// iterator's Next method and this property's End method to iterate
	// from front to back through all values.
	Begin() ForgeFedFilesAddedPropertyIterator
	// Empty returns returns true if there are no elements.
	Empty() bool
	// End returns beyond-the-last iterator, which is nil. Can be used with
	// the iterator's Next method and this property's Begin method to
	// iterate from front to back through all values.
	End() ForgeFedFilesAddedPropertyIterator
	// Insert inserts an IRI value at the specified index for a property
	// "filesAdded". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertIRI(idx int, v *url.URL)
	// InsertXMLSchemaString inserts a string value at the specified index for
	// a property "filesAdded". Existing elements at that index and higher
	// are shifted back once. Invalidates all iterators.
	InsertXMLSchemaString(idx int, v string)
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API method specifically needed only for alternate
	// implementations for go-fed. Applications should not use this
	// method. Panics if the index is out of bounds.
	KindIndex(idx int) int
	// Len returns the number of values that exist for the "filesAdded"
	// property.
	Len() (length int)
	// Less computes whether another property is less than this one. Mixing
	// types results in a consistent but arbitrary ordering
	Less(i, j int) bool
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ForgeFedFilesAddedProperty) bool
	// Name returns the name of this property ("filesAdded") with any alias.
	Name() string
	// PrependIRI prepends an IRI value to the front of a list of the property
	// "filesAdded".
	PrependIRI(v *url.URL)
	// PrependXMLSchemaString prepends a string value to the front of a list
	// of the property "filesAdded". Invalidates all iterators.
	PrependXMLSchemaString(v string)
	// Remove deletes an element at the specified index from a list of the
	// property "filesAdded", regardless of its type. Panics if the index
	// is out of bounds. Invalidates all iterators.
	Remove(idx int)
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// Set sets a string value to be at the specified index for the property
	// "filesAdded". Panics if the index is out of bounds. Invalidates all
	// iterators.
	Set(idx int, v string)
	// SetIRI sets an IRI value to be at the specified index for the property
	// "filesAdded". Panics if the index is out of bounds.
	SetIRI(idx int, v *url.URL)
	// Swap swaps the location of values at two indices for the "filesAdded"
	// property.
	Swap(i, j int)
}

Specifies a filename, as a relative path, relative to the top of the tree of files in the Repository, of a file that got added in this Commit, and didn’t exist in the previous version of the tree.

type ForgeFedFilesAddedPropertyIterator

type ForgeFedFilesAddedPropertyIterator interface {
	// Get returns the value of this property. When IsXMLSchemaString returns
	// false, Get will return any arbitrary value.
	Get() string
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return any arbitrary value.
	GetIRI() *url.URL
	// HasAny returns true if the value or IRI is set.
	HasAny() bool
	// IsIRI returns true if this property is an IRI.
	IsIRI() bool
	// IsXMLSchemaString returns true if this property is set and not an IRI.
	IsXMLSchemaString() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ForgeFedFilesAddedPropertyIterator) bool
	// Name returns the name of this property: "ForgeFedFilesAdded".
	Name() string
	// Next returns the next iterator, or nil if there is no next iterator.
	Next() ForgeFedFilesAddedPropertyIterator
	// Prev returns the previous iterator, or nil if there is no previous
	// iterator.
	Prev() ForgeFedFilesAddedPropertyIterator
	// Set sets the value of this property. Calling IsXMLSchemaString
	// afterwards will return true.
	Set(v string)
	// SetIRI sets the value of this property. Calling IsIRI afterwards will
	// return true.
	SetIRI(v *url.URL)
}

ForgeFedFilesAddedPropertyIterator represents a single value for the "filesAdded" property.

type ForgeFedFilesModifiedProperty

type ForgeFedFilesModifiedProperty interface {
	// AppendIRI appends an IRI value to the back of a list of the property
	// "filesModified"
	AppendIRI(v *url.URL)
	// AppendXMLSchemaString appends a string value to the back of a list of
	// the property "filesModified". Invalidates iterators that are
	// traversing using Prev.
	AppendXMLSchemaString(v string)
	// At returns the property value for the specified index. Panics if the
	// index is out of bounds.
	At(index int) ForgeFedFilesModifiedPropertyIterator
	// Begin returns the first iterator, or nil if empty. Can be used with the
	// iterator's Next method and this property's End method to iterate
	// from front to back through all values.
	Begin() ForgeFedFilesModifiedPropertyIterator
	// Empty returns returns true if there are no elements.
	Empty() bool
	// End returns beyond-the-last iterator, which is nil. Can be used with
	// the iterator's Next method and this property's Begin method to
	// iterate from front to back through all values.
	End() ForgeFedFilesModifiedPropertyIterator
	// Insert inserts an IRI value at the specified index for a property
	// "filesModified". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertIRI(idx int, v *url.URL)
	// InsertXMLSchemaString inserts a string value at the specified index for
	// a property "filesModified". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertXMLSchemaString(idx int, v string)
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API method specifically needed only for alternate
	// implementations for go-fed. Applications should not use this
	// method. Panics if the index is out of bounds.
	KindIndex(idx int) int
	// Len returns the number of values that exist for the "filesModified"
	// property.
	Len() (length int)
	// Less computes whether another property is less than this one. Mixing
	// types results in a consistent but arbitrary ordering
	Less(i, j int) bool
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ForgeFedFilesModifiedProperty) bool
	// Name returns the name of this property ("filesModified") with any alias.
	Name() string
	// PrependIRI prepends an IRI value to the front of a list of the property
	// "filesModified".
	PrependIRI(v *url.URL)
	// PrependXMLSchemaString prepends a string value to the front of a list
	// of the property "filesModified". Invalidates all iterators.
	PrependXMLSchemaString(v string)
	// Remove deletes an element at the specified index from a list of the
	// property "filesModified", regardless of its type. Panics if the
	// index is out of bounds. Invalidates all iterators.
	Remove(idx int)
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// Set sets a string value to be at the specified index for the property
	// "filesModified". Panics if the index is out of bounds. Invalidates
	// all iterators.
	Set(idx int, v string)
	// SetIRI sets an IRI value to be at the specified index for the property
	// "filesModified". Panics if the index is out of bounds.
	SetIRI(idx int, v *url.URL)
	// Swap swaps the location of values at two indices for the
	// "filesModified" property.
	Swap(i, j int)
}

Specifies a filename, as a relative path, relative to the top of the tree of files in the Repository, of a file that existed in the previous version of the tree, and its contents got modified in this Commit.

type ForgeFedFilesModifiedPropertyIterator

type ForgeFedFilesModifiedPropertyIterator interface {
	// Get returns the value of this property. When IsXMLSchemaString returns
	// false, Get will return any arbitrary value.
	Get() string
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return any arbitrary value.
	GetIRI() *url.URL
	// HasAny returns true if the value or IRI is set.
	HasAny() bool
	// IsIRI returns true if this property is an IRI.
	IsIRI() bool
	// IsXMLSchemaString returns true if this property is set and not an IRI.
	IsXMLSchemaString() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ForgeFedFilesModifiedPropertyIterator) bool
	// Name returns the name of this property: "ForgeFedFilesModified".
	Name() string
	// Next returns the next iterator, or nil if there is no next iterator.
	Next() ForgeFedFilesModifiedPropertyIterator
	// Prev returns the previous iterator, or nil if there is no previous
	// iterator.
	Prev() ForgeFedFilesModifiedPropertyIterator
	// Set sets the value of this property. Calling IsXMLSchemaString
	// afterwards will return true.
	Set(v string)
	// SetIRI sets the value of this property. Calling IsIRI afterwards will
	// return true.
	SetIRI(v *url.URL)
}

ForgeFedFilesModifiedPropertyIterator represents a single value for the "filesModified" property.

type ForgeFedFilesRemovedProperty

type ForgeFedFilesRemovedProperty interface {
	// AppendIRI appends an IRI value to the back of a list of the property
	// "filesRemoved"
	AppendIRI(v *url.URL)
	// AppendXMLSchemaString appends a string value to the back of a list of
	// the property "filesRemoved". Invalidates iterators that are
	// traversing using Prev.
	AppendXMLSchemaString(v string)
	// At returns the property value for the specified index. Panics if the
	// index is out of bounds.
	At(index int) ForgeFedFilesRemovedPropertyIterator
	// Begin returns the first iterator, or nil if empty. Can be used with the
	// iterator's Next method and this property's End method to iterate
	// from front to back through all values.
	Begin() ForgeFedFilesRemovedPropertyIterator
	// Empty returns returns true if there are no elements.
	Empty() bool
	// End returns beyond-the-last iterator, which is nil. Can be used with
	// the iterator's Next method and this property's Begin method to
	// iterate from front to back through all values.
	End() ForgeFedFilesRemovedPropertyIterator
	// Insert inserts an IRI value at the specified index for a property
	// "filesRemoved". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertIRI(idx int, v *url.URL)
	// InsertXMLSchemaString inserts a string value at the specified index for
	// a property "filesRemoved". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertXMLSchemaString(idx int, v string)
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API method specifically needed only for alternate
	// implementations for go-fed. Applications should not use this
	// method. Panics if the index is out of bounds.
	KindIndex(idx int) int
	// Len returns the number of values that exist for the "filesRemoved"
	// property.
	Len() (length int)
	// Less computes whether another property is less than this one. Mixing
	// types results in a consistent but arbitrary ordering
	Less(i, j int) bool
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ForgeFedFilesRemovedProperty) bool
	// Name returns the name of this property ("filesRemoved") with any alias.
	Name() string
	// PrependIRI prepends an IRI value to the front of a list of the property
	// "filesRemoved".
	PrependIRI(v *url.URL)
	// PrependXMLSchemaString prepends a string value to the front of a list
	// of the property "filesRemoved". Invalidates all iterators.
	PrependXMLSchemaString(v string)
	// Remove deletes an element at the specified index from a list of the
	// property "filesRemoved", regardless of its type. Panics if the
	// index is out of bounds. Invalidates all iterators.
	Remove(idx int)
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// Set sets a string value to be at the specified index for the property
	// "filesRemoved". Panics if the index is out of bounds. Invalidates
	// all iterators.
	Set(idx int, v string)
	// SetIRI sets an IRI value to be at the specified index for the property
	// "filesRemoved". Panics if the index is out of bounds.
	SetIRI(idx int, v *url.URL)
	// Swap swaps the location of values at two indices for the "filesRemoved"
	// property.
	Swap(i, j int)
}

Specifies a filename, as a relative path, relative to the top of the tree of files in the Repository, of a file that existed in the previous version of the tree, and got removed from the tree in this Commit.

type ForgeFedFilesRemovedPropertyIterator

type ForgeFedFilesRemovedPropertyIterator interface {
	// Get returns the value of this property. When IsXMLSchemaString returns
	// false, Get will return any arbitrary value.
	Get() string
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return any arbitrary value.
	GetIRI() *url.URL
	// HasAny returns true if the value or IRI is set.
	HasAny() bool
	// IsIRI returns true if this property is an IRI.
	IsIRI() bool
	// IsXMLSchemaString returns true if this property is set and not an IRI.
	IsXMLSchemaString() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ForgeFedFilesRemovedPropertyIterator) bool
	// Name returns the name of this property: "ForgeFedFilesRemoved".
	Name() string
	// Next returns the next iterator, or nil if there is no next iterator.
	Next() ForgeFedFilesRemovedPropertyIterator
	// Prev returns the previous iterator, or nil if there is no previous
	// iterator.
	Prev() ForgeFedFilesRemovedPropertyIterator
	// Set sets the value of this property. Calling IsXMLSchemaString
	// afterwards will return true.
	Set(v string)
	// SetIRI sets the value of this property. Calling IsIRI afterwards will
	// return true.
	SetIRI(v *url.URL)
}

ForgeFedFilesRemovedPropertyIterator represents a single value for the "filesRemoved" property.

type ForgeFedForksProperty

type ForgeFedForksProperty interface {
	// Clear ensures no value of this property is set. Calling HasAny or any
	// of the 'Is' methods afterwards will return false.
	Clear()
	// GetActivityStreamsOrderedCollection returns the value of this property.
	// When IsActivityStreamsOrderedCollection returns false,
	// GetActivityStreamsOrderedCollection will return an arbitrary value.
	GetActivityStreamsOrderedCollection() ActivityStreamsOrderedCollection
	// GetActivityStreamsOrderedCollectionPage returns the value of this
	// property. When IsActivityStreamsOrderedCollectionPage returns
	// false, GetActivityStreamsOrderedCollectionPage will return an
	// arbitrary value.
	GetActivityStreamsOrderedCollectionPage() ActivityStreamsOrderedCollectionPage
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return an arbitrary value.
	GetIRI() *url.URL
	// GetType returns the value in this property as a Type. Returns nil if
	// the value is not an ActivityStreams type, such as an IRI or another
	// value.
	GetType() Type
	// HasAny returns true if any of the different values is set.
	HasAny() bool
	// IsActivityStreamsOrderedCollection returns true if this property has a
	// type of "OrderedCollection". When true, use the
	// GetActivityStreamsOrderedCollection and
	// SetActivityStreamsOrderedCollection methods to access and set this
	// property.
	IsActivityStreamsOrderedCollection() bool
	// IsActivityStreamsOrderedCollectionPage returns true if this property
	// has a type of "OrderedCollectionPage". When true, use the
	// GetActivityStreamsOrderedCollectionPage and
	// SetActivityStreamsOrderedCollectionPage methods to access and set
	// this property.
	IsActivityStreamsOrderedCollectionPage() bool
	// IsIRI returns true if this property is an IRI. When true, use GetIRI
	// and SetIRI to access and set this property
	IsIRI() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ForgeFedForksProperty) bool
	// Name returns the name of this property: "forks".
	Name() string
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// SetActivityStreamsOrderedCollection sets the value of this property.
	// Calling IsActivityStreamsOrderedCollection afterwards returns true.
	SetActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// SetActivityStreamsOrderedCollectionPage sets the value of this
	// property. Calling IsActivityStreamsOrderedCollectionPage afterwards
	// returns true.
	SetActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// SetIRI sets the value of this property. Calling IsIRI afterwards
	// returns true.
	SetIRI(v *url.URL)
	// SetType attempts to set the property for the arbitrary type. Returns an
	// error if it is not a valid type to set on this property.
	SetType(t Type) error
}

Identifies an OrderedCollection of Repositorys which were created as forks of this Repository, i.e. by cloning it. The order of the collection items is by reverse chronological order of the forking events.

type ForgeFedHashProperty

type ForgeFedHashProperty interface {
	// Clear ensures no value of this property is set. Calling
	// IsXMLSchemaString afterwards will return false.
	Clear()
	// Get returns the value of this property. When IsXMLSchemaString returns
	// false, Get will return any arbitrary value.
	Get() string
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return any arbitrary value.
	GetIRI() *url.URL
	// HasAny returns true if the value or IRI is set.
	HasAny() bool
	// IsIRI returns true if this property is an IRI.
	IsIRI() bool
	// IsXMLSchemaString returns true if this property is set and not an IRI.
	IsXMLSchemaString() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ForgeFedHashProperty) bool
	// Name returns the name of this property: "hash".
	Name() string
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// Set sets the value of this property. Calling IsXMLSchemaString
	// afterwards will return true.
	Set(v string)
	// SetIRI sets the value of this property. Calling IsIRI afterwards will
	// return true.
	SetIRI(v *url.URL)
}

Specifies the hash associated with a Commit, which is a unique identifier of the commit within the Repository, usually generated as a cryptographic hash function of some (or all) of the commit’s data or metadata. For example, in Git it would be the SHA1 hash of the commit; in Darcs it would be the SHA1 hash of the patch info.

type ForgeFedIsResolvedProperty

type ForgeFedIsResolvedProperty interface {
	// Clear ensures no value of this property is set. Calling
	// IsXMLSchemaBoolean afterwards will return false.
	Clear()
	// Get returns the value of this property. When IsXMLSchemaBoolean returns
	// false, Get will return any arbitrary value.
	Get() bool
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return any arbitrary value.
	GetIRI() *url.URL
	// HasAny returns true if the value or IRI is set.
	HasAny() bool
	// IsIRI returns true if this property is an IRI.
	IsIRI() bool
	// IsXMLSchemaBoolean returns true if this property is set and not an IRI.
	IsXMLSchemaBoolean() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ForgeFedIsResolvedProperty) bool
	// Name returns the name of this property: "isResolved".
	Name() string
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// Set sets the value of this property. Calling IsXMLSchemaBoolean
	// afterwards will return true.
	Set(v bool)
	// SetIRI sets the value of this property. Calling IsIRI afterwards will
	// return true.
	SetIRI(v *url.URL)
}

Specifies whether the Ticket is closed, i.e. the work on it is done and it doesn’t need to attract attention anymore.

type ForgeFedPush

type ForgeFedPush interface {
	// GetActivityStreamsActor returns the "actor" property if it exists, and
	// nil otherwise.
	GetActivityStreamsActor() ActivityStreamsActorProperty
	// GetActivityStreamsAltitude returns the "altitude" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAltitude() ActivityStreamsAltitudeProperty
	// GetActivityStreamsAttachment returns the "attachment" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAttachment() ActivityStreamsAttachmentProperty
	// GetActivityStreamsAttributedTo returns the "attributedTo" property if
	// it exists, and nil otherwise.
	GetActivityStreamsAttributedTo() ActivityStreamsAttributedToProperty
	// GetActivityStreamsAudience returns the "audience" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAudience() ActivityStreamsAudienceProperty
	// GetActivityStreamsBcc returns the "bcc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBcc() ActivityStreamsBccProperty
	// GetActivityStreamsBto returns the "bto" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBto() ActivityStreamsBtoProperty
	// GetActivityStreamsCc returns the "cc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsCc() ActivityStreamsCcProperty
	// GetActivityStreamsContent returns the "content" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContent() ActivityStreamsContentProperty
	// GetActivityStreamsContext returns the "context" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContext() ActivityStreamsContextProperty
	// GetActivityStreamsDuration returns the "duration" property if it
	// exists, and nil otherwise.
	GetActivityStreamsDuration() ActivityStreamsDurationProperty
	// GetActivityStreamsEndTime returns the "endTime" property if it exists,
	// and nil otherwise.
	GetActivityStreamsEndTime() ActivityStreamsEndTimeProperty
	// GetActivityStreamsGenerator returns the "generator" property if it
	// exists, and nil otherwise.
	GetActivityStreamsGenerator() ActivityStreamsGeneratorProperty
	// GetActivityStreamsIcon returns the "icon" property if it exists, and
	// nil otherwise.
	GetActivityStreamsIcon() ActivityStreamsIconProperty
	// GetActivityStreamsImage returns the "image" property if it exists, and
	// nil otherwise.
	GetActivityStreamsImage() ActivityStreamsImageProperty
	// GetActivityStreamsInReplyTo returns the "inReplyTo" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInReplyTo() ActivityStreamsInReplyToProperty
	// GetActivityStreamsInstrument returns the "instrument" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInstrument() ActivityStreamsInstrumentProperty
	// GetActivityStreamsLikes returns the "likes" property if it exists, and
	// nil otherwise.
	GetActivityStreamsLikes() ActivityStreamsLikesProperty
	// GetActivityStreamsLocation returns the "location" property if it
	// exists, and nil otherwise.
	GetActivityStreamsLocation() ActivityStreamsLocationProperty
	// GetActivityStreamsMediaType returns the "mediaType" property if it
	// exists, and nil otherwise.
	GetActivityStreamsMediaType() ActivityStreamsMediaTypeProperty
	// GetActivityStreamsName returns the "name" property if it exists, and
	// nil otherwise.
	GetActivityStreamsName() ActivityStreamsNameProperty
	// GetActivityStreamsObject returns the "object" property if it exists,
	// and nil otherwise.
	GetActivityStreamsObject() ActivityStreamsObjectProperty
	// GetActivityStreamsOrigin returns the "origin" property if it exists,
	// and nil otherwise.
	GetActivityStreamsOrigin() ActivityStreamsOriginProperty
	// GetActivityStreamsPreview returns the "preview" property if it exists,
	// and nil otherwise.
	GetActivityStreamsPreview() ActivityStreamsPreviewProperty
	// GetActivityStreamsPublished returns the "published" property if it
	// exists, and nil otherwise.
	GetActivityStreamsPublished() ActivityStreamsPublishedProperty
	// GetActivityStreamsReplies returns the "replies" property if it exists,
	// and nil otherwise.
	GetActivityStreamsReplies() ActivityStreamsRepliesProperty
	// GetActivityStreamsResult returns the "result" property if it exists,
	// and nil otherwise.
	GetActivityStreamsResult() ActivityStreamsResultProperty
	// GetActivityStreamsShares returns the "shares" property if it exists,
	// and nil otherwise.
	GetActivityStreamsShares() ActivityStreamsSharesProperty
	// GetActivityStreamsSource returns the "source" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSource() ActivityStreamsSourceProperty
	// GetActivityStreamsStartTime returns the "startTime" property if it
	// exists, and nil otherwise.
	GetActivityStreamsStartTime() ActivityStreamsStartTimeProperty
	// GetActivityStreamsSummary returns the "summary" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSummary() ActivityStreamsSummaryProperty
	// GetActivityStreamsTag returns the "tag" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTag() ActivityStreamsTagProperty
	// GetActivityStreamsTarget returns the "target" property if it exists,
	// and nil otherwise.
	GetActivityStreamsTarget() ActivityStreamsTargetProperty
	// GetActivityStreamsTo returns the "to" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTo() ActivityStreamsToProperty
	// GetActivityStreamsUpdated returns the "updated" property if it exists,
	// and nil otherwise.
	GetActivityStreamsUpdated() ActivityStreamsUpdatedProperty
	// GetActivityStreamsUrl returns the "url" property if it exists, and nil
	// otherwise.
	GetActivityStreamsUrl() ActivityStreamsUrlProperty
	// GetForgeFedTeam returns the "team" property if it exists, and nil
	// otherwise.
	GetForgeFedTeam() ForgeFedTeamProperty
	// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
	// it exists, and nil otherwise.
	GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
	// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
	// it exists, and nil otherwise.
	GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
	// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
	GetJSONLDId() JSONLDIdProperty
	// GetJSONLDType returns the "type" property if it exists, and nil
	// otherwise.
	GetJSONLDType() JSONLDTypeProperty
	// GetTypeName returns the name of this type.
	GetTypeName() string
	// GetUnknownProperties returns the unknown properties for the Push type.
	// Note that this should not be used by app developers. It is only
	// used to help determine which implementation is LessThan the other.
	// Developers who are creating a different implementation of this
	// type's interface can use this method in their LessThan
	// implementation, but routine ActivityPub applications should not use
	// this to bypass the code generation tool.
	GetUnknownProperties() map[string]interface{}
	// IsExtending returns true if the Push type extends from the other type.
	IsExtending(other Type) bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this type and the specific properties that are set. The value
	// in the map is the alias used to import the type and its properties.
	JSONLDContext() map[string]string
	// LessThan computes if this Push is lesser, with an arbitrary but stable
	// determination.
	LessThan(o ForgeFedPush) bool
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format.
	Serialize() (map[string]interface{}, error)
	// SetActivityStreamsActor sets the "actor" property.
	SetActivityStreamsActor(i ActivityStreamsActorProperty)
	// SetActivityStreamsAltitude sets the "altitude" property.
	SetActivityStreamsAltitude(i ActivityStreamsAltitudeProperty)
	// SetActivityStreamsAttachment sets the "attachment" property.
	SetActivityStreamsAttachment(i ActivityStreamsAttachmentProperty)
	// SetActivityStreamsAttributedTo sets the "attributedTo" property.
	SetActivityStreamsAttributedTo(i ActivityStreamsAttributedToProperty)
	// SetActivityStreamsAudience sets the "audience" property.
	SetActivityStreamsAudience(i ActivityStreamsAudienceProperty)
	// SetActivityStreamsBcc sets the "bcc" property.
	SetActivityStreamsBcc(i ActivityStreamsBccProperty)
	// SetActivityStreamsBto sets the "bto" property.
	SetActivityStreamsBto(i ActivityStreamsBtoProperty)
	// SetActivityStreamsCc sets the "cc" property.
	SetActivityStreamsCc(i ActivityStreamsCcProperty)
	// SetActivityStreamsContent sets the "content" property.
	SetActivityStreamsContent(i ActivityStreamsContentProperty)
	// SetActivityStreamsContext sets the "context" property.
	SetActivityStreamsContext(i ActivityStreamsContextProperty)
	// SetActivityStreamsDuration sets the "duration" property.
	SetActivityStreamsDuration(i ActivityStreamsDurationProperty)
	// SetActivityStreamsEndTime sets the "endTime" property.
	SetActivityStreamsEndTime(i ActivityStreamsEndTimeProperty)
	// SetActivityStreamsGenerator sets the "generator" property.
	SetActivityStreamsGenerator(i ActivityStreamsGeneratorProperty)
	// SetActivityStreamsIcon sets the "icon" property.
	SetActivityStreamsIcon(i ActivityStreamsIconProperty)
	// SetActivityStreamsImage sets the "image" property.
	SetActivityStreamsImage(i ActivityStreamsImageProperty)
	// SetActivityStreamsInReplyTo sets the "inReplyTo" property.
	SetActivityStreamsInReplyTo(i ActivityStreamsInReplyToProperty)
	// SetActivityStreamsInstrument sets the "instrument" property.
	SetActivityStreamsInstrument(i ActivityStreamsInstrumentProperty)
	// SetActivityStreamsLikes sets the "likes" property.
	SetActivityStreamsLikes(i ActivityStreamsLikesProperty)
	// SetActivityStreamsLocation sets the "location" property.
	SetActivityStreamsLocation(i ActivityStreamsLocationProperty)
	// SetActivityStreamsMediaType sets the "mediaType" property.
	SetActivityStreamsMediaType(i ActivityStreamsMediaTypeProperty)
	// SetActivityStreamsName sets the "name" property.
	SetActivityStreamsName(i ActivityStreamsNameProperty)
	// SetActivityStreamsObject sets the "object" property.
	SetActivityStreamsObject(i ActivityStreamsObjectProperty)
	// SetActivityStreamsOrigin sets the "origin" property.
	SetActivityStreamsOrigin(i ActivityStreamsOriginProperty)
	// SetActivityStreamsPreview sets the "preview" property.
	SetActivityStreamsPreview(i ActivityStreamsPreviewProperty)
	// SetActivityStreamsPublished sets the "published" property.
	SetActivityStreamsPublished(i ActivityStreamsPublishedProperty)
	// SetActivityStreamsReplies sets the "replies" property.
	SetActivityStreamsReplies(i ActivityStreamsRepliesProperty)
	// SetActivityStreamsResult sets the "result" property.
	SetActivityStreamsResult(i ActivityStreamsResultProperty)
	// SetActivityStreamsShares sets the "shares" property.
	SetActivityStreamsShares(i ActivityStreamsSharesProperty)
	// SetActivityStreamsSource sets the "source" property.
	SetActivityStreamsSource(i ActivityStreamsSourceProperty)
	// SetActivityStreamsStartTime sets the "startTime" property.
	SetActivityStreamsStartTime(i ActivityStreamsStartTimeProperty)
	// SetActivityStreamsSummary sets the "summary" property.
	SetActivityStreamsSummary(i ActivityStreamsSummaryProperty)
	// SetActivityStreamsTag sets the "tag" property.
	SetActivityStreamsTag(i ActivityStreamsTagProperty)
	// SetActivityStreamsTarget sets the "target" property.
	SetActivityStreamsTarget(i ActivityStreamsTargetProperty)
	// SetActivityStreamsTo sets the "to" property.
	SetActivityStreamsTo(i ActivityStreamsToProperty)
	// SetActivityStreamsUpdated sets the "updated" property.
	SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
	// SetActivityStreamsUrl sets the "url" property.
	SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
	// SetForgeFedTeam sets the "team" property.
	SetForgeFedTeam(i ForgeFedTeamProperty)
	// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
	SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
	// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
	SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
	// SetJSONLDId sets the "id" property.
	SetJSONLDId(i JSONLDIdProperty)
	// SetJSONLDType sets the "type" property.
	SetJSONLDType(i JSONLDTypeProperty)
	// VocabularyURI returns the vocabulary's URI as a string.
	VocabularyURI() string
}

Indicates that new content has been pushed to the Repository.

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    "https://forgefed.peers.community/ns"
  ],
  "actor": "https://example.dev/aviva",
  "context": "https://example.dev/aviva/myproject",
  "id": "https://example.dev/aviva/outbox/reBGo",
  "object": {
    "items": [
      {
        "attributedTo": "https://example.dev/aviva",
        "context": "https://example.dev/aviva/myproject",
        "created": "2019-11-03T13:43:59Z",
        "hash": "d96596230322716bd6f87a232a648ca9822a1c20",
        "id": "https://example.dev/aviva/myproject/commits/d96596230322716bd6f87a232a648ca9822a1c20",
        "summary": "Provide hints in sign-up form fields",
        "type": "Commit"
      }
    ],
    "totalItems": 1,
    "type": "OrderedCollection"
  },
  "summary": "\u003cp\u003eAviva pushed a commit to

myproject\u003c/p\u003e",

  "target": "https://example.dev/aviva/myproject/branches/master",
  "to": [
    "https://example.dev/aviva/followers",
    "https://example.dev/aviva/myproject",
    "https://example.dev/aviva/myproject/team",
    "https://example.dev/aviva/myproject/followers"
  ],
  "type": "Push"
}

type ForgeFedRefProperty

type ForgeFedRefProperty interface {
	// Clear ensures no value of this property is set. Calling
	// IsXMLSchemaString afterwards will return false.
	Clear()
	// Get returns the value of this property. When IsXMLSchemaString returns
	// false, Get will return any arbitrary value.
	Get() string
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return any arbitrary value.
	GetIRI() *url.URL
	// HasAny returns true if the value or IRI is set.
	HasAny() bool
	// IsIRI returns true if this property is an IRI.
	IsIRI() bool
	// IsXMLSchemaString returns true if this property is set and not an IRI.
	IsXMLSchemaString() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ForgeFedRefProperty) bool
	// Name returns the name of this property: "ref".
	Name() string
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// Set sets the value of this property. Calling IsXMLSchemaString
	// afterwards will return true.
	Set(v string)
	// SetIRI sets the value of this property. Calling IsIRI afterwards will
	// return true.
	SetIRI(v *url.URL)
}

Specifies an identifier for a Branch, that is used in the Repository to uniquely refer to it. For example, in Git, "refs/heads/master" would be the ref of the master branch.

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    "https://forgefed.peers.community/ns"
  ],
  "context": "https://example.dev/luke/myrepo",
  "id": "https://example.dev/luke/myrepo/branches/master",
  "name": "master",
  "ref": "refs/heads/master",
  "type": "Branch"
}

type ForgeFedRepository

type ForgeFedRepository interface {
	// GetActivityStreamsAltitude returns the "altitude" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAltitude() ActivityStreamsAltitudeProperty
	// GetActivityStreamsAttachment returns the "attachment" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAttachment() ActivityStreamsAttachmentProperty
	// GetActivityStreamsAttributedTo returns the "attributedTo" property if
	// it exists, and nil otherwise.
	GetActivityStreamsAttributedTo() ActivityStreamsAttributedToProperty
	// GetActivityStreamsAudience returns the "audience" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAudience() ActivityStreamsAudienceProperty
	// GetActivityStreamsBcc returns the "bcc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBcc() ActivityStreamsBccProperty
	// GetActivityStreamsBto returns the "bto" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBto() ActivityStreamsBtoProperty
	// GetActivityStreamsCc returns the "cc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsCc() ActivityStreamsCcProperty
	// GetActivityStreamsContent returns the "content" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContent() ActivityStreamsContentProperty
	// GetActivityStreamsContext returns the "context" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContext() ActivityStreamsContextProperty
	// GetActivityStreamsDuration returns the "duration" property if it
	// exists, and nil otherwise.
	GetActivityStreamsDuration() ActivityStreamsDurationProperty
	// GetActivityStreamsEndTime returns the "endTime" property if it exists,
	// and nil otherwise.
	GetActivityStreamsEndTime() ActivityStreamsEndTimeProperty
	// GetActivityStreamsGenerator returns the "generator" property if it
	// exists, and nil otherwise.
	GetActivityStreamsGenerator() ActivityStreamsGeneratorProperty
	// GetActivityStreamsIcon returns the "icon" property if it exists, and
	// nil otherwise.
	GetActivityStreamsIcon() ActivityStreamsIconProperty
	// GetActivityStreamsImage returns the "image" property if it exists, and
	// nil otherwise.
	GetActivityStreamsImage() ActivityStreamsImageProperty
	// GetActivityStreamsInReplyTo returns the "inReplyTo" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInReplyTo() ActivityStreamsInReplyToProperty
	// GetActivityStreamsLikes returns the "likes" property if it exists, and
	// nil otherwise.
	GetActivityStreamsLikes() ActivityStreamsLikesProperty
	// GetActivityStreamsLocation returns the "location" property if it
	// exists, and nil otherwise.
	GetActivityStreamsLocation() ActivityStreamsLocationProperty
	// GetActivityStreamsMediaType returns the "mediaType" property if it
	// exists, and nil otherwise.
	GetActivityStreamsMediaType() ActivityStreamsMediaTypeProperty
	// GetActivityStreamsName returns the "name" property if it exists, and
	// nil otherwise.
	GetActivityStreamsName() ActivityStreamsNameProperty
	// GetActivityStreamsObject returns the "object" property if it exists,
	// and nil otherwise.
	GetActivityStreamsObject() ActivityStreamsObjectProperty
	// GetActivityStreamsPreview returns the "preview" property if it exists,
	// and nil otherwise.
	GetActivityStreamsPreview() ActivityStreamsPreviewProperty
	// GetActivityStreamsPublished returns the "published" property if it
	// exists, and nil otherwise.
	GetActivityStreamsPublished() ActivityStreamsPublishedProperty
	// GetActivityStreamsReplies returns the "replies" property if it exists,
	// and nil otherwise.
	GetActivityStreamsReplies() ActivityStreamsRepliesProperty
	// GetActivityStreamsShares returns the "shares" property if it exists,
	// and nil otherwise.
	GetActivityStreamsShares() ActivityStreamsSharesProperty
	// GetActivityStreamsSource returns the "source" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSource() ActivityStreamsSourceProperty
	// GetActivityStreamsStartTime returns the "startTime" property if it
	// exists, and nil otherwise.
	GetActivityStreamsStartTime() ActivityStreamsStartTimeProperty
	// GetActivityStreamsSummary returns the "summary" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSummary() ActivityStreamsSummaryProperty
	// GetActivityStreamsTag returns the "tag" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTag() ActivityStreamsTagProperty
	// GetActivityStreamsTo returns the "to" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTo() ActivityStreamsToProperty
	// GetActivityStreamsUpdated returns the "updated" property if it exists,
	// and nil otherwise.
	GetActivityStreamsUpdated() ActivityStreamsUpdatedProperty
	// GetActivityStreamsUrl returns the "url" property if it exists, and nil
	// otherwise.
	GetActivityStreamsUrl() ActivityStreamsUrlProperty
	// GetForgeFedForks returns the "forks" property if it exists, and nil
	// otherwise.
	GetForgeFedForks() ForgeFedForksProperty
	// GetForgeFedTeam returns the "team" property if it exists, and nil
	// otherwise.
	GetForgeFedTeam() ForgeFedTeamProperty
	// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
	// it exists, and nil otherwise.
	GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
	// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
	// it exists, and nil otherwise.
	GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
	// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
	GetJSONLDId() JSONLDIdProperty
	// GetJSONLDType returns the "type" property if it exists, and nil
	// otherwise.
	GetJSONLDType() JSONLDTypeProperty
	// GetTypeName returns the name of this type.
	GetTypeName() string
	// GetUnknownProperties returns the unknown properties for the Repository
	// type. Note that this should not be used by app developers. It is
	// only used to help determine which implementation is LessThan the
	// other. Developers who are creating a different implementation of
	// this type's interface can use this method in their LessThan
	// implementation, but routine ActivityPub applications should not use
	// this to bypass the code generation tool.
	GetUnknownProperties() map[string]interface{}
	// IsExtending returns true if the Repository type extends from the other
	// type.
	IsExtending(other Type) bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this type and the specific properties that are set. The value
	// in the map is the alias used to import the type and its properties.
	JSONLDContext() map[string]string
	// LessThan computes if this Repository is lesser, with an arbitrary but
	// stable determination.
	LessThan(o ForgeFedRepository) bool
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format.
	Serialize() (map[string]interface{}, error)
	// SetActivityStreamsAltitude sets the "altitude" property.
	SetActivityStreamsAltitude(i ActivityStreamsAltitudeProperty)
	// SetActivityStreamsAttachment sets the "attachment" property.
	SetActivityStreamsAttachment(i ActivityStreamsAttachmentProperty)
	// SetActivityStreamsAttributedTo sets the "attributedTo" property.
	SetActivityStreamsAttributedTo(i ActivityStreamsAttributedToProperty)
	// SetActivityStreamsAudience sets the "audience" property.
	SetActivityStreamsAudience(i ActivityStreamsAudienceProperty)
	// SetActivityStreamsBcc sets the "bcc" property.
	SetActivityStreamsBcc(i ActivityStreamsBccProperty)
	// SetActivityStreamsBto sets the "bto" property.
	SetActivityStreamsBto(i ActivityStreamsBtoProperty)
	// SetActivityStreamsCc sets the "cc" property.
	SetActivityStreamsCc(i ActivityStreamsCcProperty)
	// SetActivityStreamsContent sets the "content" property.
	SetActivityStreamsContent(i ActivityStreamsContentProperty)
	// SetActivityStreamsContext sets the "context" property.
	SetActivityStreamsContext(i ActivityStreamsContextProperty)
	// SetActivityStreamsDuration sets the "duration" property.
	SetActivityStreamsDuration(i ActivityStreamsDurationProperty)
	// SetActivityStreamsEndTime sets the "endTime" property.
	SetActivityStreamsEndTime(i ActivityStreamsEndTimeProperty)
	// SetActivityStreamsGenerator sets the "generator" property.
	SetActivityStreamsGenerator(i ActivityStreamsGeneratorProperty)
	// SetActivityStreamsIcon sets the "icon" property.
	SetActivityStreamsIcon(i ActivityStreamsIconProperty)
	// SetActivityStreamsImage sets the "image" property.
	SetActivityStreamsImage(i ActivityStreamsImageProperty)
	// SetActivityStreamsInReplyTo sets the "inReplyTo" property.
	SetActivityStreamsInReplyTo(i ActivityStreamsInReplyToProperty)
	// SetActivityStreamsLikes sets the "likes" property.
	SetActivityStreamsLikes(i ActivityStreamsLikesProperty)
	// SetActivityStreamsLocation sets the "location" property.
	SetActivityStreamsLocation(i ActivityStreamsLocationProperty)
	// SetActivityStreamsMediaType sets the "mediaType" property.
	SetActivityStreamsMediaType(i ActivityStreamsMediaTypeProperty)
	// SetActivityStreamsName sets the "name" property.
	SetActivityStreamsName(i ActivityStreamsNameProperty)
	// SetActivityStreamsObject sets the "object" property.
	SetActivityStreamsObject(i ActivityStreamsObjectProperty)
	// SetActivityStreamsPreview sets the "preview" property.
	SetActivityStreamsPreview(i ActivityStreamsPreviewProperty)
	// SetActivityStreamsPublished sets the "published" property.
	SetActivityStreamsPublished(i ActivityStreamsPublishedProperty)
	// SetActivityStreamsReplies sets the "replies" property.
	SetActivityStreamsReplies(i ActivityStreamsRepliesProperty)
	// SetActivityStreamsShares sets the "shares" property.
	SetActivityStreamsShares(i ActivityStreamsSharesProperty)
	// SetActivityStreamsSource sets the "source" property.
	SetActivityStreamsSource(i ActivityStreamsSourceProperty)
	// SetActivityStreamsStartTime sets the "startTime" property.
	SetActivityStreamsStartTime(i ActivityStreamsStartTimeProperty)
	// SetActivityStreamsSummary sets the "summary" property.
	SetActivityStreamsSummary(i ActivityStreamsSummaryProperty)
	// SetActivityStreamsTag sets the "tag" property.
	SetActivityStreamsTag(i ActivityStreamsTagProperty)
	// SetActivityStreamsTo sets the "to" property.
	SetActivityStreamsTo(i ActivityStreamsToProperty)
	// SetActivityStreamsUpdated sets the "updated" property.
	SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
	// SetActivityStreamsUrl sets the "url" property.
	SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
	// SetForgeFedForks sets the "forks" property.
	SetForgeFedForks(i ForgeFedForksProperty)
	// SetForgeFedTeam sets the "team" property.
	SetForgeFedTeam(i ForgeFedTeamProperty)
	// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
	SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
	// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
	SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
	// SetJSONLDId sets the "id" property.
	SetJSONLDId(i JSONLDIdProperty)
	// SetJSONLDType sets the "type" property.
	SetJSONLDType(i JSONLDTypeProperty)
	// VocabularyURI returns the vocabulary's URI as a string.
	VocabularyURI() string
}

Represents a version control system repository.

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    "https://w3id.org/security/v1",
    "https://forgefed.peers.community/ns"
  ],
  "followers": "https://dev.example/aviva/treesim/followers",
  "id": "https://dev.example/aviva/treesim",
  "inbox": "https://dev.example/aviva/treesim/inbox",
  "name": "Tree Growth 3D Simulation",
  "outbox": "https://dev.example/aviva/treesim/outbox",
  "publicKey": {
    "id": "https://dev.example/aviva/treesim#main-key",
    "owner": "https://dev.example/aviva/treesim",
    "publicKeyPem": "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhki....."
  },
  "summary": "\u003cp\u003eTree growth 3D simulator for my nature

exploration game\u003c/p\u003e",

  "team": "https://dev.example/aviva/treesim/team",
  "type": "Repository"
}

type ForgeFedTeamProperty

type ForgeFedTeamProperty interface {
	// Clear ensures no value of this property is set. Calling HasAny or any
	// of the 'Is' methods afterwards will return false.
	Clear()
	// GetActivityStreamsCollection returns the value of this property. When
	// IsActivityStreamsCollection returns false,
	// GetActivityStreamsCollection will return an arbitrary value.
	GetActivityStreamsCollection() ActivityStreamsCollection
	// GetActivityStreamsCollectionPage returns the value of this property.
	// When IsActivityStreamsCollectionPage returns false,
	// GetActivityStreamsCollectionPage will return an arbitrary value.
	GetActivityStreamsCollectionPage() ActivityStreamsCollectionPage
	// GetActivityStreamsOrderedCollection returns the value of this property.
	// When IsActivityStreamsOrderedCollection returns false,
	// GetActivityStreamsOrderedCollection will return an arbitrary value.
	GetActivityStreamsOrderedCollection() ActivityStreamsOrderedCollection
	// GetActivityStreamsOrderedCollectionPage returns the value of this
	// property. When IsActivityStreamsOrderedCollectionPage returns
	// false, GetActivityStreamsOrderedCollectionPage will return an
	// arbitrary value.
	GetActivityStreamsOrderedCollectionPage() ActivityStreamsOrderedCollectionPage
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return an arbitrary value.
	GetIRI() *url.URL
	// GetType returns the value in this property as a Type. Returns nil if
	// the value is not an ActivityStreams type, such as an IRI or another
	// value.
	GetType() Type
	// HasAny returns true if any of the different values is set.
	HasAny() bool
	// IsActivityStreamsCollection returns true if this property has a type of
	// "Collection". When true, use the GetActivityStreamsCollection and
	// SetActivityStreamsCollection methods to access and set this
	// property.
	IsActivityStreamsCollection() bool
	// IsActivityStreamsCollectionPage returns true if this property has a
	// type of "CollectionPage". When true, use the
	// GetActivityStreamsCollectionPage and
	// SetActivityStreamsCollectionPage methods to access and set this
	// property.
	IsActivityStreamsCollectionPage() bool
	// IsActivityStreamsOrderedCollection returns true if this property has a
	// type of "OrderedCollection". When true, use the
	// GetActivityStreamsOrderedCollection and
	// SetActivityStreamsOrderedCollection methods to access and set this
	// property.
	IsActivityStreamsOrderedCollection() bool
	// IsActivityStreamsOrderedCollectionPage returns true if this property
	// has a type of "OrderedCollectionPage". When true, use the
	// GetActivityStreamsOrderedCollectionPage and
	// SetActivityStreamsOrderedCollectionPage methods to access and set
	// this property.
	IsActivityStreamsOrderedCollectionPage() bool
	// IsIRI returns true if this property is an IRI. When true, use GetIRI
	// and SetIRI to access and set this property
	IsIRI() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ForgeFedTeamProperty) bool
	// Name returns the name of this property: "team".
	Name() string
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// SetActivityStreamsCollection sets the value of this property. Calling
	// IsActivityStreamsCollection afterwards returns true.
	SetActivityStreamsCollection(v ActivityStreamsCollection)
	// SetActivityStreamsCollectionPage sets the value of this property.
	// Calling IsActivityStreamsCollectionPage afterwards returns true.
	SetActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// SetActivityStreamsOrderedCollection sets the value of this property.
	// Calling IsActivityStreamsOrderedCollection afterwards returns true.
	SetActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// SetActivityStreamsOrderedCollectionPage sets the value of this
	// property. Calling IsActivityStreamsOrderedCollectionPage afterwards
	// returns true.
	SetActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// SetIRI sets the value of this property. Calling IsIRI afterwards
	// returns true.
	SetIRI(v *url.URL)
	// SetType attempts to set the property for the arbitrary type. Returns an
	// error if it is not a valid type to set on this property.
	SetType(t Type) error
}

Specifies a Collection of actors who are working on the object, or responsible for it, or managing or administrating it, or having edit access to it. For example, for a Repository, it could be the people who have push/edit access, the "collaborators" of the repository.

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    "https://w3id.org/security/v1",
    "https://forgefed.peers.community/ns"
  ],
  "followers": "https://dev.example/aviva/treesim/followers",
  "id": "https://dev.example/aviva/treesim",
  "inbox": "https://dev.example/aviva/treesim/inbox",
  "name": "Tree Growth 3D Simulation",
  "outbox": "https://dev.example/aviva/treesim/outbox",
  "publicKey": {
    "id": "https://dev.example/aviva/treesim#main-key",
    "owner": "https://dev.example/aviva/treesim",
    "publicKeyPem": "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhki....."
  },
  "summary": "\u003cp\u003eTree growth 3D simulator for my nature

exploration game\u003c/p\u003e",

  "team": "https://dev.example/aviva/treesim/team",
  "type": "Repository"
}

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "id": "https://dev.example/aviva/treesim/team",
  "items": [
    "https://dev.example/aviva",
    "https://dev.example/luke",
    "https://code.community/users/lorax"
  ],
  "totalItems": 3,
  "type": "Collection"
}

type ForgeFedTicket

type ForgeFedTicket interface {
	// GetActivityStreamsAltitude returns the "altitude" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAltitude() ActivityStreamsAltitudeProperty
	// GetActivityStreamsAttachment returns the "attachment" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAttachment() ActivityStreamsAttachmentProperty
	// GetActivityStreamsAttributedTo returns the "attributedTo" property if
	// it exists, and nil otherwise.
	GetActivityStreamsAttributedTo() ActivityStreamsAttributedToProperty
	// GetActivityStreamsAudience returns the "audience" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAudience() ActivityStreamsAudienceProperty
	// GetActivityStreamsBcc returns the "bcc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBcc() ActivityStreamsBccProperty
	// GetActivityStreamsBto returns the "bto" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBto() ActivityStreamsBtoProperty
	// GetActivityStreamsCc returns the "cc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsCc() ActivityStreamsCcProperty
	// GetActivityStreamsContent returns the "content" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContent() ActivityStreamsContentProperty
	// GetActivityStreamsContext returns the "context" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContext() ActivityStreamsContextProperty
	// GetActivityStreamsDuration returns the "duration" property if it
	// exists, and nil otherwise.
	GetActivityStreamsDuration() ActivityStreamsDurationProperty
	// GetActivityStreamsEndTime returns the "endTime" property if it exists,
	// and nil otherwise.
	GetActivityStreamsEndTime() ActivityStreamsEndTimeProperty
	// GetActivityStreamsGenerator returns the "generator" property if it
	// exists, and nil otherwise.
	GetActivityStreamsGenerator() ActivityStreamsGeneratorProperty
	// GetActivityStreamsIcon returns the "icon" property if it exists, and
	// nil otherwise.
	GetActivityStreamsIcon() ActivityStreamsIconProperty
	// GetActivityStreamsImage returns the "image" property if it exists, and
	// nil otherwise.
	GetActivityStreamsImage() ActivityStreamsImageProperty
	// GetActivityStreamsInReplyTo returns the "inReplyTo" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInReplyTo() ActivityStreamsInReplyToProperty
	// GetActivityStreamsLikes returns the "likes" property if it exists, and
	// nil otherwise.
	GetActivityStreamsLikes() ActivityStreamsLikesProperty
	// GetActivityStreamsLocation returns the "location" property if it
	// exists, and nil otherwise.
	GetActivityStreamsLocation() ActivityStreamsLocationProperty
	// GetActivityStreamsMediaType returns the "mediaType" property if it
	// exists, and nil otherwise.
	GetActivityStreamsMediaType() ActivityStreamsMediaTypeProperty
	// GetActivityStreamsName returns the "name" property if it exists, and
	// nil otherwise.
	GetActivityStreamsName() ActivityStreamsNameProperty
	// GetActivityStreamsObject returns the "object" property if it exists,
	// and nil otherwise.
	GetActivityStreamsObject() ActivityStreamsObjectProperty
	// GetActivityStreamsPreview returns the "preview" property if it exists,
	// and nil otherwise.
	GetActivityStreamsPreview() ActivityStreamsPreviewProperty
	// GetActivityStreamsPublished returns the "published" property if it
	// exists, and nil otherwise.
	GetActivityStreamsPublished() ActivityStreamsPublishedProperty
	// GetActivityStreamsReplies returns the "replies" property if it exists,
	// and nil otherwise.
	GetActivityStreamsReplies() ActivityStreamsRepliesProperty
	// GetActivityStreamsShares returns the "shares" property if it exists,
	// and nil otherwise.
	GetActivityStreamsShares() ActivityStreamsSharesProperty
	// GetActivityStreamsSource returns the "source" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSource() ActivityStreamsSourceProperty
	// GetActivityStreamsStartTime returns the "startTime" property if it
	// exists, and nil otherwise.
	GetActivityStreamsStartTime() ActivityStreamsStartTimeProperty
	// GetActivityStreamsSummary returns the "summary" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSummary() ActivityStreamsSummaryProperty
	// GetActivityStreamsTag returns the "tag" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTag() ActivityStreamsTagProperty
	// GetActivityStreamsTo returns the "to" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTo() ActivityStreamsToProperty
	// GetActivityStreamsUpdated returns the "updated" property if it exists,
	// and nil otherwise.
	GetActivityStreamsUpdated() ActivityStreamsUpdatedProperty
	// GetActivityStreamsUrl returns the "url" property if it exists, and nil
	// otherwise.
	GetActivityStreamsUrl() ActivityStreamsUrlProperty
	// GetForgeFedAssignedTo returns the "assignedTo" property if it exists,
	// and nil otherwise.
	GetForgeFedAssignedTo() ForgeFedAssignedToProperty
	// GetForgeFedDependants returns the "dependants" property if it exists,
	// and nil otherwise.
	GetForgeFedDependants() ForgeFedDependantsProperty
	// GetForgeFedDependedBy returns the "dependedBy" property if it exists,
	// and nil otherwise.
	GetForgeFedDependedBy() ForgeFedDependedByProperty
	// GetForgeFedDependencies returns the "dependencies" property if it
	// exists, and nil otherwise.
	GetForgeFedDependencies() ForgeFedDependenciesProperty
	// GetForgeFedDependsOn returns the "dependsOn" property if it exists, and
	// nil otherwise.
	GetForgeFedDependsOn() ForgeFedDependsOnProperty
	// GetForgeFedIsResolved returns the "isResolved" property if it exists,
	// and nil otherwise.
	GetForgeFedIsResolved() ForgeFedIsResolvedProperty
	// GetForgeFedTeam returns the "team" property if it exists, and nil
	// otherwise.
	GetForgeFedTeam() ForgeFedTeamProperty
	// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
	// it exists, and nil otherwise.
	GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
	// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
	// it exists, and nil otherwise.
	GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
	// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
	GetJSONLDId() JSONLDIdProperty
	// GetJSONLDType returns the "type" property if it exists, and nil
	// otherwise.
	GetJSONLDType() JSONLDTypeProperty
	// GetTypeName returns the name of this type.
	GetTypeName() string
	// GetUnknownProperties returns the unknown properties for the Ticket
	// type. Note that this should not be used by app developers. It is
	// only used to help determine which implementation is LessThan the
	// other. Developers who are creating a different implementation of
	// this type's interface can use this method in their LessThan
	// implementation, but routine ActivityPub applications should not use
	// this to bypass the code generation tool.
	GetUnknownProperties() map[string]interface{}
	// IsExtending returns true if the Ticket type extends from the other type.
	IsExtending(other Type) bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this type and the specific properties that are set. The value
	// in the map is the alias used to import the type and its properties.
	JSONLDContext() map[string]string
	// LessThan computes if this Ticket is lesser, with an arbitrary but
	// stable determination.
	LessThan(o ForgeFedTicket) bool
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format.
	Serialize() (map[string]interface{}, error)
	// SetActivityStreamsAltitude sets the "altitude" property.
	SetActivityStreamsAltitude(i ActivityStreamsAltitudeProperty)
	// SetActivityStreamsAttachment sets the "attachment" property.
	SetActivityStreamsAttachment(i ActivityStreamsAttachmentProperty)
	// SetActivityStreamsAttributedTo sets the "attributedTo" property.
	SetActivityStreamsAttributedTo(i ActivityStreamsAttributedToProperty)
	// SetActivityStreamsAudience sets the "audience" property.
	SetActivityStreamsAudience(i ActivityStreamsAudienceProperty)
	// SetActivityStreamsBcc sets the "bcc" property.
	SetActivityStreamsBcc(i ActivityStreamsBccProperty)
	// SetActivityStreamsBto sets the "bto" property.
	SetActivityStreamsBto(i ActivityStreamsBtoProperty)
	// SetActivityStreamsCc sets the "cc" property.
	SetActivityStreamsCc(i ActivityStreamsCcProperty)
	// SetActivityStreamsContent sets the "content" property.
	SetActivityStreamsContent(i ActivityStreamsContentProperty)
	// SetActivityStreamsContext sets the "context" property.
	SetActivityStreamsContext(i ActivityStreamsContextProperty)
	// SetActivityStreamsDuration sets the "duration" property.
	SetActivityStreamsDuration(i ActivityStreamsDurationProperty)
	// SetActivityStreamsEndTime sets the "endTime" property.
	SetActivityStreamsEndTime(i ActivityStreamsEndTimeProperty)
	// SetActivityStreamsGenerator sets the "generator" property.
	SetActivityStreamsGenerator(i ActivityStreamsGeneratorProperty)
	// SetActivityStreamsIcon sets the "icon" property.
	SetActivityStreamsIcon(i ActivityStreamsIconProperty)
	// SetActivityStreamsImage sets the "image" property.
	SetActivityStreamsImage(i ActivityStreamsImageProperty)
	// SetActivityStreamsInReplyTo sets the "inReplyTo" property.
	SetActivityStreamsInReplyTo(i ActivityStreamsInReplyToProperty)
	// SetActivityStreamsLikes sets the "likes" property.
	SetActivityStreamsLikes(i ActivityStreamsLikesProperty)
	// SetActivityStreamsLocation sets the "location" property.
	SetActivityStreamsLocation(i ActivityStreamsLocationProperty)
	// SetActivityStreamsMediaType sets the "mediaType" property.
	SetActivityStreamsMediaType(i ActivityStreamsMediaTypeProperty)
	// SetActivityStreamsName sets the "name" property.
	SetActivityStreamsName(i ActivityStreamsNameProperty)
	// SetActivityStreamsObject sets the "object" property.
	SetActivityStreamsObject(i ActivityStreamsObjectProperty)
	// SetActivityStreamsPreview sets the "preview" property.
	SetActivityStreamsPreview(i ActivityStreamsPreviewProperty)
	// SetActivityStreamsPublished sets the "published" property.
	SetActivityStreamsPublished(i ActivityStreamsPublishedProperty)
	// SetActivityStreamsReplies sets the "replies" property.
	SetActivityStreamsReplies(i ActivityStreamsRepliesProperty)
	// SetActivityStreamsShares sets the "shares" property.
	SetActivityStreamsShares(i ActivityStreamsSharesProperty)
	// SetActivityStreamsSource sets the "source" property.
	SetActivityStreamsSource(i ActivityStreamsSourceProperty)
	// SetActivityStreamsStartTime sets the "startTime" property.
	SetActivityStreamsStartTime(i ActivityStreamsStartTimeProperty)
	// SetActivityStreamsSummary sets the "summary" property.
	SetActivityStreamsSummary(i ActivityStreamsSummaryProperty)
	// SetActivityStreamsTag sets the "tag" property.
	SetActivityStreamsTag(i ActivityStreamsTagProperty)
	// SetActivityStreamsTo sets the "to" property.
	SetActivityStreamsTo(i ActivityStreamsToProperty)
	// SetActivityStreamsUpdated sets the "updated" property.
	SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
	// SetActivityStreamsUrl sets the "url" property.
	SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
	// SetForgeFedAssignedTo sets the "assignedTo" property.
	SetForgeFedAssignedTo(i ForgeFedAssignedToProperty)
	// SetForgeFedDependants sets the "dependants" property.
	SetForgeFedDependants(i ForgeFedDependantsProperty)
	// SetForgeFedDependedBy sets the "dependedBy" property.
	SetForgeFedDependedBy(i ForgeFedDependedByProperty)
	// SetForgeFedDependencies sets the "dependencies" property.
	SetForgeFedDependencies(i ForgeFedDependenciesProperty)
	// SetForgeFedDependsOn sets the "dependsOn" property.
	SetForgeFedDependsOn(i ForgeFedDependsOnProperty)
	// SetForgeFedIsResolved sets the "isResolved" property.
	SetForgeFedIsResolved(i ForgeFedIsResolvedProperty)
	// SetForgeFedTeam sets the "team" property.
	SetForgeFedTeam(i ForgeFedTeamProperty)
	// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
	SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
	// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
	SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
	// SetJSONLDId sets the "id" property.
	SetJSONLDId(i JSONLDIdProperty)
	// SetJSONLDType sets the "type" property.
	SetJSONLDType(i JSONLDTypeProperty)
	// VocabularyURI returns the vocabulary's URI as a string.
	VocabularyURI() string
}

Represents an item that requires work or attention. Tickets exist in the context of a project (which may or may not be a version-control repository), and are used to track ideas, proposals, tasks, bugs and more.

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    "https://forgefed.peers.community/ns"
  ],
  "assignedTo": "https://example.dev/alice",
  "attributedTo": "https://dev.community/bob",
  "content": "\u003cp\u003ePlease fix.

\u003ci\u003eEverything\u003c/i\u003e is broken!\u003c/p\u003e",

  "context": "https://example.dev/alice/myrepo",
  "id": "https://example.dev/alice/myrepo/issues/42",
  "isResolved": false,
  "mediaType": "text/html",
  "source": {
    "content": "Please fix. *Everything* is broken!",
    "mediaType": "text/markdown; variant=CommonMark"
  },
  "summary": "Nothing works!",
  "type": "Ticket"
}

type ForgeFedTicketDependency

type ForgeFedTicketDependency interface {
	// GetActivityStreamsAltitude returns the "altitude" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAltitude() ActivityStreamsAltitudeProperty
	// GetActivityStreamsAttachment returns the "attachment" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAttachment() ActivityStreamsAttachmentProperty
	// GetActivityStreamsAttributedTo returns the "attributedTo" property if
	// it exists, and nil otherwise.
	GetActivityStreamsAttributedTo() ActivityStreamsAttributedToProperty
	// GetActivityStreamsAudience returns the "audience" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAudience() ActivityStreamsAudienceProperty
	// GetActivityStreamsBcc returns the "bcc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBcc() ActivityStreamsBccProperty
	// GetActivityStreamsBto returns the "bto" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBto() ActivityStreamsBtoProperty
	// GetActivityStreamsCc returns the "cc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsCc() ActivityStreamsCcProperty
	// GetActivityStreamsContent returns the "content" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContent() ActivityStreamsContentProperty
	// GetActivityStreamsContext returns the "context" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContext() ActivityStreamsContextProperty
	// GetActivityStreamsDuration returns the "duration" property if it
	// exists, and nil otherwise.
	GetActivityStreamsDuration() ActivityStreamsDurationProperty
	// GetActivityStreamsEndTime returns the "endTime" property if it exists,
	// and nil otherwise.
	GetActivityStreamsEndTime() ActivityStreamsEndTimeProperty
	// GetActivityStreamsGenerator returns the "generator" property if it
	// exists, and nil otherwise.
	GetActivityStreamsGenerator() ActivityStreamsGeneratorProperty
	// GetActivityStreamsIcon returns the "icon" property if it exists, and
	// nil otherwise.
	GetActivityStreamsIcon() ActivityStreamsIconProperty
	// GetActivityStreamsImage returns the "image" property if it exists, and
	// nil otherwise.
	GetActivityStreamsImage() ActivityStreamsImageProperty
	// GetActivityStreamsInReplyTo returns the "inReplyTo" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInReplyTo() ActivityStreamsInReplyToProperty
	// GetActivityStreamsLikes returns the "likes" property if it exists, and
	// nil otherwise.
	GetActivityStreamsLikes() ActivityStreamsLikesProperty
	// GetActivityStreamsLocation returns the "location" property if it
	// exists, and nil otherwise.
	GetActivityStreamsLocation() ActivityStreamsLocationProperty
	// GetActivityStreamsMediaType returns the "mediaType" property if it
	// exists, and nil otherwise.
	GetActivityStreamsMediaType() ActivityStreamsMediaTypeProperty
	// GetActivityStreamsName returns the "name" property if it exists, and
	// nil otherwise.
	GetActivityStreamsName() ActivityStreamsNameProperty
	// GetActivityStreamsObject returns the "object" property if it exists,
	// and nil otherwise.
	GetActivityStreamsObject() ActivityStreamsObjectProperty
	// GetActivityStreamsPreview returns the "preview" property if it exists,
	// and nil otherwise.
	GetActivityStreamsPreview() ActivityStreamsPreviewProperty
	// GetActivityStreamsPublished returns the "published" property if it
	// exists, and nil otherwise.
	GetActivityStreamsPublished() ActivityStreamsPublishedProperty
	// GetActivityStreamsRelationship returns the "relationship" property if
	// it exists, and nil otherwise.
	GetActivityStreamsRelationship() ActivityStreamsRelationshipProperty
	// GetActivityStreamsReplies returns the "replies" property if it exists,
	// and nil otherwise.
	GetActivityStreamsReplies() ActivityStreamsRepliesProperty
	// GetActivityStreamsShares returns the "shares" property if it exists,
	// and nil otherwise.
	GetActivityStreamsShares() ActivityStreamsSharesProperty
	// GetActivityStreamsSource returns the "source" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSource() ActivityStreamsSourceProperty
	// GetActivityStreamsStartTime returns the "startTime" property if it
	// exists, and nil otherwise.
	GetActivityStreamsStartTime() ActivityStreamsStartTimeProperty
	// GetActivityStreamsSubject returns the "subject" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSubject() ActivityStreamsSubjectProperty
	// GetActivityStreamsSummary returns the "summary" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSummary() ActivityStreamsSummaryProperty
	// GetActivityStreamsTag returns the "tag" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTag() ActivityStreamsTagProperty
	// GetActivityStreamsTo returns the "to" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTo() ActivityStreamsToProperty
	// GetActivityStreamsUpdated returns the "updated" property if it exists,
	// and nil otherwise.
	GetActivityStreamsUpdated() ActivityStreamsUpdatedProperty
	// GetActivityStreamsUrl returns the "url" property if it exists, and nil
	// otherwise.
	GetActivityStreamsUrl() ActivityStreamsUrlProperty
	// GetForgeFedTeam returns the "team" property if it exists, and nil
	// otherwise.
	GetForgeFedTeam() ForgeFedTeamProperty
	// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
	// it exists, and nil otherwise.
	GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
	// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
	// it exists, and nil otherwise.
	GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
	// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
	GetJSONLDId() JSONLDIdProperty
	// GetJSONLDType returns the "type" property if it exists, and nil
	// otherwise.
	GetJSONLDType() JSONLDTypeProperty
	// GetTypeName returns the name of this type.
	GetTypeName() string
	// GetUnknownProperties returns the unknown properties for the
	// TicketDependency type. Note that this should not be used by app
	// developers. It is only used to help determine which implementation
	// is LessThan the other. Developers who are creating a different
	// implementation of this type's interface can use this method in
	// their LessThan implementation, but routine ActivityPub applications
	// should not use this to bypass the code generation tool.
	GetUnknownProperties() map[string]interface{}
	// IsExtending returns true if the TicketDependency type extends from the
	// other type.
	IsExtending(other Type) bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this type and the specific properties that are set. The value
	// in the map is the alias used to import the type and its properties.
	JSONLDContext() map[string]string
	// LessThan computes if this TicketDependency is lesser, with an arbitrary
	// but stable determination.
	LessThan(o ForgeFedTicketDependency) bool
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format.
	Serialize() (map[string]interface{}, error)
	// SetActivityStreamsAltitude sets the "altitude" property.
	SetActivityStreamsAltitude(i ActivityStreamsAltitudeProperty)
	// SetActivityStreamsAttachment sets the "attachment" property.
	SetActivityStreamsAttachment(i ActivityStreamsAttachmentProperty)
	// SetActivityStreamsAttributedTo sets the "attributedTo" property.
	SetActivityStreamsAttributedTo(i ActivityStreamsAttributedToProperty)
	// SetActivityStreamsAudience sets the "audience" property.
	SetActivityStreamsAudience(i ActivityStreamsAudienceProperty)
	// SetActivityStreamsBcc sets the "bcc" property.
	SetActivityStreamsBcc(i ActivityStreamsBccProperty)
	// SetActivityStreamsBto sets the "bto" property.
	SetActivityStreamsBto(i ActivityStreamsBtoProperty)
	// SetActivityStreamsCc sets the "cc" property.
	SetActivityStreamsCc(i ActivityStreamsCcProperty)
	// SetActivityStreamsContent sets the "content" property.
	SetActivityStreamsContent(i ActivityStreamsContentProperty)
	// SetActivityStreamsContext sets the "context" property.
	SetActivityStreamsContext(i ActivityStreamsContextProperty)
	// SetActivityStreamsDuration sets the "duration" property.
	SetActivityStreamsDuration(i ActivityStreamsDurationProperty)
	// SetActivityStreamsEndTime sets the "endTime" property.
	SetActivityStreamsEndTime(i ActivityStreamsEndTimeProperty)
	// SetActivityStreamsGenerator sets the "generator" property.
	SetActivityStreamsGenerator(i ActivityStreamsGeneratorProperty)
	// SetActivityStreamsIcon sets the "icon" property.
	SetActivityStreamsIcon(i ActivityStreamsIconProperty)
	// SetActivityStreamsImage sets the "image" property.
	SetActivityStreamsImage(i ActivityStreamsImageProperty)
	// SetActivityStreamsInReplyTo sets the "inReplyTo" property.
	SetActivityStreamsInReplyTo(i ActivityStreamsInReplyToProperty)
	// SetActivityStreamsLikes sets the "likes" property.
	SetActivityStreamsLikes(i ActivityStreamsLikesProperty)
	// SetActivityStreamsLocation sets the "location" property.
	SetActivityStreamsLocation(i ActivityStreamsLocationProperty)
	// SetActivityStreamsMediaType sets the "mediaType" property.
	SetActivityStreamsMediaType(i ActivityStreamsMediaTypeProperty)
	// SetActivityStreamsName sets the "name" property.
	SetActivityStreamsName(i ActivityStreamsNameProperty)
	// SetActivityStreamsObject sets the "object" property.
	SetActivityStreamsObject(i ActivityStreamsObjectProperty)
	// SetActivityStreamsPreview sets the "preview" property.
	SetActivityStreamsPreview(i ActivityStreamsPreviewProperty)
	// SetActivityStreamsPublished sets the "published" property.
	SetActivityStreamsPublished(i ActivityStreamsPublishedProperty)
	// SetActivityStreamsRelationship sets the "relationship" property.
	SetActivityStreamsRelationship(i ActivityStreamsRelationshipProperty)
	// SetActivityStreamsReplies sets the "replies" property.
	SetActivityStreamsReplies(i ActivityStreamsRepliesProperty)
	// SetActivityStreamsShares sets the "shares" property.
	SetActivityStreamsShares(i ActivityStreamsSharesProperty)
	// SetActivityStreamsSource sets the "source" property.
	SetActivityStreamsSource(i ActivityStreamsSourceProperty)
	// SetActivityStreamsStartTime sets the "startTime" property.
	SetActivityStreamsStartTime(i ActivityStreamsStartTimeProperty)
	// SetActivityStreamsSubject sets the "subject" property.
	SetActivityStreamsSubject(i ActivityStreamsSubjectProperty)
	// SetActivityStreamsSummary sets the "summary" property.
	SetActivityStreamsSummary(i ActivityStreamsSummaryProperty)
	// SetActivityStreamsTag sets the "tag" property.
	SetActivityStreamsTag(i ActivityStreamsTagProperty)
	// SetActivityStreamsTo sets the "to" property.
	SetActivityStreamsTo(i ActivityStreamsToProperty)
	// SetActivityStreamsUpdated sets the "updated" property.
	SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
	// SetActivityStreamsUrl sets the "url" property.
	SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
	// SetForgeFedTeam sets the "team" property.
	SetForgeFedTeam(i ForgeFedTeamProperty)
	// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
	SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
	// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
	SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
	// SetJSONLDId sets the "id" property.
	SetJSONLDId(i JSONLDIdProperty)
	// SetJSONLDType sets the "type" property.
	SetJSONLDType(i JSONLDTypeProperty)
	// VocabularyURI returns the vocabulary's URI as a string.
	VocabularyURI() string
}

Represents a relationship between 2 Tickets, in which the resolution of one ticket requires the other ticket to be resolved too. It MUST specify the subject, object and relationship properties, and the relationship property MUST be dependsOn.

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    "https://forgefed.peers.community/ns"
  ],
  "attributedTo": "https://example.dev/alice",
  "id": "https://example.dev/ticket-deps/2342593",
  "object": "https://dev.community/bob/coolproj/issues/85",
  "published": "2019-07-11T12:34:56Z",
  "relationship": "dependsOn",
  "subject": "https://example.dev/alice/myproj/issues/42",
  "summary": "Alice's ticket depends on Bob's ticket",
  "type": [
    "Relationship",
    "TicketDependency"
  ]
}

type ForgeFedTicketsTrackedByProperty

type ForgeFedTicketsTrackedByProperty interface {
	// Clear ensures no value of this property is set. Calling HasAny or any
	// of the 'Is' methods afterwards will return false.
	Clear()
	// GetActivityStreamsAccept returns the value of this property. When
	// IsActivityStreamsAccept returns false, GetActivityStreamsAccept
	// will return an arbitrary value.
	GetActivityStreamsAccept() ActivityStreamsAccept
	// GetActivityStreamsActivity returns the value of this property. When
	// IsActivityStreamsActivity returns false, GetActivityStreamsActivity
	// will return an arbitrary value.
	GetActivityStreamsActivity() ActivityStreamsActivity
	// GetActivityStreamsAdd returns the value of this property. When
	// IsActivityStreamsAdd returns false, GetActivityStreamsAdd will
	// return an arbitrary value.
	GetActivityStreamsAdd() ActivityStreamsAdd
	// GetActivityStreamsAnnounce returns the value of this property. When
	// IsActivityStreamsAnnounce returns false, GetActivityStreamsAnnounce
	// will return an arbitrary value.
	GetActivityStreamsAnnounce() ActivityStreamsAnnounce
	// GetActivityStreamsApplication returns the value of this property. When
	// IsActivityStreamsApplication returns false,
	// GetActivityStreamsApplication will return an arbitrary value.
	GetActivityStreamsApplication() ActivityStreamsApplication
	// GetActivityStreamsArrive returns the value of this property. When
	// IsActivityStreamsArrive returns false, GetActivityStreamsArrive
	// will return an arbitrary value.
	GetActivityStreamsArrive() ActivityStreamsArrive
	// GetActivityStreamsArticle returns the value of this property. When
	// IsActivityStreamsArticle returns false, GetActivityStreamsArticle
	// will return an arbitrary value.
	GetActivityStreamsArticle() ActivityStreamsArticle
	// GetActivityStreamsAudio returns the value of this property. When
	// IsActivityStreamsAudio returns false, GetActivityStreamsAudio will
	// return an arbitrary value.
	GetActivityStreamsAudio() ActivityStreamsAudio
	// GetActivityStreamsBlock returns the value of this property. When
	// IsActivityStreamsBlock returns false, GetActivityStreamsBlock will
	// return an arbitrary value.
	GetActivityStreamsBlock() ActivityStreamsBlock
	// GetActivityStreamsCollection returns the value of this property. When
	// IsActivityStreamsCollection returns false,
	// GetActivityStreamsCollection will return an arbitrary value.
	GetActivityStreamsCollection() ActivityStreamsCollection
	// GetActivityStreamsCollectionPage returns the value of this property.
	// When IsActivityStreamsCollectionPage returns false,
	// GetActivityStreamsCollectionPage will return an arbitrary value.
	GetActivityStreamsCollectionPage() ActivityStreamsCollectionPage
	// GetActivityStreamsCreate returns the value of this property. When
	// IsActivityStreamsCreate returns false, GetActivityStreamsCreate
	// will return an arbitrary value.
	GetActivityStreamsCreate() ActivityStreamsCreate
	// GetActivityStreamsDelete returns the value of this property. When
	// IsActivityStreamsDelete returns false, GetActivityStreamsDelete
	// will return an arbitrary value.
	GetActivityStreamsDelete() ActivityStreamsDelete
	// GetActivityStreamsDislike returns the value of this property. When
	// IsActivityStreamsDislike returns false, GetActivityStreamsDislike
	// will return an arbitrary value.
	GetActivityStreamsDislike() ActivityStreamsDislike
	// GetActivityStreamsDocument returns the value of this property. When
	// IsActivityStreamsDocument returns false, GetActivityStreamsDocument
	// will return an arbitrary value.
	GetActivityStreamsDocument() ActivityStreamsDocument
	// GetActivityStreamsEvent returns the value of this property. When
	// IsActivityStreamsEvent returns false, GetActivityStreamsEvent will
	// return an arbitrary value.
	GetActivityStreamsEvent() ActivityStreamsEvent
	// GetActivityStreamsFlag returns the value of this property. When
	// IsActivityStreamsFlag returns false, GetActivityStreamsFlag will
	// return an arbitrary value.
	GetActivityStreamsFlag() ActivityStreamsFlag
	// GetActivityStreamsFollow returns the value of this property. When
	// IsActivityStreamsFollow returns false, GetActivityStreamsFollow
	// will return an arbitrary value.
	GetActivityStreamsFollow() ActivityStreamsFollow
	// GetActivityStreamsGroup returns the value of this property. When
	// IsActivityStreamsGroup returns false, GetActivityStreamsGroup will
	// return an arbitrary value.
	GetActivityStreamsGroup() ActivityStreamsGroup
	// GetActivityStreamsIgnore returns the value of this property. When
	// IsActivityStreamsIgnore returns false, GetActivityStreamsIgnore
	// will return an arbitrary value.
	GetActivityStreamsIgnore() ActivityStreamsIgnore
	// GetActivityStreamsImage returns the value of this property. When
	// IsActivityStreamsImage returns false, GetActivityStreamsImage will
	// return an arbitrary value.
	GetActivityStreamsImage() ActivityStreamsImage
	// GetActivityStreamsIntransitiveActivity returns the value of this
	// property. When IsActivityStreamsIntransitiveActivity returns false,
	// GetActivityStreamsIntransitiveActivity will return an arbitrary
	// value.
	GetActivityStreamsIntransitiveActivity() ActivityStreamsIntransitiveActivity
	// GetActivityStreamsInvite returns the value of this property. When
	// IsActivityStreamsInvite returns false, GetActivityStreamsInvite
	// will return an arbitrary value.
	GetActivityStreamsInvite() ActivityStreamsInvite
	// GetActivityStreamsJoin returns the value of this property. When
	// IsActivityStreamsJoin returns false, GetActivityStreamsJoin will
	// return an arbitrary value.
	GetActivityStreamsJoin() ActivityStreamsJoin
	// GetActivityStreamsLeave returns the value of this property. When
	// IsActivityStreamsLeave returns false, GetActivityStreamsLeave will
	// return an arbitrary value.
	GetActivityStreamsLeave() ActivityStreamsLeave
	// GetActivityStreamsLike returns the value of this property. When
	// IsActivityStreamsLike returns false, GetActivityStreamsLike will
	// return an arbitrary value.
	GetActivityStreamsLike() ActivityStreamsLike
	// GetActivityStreamsListen returns the value of this property. When
	// IsActivityStreamsListen returns false, GetActivityStreamsListen
	// will return an arbitrary value.
	GetActivityStreamsListen() ActivityStreamsListen
	// GetActivityStreamsMove returns the value of this property. When
	// IsActivityStreamsMove returns false, GetActivityStreamsMove will
	// return an arbitrary value.
	GetActivityStreamsMove() ActivityStreamsMove
	// GetActivityStreamsNote returns the value of this property. When
	// IsActivityStreamsNote returns false, GetActivityStreamsNote will
	// return an arbitrary value.
	GetActivityStreamsNote() ActivityStreamsNote
	// GetActivityStreamsObject returns the value of this property. When
	// IsActivityStreamsObject returns false, GetActivityStreamsObject
	// will return an arbitrary value.
	GetActivityStreamsObject() ActivityStreamsObject
	// GetActivityStreamsOffer returns the value of this property. When
	// IsActivityStreamsOffer returns false, GetActivityStreamsOffer will
	// return an arbitrary value.
	GetActivityStreamsOffer() ActivityStreamsOffer
	// GetActivityStreamsOrderedCollection returns the value of this property.
	// When IsActivityStreamsOrderedCollection returns false,
	// GetActivityStreamsOrderedCollection will return an arbitrary value.
	GetActivityStreamsOrderedCollection() ActivityStreamsOrderedCollection
	// GetActivityStreamsOrderedCollectionPage returns the value of this
	// property. When IsActivityStreamsOrderedCollectionPage returns
	// false, GetActivityStreamsOrderedCollectionPage will return an
	// arbitrary value.
	GetActivityStreamsOrderedCollectionPage() ActivityStreamsOrderedCollectionPage
	// GetActivityStreamsOrganization returns the value of this property. When
	// IsActivityStreamsOrganization returns false,
	// GetActivityStreamsOrganization will return an arbitrary value.
	GetActivityStreamsOrganization() ActivityStreamsOrganization
	// GetActivityStreamsPage returns the value of this property. When
	// IsActivityStreamsPage returns false, GetActivityStreamsPage will
	// return an arbitrary value.
	GetActivityStreamsPage() ActivityStreamsPage
	// GetActivityStreamsPerson returns the value of this property. When
	// IsActivityStreamsPerson returns false, GetActivityStreamsPerson
	// will return an arbitrary value.
	GetActivityStreamsPerson() ActivityStreamsPerson
	// GetActivityStreamsPlace returns the value of this property. When
	// IsActivityStreamsPlace returns false, GetActivityStreamsPlace will
	// return an arbitrary value.
	GetActivityStreamsPlace() ActivityStreamsPlace
	// GetActivityStreamsProfile returns the value of this property. When
	// IsActivityStreamsProfile returns false, GetActivityStreamsProfile
	// will return an arbitrary value.
	GetActivityStreamsProfile() ActivityStreamsProfile
	// GetActivityStreamsQuestion returns the value of this property. When
	// IsActivityStreamsQuestion returns false, GetActivityStreamsQuestion
	// will return an arbitrary value.
	GetActivityStreamsQuestion() ActivityStreamsQuestion
	// GetActivityStreamsRead returns the value of this property. When
	// IsActivityStreamsRead returns false, GetActivityStreamsRead will
	// return an arbitrary value.
	GetActivityStreamsRead() ActivityStreamsRead
	// GetActivityStreamsReject returns the value of this property. When
	// IsActivityStreamsReject returns false, GetActivityStreamsReject
	// will return an arbitrary value.
	GetActivityStreamsReject() ActivityStreamsReject
	// GetActivityStreamsRelationship returns the value of this property. When
	// IsActivityStreamsRelationship returns false,
	// GetActivityStreamsRelationship will return an arbitrary value.
	GetActivityStreamsRelationship() ActivityStreamsRelationship
	// GetActivityStreamsRemove returns the value of this property. When
	// IsActivityStreamsRemove returns false, GetActivityStreamsRemove
	// will return an arbitrary value.
	GetActivityStreamsRemove() ActivityStreamsRemove
	// GetActivityStreamsService returns the value of this property. When
	// IsActivityStreamsService returns false, GetActivityStreamsService
	// will return an arbitrary value.
	GetActivityStreamsService() ActivityStreamsService
	// GetActivityStreamsTentativeAccept returns the value of this property.
	// When IsActivityStreamsTentativeAccept returns false,
	// GetActivityStreamsTentativeAccept will return an arbitrary value.
	GetActivityStreamsTentativeAccept() ActivityStreamsTentativeAccept
	// GetActivityStreamsTentativeReject returns the value of this property.
	// When IsActivityStreamsTentativeReject returns false,
	// GetActivityStreamsTentativeReject will return an arbitrary value.
	GetActivityStreamsTentativeReject() ActivityStreamsTentativeReject
	// GetActivityStreamsTombstone returns the value of this property. When
	// IsActivityStreamsTombstone returns false,
	// GetActivityStreamsTombstone will return an arbitrary value.
	GetActivityStreamsTombstone() ActivityStreamsTombstone
	// GetActivityStreamsTravel returns the value of this property. When
	// IsActivityStreamsTravel returns false, GetActivityStreamsTravel
	// will return an arbitrary value.
	GetActivityStreamsTravel() ActivityStreamsTravel
	// GetActivityStreamsUndo returns the value of this property. When
	// IsActivityStreamsUndo returns false, GetActivityStreamsUndo will
	// return an arbitrary value.
	GetActivityStreamsUndo() ActivityStreamsUndo
	// GetActivityStreamsUpdate returns the value of this property. When
	// IsActivityStreamsUpdate returns false, GetActivityStreamsUpdate
	// will return an arbitrary value.
	GetActivityStreamsUpdate() ActivityStreamsUpdate
	// GetActivityStreamsVideo returns the value of this property. When
	// IsActivityStreamsVideo returns false, GetActivityStreamsVideo will
	// return an arbitrary value.
	GetActivityStreamsVideo() ActivityStreamsVideo
	// GetActivityStreamsView returns the value of this property. When
	// IsActivityStreamsView returns false, GetActivityStreamsView will
	// return an arbitrary value.
	GetActivityStreamsView() ActivityStreamsView
	// GetForgeFedBranch returns the value of this property. When
	// IsForgeFedBranch returns false, GetForgeFedBranch will return an
	// arbitrary value.
	GetForgeFedBranch() ForgeFedBranch
	// GetForgeFedCommit returns the value of this property. When
	// IsForgeFedCommit returns false, GetForgeFedCommit will return an
	// arbitrary value.
	GetForgeFedCommit() ForgeFedCommit
	// GetForgeFedPush returns the value of this property. When IsForgeFedPush
	// returns false, GetForgeFedPush will return an arbitrary value.
	GetForgeFedPush() ForgeFedPush
	// GetForgeFedRepository returns the value of this property. When
	// IsForgeFedRepository returns false, GetForgeFedRepository will
	// return an arbitrary value.
	GetForgeFedRepository() ForgeFedRepository
	// GetForgeFedTicket returns the value of this property. When
	// IsForgeFedTicket returns false, GetForgeFedTicket will return an
	// arbitrary value.
	GetForgeFedTicket() ForgeFedTicket
	// GetForgeFedTicketDependency returns the value of this property. When
	// IsForgeFedTicketDependency returns false,
	// GetForgeFedTicketDependency will return an arbitrary value.
	GetForgeFedTicketDependency() ForgeFedTicketDependency
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return an arbitrary value.
	GetIRI() *url.URL
	// GetTootEmoji returns the value of this property. When IsTootEmoji
	// returns false, GetTootEmoji will return an arbitrary value.
	GetTootEmoji() TootEmoji
	// GetTootIdentityProof returns the value of this property. When
	// IsTootIdentityProof returns false, GetTootIdentityProof will return
	// an arbitrary value.
	GetTootIdentityProof() TootIdentityProof
	// GetType returns the value in this property as a Type. Returns nil if
	// the value is not an ActivityStreams type, such as an IRI or another
	// value.
	GetType() Type
	// HasAny returns true if any of the different values is set.
	HasAny() bool
	// IsActivityStreamsAccept returns true if this property has a type of
	// "Accept". When true, use the GetActivityStreamsAccept and
	// SetActivityStreamsAccept methods to access and set this property.
	IsActivityStreamsAccept() bool
	// IsActivityStreamsActivity returns true if this property has a type of
	// "Activity". When true, use the GetActivityStreamsActivity and
	// SetActivityStreamsActivity methods to access and set this property.
	IsActivityStreamsActivity() bool
	// IsActivityStreamsAdd returns true if this property has a type of "Add".
	// When true, use the GetActivityStreamsAdd and SetActivityStreamsAdd
	// methods to access and set this property.
	IsActivityStreamsAdd() bool
	// IsActivityStreamsAnnounce returns true if this property has a type of
	// "Announce". When true, use the GetActivityStreamsAnnounce and
	// SetActivityStreamsAnnounce methods to access and set this property.
	IsActivityStreamsAnnounce() bool
	// IsActivityStreamsApplication returns true if this property has a type
	// of "Application". When true, use the GetActivityStreamsApplication
	// and SetActivityStreamsApplication methods to access and set this
	// property.
	IsActivityStreamsApplication() bool
	// IsActivityStreamsArrive returns true if this property has a type of
	// "Arrive". When true, use the GetActivityStreamsArrive and
	// SetActivityStreamsArrive methods to access and set this property.
	IsActivityStreamsArrive() bool
	// IsActivityStreamsArticle returns true if this property has a type of
	// "Article". When true, use the GetActivityStreamsArticle and
	// SetActivityStreamsArticle methods to access and set this property.
	IsActivityStreamsArticle() bool
	// IsActivityStreamsAudio returns true if this property has a type of
	// "Audio". When true, use the GetActivityStreamsAudio and
	// SetActivityStreamsAudio methods to access and set this property.
	IsActivityStreamsAudio() bool
	// IsActivityStreamsBlock returns true if this property has a type of
	// "Block". When true, use the GetActivityStreamsBlock and
	// SetActivityStreamsBlock methods to access and set this property.
	IsActivityStreamsBlock() bool
	// IsActivityStreamsCollection returns true if this property has a type of
	// "Collection". When true, use the GetActivityStreamsCollection and
	// SetActivityStreamsCollection methods to access and set this
	// property.
	IsActivityStreamsCollection() bool
	// IsActivityStreamsCollectionPage returns true if this property has a
	// type of "CollectionPage". When true, use the
	// GetActivityStreamsCollectionPage and
	// SetActivityStreamsCollectionPage methods to access and set this
	// property.
	IsActivityStreamsCollectionPage() bool
	// IsActivityStreamsCreate returns true if this property has a type of
	// "Create". When true, use the GetActivityStreamsCreate and
	// SetActivityStreamsCreate methods to access and set this property.
	IsActivityStreamsCreate() bool
	// IsActivityStreamsDelete returns true if this property has a type of
	// "Delete". When true, use the GetActivityStreamsDelete and
	// SetActivityStreamsDelete methods to access and set this property.
	IsActivityStreamsDelete() bool
	// IsActivityStreamsDislike returns true if this property has a type of
	// "Dislike". When true, use the GetActivityStreamsDislike and
	// SetActivityStreamsDislike methods to access and set this property.
	IsActivityStreamsDislike() bool
	// IsActivityStreamsDocument returns true if this property has a type of
	// "Document". When true, use the GetActivityStreamsDocument and
	// SetActivityStreamsDocument methods to access and set this property.
	IsActivityStreamsDocument() bool
	// IsActivityStreamsEvent returns true if this property has a type of
	// "Event". When true, use the GetActivityStreamsEvent and
	// SetActivityStreamsEvent methods to access and set this property.
	IsActivityStreamsEvent() bool
	// IsActivityStreamsFlag returns true if this property has a type of
	// "Flag". When true, use the GetActivityStreamsFlag and
	// SetActivityStreamsFlag methods to access and set this property.
	IsActivityStreamsFlag() bool
	// IsActivityStreamsFollow returns true if this property has a type of
	// "Follow". When true, use the GetActivityStreamsFollow and
	// SetActivityStreamsFollow methods to access and set this property.
	IsActivityStreamsFollow() bool
	// IsActivityStreamsGroup returns true if this property has a type of
	// "Group". When true, use the GetActivityStreamsGroup and
	// SetActivityStreamsGroup methods to access and set this property.
	IsActivityStreamsGroup() bool
	// IsActivityStreamsIgnore returns true if this property has a type of
	// "Ignore". When true, use the GetActivityStreamsIgnore and
	// SetActivityStreamsIgnore methods to access and set this property.
	IsActivityStreamsIgnore() bool
	// IsActivityStreamsImage returns true if this property has a type of
	// "Image". When true, use the GetActivityStreamsImage and
	// SetActivityStreamsImage methods to access and set this property.
	IsActivityStreamsImage() bool
	// IsActivityStreamsIntransitiveActivity returns true if this property has
	// a type of "IntransitiveActivity". When true, use the
	// GetActivityStreamsIntransitiveActivity and
	// SetActivityStreamsIntransitiveActivity methods to access and set
	// this property.
	IsActivityStreamsIntransitiveActivity() bool
	// IsActivityStreamsInvite returns true if this property has a type of
	// "Invite". When true, use the GetActivityStreamsInvite and
	// SetActivityStreamsInvite methods to access and set this property.
	IsActivityStreamsInvite() bool
	// IsActivityStreamsJoin returns true if this property has a type of
	// "Join". When true, use the GetActivityStreamsJoin and
	// SetActivityStreamsJoin methods to access and set this property.
	IsActivityStreamsJoin() bool
	// IsActivityStreamsLeave returns true if this property has a type of
	// "Leave". When true, use the GetActivityStreamsLeave and
	// SetActivityStreamsLeave methods to access and set this property.
	IsActivityStreamsLeave() bool
	// IsActivityStreamsLike returns true if this property has a type of
	// "Like". When true, use the GetActivityStreamsLike and
	// SetActivityStreamsLike methods to access and set this property.
	IsActivityStreamsLike() bool
	// IsActivityStreamsListen returns true if this property has a type of
	// "Listen". When true, use the GetActivityStreamsListen and
	// SetActivityStreamsListen methods to access and set this property.
	IsActivityStreamsListen() bool
	// IsActivityStreamsMove returns true if this property has a type of
	// "Move". When true, use the GetActivityStreamsMove and
	// SetActivityStreamsMove methods to access and set this property.
	IsActivityStreamsMove() bool
	// IsActivityStreamsNote returns true if this property has a type of
	// "Note". When true, use the GetActivityStreamsNote and
	// SetActivityStreamsNote methods to access and set this property.
	IsActivityStreamsNote() bool
	// IsActivityStreamsObject returns true if this property has a type of
	// "Object". When true, use the GetActivityStreamsObject and
	// SetActivityStreamsObject methods to access and set this property.
	IsActivityStreamsObject() bool
	// IsActivityStreamsOffer returns true if this property has a type of
	// "Offer". When true, use the GetActivityStreamsOffer and
	// SetActivityStreamsOffer methods to access and set this property.
	IsActivityStreamsOffer() bool
	// IsActivityStreamsOrderedCollection returns true if this property has a
	// type of "OrderedCollection". When true, use the
	// GetActivityStreamsOrderedCollection and
	// SetActivityStreamsOrderedCollection methods to access and set this
	// property.
	IsActivityStreamsOrderedCollection() bool
	// IsActivityStreamsOrderedCollectionPage returns true if this property
	// has a type of "OrderedCollectionPage". When true, use the
	// GetActivityStreamsOrderedCollectionPage and
	// SetActivityStreamsOrderedCollectionPage methods to access and set
	// this property.
	IsActivityStreamsOrderedCollectionPage() bool
	// IsActivityStreamsOrganization returns true if this property has a type
	// of "Organization". When true, use the
	// GetActivityStreamsOrganization and SetActivityStreamsOrganization
	// methods to access and set this property.
	IsActivityStreamsOrganization() bool
	// IsActivityStreamsPage returns true if this property has a type of
	// "Page". When true, use the GetActivityStreamsPage and
	// SetActivityStreamsPage methods to access and set this property.
	IsActivityStreamsPage() bool
	// IsActivityStreamsPerson returns true if this property has a type of
	// "Person". When true, use the GetActivityStreamsPerson and
	// SetActivityStreamsPerson methods to access and set this property.
	IsActivityStreamsPerson() bool
	// IsActivityStreamsPlace returns true if this property has a type of
	// "Place". When true, use the GetActivityStreamsPlace and
	// SetActivityStreamsPlace methods to access and set this property.
	IsActivityStreamsPlace() bool
	// IsActivityStreamsProfile returns true if this property has a type of
	// "Profile". When true, use the GetActivityStreamsProfile and
	// SetActivityStreamsProfile methods to access and set this property.
	IsActivityStreamsProfile() bool
	// IsActivityStreamsQuestion returns true if this property has a type of
	// "Question". When true, use the GetActivityStreamsQuestion and
	// SetActivityStreamsQuestion methods to access and set this property.
	IsActivityStreamsQuestion() bool
	// IsActivityStreamsRead returns true if this property has a type of
	// "Read". When true, use the GetActivityStreamsRead and
	// SetActivityStreamsRead methods to access and set this property.
	IsActivityStreamsRead() bool
	// IsActivityStreamsReject returns true if this property has a type of
	// "Reject". When true, use the GetActivityStreamsReject and
	// SetActivityStreamsReject methods to access and set this property.
	IsActivityStreamsReject() bool
	// IsActivityStreamsRelationship returns true if this property has a type
	// of "Relationship". When true, use the
	// GetActivityStreamsRelationship and SetActivityStreamsRelationship
	// methods to access and set this property.
	IsActivityStreamsRelationship() bool
	// IsActivityStreamsRemove returns true if this property has a type of
	// "Remove". When true, use the GetActivityStreamsRemove and
	// SetActivityStreamsRemove methods to access and set this property.
	IsActivityStreamsRemove() bool
	// IsActivityStreamsService returns true if this property has a type of
	// "Service". When true, use the GetActivityStreamsService and
	// SetActivityStreamsService methods to access and set this property.
	IsActivityStreamsService() bool
	// IsActivityStreamsTentativeAccept returns true if this property has a
	// type of "TentativeAccept". When true, use the
	// GetActivityStreamsTentativeAccept and
	// SetActivityStreamsTentativeAccept methods to access and set this
	// property.
	IsActivityStreamsTentativeAccept() bool
	// IsActivityStreamsTentativeReject returns true if this property has a
	// type of "TentativeReject". When true, use the
	// GetActivityStreamsTentativeReject and
	// SetActivityStreamsTentativeReject methods to access and set this
	// property.
	IsActivityStreamsTentativeReject() bool
	// IsActivityStreamsTombstone returns true if this property has a type of
	// "Tombstone". When true, use the GetActivityStreamsTombstone and
	// SetActivityStreamsTombstone methods to access and set this property.
	IsActivityStreamsTombstone() bool
	// IsActivityStreamsTravel returns true if this property has a type of
	// "Travel". When true, use the GetActivityStreamsTravel and
	// SetActivityStreamsTravel methods to access and set this property.
	IsActivityStreamsTravel() bool
	// IsActivityStreamsUndo returns true if this property has a type of
	// "Undo". When true, use the GetActivityStreamsUndo and
	// SetActivityStreamsUndo methods to access and set this property.
	IsActivityStreamsUndo() bool
	// IsActivityStreamsUpdate returns true if this property has a type of
	// "Update". When true, use the GetActivityStreamsUpdate and
	// SetActivityStreamsUpdate methods to access and set this property.
	IsActivityStreamsUpdate() bool
	// IsActivityStreamsVideo returns true if this property has a type of
	// "Video". When true, use the GetActivityStreamsVideo and
	// SetActivityStreamsVideo methods to access and set this property.
	IsActivityStreamsVideo() bool
	// IsActivityStreamsView returns true if this property has a type of
	// "View". When true, use the GetActivityStreamsView and
	// SetActivityStreamsView methods to access and set this property.
	IsActivityStreamsView() bool
	// IsForgeFedBranch returns true if this property has a type of "Branch".
	// When true, use the GetForgeFedBranch and SetForgeFedBranch methods
	// to access and set this property.
	IsForgeFedBranch() bool
	// IsForgeFedCommit returns true if this property has a type of "Commit".
	// When true, use the GetForgeFedCommit and SetForgeFedCommit methods
	// to access and set this property.
	IsForgeFedCommit() bool
	// IsForgeFedPush returns true if this property has a type of "Push". When
	// true, use the GetForgeFedPush and SetForgeFedPush methods to access
	// and set this property.
	IsForgeFedPush() bool
	// IsForgeFedRepository returns true if this property has a type of
	// "Repository". When true, use the GetForgeFedRepository and
	// SetForgeFedRepository methods to access and set this property.
	IsForgeFedRepository() bool
	// IsForgeFedTicket returns true if this property has a type of "Ticket".
	// When true, use the GetForgeFedTicket and SetForgeFedTicket methods
	// to access and set this property.
	IsForgeFedTicket() bool
	// IsForgeFedTicketDependency returns true if this property has a type of
	// "TicketDependency". When true, use the GetForgeFedTicketDependency
	// and SetForgeFedTicketDependency methods to access and set this
	// property.
	IsForgeFedTicketDependency() bool
	// IsIRI returns true if this property is an IRI. When true, use GetIRI
	// and SetIRI to access and set this property
	IsIRI() bool
	// IsTootEmoji returns true if this property has a type of "Emoji". When
	// true, use the GetTootEmoji and SetTootEmoji methods to access and
	// set this property.
	IsTootEmoji() bool
	// IsTootIdentityProof returns true if this property has a type of
	// "IdentityProof". When true, use the GetTootIdentityProof and
	// SetTootIdentityProof methods to access and set this property.
	IsTootIdentityProof() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ForgeFedTicketsTrackedByProperty) bool
	// Name returns the name of this property: "ticketsTrackedBy".
	Name() string
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// SetActivityStreamsAccept sets the value of this property. Calling
	// IsActivityStreamsAccept afterwards returns true.
	SetActivityStreamsAccept(v ActivityStreamsAccept)
	// SetActivityStreamsActivity sets the value of this property. Calling
	// IsActivityStreamsActivity afterwards returns true.
	SetActivityStreamsActivity(v ActivityStreamsActivity)
	// SetActivityStreamsAdd sets the value of this property. Calling
	// IsActivityStreamsAdd afterwards returns true.
	SetActivityStreamsAdd(v ActivityStreamsAdd)
	// SetActivityStreamsAnnounce sets the value of this property. Calling
	// IsActivityStreamsAnnounce afterwards returns true.
	SetActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// SetActivityStreamsApplication sets the value of this property. Calling
	// IsActivityStreamsApplication afterwards returns true.
	SetActivityStreamsApplication(v ActivityStreamsApplication)
	// SetActivityStreamsArrive sets the value of this property. Calling
	// IsActivityStreamsArrive afterwards returns true.
	SetActivityStreamsArrive(v ActivityStreamsArrive)
	// SetActivityStreamsArticle sets the value of this property. Calling
	// IsActivityStreamsArticle afterwards returns true.
	SetActivityStreamsArticle(v ActivityStreamsArticle)
	// SetActivityStreamsAudio sets the value of this property. Calling
	// IsActivityStreamsAudio afterwards returns true.
	SetActivityStreamsAudio(v ActivityStreamsAudio)
	// SetActivityStreamsBlock sets the value of this property. Calling
	// IsActivityStreamsBlock afterwards returns true.
	SetActivityStreamsBlock(v ActivityStreamsBlock)
	// SetActivityStreamsCollection sets the value of this property. Calling
	// IsActivityStreamsCollection afterwards returns true.
	SetActivityStreamsCollection(v ActivityStreamsCollection)
	// SetActivityStreamsCollectionPage sets the value of this property.
	// Calling IsActivityStreamsCollectionPage afterwards returns true.
	SetActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// SetActivityStreamsCreate sets the value of this property. Calling
	// IsActivityStreamsCreate afterwards returns true.
	SetActivityStreamsCreate(v ActivityStreamsCreate)
	// SetActivityStreamsDelete sets the value of this property. Calling
	// IsActivityStreamsDelete afterwards returns true.
	SetActivityStreamsDelete(v ActivityStreamsDelete)
	// SetActivityStreamsDislike sets the value of this property. Calling
	// IsActivityStreamsDislike afterwards returns true.
	SetActivityStreamsDislike(v ActivityStreamsDislike)
	// SetActivityStreamsDocument sets the value of this property. Calling
	// IsActivityStreamsDocument afterwards returns true.
	SetActivityStreamsDocument(v ActivityStreamsDocument)
	// SetActivityStreamsEvent sets the value of this property. Calling
	// IsActivityStreamsEvent afterwards returns true.
	SetActivityStreamsEvent(v ActivityStreamsEvent)
	// SetActivityStreamsFlag sets the value of this property. Calling
	// IsActivityStreamsFlag afterwards returns true.
	SetActivityStreamsFlag(v ActivityStreamsFlag)
	// SetActivityStreamsFollow sets the value of this property. Calling
	// IsActivityStreamsFollow afterwards returns true.
	SetActivityStreamsFollow(v ActivityStreamsFollow)
	// SetActivityStreamsGroup sets the value of this property. Calling
	// IsActivityStreamsGroup afterwards returns true.
	SetActivityStreamsGroup(v ActivityStreamsGroup)
	// SetActivityStreamsIgnore sets the value of this property. Calling
	// IsActivityStreamsIgnore afterwards returns true.
	SetActivityStreamsIgnore(v ActivityStreamsIgnore)
	// SetActivityStreamsImage sets the value of this property. Calling
	// IsActivityStreamsImage afterwards returns true.
	SetActivityStreamsImage(v ActivityStreamsImage)
	// SetActivityStreamsIntransitiveActivity sets the value of this property.
	// Calling IsActivityStreamsIntransitiveActivity afterwards returns
	// true.
	SetActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// SetActivityStreamsInvite sets the value of this property. Calling
	// IsActivityStreamsInvite afterwards returns true.
	SetActivityStreamsInvite(v ActivityStreamsInvite)
	// SetActivityStreamsJoin sets the value of this property. Calling
	// IsActivityStreamsJoin afterwards returns true.
	SetActivityStreamsJoin(v ActivityStreamsJoin)
	// SetActivityStreamsLeave sets the value of this property. Calling
	// IsActivityStreamsLeave afterwards returns true.
	SetActivityStreamsLeave(v ActivityStreamsLeave)
	// SetActivityStreamsLike sets the value of this property. Calling
	// IsActivityStreamsLike afterwards returns true.
	SetActivityStreamsLike(v ActivityStreamsLike)
	// SetActivityStreamsListen sets the value of this property. Calling
	// IsActivityStreamsListen afterwards returns true.
	SetActivityStreamsListen(v ActivityStreamsListen)
	// SetActivityStreamsMove sets the value of this property. Calling
	// IsActivityStreamsMove afterwards returns true.
	SetActivityStreamsMove(v ActivityStreamsMove)
	// SetActivityStreamsNote sets the value of this property. Calling
	// IsActivityStreamsNote afterwards returns true.
	SetActivityStreamsNote(v ActivityStreamsNote)
	// SetActivityStreamsObject sets the value of this property. Calling
	// IsActivityStreamsObject afterwards returns true.
	SetActivityStreamsObject(v ActivityStreamsObject)
	// SetActivityStreamsOffer sets the value of this property. Calling
	// IsActivityStreamsOffer afterwards returns true.
	SetActivityStreamsOffer(v ActivityStreamsOffer)
	// SetActivityStreamsOrderedCollection sets the value of this property.
	// Calling IsActivityStreamsOrderedCollection afterwards returns true.
	SetActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// SetActivityStreamsOrderedCollectionPage sets the value of this
	// property. Calling IsActivityStreamsOrderedCollectionPage afterwards
	// returns true.
	SetActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// SetActivityStreamsOrganization sets the value of this property. Calling
	// IsActivityStreamsOrganization afterwards returns true.
	SetActivityStreamsOrganization(v ActivityStreamsOrganization)
	// SetActivityStreamsPage sets the value of this property. Calling
	// IsActivityStreamsPage afterwards returns true.
	SetActivityStreamsPage(v ActivityStreamsPage)
	// SetActivityStreamsPerson sets the value of this property. Calling
	// IsActivityStreamsPerson afterwards returns true.
	SetActivityStreamsPerson(v ActivityStreamsPerson)
	// SetActivityStreamsPlace sets the value of this property. Calling
	// IsActivityStreamsPlace afterwards returns true.
	SetActivityStreamsPlace(v ActivityStreamsPlace)
	// SetActivityStreamsProfile sets the value of this property. Calling
	// IsActivityStreamsProfile afterwards returns true.
	SetActivityStreamsProfile(v ActivityStreamsProfile)
	// SetActivityStreamsQuestion sets the value of this property. Calling
	// IsActivityStreamsQuestion afterwards returns true.
	SetActivityStreamsQuestion(v ActivityStreamsQuestion)
	// SetActivityStreamsRead sets the value of this property. Calling
	// IsActivityStreamsRead afterwards returns true.
	SetActivityStreamsRead(v ActivityStreamsRead)
	// SetActivityStreamsReject sets the value of this property. Calling
	// IsActivityStreamsReject afterwards returns true.
	SetActivityStreamsReject(v ActivityStreamsReject)
	// SetActivityStreamsRelationship sets the value of this property. Calling
	// IsActivityStreamsRelationship afterwards returns true.
	SetActivityStreamsRelationship(v ActivityStreamsRelationship)
	// SetActivityStreamsRemove sets the value of this property. Calling
	// IsActivityStreamsRemove afterwards returns true.
	SetActivityStreamsRemove(v ActivityStreamsRemove)
	// SetActivityStreamsService sets the value of this property. Calling
	// IsActivityStreamsService afterwards returns true.
	SetActivityStreamsService(v ActivityStreamsService)
	// SetActivityStreamsTentativeAccept sets the value of this property.
	// Calling IsActivityStreamsTentativeAccept afterwards returns true.
	SetActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// SetActivityStreamsTentativeReject sets the value of this property.
	// Calling IsActivityStreamsTentativeReject afterwards returns true.
	SetActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// SetActivityStreamsTombstone sets the value of this property. Calling
	// IsActivityStreamsTombstone afterwards returns true.
	SetActivityStreamsTombstone(v ActivityStreamsTombstone)
	// SetActivityStreamsTravel sets the value of this property. Calling
	// IsActivityStreamsTravel afterwards returns true.
	SetActivityStreamsTravel(v ActivityStreamsTravel)
	// SetActivityStreamsUndo sets the value of this property. Calling
	// IsActivityStreamsUndo afterwards returns true.
	SetActivityStreamsUndo(v ActivityStreamsUndo)
	// SetActivityStreamsUpdate sets the value of this property. Calling
	// IsActivityStreamsUpdate afterwards returns true.
	SetActivityStreamsUpdate(v ActivityStreamsUpdate)
	// SetActivityStreamsVideo sets the value of this property. Calling
	// IsActivityStreamsVideo afterwards returns true.
	SetActivityStreamsVideo(v ActivityStreamsVideo)
	// SetActivityStreamsView sets the value of this property. Calling
	// IsActivityStreamsView afterwards returns true.
	SetActivityStreamsView(v ActivityStreamsView)
	// SetForgeFedBranch sets the value of this property. Calling
	// IsForgeFedBranch afterwards returns true.
	SetForgeFedBranch(v ForgeFedBranch)
	// SetForgeFedCommit sets the value of this property. Calling
	// IsForgeFedCommit afterwards returns true.
	SetForgeFedCommit(v ForgeFedCommit)
	// SetForgeFedPush sets the value of this property. Calling IsForgeFedPush
	// afterwards returns true.
	SetForgeFedPush(v ForgeFedPush)
	// SetForgeFedRepository sets the value of this property. Calling
	// IsForgeFedRepository afterwards returns true.
	SetForgeFedRepository(v ForgeFedRepository)
	// SetForgeFedTicket sets the value of this property. Calling
	// IsForgeFedTicket afterwards returns true.
	SetForgeFedTicket(v ForgeFedTicket)
	// SetForgeFedTicketDependency sets the value of this property. Calling
	// IsForgeFedTicketDependency afterwards returns true.
	SetForgeFedTicketDependency(v ForgeFedTicketDependency)
	// SetIRI sets the value of this property. Calling IsIRI afterwards
	// returns true.
	SetIRI(v *url.URL)
	// SetTootEmoji sets the value of this property. Calling IsTootEmoji
	// afterwards returns true.
	SetTootEmoji(v TootEmoji)
	// SetTootIdentityProof sets the value of this property. Calling
	// IsTootIdentityProof afterwards returns true.
	SetTootIdentityProof(v TootIdentityProof)
	// SetType attempts to set the property for the arbitrary type. Returns an
	// error if it is not a valid type to set on this property.
	SetType(t Type) error
}

Identifies the actor which tracks tickets related to the given object. This is the actor to whom you send tickets you’d like to open against the object.

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    "https://forgefed.peers.community/ns"
  ],
  "id": "https://dev.example/aviva/treesim",
  "name": "Tree Growth 3D Simulation",
  "summary": "\u003cp\u003eTree growth 3D simulator for my nature

exploration game\u003c/p\u003e",

  "ticketsTrackedBy": "https://bugs.example/projects/treesim",
  "type": "Repository"
}

type ForgeFedTracksTicketsForProperty

type ForgeFedTracksTicketsForProperty interface {
	// AppendActivityStreamsAccept appends a Accept value to the back of a
	// list of the property "tracksTicketsFor". Invalidates iterators that
	// are traversing using Prev.
	AppendActivityStreamsAccept(v ActivityStreamsAccept)
	// AppendActivityStreamsActivity appends a Activity value to the back of a
	// list of the property "tracksTicketsFor". Invalidates iterators that
	// are traversing using Prev.
	AppendActivityStreamsActivity(v ActivityStreamsActivity)
	// AppendActivityStreamsAdd appends a Add value to the back of a list of
	// the property "tracksTicketsFor". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsAdd(v ActivityStreamsAdd)
	// AppendActivityStreamsAnnounce appends a Announce value to the back of a
	// list of the property "tracksTicketsFor". Invalidates iterators that
	// are traversing using Prev.
	AppendActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// AppendActivityStreamsApplication appends a Application value to the
	// back of a list of the property "tracksTicketsFor". Invalidates
	// iterators that are traversing using Prev.
	AppendActivityStreamsApplication(v ActivityStreamsApplication)
	// AppendActivityStreamsArrive appends a Arrive value to the back of a
	// list of the property "tracksTicketsFor". Invalidates iterators that
	// are traversing using Prev.
	AppendActivityStreamsArrive(v ActivityStreamsArrive)
	// AppendActivityStreamsArticle appends a Article value to the back of a
	// list of the property "tracksTicketsFor". Invalidates iterators that
	// are traversing using Prev.
	AppendActivityStreamsArticle(v ActivityStreamsArticle)
	// AppendActivityStreamsAudio appends a Audio value to the back of a list
	// of the property "tracksTicketsFor". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsAudio(v ActivityStreamsAudio)
	// AppendActivityStreamsBlock appends a Block value to the back of a list
	// of the property "tracksTicketsFor". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsBlock(v ActivityStreamsBlock)
	// AppendActivityStreamsCollection appends a Collection value to the back
	// of a list of the property "tracksTicketsFor". Invalidates iterators
	// that are traversing using Prev.
	AppendActivityStreamsCollection(v ActivityStreamsCollection)
	// AppendActivityStreamsCollectionPage appends a CollectionPage value to
	// the back of a list of the property "tracksTicketsFor". Invalidates
	// iterators that are traversing using Prev.
	AppendActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// AppendActivityStreamsCreate appends a Create value to the back of a
	// list of the property "tracksTicketsFor". Invalidates iterators that
	// are traversing using Prev.
	AppendActivityStreamsCreate(v ActivityStreamsCreate)
	// AppendActivityStreamsDelete appends a Delete value to the back of a
	// list of the property "tracksTicketsFor". Invalidates iterators that
	// are traversing using Prev.
	AppendActivityStreamsDelete(v ActivityStreamsDelete)
	// AppendActivityStreamsDislike appends a Dislike value to the back of a
	// list of the property "tracksTicketsFor". Invalidates iterators that
	// are traversing using Prev.
	AppendActivityStreamsDislike(v ActivityStreamsDislike)
	// AppendActivityStreamsDocument appends a Document value to the back of a
	// list of the property "tracksTicketsFor". Invalidates iterators that
	// are traversing using Prev.
	AppendActivityStreamsDocument(v ActivityStreamsDocument)
	// AppendActivityStreamsEvent appends a Event value to the back of a list
	// of the property "tracksTicketsFor". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsEvent(v ActivityStreamsEvent)
	// AppendActivityStreamsFlag appends a Flag value to the back of a list of
	// the property "tracksTicketsFor". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsFlag(v ActivityStreamsFlag)
	// AppendActivityStreamsFollow appends a Follow value to the back of a
	// list of the property "tracksTicketsFor". Invalidates iterators that
	// are traversing using Prev.
	AppendActivityStreamsFollow(v ActivityStreamsFollow)
	// AppendActivityStreamsGroup appends a Group value to the back of a list
	// of the property "tracksTicketsFor". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsGroup(v ActivityStreamsGroup)
	// AppendActivityStreamsIgnore appends a Ignore value to the back of a
	// list of the property "tracksTicketsFor". Invalidates iterators that
	// are traversing using Prev.
	AppendActivityStreamsIgnore(v ActivityStreamsIgnore)
	// AppendActivityStreamsImage appends a Image value to the back of a list
	// of the property "tracksTicketsFor". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsImage(v ActivityStreamsImage)
	// AppendActivityStreamsIntransitiveActivity appends a
	// IntransitiveActivity value to the back of a list of the property
	// "tracksTicketsFor". Invalidates iterators that are traversing using
	// Prev.
	AppendActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// AppendActivityStreamsInvite appends a Invite value to the back of a
	// list of the property "tracksTicketsFor". Invalidates iterators that
	// are traversing using Prev.
	AppendActivityStreamsInvite(v ActivityStreamsInvite)
	// AppendActivityStreamsJoin appends a Join value to the back of a list of
	// the property "tracksTicketsFor". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsJoin(v ActivityStreamsJoin)
	// AppendActivityStreamsLeave appends a Leave value to the back of a list
	// of the property "tracksTicketsFor". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsLeave(v ActivityStreamsLeave)
	// AppendActivityStreamsLike appends a Like value to the back of a list of
	// the property "tracksTicketsFor". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsLike(v ActivityStreamsLike)
	// AppendActivityStreamsListen appends a Listen value to the back of a
	// list of the property "tracksTicketsFor". Invalidates iterators that
	// are traversing using Prev.
	AppendActivityStreamsListen(v ActivityStreamsListen)
	// AppendActivityStreamsMove appends a Move value to the back of a list of
	// the property "tracksTicketsFor". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsMove(v ActivityStreamsMove)
	// AppendActivityStreamsNote appends a Note value to the back of a list of
	// the property "tracksTicketsFor". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsNote(v ActivityStreamsNote)
	// AppendActivityStreamsObject appends a Object value to the back of a
	// list of the property "tracksTicketsFor". Invalidates iterators that
	// are traversing using Prev.
	AppendActivityStreamsObject(v ActivityStreamsObject)
	// AppendActivityStreamsOffer appends a Offer value to the back of a list
	// of the property "tracksTicketsFor". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsOffer(v ActivityStreamsOffer)
	// AppendActivityStreamsOrderedCollection appends a OrderedCollection
	// value to the back of a list of the property "tracksTicketsFor".
	// Invalidates iterators that are traversing using Prev.
	AppendActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// AppendActivityStreamsOrderedCollectionPage appends a
	// OrderedCollectionPage value to the back of a list of the property
	// "tracksTicketsFor". Invalidates iterators that are traversing using
	// Prev.
	AppendActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// AppendActivityStreamsOrganization appends a Organization value to the
	// back of a list of the property "tracksTicketsFor". Invalidates
	// iterators that are traversing using Prev.
	AppendActivityStreamsOrganization(v ActivityStreamsOrganization)
	// AppendActivityStreamsPage appends a Page value to the back of a list of
	// the property "tracksTicketsFor". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsPage(v ActivityStreamsPage)
	// AppendActivityStreamsPerson appends a Person value to the back of a
	// list of the property "tracksTicketsFor". Invalidates iterators that
	// are traversing using Prev.
	AppendActivityStreamsPerson(v ActivityStreamsPerson)
	// AppendActivityStreamsPlace appends a Place value to the back of a list
	// of the property "tracksTicketsFor". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsPlace(v ActivityStreamsPlace)
	// AppendActivityStreamsProfile appends a Profile value to the back of a
	// list of the property "tracksTicketsFor". Invalidates iterators that
	// are traversing using Prev.
	AppendActivityStreamsProfile(v ActivityStreamsProfile)
	// AppendActivityStreamsQuestion appends a Question value to the back of a
	// list of the property "tracksTicketsFor". Invalidates iterators that
	// are traversing using Prev.
	AppendActivityStreamsQuestion(v ActivityStreamsQuestion)
	// AppendActivityStreamsRead appends a Read value to the back of a list of
	// the property "tracksTicketsFor". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsRead(v ActivityStreamsRead)
	// AppendActivityStreamsReject appends a Reject value to the back of a
	// list of the property "tracksTicketsFor". Invalidates iterators that
	// are traversing using Prev.
	AppendActivityStreamsReject(v ActivityStreamsReject)
	// AppendActivityStreamsRelationship appends a Relationship value to the
	// back of a list of the property "tracksTicketsFor". Invalidates
	// iterators that are traversing using Prev.
	AppendActivityStreamsRelationship(v ActivityStreamsRelationship)
	// AppendActivityStreamsRemove appends a Remove value to the back of a
	// list of the property "tracksTicketsFor". Invalidates iterators that
	// are traversing using Prev.
	AppendActivityStreamsRemove(v ActivityStreamsRemove)
	// AppendActivityStreamsService appends a Service value to the back of a
	// list of the property "tracksTicketsFor". Invalidates iterators that
	// are traversing using Prev.
	AppendActivityStreamsService(v ActivityStreamsService)
	// AppendActivityStreamsTentativeAccept appends a TentativeAccept value to
	// the back of a list of the property "tracksTicketsFor". Invalidates
	// iterators that are traversing using Prev.
	AppendActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// AppendActivityStreamsTentativeReject appends a TentativeReject value to
	// the back of a list of the property "tracksTicketsFor". Invalidates
	// iterators that are traversing using Prev.
	AppendActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// AppendActivityStreamsTombstone appends a Tombstone value to the back of
	// a list of the property "tracksTicketsFor". Invalidates iterators
	// that are traversing using Prev.
	AppendActivityStreamsTombstone(v ActivityStreamsTombstone)
	// AppendActivityStreamsTravel appends a Travel value to the back of a
	// list of the property "tracksTicketsFor". Invalidates iterators that
	// are traversing using Prev.
	AppendActivityStreamsTravel(v ActivityStreamsTravel)
	// AppendActivityStreamsUndo appends a Undo value to the back of a list of
	// the property "tracksTicketsFor". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsUndo(v ActivityStreamsUndo)
	// AppendActivityStreamsUpdate appends a Update value to the back of a
	// list of the property "tracksTicketsFor". Invalidates iterators that
	// are traversing using Prev.
	AppendActivityStreamsUpdate(v ActivityStreamsUpdate)
	// AppendActivityStreamsVideo appends a Video value to the back of a list
	// of the property "tracksTicketsFor". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsVideo(v ActivityStreamsVideo)
	// AppendActivityStreamsView appends a View value to the back of a list of
	// the property "tracksTicketsFor". Invalidates iterators that are
	// traversing using Prev.
	AppendActivityStreamsView(v ActivityStreamsView)
	// AppendForgeFedBranch appends a Branch value to the back of a list of
	// the property "tracksTicketsFor". Invalidates iterators that are
	// traversing using Prev.
	AppendForgeFedBranch(v ForgeFedBranch)
	// AppendForgeFedCommit appends a Commit value to the back of a list of
	// the property "tracksTicketsFor". Invalidates iterators that are
	// traversing using Prev.
	AppendForgeFedCommit(v ForgeFedCommit)
	// AppendForgeFedPush appends a Push value to the back of a list of the
	// property "tracksTicketsFor". Invalidates iterators that are
	// traversing using Prev.
	AppendForgeFedPush(v ForgeFedPush)
	// AppendForgeFedRepository appends a Repository value to the back of a
	// list of the property "tracksTicketsFor". Invalidates iterators that
	// are traversing using Prev.
	AppendForgeFedRepository(v ForgeFedRepository)
	// AppendForgeFedTicket appends a Ticket value to the back of a list of
	// the property "tracksTicketsFor". Invalidates iterators that are
	// traversing using Prev.
	AppendForgeFedTicket(v ForgeFedTicket)
	// AppendForgeFedTicketDependency appends a TicketDependency value to the
	// back of a list of the property "tracksTicketsFor". Invalidates
	// iterators that are traversing using Prev.
	AppendForgeFedTicketDependency(v ForgeFedTicketDependency)
	// AppendIRI appends an IRI value to the back of a list of the property
	// "tracksTicketsFor"
	AppendIRI(v *url.URL)
	// AppendTootEmoji appends a Emoji value to the back of a list of the
	// property "tracksTicketsFor". Invalidates iterators that are
	// traversing using Prev.
	AppendTootEmoji(v TootEmoji)
	// AppendTootIdentityProof appends a IdentityProof value to the back of a
	// list of the property "tracksTicketsFor". Invalidates iterators that
	// are traversing using Prev.
	AppendTootIdentityProof(v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "tracksTicketsFor". Invalidates iterators that are
	// traversing using Prev. Returns an error if the type is not a valid
	// one to set for this property.
	AppendType(t Type) error
	// At returns the property value for the specified index. Panics if the
	// index is out of bounds.
	At(index int) ForgeFedTracksTicketsForPropertyIterator
	// Begin returns the first iterator, or nil if empty. Can be used with the
	// iterator's Next method and this property's End method to iterate
	// from front to back through all values.
	Begin() ForgeFedTracksTicketsForPropertyIterator
	// Empty returns returns true if there are no elements.
	Empty() bool
	// End returns beyond-the-last iterator, which is nil. Can be used with
	// the iterator's Next method and this property's Begin method to
	// iterate from front to back through all values.
	End() ForgeFedTracksTicketsForPropertyIterator
	// InsertActivityStreamsAccept inserts a Accept value at the specified
	// index for a property "tracksTicketsFor". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAccept(idx int, v ActivityStreamsAccept)
	// InsertActivityStreamsActivity inserts a Activity value at the specified
	// index for a property "tracksTicketsFor". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsActivity(idx int, v ActivityStreamsActivity)
	// InsertActivityStreamsAdd inserts a Add value at the specified index for
	// a property "tracksTicketsFor". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAdd(idx int, v ActivityStreamsAdd)
	// InsertActivityStreamsAnnounce inserts a Announce value at the specified
	// index for a property "tracksTicketsFor". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAnnounce(idx int, v ActivityStreamsAnnounce)
	// InsertActivityStreamsApplication inserts a Application value at the
	// specified index for a property "tracksTicketsFor". Existing
	// elements at that index and higher are shifted back once.
	// Invalidates all iterators.
	InsertActivityStreamsApplication(idx int, v ActivityStreamsApplication)
	// InsertActivityStreamsArrive inserts a Arrive value at the specified
	// index for a property "tracksTicketsFor". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsArrive(idx int, v ActivityStreamsArrive)
	// InsertActivityStreamsArticle inserts a Article value at the specified
	// index for a property "tracksTicketsFor". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsArticle(idx int, v ActivityStreamsArticle)
	// InsertActivityStreamsAudio inserts a Audio value at the specified index
	// for a property "tracksTicketsFor". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsAudio(idx int, v ActivityStreamsAudio)
	// InsertActivityStreamsBlock inserts a Block value at the specified index
	// for a property "tracksTicketsFor". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsBlock(idx int, v ActivityStreamsBlock)
	// InsertActivityStreamsCollection inserts a Collection value at the
	// specified index for a property "tracksTicketsFor". Existing
	// elements at that index and higher are shifted back once.
	// Invalidates all iterators.
	InsertActivityStreamsCollection(idx int, v ActivityStreamsCollection)
	// InsertActivityStreamsCollectionPage inserts a CollectionPage value at
	// the specified index for a property "tracksTicketsFor". Existing
	// elements at that index and higher are shifted back once.
	// Invalidates all iterators.
	InsertActivityStreamsCollectionPage(idx int, v ActivityStreamsCollectionPage)
	// InsertActivityStreamsCreate inserts a Create value at the specified
	// index for a property "tracksTicketsFor". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsCreate(idx int, v ActivityStreamsCreate)
	// InsertActivityStreamsDelete inserts a Delete value at the specified
	// index for a property "tracksTicketsFor". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDelete(idx int, v ActivityStreamsDelete)
	// InsertActivityStreamsDislike inserts a Dislike value at the specified
	// index for a property "tracksTicketsFor". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDislike(idx int, v ActivityStreamsDislike)
	// InsertActivityStreamsDocument inserts a Document value at the specified
	// index for a property "tracksTicketsFor". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsDocument(idx int, v ActivityStreamsDocument)
	// InsertActivityStreamsEvent inserts a Event value at the specified index
	// for a property "tracksTicketsFor". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsEvent(idx int, v ActivityStreamsEvent)
	// InsertActivityStreamsFlag inserts a Flag value at the specified index
	// for a property "tracksTicketsFor". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsFlag(idx int, v ActivityStreamsFlag)
	// InsertActivityStreamsFollow inserts a Follow value at the specified
	// index for a property "tracksTicketsFor". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsFollow(idx int, v ActivityStreamsFollow)
	// InsertActivityStreamsGroup inserts a Group value at the specified index
	// for a property "tracksTicketsFor". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsGroup(idx int, v ActivityStreamsGroup)
	// InsertActivityStreamsIgnore inserts a Ignore value at the specified
	// index for a property "tracksTicketsFor". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsIgnore(idx int, v ActivityStreamsIgnore)
	// InsertActivityStreamsImage inserts a Image value at the specified index
	// for a property "tracksTicketsFor". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsImage(idx int, v ActivityStreamsImage)
	// InsertActivityStreamsIntransitiveActivity inserts a
	// IntransitiveActivity value at the specified index for a property
	// "tracksTicketsFor". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertActivityStreamsIntransitiveActivity(idx int, v ActivityStreamsIntransitiveActivity)
	// InsertActivityStreamsInvite inserts a Invite value at the specified
	// index for a property "tracksTicketsFor". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsInvite(idx int, v ActivityStreamsInvite)
	// InsertActivityStreamsJoin inserts a Join value at the specified index
	// for a property "tracksTicketsFor". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsJoin(idx int, v ActivityStreamsJoin)
	// InsertActivityStreamsLeave inserts a Leave value at the specified index
	// for a property "tracksTicketsFor". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsLeave(idx int, v ActivityStreamsLeave)
	// InsertActivityStreamsLike inserts a Like value at the specified index
	// for a property "tracksTicketsFor". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsLike(idx int, v ActivityStreamsLike)
	// InsertActivityStreamsListen inserts a Listen value at the specified
	// index for a property "tracksTicketsFor". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsListen(idx int, v ActivityStreamsListen)
	// InsertActivityStreamsMove inserts a Move value at the specified index
	// for a property "tracksTicketsFor". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsMove(idx int, v ActivityStreamsMove)
	// InsertActivityStreamsNote inserts a Note value at the specified index
	// for a property "tracksTicketsFor". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsNote(idx int, v ActivityStreamsNote)
	// InsertActivityStreamsObject inserts a Object value at the specified
	// index for a property "tracksTicketsFor". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsObject(idx int, v ActivityStreamsObject)
	// InsertActivityStreamsOffer inserts a Offer value at the specified index
	// for a property "tracksTicketsFor". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsOffer(idx int, v ActivityStreamsOffer)
	// InsertActivityStreamsOrderedCollection inserts a OrderedCollection
	// value at the specified index for a property "tracksTicketsFor".
	// Existing elements at that index and higher are shifted back once.
	// Invalidates all iterators.
	InsertActivityStreamsOrderedCollection(idx int, v ActivityStreamsOrderedCollection)
	// InsertActivityStreamsOrderedCollectionPage inserts a
	// OrderedCollectionPage value at the specified index for a property
	// "tracksTicketsFor". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertActivityStreamsOrderedCollectionPage(idx int, v ActivityStreamsOrderedCollectionPage)
	// InsertActivityStreamsOrganization inserts a Organization value at the
	// specified index for a property "tracksTicketsFor". Existing
	// elements at that index and higher are shifted back once.
	// Invalidates all iterators.
	InsertActivityStreamsOrganization(idx int, v ActivityStreamsOrganization)
	// InsertActivityStreamsPage inserts a Page value at the specified index
	// for a property "tracksTicketsFor". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsPage(idx int, v ActivityStreamsPage)
	// InsertActivityStreamsPerson inserts a Person value at the specified
	// index for a property "tracksTicketsFor". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsPerson(idx int, v ActivityStreamsPerson)
	// InsertActivityStreamsPlace inserts a Place value at the specified index
	// for a property "tracksTicketsFor". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsPlace(idx int, v ActivityStreamsPlace)
	// InsertActivityStreamsProfile inserts a Profile value at the specified
	// index for a property "tracksTicketsFor". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsProfile(idx int, v ActivityStreamsProfile)
	// InsertActivityStreamsQuestion inserts a Question value at the specified
	// index for a property "tracksTicketsFor". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsQuestion(idx int, v ActivityStreamsQuestion)
	// InsertActivityStreamsRead inserts a Read value at the specified index
	// for a property "tracksTicketsFor". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsRead(idx int, v ActivityStreamsRead)
	// InsertActivityStreamsReject inserts a Reject value at the specified
	// index for a property "tracksTicketsFor". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsReject(idx int, v ActivityStreamsReject)
	// InsertActivityStreamsRelationship inserts a Relationship value at the
	// specified index for a property "tracksTicketsFor". Existing
	// elements at that index and higher are shifted back once.
	// Invalidates all iterators.
	InsertActivityStreamsRelationship(idx int, v ActivityStreamsRelationship)
	// InsertActivityStreamsRemove inserts a Remove value at the specified
	// index for a property "tracksTicketsFor". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsRemove(idx int, v ActivityStreamsRemove)
	// InsertActivityStreamsService inserts a Service value at the specified
	// index for a property "tracksTicketsFor". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsService(idx int, v ActivityStreamsService)
	// InsertActivityStreamsTentativeAccept inserts a TentativeAccept value at
	// the specified index for a property "tracksTicketsFor". Existing
	// elements at that index and higher are shifted back once.
	// Invalidates all iterators.
	InsertActivityStreamsTentativeAccept(idx int, v ActivityStreamsTentativeAccept)
	// InsertActivityStreamsTentativeReject inserts a TentativeReject value at
	// the specified index for a property "tracksTicketsFor". Existing
	// elements at that index and higher are shifted back once.
	// Invalidates all iterators.
	InsertActivityStreamsTentativeReject(idx int, v ActivityStreamsTentativeReject)
	// InsertActivityStreamsTombstone inserts a Tombstone value at the
	// specified index for a property "tracksTicketsFor". Existing
	// elements at that index and higher are shifted back once.
	// Invalidates all iterators.
	InsertActivityStreamsTombstone(idx int, v ActivityStreamsTombstone)
	// InsertActivityStreamsTravel inserts a Travel value at the specified
	// index for a property "tracksTicketsFor". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsTravel(idx int, v ActivityStreamsTravel)
	// InsertActivityStreamsUndo inserts a Undo value at the specified index
	// for a property "tracksTicketsFor". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsUndo(idx int, v ActivityStreamsUndo)
	// InsertActivityStreamsUpdate inserts a Update value at the specified
	// index for a property "tracksTicketsFor". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsUpdate(idx int, v ActivityStreamsUpdate)
	// InsertActivityStreamsVideo inserts a Video value at the specified index
	// for a property "tracksTicketsFor". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsVideo(idx int, v ActivityStreamsVideo)
	// InsertActivityStreamsView inserts a View value at the specified index
	// for a property "tracksTicketsFor". Existing elements at that index
	// and higher are shifted back once. Invalidates all iterators.
	InsertActivityStreamsView(idx int, v ActivityStreamsView)
	// InsertForgeFedBranch inserts a Branch value at the specified index for
	// a property "tracksTicketsFor". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertForgeFedBranch(idx int, v ForgeFedBranch)
	// InsertForgeFedCommit inserts a Commit value at the specified index for
	// a property "tracksTicketsFor". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertForgeFedCommit(idx int, v ForgeFedCommit)
	// InsertForgeFedPush inserts a Push value at the specified index for a
	// property "tracksTicketsFor". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertForgeFedPush(idx int, v ForgeFedPush)
	// InsertForgeFedRepository inserts a Repository value at the specified
	// index for a property "tracksTicketsFor". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertForgeFedRepository(idx int, v ForgeFedRepository)
	// InsertForgeFedTicket inserts a Ticket value at the specified index for
	// a property "tracksTicketsFor". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertForgeFedTicket(idx int, v ForgeFedTicket)
	// InsertForgeFedTicketDependency inserts a TicketDependency value at the
	// specified index for a property "tracksTicketsFor". Existing
	// elements at that index and higher are shifted back once.
	// Invalidates all iterators.
	InsertForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
	// Insert inserts an IRI value at the specified index for a property
	// "tracksTicketsFor". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertIRI(idx int, v *url.URL)
	// InsertTootEmoji inserts a Emoji value at the specified index for a
	// property "tracksTicketsFor". Existing elements at that index and
	// higher are shifted back once. Invalidates all iterators.
	InsertTootEmoji(idx int, v TootEmoji)
	// InsertTootIdentityProof inserts a IdentityProof value at the specified
	// index for a property "tracksTicketsFor". Existing elements at that
	// index and higher are shifted back once. Invalidates all iterators.
	InsertTootIdentityProof(idx int, v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "tracksTicketsFor". Invalidates all iterators. Returns
	// an error if the type is not a valid one to set for this property.
	InsertType(idx int, t Type) error
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API method specifically needed only for alternate
	// implementations for go-fed. Applications should not use this
	// method. Panics if the index is out of bounds.
	KindIndex(idx int) int
	// Len returns the number of values that exist for the "tracksTicketsFor"
	// property.
	Len() (length int)
	// Less computes whether another property is less than this one. Mixing
	// types results in a consistent but arbitrary ordering
	Less(i, j int) bool
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ForgeFedTracksTicketsForProperty) bool
	// Name returns the name of this property ("tracksTicketsFor") with any
	// alias.
	Name() string
	// PrependActivityStreamsAccept prepends a Accept value to the front of a
	// list of the property "tracksTicketsFor". Invalidates all iterators.
	PrependActivityStreamsAccept(v ActivityStreamsAccept)
	// PrependActivityStreamsActivity prepends a Activity value to the front
	// of a list of the property "tracksTicketsFor". Invalidates all
	// iterators.
	PrependActivityStreamsActivity(v ActivityStreamsActivity)
	// PrependActivityStreamsAdd prepends a Add value to the front of a list
	// of the property "tracksTicketsFor". Invalidates all iterators.
	PrependActivityStreamsAdd(v ActivityStreamsAdd)
	// PrependActivityStreamsAnnounce prepends a Announce value to the front
	// of a list of the property "tracksTicketsFor". Invalidates all
	// iterators.
	PrependActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// PrependActivityStreamsApplication prepends a Application value to the
	// front of a list of the property "tracksTicketsFor". Invalidates all
	// iterators.
	PrependActivityStreamsApplication(v ActivityStreamsApplication)
	// PrependActivityStreamsArrive prepends a Arrive value to the front of a
	// list of the property "tracksTicketsFor". Invalidates all iterators.
	PrependActivityStreamsArrive(v ActivityStreamsArrive)
	// PrependActivityStreamsArticle prepends a Article value to the front of
	// a list of the property "tracksTicketsFor". Invalidates all
	// iterators.
	PrependActivityStreamsArticle(v ActivityStreamsArticle)
	// PrependActivityStreamsAudio prepends a Audio value to the front of a
	// list of the property "tracksTicketsFor". Invalidates all iterators.
	PrependActivityStreamsAudio(v ActivityStreamsAudio)
	// PrependActivityStreamsBlock prepends a Block value to the front of a
	// list of the property "tracksTicketsFor". Invalidates all iterators.
	PrependActivityStreamsBlock(v ActivityStreamsBlock)
	// PrependActivityStreamsCollection prepends a Collection value to the
	// front of a list of the property "tracksTicketsFor". Invalidates all
	// iterators.
	PrependActivityStreamsCollection(v ActivityStreamsCollection)
	// PrependActivityStreamsCollectionPage prepends a CollectionPage value to
	// the front of a list of the property "tracksTicketsFor". Invalidates
	// all iterators.
	PrependActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// PrependActivityStreamsCreate prepends a Create value to the front of a
	// list of the property "tracksTicketsFor". Invalidates all iterators.
	PrependActivityStreamsCreate(v ActivityStreamsCreate)
	// PrependActivityStreamsDelete prepends a Delete value to the front of a
	// list of the property "tracksTicketsFor". Invalidates all iterators.
	PrependActivityStreamsDelete(v ActivityStreamsDelete)
	// PrependActivityStreamsDislike prepends a Dislike value to the front of
	// a list of the property "tracksTicketsFor". Invalidates all
	// iterators.
	PrependActivityStreamsDislike(v ActivityStreamsDislike)
	// PrependActivityStreamsDocument prepends a Document value to the front
	// of a list of the property "tracksTicketsFor". Invalidates all
	// iterators.
	PrependActivityStreamsDocument(v ActivityStreamsDocument)
	// PrependActivityStreamsEvent prepends a Event value to the front of a
	// list of the property "tracksTicketsFor". Invalidates all iterators.
	PrependActivityStreamsEvent(v ActivityStreamsEvent)
	// PrependActivityStreamsFlag prepends a Flag value to the front of a list
	// of the property "tracksTicketsFor". Invalidates all iterators.
	PrependActivityStreamsFlag(v ActivityStreamsFlag)
	// PrependActivityStreamsFollow prepends a Follow value to the front of a
	// list of the property "tracksTicketsFor". Invalidates all iterators.
	PrependActivityStreamsFollow(v ActivityStreamsFollow)
	// PrependActivityStreamsGroup prepends a Group value to the front of a
	// list of the property "tracksTicketsFor". Invalidates all iterators.
	PrependActivityStreamsGroup(v ActivityStreamsGroup)
	// PrependActivityStreamsIgnore prepends a Ignore value to the front of a
	// list of the property "tracksTicketsFor". Invalidates all iterators.
	PrependActivityStreamsIgnore(v ActivityStreamsIgnore)
	// PrependActivityStreamsImage prepends a Image value to the front of a
	// list of the property "tracksTicketsFor". Invalidates all iterators.
	PrependActivityStreamsImage(v ActivityStreamsImage)
	// PrependActivityStreamsIntransitiveActivity prepends a
	// IntransitiveActivity value to the front of a list of the property
	// "tracksTicketsFor". Invalidates all iterators.
	PrependActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// PrependActivityStreamsInvite prepends a Invite value to the front of a
	// list of the property "tracksTicketsFor". Invalidates all iterators.
	PrependActivityStreamsInvite(v ActivityStreamsInvite)
	// PrependActivityStreamsJoin prepends a Join value to the front of a list
	// of the property "tracksTicketsFor". Invalidates all iterators.
	PrependActivityStreamsJoin(v ActivityStreamsJoin)
	// PrependActivityStreamsLeave prepends a Leave value to the front of a
	// list of the property "tracksTicketsFor". Invalidates all iterators.
	PrependActivityStreamsLeave(v ActivityStreamsLeave)
	// PrependActivityStreamsLike prepends a Like value to the front of a list
	// of the property "tracksTicketsFor". Invalidates all iterators.
	PrependActivityStreamsLike(v ActivityStreamsLike)
	// PrependActivityStreamsListen prepends a Listen value to the front of a
	// list of the property "tracksTicketsFor". Invalidates all iterators.
	PrependActivityStreamsListen(v ActivityStreamsListen)
	// PrependActivityStreamsMove prepends a Move value to the front of a list
	// of the property "tracksTicketsFor". Invalidates all iterators.
	PrependActivityStreamsMove(v ActivityStreamsMove)
	// PrependActivityStreamsNote prepends a Note value to the front of a list
	// of the property "tracksTicketsFor". Invalidates all iterators.
	PrependActivityStreamsNote(v ActivityStreamsNote)
	// PrependActivityStreamsObject prepends a Object value to the front of a
	// list of the property "tracksTicketsFor". Invalidates all iterators.
	PrependActivityStreamsObject(v ActivityStreamsObject)
	// PrependActivityStreamsOffer prepends a Offer value to the front of a
	// list of the property "tracksTicketsFor". Invalidates all iterators.
	PrependActivityStreamsOffer(v ActivityStreamsOffer)
	// PrependActivityStreamsOrderedCollection prepends a OrderedCollection
	// value to the front of a list of the property "tracksTicketsFor".
	// Invalidates all iterators.
	PrependActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// PrependActivityStreamsOrderedCollectionPage prepends a
	// OrderedCollectionPage value to the front of a list of the property
	// "tracksTicketsFor". Invalidates all iterators.
	PrependActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// PrependActivityStreamsOrganization prepends a Organization value to the
	// front of a list of the property "tracksTicketsFor". Invalidates all
	// iterators.
	PrependActivityStreamsOrganization(v ActivityStreamsOrganization)
	// PrependActivityStreamsPage prepends a Page value to the front of a list
	// of the property "tracksTicketsFor". Invalidates all iterators.
	PrependActivityStreamsPage(v ActivityStreamsPage)
	// PrependActivityStreamsPerson prepends a Person value to the front of a
	// list of the property "tracksTicketsFor". Invalidates all iterators.
	PrependActivityStreamsPerson(v ActivityStreamsPerson)
	// PrependActivityStreamsPlace prepends a Place value to the front of a
	// list of the property "tracksTicketsFor". Invalidates all iterators.
	PrependActivityStreamsPlace(v ActivityStreamsPlace)
	// PrependActivityStreamsProfile prepends a Profile value to the front of
	// a list of the property "tracksTicketsFor". Invalidates all
	// iterators.
	PrependActivityStreamsProfile(v ActivityStreamsProfile)
	// PrependActivityStreamsQuestion prepends a Question value to the front
	// of a list of the property "tracksTicketsFor". Invalidates all
	// iterators.
	PrependActivityStreamsQuestion(v ActivityStreamsQuestion)
	// PrependActivityStreamsRead prepends a Read value to the front of a list
	// of the property "tracksTicketsFor". Invalidates all iterators.
	PrependActivityStreamsRead(v ActivityStreamsRead)
	// PrependActivityStreamsReject prepends a Reject value to the front of a
	// list of the property "tracksTicketsFor". Invalidates all iterators.
	PrependActivityStreamsReject(v ActivityStreamsReject)
	// PrependActivityStreamsRelationship prepends a Relationship value to the
	// front of a list of the property "tracksTicketsFor". Invalidates all
	// iterators.
	PrependActivityStreamsRelationship(v ActivityStreamsRelationship)
	// PrependActivityStreamsRemove prepends a Remove value to the front of a
	// list of the property "tracksTicketsFor". Invalidates all iterators.
	PrependActivityStreamsRemove(v ActivityStreamsRemove)
	// PrependActivityStreamsService prepends a Service value to the front of
	// a list of the property "tracksTicketsFor". Invalidates all
	// iterators.
	PrependActivityStreamsService(v ActivityStreamsService)
	// PrependActivityStreamsTentativeAccept prepends a TentativeAccept value
	// to the front of a list of the property "tracksTicketsFor".
	// Invalidates all iterators.
	PrependActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// PrependActivityStreamsTentativeReject prepends a TentativeReject value
	// to the front of a list of the property "tracksTicketsFor".
	// Invalidates all iterators.
	PrependActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// PrependActivityStreamsTombstone prepends a Tombstone value to the front
	// of a list of the property "tracksTicketsFor". Invalidates all
	// iterators.
	PrependActivityStreamsTombstone(v ActivityStreamsTombstone)
	// PrependActivityStreamsTravel prepends a Travel value to the front of a
	// list of the property "tracksTicketsFor". Invalidates all iterators.
	PrependActivityStreamsTravel(v ActivityStreamsTravel)
	// PrependActivityStreamsUndo prepends a Undo value to the front of a list
	// of the property "tracksTicketsFor". Invalidates all iterators.
	PrependActivityStreamsUndo(v ActivityStreamsUndo)
	// PrependActivityStreamsUpdate prepends a Update value to the front of a
	// list of the property "tracksTicketsFor". Invalidates all iterators.
	PrependActivityStreamsUpdate(v ActivityStreamsUpdate)
	// PrependActivityStreamsVideo prepends a Video value to the front of a
	// list of the property "tracksTicketsFor". Invalidates all iterators.
	PrependActivityStreamsVideo(v ActivityStreamsVideo)
	// PrependActivityStreamsView prepends a View value to the front of a list
	// of the property "tracksTicketsFor". Invalidates all iterators.
	PrependActivityStreamsView(v ActivityStreamsView)
	// PrependForgeFedBranch prepends a Branch value to the front of a list of
	// the property "tracksTicketsFor". Invalidates all iterators.
	PrependForgeFedBranch(v ForgeFedBranch)
	// PrependForgeFedCommit prepends a Commit value to the front of a list of
	// the property "tracksTicketsFor". Invalidates all iterators.
	PrependForgeFedCommit(v ForgeFedCommit)
	// PrependForgeFedPush prepends a Push value to the front of a list of the
	// property "tracksTicketsFor". Invalidates all iterators.
	PrependForgeFedPush(v ForgeFedPush)
	// PrependForgeFedRepository prepends a Repository value to the front of a
	// list of the property "tracksTicketsFor". Invalidates all iterators.
	PrependForgeFedRepository(v ForgeFedRepository)
	// PrependForgeFedTicket prepends a Ticket value to the front of a list of
	// the property "tracksTicketsFor". Invalidates all iterators.
	PrependForgeFedTicket(v ForgeFedTicket)
	// PrependForgeFedTicketDependency prepends a TicketDependency value to
	// the front of a list of the property "tracksTicketsFor". Invalidates
	// all iterators.
	PrependForgeFedTicketDependency(v ForgeFedTicketDependency)
	// PrependIRI prepends an IRI value to the front of a list of the property
	// "tracksTicketsFor".
	PrependIRI(v *url.URL)
	// PrependTootEmoji prepends a Emoji value to the front of a list of the
	// property "tracksTicketsFor". Invalidates all iterators.
	PrependTootEmoji(v TootEmoji)
	// PrependTootIdentityProof prepends a IdentityProof value to the front of
	// a list of the property "tracksTicketsFor". Invalidates all
	// iterators.
	PrependTootIdentityProof(v TootIdentityProof)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "tracksTicketsFor". Invalidates all iterators. Returns
	// an error if the type is not a valid one to set for this property.
	PrependType(t Type) error
	// Remove deletes an element at the specified index from a list of the
	// property "tracksTicketsFor", regardless of its type. Panics if the
	// index is out of bounds. Invalidates all iterators.
	Remove(idx int)
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// SetActivityStreamsAccept sets a Accept value to be at the specified
	// index for the property "tracksTicketsFor". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsAccept(idx int, v ActivityStreamsAccept)
	// SetActivityStreamsActivity sets a Activity value to be at the specified
	// index for the property "tracksTicketsFor". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsActivity(idx int, v ActivityStreamsActivity)
	// SetActivityStreamsAdd sets a Add value to be at the specified index for
	// the property "tracksTicketsFor". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsAdd(idx int, v ActivityStreamsAdd)
	// SetActivityStreamsAnnounce sets a Announce value to be at the specified
	// index for the property "tracksTicketsFor". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsAnnounce(idx int, v ActivityStreamsAnnounce)
	// SetActivityStreamsApplication sets a Application value to be at the
	// specified index for the property "tracksTicketsFor". Panics if the
	// index is out of bounds. Invalidates all iterators.
	SetActivityStreamsApplication(idx int, v ActivityStreamsApplication)
	// SetActivityStreamsArrive sets a Arrive value to be at the specified
	// index for the property "tracksTicketsFor". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsArrive(idx int, v ActivityStreamsArrive)
	// SetActivityStreamsArticle sets a Article value to be at the specified
	// index for the property "tracksTicketsFor". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsArticle(idx int, v ActivityStreamsArticle)
	// SetActivityStreamsAudio sets a Audio value to be at the specified index
	// for the property "tracksTicketsFor". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsAudio(idx int, v ActivityStreamsAudio)
	// SetActivityStreamsBlock sets a Block value to be at the specified index
	// for the property "tracksTicketsFor". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsBlock(idx int, v ActivityStreamsBlock)
	// SetActivityStreamsCollection sets a Collection value to be at the
	// specified index for the property "tracksTicketsFor". Panics if the
	// index is out of bounds. Invalidates all iterators.
	SetActivityStreamsCollection(idx int, v ActivityStreamsCollection)
	// SetActivityStreamsCollectionPage sets a CollectionPage value to be at
	// the specified index for the property "tracksTicketsFor". Panics if
	// the index is out of bounds. Invalidates all iterators.
	SetActivityStreamsCollectionPage(idx int, v ActivityStreamsCollectionPage)
	// SetActivityStreamsCreate sets a Create value to be at the specified
	// index for the property "tracksTicketsFor". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsCreate(idx int, v ActivityStreamsCreate)
	// SetActivityStreamsDelete sets a Delete value to be at the specified
	// index for the property "tracksTicketsFor". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsDelete(idx int, v ActivityStreamsDelete)
	// SetActivityStreamsDislike sets a Dislike value to be at the specified
	// index for the property "tracksTicketsFor". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsDislike(idx int, v ActivityStreamsDislike)
	// SetActivityStreamsDocument sets a Document value to be at the specified
	// index for the property "tracksTicketsFor". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsDocument(idx int, v ActivityStreamsDocument)
	// SetActivityStreamsEvent sets a Event value to be at the specified index
	// for the property "tracksTicketsFor". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsEvent(idx int, v ActivityStreamsEvent)
	// SetActivityStreamsFlag sets a Flag value to be at the specified index
	// for the property "tracksTicketsFor". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsFlag(idx int, v ActivityStreamsFlag)
	// SetActivityStreamsFollow sets a Follow value to be at the specified
	// index for the property "tracksTicketsFor". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsFollow(idx int, v ActivityStreamsFollow)
	// SetActivityStreamsGroup sets a Group value to be at the specified index
	// for the property "tracksTicketsFor". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsGroup(idx int, v ActivityStreamsGroup)
	// SetActivityStreamsIgnore sets a Ignore value to be at the specified
	// index for the property "tracksTicketsFor". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsIgnore(idx int, v ActivityStreamsIgnore)
	// SetActivityStreamsImage sets a Image value to be at the specified index
	// for the property "tracksTicketsFor". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsImage(idx int, v ActivityStreamsImage)
	// SetActivityStreamsIntransitiveActivity sets a IntransitiveActivity
	// value to be at the specified index for the property
	// "tracksTicketsFor". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsIntransitiveActivity(idx int, v ActivityStreamsIntransitiveActivity)
	// SetActivityStreamsInvite sets a Invite value to be at the specified
	// index for the property "tracksTicketsFor". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsInvite(idx int, v ActivityStreamsInvite)
	// SetActivityStreamsJoin sets a Join value to be at the specified index
	// for the property "tracksTicketsFor". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsJoin(idx int, v ActivityStreamsJoin)
	// SetActivityStreamsLeave sets a Leave value to be at the specified index
	// for the property "tracksTicketsFor". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsLeave(idx int, v ActivityStreamsLeave)
	// SetActivityStreamsLike sets a Like value to be at the specified index
	// for the property "tracksTicketsFor". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsLike(idx int, v ActivityStreamsLike)
	// SetActivityStreamsListen sets a Listen value to be at the specified
	// index for the property "tracksTicketsFor". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsListen(idx int, v ActivityStreamsListen)
	// SetActivityStreamsMove sets a Move value to be at the specified index
	// for the property "tracksTicketsFor". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsMove(idx int, v ActivityStreamsMove)
	// SetActivityStreamsNote sets a Note value to be at the specified index
	// for the property "tracksTicketsFor". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsNote(idx int, v ActivityStreamsNote)
	// SetActivityStreamsObject sets a Object value to be at the specified
	// index for the property "tracksTicketsFor". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsObject(idx int, v ActivityStreamsObject)
	// SetActivityStreamsOffer sets a Offer value to be at the specified index
	// for the property "tracksTicketsFor". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsOffer(idx int, v ActivityStreamsOffer)
	// SetActivityStreamsOrderedCollection sets a OrderedCollection value to
	// be at the specified index for the property "tracksTicketsFor".
	// Panics if the index is out of bounds. Invalidates all iterators.
	SetActivityStreamsOrderedCollection(idx int, v ActivityStreamsOrderedCollection)
	// SetActivityStreamsOrderedCollectionPage sets a OrderedCollectionPage
	// value to be at the specified index for the property
	// "tracksTicketsFor". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetActivityStreamsOrderedCollectionPage(idx int, v ActivityStreamsOrderedCollectionPage)
	// SetActivityStreamsOrganization sets a Organization value to be at the
	// specified index for the property "tracksTicketsFor". Panics if the
	// index is out of bounds. Invalidates all iterators.
	SetActivityStreamsOrganization(idx int, v ActivityStreamsOrganization)
	// SetActivityStreamsPage sets a Page value to be at the specified index
	// for the property "tracksTicketsFor". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsPage(idx int, v ActivityStreamsPage)
	// SetActivityStreamsPerson sets a Person value to be at the specified
	// index for the property "tracksTicketsFor". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsPerson(idx int, v ActivityStreamsPerson)
	// SetActivityStreamsPlace sets a Place value to be at the specified index
	// for the property "tracksTicketsFor". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsPlace(idx int, v ActivityStreamsPlace)
	// SetActivityStreamsProfile sets a Profile value to be at the specified
	// index for the property "tracksTicketsFor". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsProfile(idx int, v ActivityStreamsProfile)
	// SetActivityStreamsQuestion sets a Question value to be at the specified
	// index for the property "tracksTicketsFor". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsQuestion(idx int, v ActivityStreamsQuestion)
	// SetActivityStreamsRead sets a Read value to be at the specified index
	// for the property "tracksTicketsFor". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsRead(idx int, v ActivityStreamsRead)
	// SetActivityStreamsReject sets a Reject value to be at the specified
	// index for the property "tracksTicketsFor". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsReject(idx int, v ActivityStreamsReject)
	// SetActivityStreamsRelationship sets a Relationship value to be at the
	// specified index for the property "tracksTicketsFor". Panics if the
	// index is out of bounds. Invalidates all iterators.
	SetActivityStreamsRelationship(idx int, v ActivityStreamsRelationship)
	// SetActivityStreamsRemove sets a Remove value to be at the specified
	// index for the property "tracksTicketsFor". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsRemove(idx int, v ActivityStreamsRemove)
	// SetActivityStreamsService sets a Service value to be at the specified
	// index for the property "tracksTicketsFor". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsService(idx int, v ActivityStreamsService)
	// SetActivityStreamsTentativeAccept sets a TentativeAccept value to be at
	// the specified index for the property "tracksTicketsFor". Panics if
	// the index is out of bounds. Invalidates all iterators.
	SetActivityStreamsTentativeAccept(idx int, v ActivityStreamsTentativeAccept)
	// SetActivityStreamsTentativeReject sets a TentativeReject value to be at
	// the specified index for the property "tracksTicketsFor". Panics if
	// the index is out of bounds. Invalidates all iterators.
	SetActivityStreamsTentativeReject(idx int, v ActivityStreamsTentativeReject)
	// SetActivityStreamsTombstone sets a Tombstone value to be at the
	// specified index for the property "tracksTicketsFor". Panics if the
	// index is out of bounds. Invalidates all iterators.
	SetActivityStreamsTombstone(idx int, v ActivityStreamsTombstone)
	// SetActivityStreamsTravel sets a Travel value to be at the specified
	// index for the property "tracksTicketsFor". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsTravel(idx int, v ActivityStreamsTravel)
	// SetActivityStreamsUndo sets a Undo value to be at the specified index
	// for the property "tracksTicketsFor". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsUndo(idx int, v ActivityStreamsUndo)
	// SetActivityStreamsUpdate sets a Update value to be at the specified
	// index for the property "tracksTicketsFor". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetActivityStreamsUpdate(idx int, v ActivityStreamsUpdate)
	// SetActivityStreamsVideo sets a Video value to be at the specified index
	// for the property "tracksTicketsFor". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsVideo(idx int, v ActivityStreamsVideo)
	// SetActivityStreamsView sets a View value to be at the specified index
	// for the property "tracksTicketsFor". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetActivityStreamsView(idx int, v ActivityStreamsView)
	// SetForgeFedBranch sets a Branch value to be at the specified index for
	// the property "tracksTicketsFor". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetForgeFedBranch(idx int, v ForgeFedBranch)
	// SetForgeFedCommit sets a Commit value to be at the specified index for
	// the property "tracksTicketsFor". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetForgeFedCommit(idx int, v ForgeFedCommit)
	// SetForgeFedPush sets a Push value to be at the specified index for the
	// property "tracksTicketsFor". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetForgeFedPush(idx int, v ForgeFedPush)
	// SetForgeFedRepository sets a Repository value to be at the specified
	// index for the property "tracksTicketsFor". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetForgeFedRepository(idx int, v ForgeFedRepository)
	// SetForgeFedTicket sets a Ticket value to be at the specified index for
	// the property "tracksTicketsFor". Panics if the index is out of
	// bounds. Invalidates all iterators.
	SetForgeFedTicket(idx int, v ForgeFedTicket)
	// SetForgeFedTicketDependency sets a TicketDependency value to be at the
	// specified index for the property "tracksTicketsFor". Panics if the
	// index is out of bounds. Invalidates all iterators.
	SetForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
	// SetIRI sets an IRI value to be at the specified index for the property
	// "tracksTicketsFor". Panics if the index is out of bounds.
	SetIRI(idx int, v *url.URL)
	// SetTootEmoji sets a Emoji value to be at the specified index for the
	// property "tracksTicketsFor". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetTootEmoji(idx int, v TootEmoji)
	// SetTootIdentityProof sets a IdentityProof value to be at the specified
	// index for the property "tracksTicketsFor". Panics if the index is
	// out of bounds. Invalidates all iterators.
	SetTootIdentityProof(idx int, v TootIdentityProof)
	// SetType sets an arbitrary type value to the specified index of the
	// property "tracksTicketsFor". Invalidates all iterators. Returns an
	// error if the type is not a valid one to set for this property.
	// Panics if the index is out of bounds.
	SetType(idx int, t Type) error
	// Swap swaps the location of values at two indices for the
	// "tracksTicketsFor" property.
	Swap(i, j int)
}

Identifies objects for which which this ticket tracker tracks tickets. When you’d like to open a ticket against those objects, you can send them to this tracker.

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    "https://forgefed.peers.community/ns"
  ],
  "id": "https://bugs.example/treesim",
  "tracksTicketsFor": [
    "https://dev.example/aviva/liblsystem",
    "https://dev.example/aviva/3d-tree-models",
    "https://dev.example/aviva/treesim"
  ],
  "type": "Project"
}

type ForgeFedTracksTicketsForPropertyIterator

type ForgeFedTracksTicketsForPropertyIterator interface {
	// GetActivityStreamsAccept returns the value of this property. When
	// IsActivityStreamsAccept returns false, GetActivityStreamsAccept
	// will return an arbitrary value.
	GetActivityStreamsAccept() ActivityStreamsAccept
	// GetActivityStreamsActivity returns the value of this property. When
	// IsActivityStreamsActivity returns false, GetActivityStreamsActivity
	// will return an arbitrary value.
	GetActivityStreamsActivity() ActivityStreamsActivity
	// GetActivityStreamsAdd returns the value of this property. When
	// IsActivityStreamsAdd returns false, GetActivityStreamsAdd will
	// return an arbitrary value.
	GetActivityStreamsAdd() ActivityStreamsAdd
	// GetActivityStreamsAnnounce returns the value of this property. When
	// IsActivityStreamsAnnounce returns false, GetActivityStreamsAnnounce
	// will return an arbitrary value.
	GetActivityStreamsAnnounce() ActivityStreamsAnnounce
	// GetActivityStreamsApplication returns the value of this property. When
	// IsActivityStreamsApplication returns false,
	// GetActivityStreamsApplication will return an arbitrary value.
	GetActivityStreamsApplication() ActivityStreamsApplication
	// GetActivityStreamsArrive returns the value of this property. When
	// IsActivityStreamsArrive returns false, GetActivityStreamsArrive
	// will return an arbitrary value.
	GetActivityStreamsArrive() ActivityStreamsArrive
	// GetActivityStreamsArticle returns the value of this property. When
	// IsActivityStreamsArticle returns false, GetActivityStreamsArticle
	// will return an arbitrary value.
	GetActivityStreamsArticle() ActivityStreamsArticle
	// GetActivityStreamsAudio returns the value of this property. When
	// IsActivityStreamsAudio returns false, GetActivityStreamsAudio will
	// return an arbitrary value.
	GetActivityStreamsAudio() ActivityStreamsAudio
	// GetActivityStreamsBlock returns the value of this property. When
	// IsActivityStreamsBlock returns false, GetActivityStreamsBlock will
	// return an arbitrary value.
	GetActivityStreamsBlock() ActivityStreamsBlock
	// GetActivityStreamsCollection returns the value of this property. When
	// IsActivityStreamsCollection returns false,
	// GetActivityStreamsCollection will return an arbitrary value.
	GetActivityStreamsCollection() ActivityStreamsCollection
	// GetActivityStreamsCollectionPage returns the value of this property.
	// When IsActivityStreamsCollectionPage returns false,
	// GetActivityStreamsCollectionPage will return an arbitrary value.
	GetActivityStreamsCollectionPage() ActivityStreamsCollectionPage
	// GetActivityStreamsCreate returns the value of this property. When
	// IsActivityStreamsCreate returns false, GetActivityStreamsCreate
	// will return an arbitrary value.
	GetActivityStreamsCreate() ActivityStreamsCreate
	// GetActivityStreamsDelete returns the value of this property. When
	// IsActivityStreamsDelete returns false, GetActivityStreamsDelete
	// will return an arbitrary value.
	GetActivityStreamsDelete() ActivityStreamsDelete
	// GetActivityStreamsDislike returns the value of this property. When
	// IsActivityStreamsDislike returns false, GetActivityStreamsDislike
	// will return an arbitrary value.
	GetActivityStreamsDislike() ActivityStreamsDislike
	// GetActivityStreamsDocument returns the value of this property. When
	// IsActivityStreamsDocument returns false, GetActivityStreamsDocument
	// will return an arbitrary value.
	GetActivityStreamsDocument() ActivityStreamsDocument
	// GetActivityStreamsEvent returns the value of this property. When
	// IsActivityStreamsEvent returns false, GetActivityStreamsEvent will
	// return an arbitrary value.
	GetActivityStreamsEvent() ActivityStreamsEvent
	// GetActivityStreamsFlag returns the value of this property. When
	// IsActivityStreamsFlag returns false, GetActivityStreamsFlag will
	// return an arbitrary value.
	GetActivityStreamsFlag() ActivityStreamsFlag
	// GetActivityStreamsFollow returns the value of this property. When
	// IsActivityStreamsFollow returns false, GetActivityStreamsFollow
	// will return an arbitrary value.
	GetActivityStreamsFollow() ActivityStreamsFollow
	// GetActivityStreamsGroup returns the value of this property. When
	// IsActivityStreamsGroup returns false, GetActivityStreamsGroup will
	// return an arbitrary value.
	GetActivityStreamsGroup() ActivityStreamsGroup
	// GetActivityStreamsIgnore returns the value of this property. When
	// IsActivityStreamsIgnore returns false, GetActivityStreamsIgnore
	// will return an arbitrary value.
	GetActivityStreamsIgnore() ActivityStreamsIgnore
	// GetActivityStreamsImage returns the value of this property. When
	// IsActivityStreamsImage returns false, GetActivityStreamsImage will
	// return an arbitrary value.
	GetActivityStreamsImage() ActivityStreamsImage
	// GetActivityStreamsIntransitiveActivity returns the value of this
	// property. When IsActivityStreamsIntransitiveActivity returns false,
	// GetActivityStreamsIntransitiveActivity will return an arbitrary
	// value.
	GetActivityStreamsIntransitiveActivity() ActivityStreamsIntransitiveActivity
	// GetActivityStreamsInvite returns the value of this property. When
	// IsActivityStreamsInvite returns false, GetActivityStreamsInvite
	// will return an arbitrary value.
	GetActivityStreamsInvite() ActivityStreamsInvite
	// GetActivityStreamsJoin returns the value of this property. When
	// IsActivityStreamsJoin returns false, GetActivityStreamsJoin will
	// return an arbitrary value.
	GetActivityStreamsJoin() ActivityStreamsJoin
	// GetActivityStreamsLeave returns the value of this property. When
	// IsActivityStreamsLeave returns false, GetActivityStreamsLeave will
	// return an arbitrary value.
	GetActivityStreamsLeave() ActivityStreamsLeave
	// GetActivityStreamsLike returns the value of this property. When
	// IsActivityStreamsLike returns false, GetActivityStreamsLike will
	// return an arbitrary value.
	GetActivityStreamsLike() ActivityStreamsLike
	// GetActivityStreamsListen returns the value of this property. When
	// IsActivityStreamsListen returns false, GetActivityStreamsListen
	// will return an arbitrary value.
	GetActivityStreamsListen() ActivityStreamsListen
	// GetActivityStreamsMove returns the value of this property. When
	// IsActivityStreamsMove returns false, GetActivityStreamsMove will
	// return an arbitrary value.
	GetActivityStreamsMove() ActivityStreamsMove
	// GetActivityStreamsNote returns the value of this property. When
	// IsActivityStreamsNote returns false, GetActivityStreamsNote will
	// return an arbitrary value.
	GetActivityStreamsNote() ActivityStreamsNote
	// GetActivityStreamsObject returns the value of this property. When
	// IsActivityStreamsObject returns false, GetActivityStreamsObject
	// will return an arbitrary value.
	GetActivityStreamsObject() ActivityStreamsObject
	// GetActivityStreamsOffer returns the value of this property. When
	// IsActivityStreamsOffer returns false, GetActivityStreamsOffer will
	// return an arbitrary value.
	GetActivityStreamsOffer() ActivityStreamsOffer
	// GetActivityStreamsOrderedCollection returns the value of this property.
	// When IsActivityStreamsOrderedCollection returns false,
	// GetActivityStreamsOrderedCollection will return an arbitrary value.
	GetActivityStreamsOrderedCollection() ActivityStreamsOrderedCollection
	// GetActivityStreamsOrderedCollectionPage returns the value of this
	// property. When IsActivityStreamsOrderedCollectionPage returns
	// false, GetActivityStreamsOrderedCollectionPage will return an
	// arbitrary value.
	GetActivityStreamsOrderedCollectionPage() ActivityStreamsOrderedCollectionPage
	// GetActivityStreamsOrganization returns the value of this property. When
	// IsActivityStreamsOrganization returns false,
	// GetActivityStreamsOrganization will return an arbitrary value.
	GetActivityStreamsOrganization() ActivityStreamsOrganization
	// GetActivityStreamsPage returns the value of this property. When
	// IsActivityStreamsPage returns false, GetActivityStreamsPage will
	// return an arbitrary value.
	GetActivityStreamsPage() ActivityStreamsPage
	// GetActivityStreamsPerson returns the value of this property. When
	// IsActivityStreamsPerson returns false, GetActivityStreamsPerson
	// will return an arbitrary value.
	GetActivityStreamsPerson() ActivityStreamsPerson
	// GetActivityStreamsPlace returns the value of this property. When
	// IsActivityStreamsPlace returns false, GetActivityStreamsPlace will
	// return an arbitrary value.
	GetActivityStreamsPlace() ActivityStreamsPlace
	// GetActivityStreamsProfile returns the value of this property. When
	// IsActivityStreamsProfile returns false, GetActivityStreamsProfile
	// will return an arbitrary value.
	GetActivityStreamsProfile() ActivityStreamsProfile
	// GetActivityStreamsQuestion returns the value of this property. When
	// IsActivityStreamsQuestion returns false, GetActivityStreamsQuestion
	// will return an arbitrary value.
	GetActivityStreamsQuestion() ActivityStreamsQuestion
	// GetActivityStreamsRead returns the value of this property. When
	// IsActivityStreamsRead returns false, GetActivityStreamsRead will
	// return an arbitrary value.
	GetActivityStreamsRead() ActivityStreamsRead
	// GetActivityStreamsReject returns the value of this property. When
	// IsActivityStreamsReject returns false, GetActivityStreamsReject
	// will return an arbitrary value.
	GetActivityStreamsReject() ActivityStreamsReject
	// GetActivityStreamsRelationship returns the value of this property. When
	// IsActivityStreamsRelationship returns false,
	// GetActivityStreamsRelationship will return an arbitrary value.
	GetActivityStreamsRelationship() ActivityStreamsRelationship
	// GetActivityStreamsRemove returns the value of this property. When
	// IsActivityStreamsRemove returns false, GetActivityStreamsRemove
	// will return an arbitrary value.
	GetActivityStreamsRemove() ActivityStreamsRemove
	// GetActivityStreamsService returns the value of this property. When
	// IsActivityStreamsService returns false, GetActivityStreamsService
	// will return an arbitrary value.
	GetActivityStreamsService() ActivityStreamsService
	// GetActivityStreamsTentativeAccept returns the value of this property.
	// When IsActivityStreamsTentativeAccept returns false,
	// GetActivityStreamsTentativeAccept will return an arbitrary value.
	GetActivityStreamsTentativeAccept() ActivityStreamsTentativeAccept
	// GetActivityStreamsTentativeReject returns the value of this property.
	// When IsActivityStreamsTentativeReject returns false,
	// GetActivityStreamsTentativeReject will return an arbitrary value.
	GetActivityStreamsTentativeReject() ActivityStreamsTentativeReject
	// GetActivityStreamsTombstone returns the value of this property. When
	// IsActivityStreamsTombstone returns false,
	// GetActivityStreamsTombstone will return an arbitrary value.
	GetActivityStreamsTombstone() ActivityStreamsTombstone
	// GetActivityStreamsTravel returns the value of this property. When
	// IsActivityStreamsTravel returns false, GetActivityStreamsTravel
	// will return an arbitrary value.
	GetActivityStreamsTravel() ActivityStreamsTravel
	// GetActivityStreamsUndo returns the value of this property. When
	// IsActivityStreamsUndo returns false, GetActivityStreamsUndo will
	// return an arbitrary value.
	GetActivityStreamsUndo() ActivityStreamsUndo
	// GetActivityStreamsUpdate returns the value of this property. When
	// IsActivityStreamsUpdate returns false, GetActivityStreamsUpdate
	// will return an arbitrary value.
	GetActivityStreamsUpdate() ActivityStreamsUpdate
	// GetActivityStreamsVideo returns the value of this property. When
	// IsActivityStreamsVideo returns false, GetActivityStreamsVideo will
	// return an arbitrary value.
	GetActivityStreamsVideo() ActivityStreamsVideo
	// GetActivityStreamsView returns the value of this property. When
	// IsActivityStreamsView returns false, GetActivityStreamsView will
	// return an arbitrary value.
	GetActivityStreamsView() ActivityStreamsView
	// GetForgeFedBranch returns the value of this property. When
	// IsForgeFedBranch returns false, GetForgeFedBranch will return an
	// arbitrary value.
	GetForgeFedBranch() ForgeFedBranch
	// GetForgeFedCommit returns the value of this property. When
	// IsForgeFedCommit returns false, GetForgeFedCommit will return an
	// arbitrary value.
	GetForgeFedCommit() ForgeFedCommit
	// GetForgeFedPush returns the value of this property. When IsForgeFedPush
	// returns false, GetForgeFedPush will return an arbitrary value.
	GetForgeFedPush() ForgeFedPush
	// GetForgeFedRepository returns the value of this property. When
	// IsForgeFedRepository returns false, GetForgeFedRepository will
	// return an arbitrary value.
	GetForgeFedRepository() ForgeFedRepository
	// GetForgeFedTicket returns the value of this property. When
	// IsForgeFedTicket returns false, GetForgeFedTicket will return an
	// arbitrary value.
	GetForgeFedTicket() ForgeFedTicket
	// GetForgeFedTicketDependency returns the value of this property. When
	// IsForgeFedTicketDependency returns false,
	// GetForgeFedTicketDependency will return an arbitrary value.
	GetForgeFedTicketDependency() ForgeFedTicketDependency
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return an arbitrary value.
	GetIRI() *url.URL
	// GetTootEmoji returns the value of this property. When IsTootEmoji
	// returns false, GetTootEmoji will return an arbitrary value.
	GetTootEmoji() TootEmoji
	// GetTootIdentityProof returns the value of this property. When
	// IsTootIdentityProof returns false, GetTootIdentityProof will return
	// an arbitrary value.
	GetTootIdentityProof() TootIdentityProof
	// GetType returns the value in this property as a Type. Returns nil if
	// the value is not an ActivityStreams type, such as an IRI or another
	// value.
	GetType() Type
	// HasAny returns true if any of the different values is set.
	HasAny() bool
	// IsActivityStreamsAccept returns true if this property has a type of
	// "Accept". When true, use the GetActivityStreamsAccept and
	// SetActivityStreamsAccept methods to access and set this property.
	IsActivityStreamsAccept() bool
	// IsActivityStreamsActivity returns true if this property has a type of
	// "Activity". When true, use the GetActivityStreamsActivity and
	// SetActivityStreamsActivity methods to access and set this property.
	IsActivityStreamsActivity() bool
	// IsActivityStreamsAdd returns true if this property has a type of "Add".
	// When true, use the GetActivityStreamsAdd and SetActivityStreamsAdd
	// methods to access and set this property.
	IsActivityStreamsAdd() bool
	// IsActivityStreamsAnnounce returns true if this property has a type of
	// "Announce". When true, use the GetActivityStreamsAnnounce and
	// SetActivityStreamsAnnounce methods to access and set this property.
	IsActivityStreamsAnnounce() bool
	// IsActivityStreamsApplication returns true if this property has a type
	// of "Application". When true, use the GetActivityStreamsApplication
	// and SetActivityStreamsApplication methods to access and set this
	// property.
	IsActivityStreamsApplication() bool
	// IsActivityStreamsArrive returns true if this property has a type of
	// "Arrive". When true, use the GetActivityStreamsArrive and
	// SetActivityStreamsArrive methods to access and set this property.
	IsActivityStreamsArrive() bool
	// IsActivityStreamsArticle returns true if this property has a type of
	// "Article". When true, use the GetActivityStreamsArticle and
	// SetActivityStreamsArticle methods to access and set this property.
	IsActivityStreamsArticle() bool
	// IsActivityStreamsAudio returns true if this property has a type of
	// "Audio". When true, use the GetActivityStreamsAudio and
	// SetActivityStreamsAudio methods to access and set this property.
	IsActivityStreamsAudio() bool
	// IsActivityStreamsBlock returns true if this property has a type of
	// "Block". When true, use the GetActivityStreamsBlock and
	// SetActivityStreamsBlock methods to access and set this property.
	IsActivityStreamsBlock() bool
	// IsActivityStreamsCollection returns true if this property has a type of
	// "Collection". When true, use the GetActivityStreamsCollection and
	// SetActivityStreamsCollection methods to access and set this
	// property.
	IsActivityStreamsCollection() bool
	// IsActivityStreamsCollectionPage returns true if this property has a
	// type of "CollectionPage". When true, use the
	// GetActivityStreamsCollectionPage and
	// SetActivityStreamsCollectionPage methods to access and set this
	// property.
	IsActivityStreamsCollectionPage() bool
	// IsActivityStreamsCreate returns true if this property has a type of
	// "Create". When true, use the GetActivityStreamsCreate and
	// SetActivityStreamsCreate methods to access and set this property.
	IsActivityStreamsCreate() bool
	// IsActivityStreamsDelete returns true if this property has a type of
	// "Delete". When true, use the GetActivityStreamsDelete and
	// SetActivityStreamsDelete methods to access and set this property.
	IsActivityStreamsDelete() bool
	// IsActivityStreamsDislike returns true if this property has a type of
	// "Dislike". When true, use the GetActivityStreamsDislike and
	// SetActivityStreamsDislike methods to access and set this property.
	IsActivityStreamsDislike() bool
	// IsActivityStreamsDocument returns true if this property has a type of
	// "Document". When true, use the GetActivityStreamsDocument and
	// SetActivityStreamsDocument methods to access and set this property.
	IsActivityStreamsDocument() bool
	// IsActivityStreamsEvent returns true if this property has a type of
	// "Event". When true, use the GetActivityStreamsEvent and
	// SetActivityStreamsEvent methods to access and set this property.
	IsActivityStreamsEvent() bool
	// IsActivityStreamsFlag returns true if this property has a type of
	// "Flag". When true, use the GetActivityStreamsFlag and
	// SetActivityStreamsFlag methods to access and set this property.
	IsActivityStreamsFlag() bool
	// IsActivityStreamsFollow returns true if this property has a type of
	// "Follow". When true, use the GetActivityStreamsFollow and
	// SetActivityStreamsFollow methods to access and set this property.
	IsActivityStreamsFollow() bool
	// IsActivityStreamsGroup returns true if this property has a type of
	// "Group". When true, use the GetActivityStreamsGroup and
	// SetActivityStreamsGroup methods to access and set this property.
	IsActivityStreamsGroup() bool
	// IsActivityStreamsIgnore returns true if this property has a type of
	// "Ignore". When true, use the GetActivityStreamsIgnore and
	// SetActivityStreamsIgnore methods to access and set this property.
	IsActivityStreamsIgnore() bool
	// IsActivityStreamsImage returns true if this property has a type of
	// "Image". When true, use the GetActivityStreamsImage and
	// SetActivityStreamsImage methods to access and set this property.
	IsActivityStreamsImage() bool
	// IsActivityStreamsIntransitiveActivity returns true if this property has
	// a type of "IntransitiveActivity". When true, use the
	// GetActivityStreamsIntransitiveActivity and
	// SetActivityStreamsIntransitiveActivity methods to access and set
	// this property.
	IsActivityStreamsIntransitiveActivity() bool
	// IsActivityStreamsInvite returns true if this property has a type of
	// "Invite". When true, use the GetActivityStreamsInvite and
	// SetActivityStreamsInvite methods to access and set this property.
	IsActivityStreamsInvite() bool
	// IsActivityStreamsJoin returns true if this property has a type of
	// "Join". When true, use the GetActivityStreamsJoin and
	// SetActivityStreamsJoin methods to access and set this property.
	IsActivityStreamsJoin() bool
	// IsActivityStreamsLeave returns true if this property has a type of
	// "Leave". When true, use the GetActivityStreamsLeave and
	// SetActivityStreamsLeave methods to access and set this property.
	IsActivityStreamsLeave() bool
	// IsActivityStreamsLike returns true if this property has a type of
	// "Like". When true, use the GetActivityStreamsLike and
	// SetActivityStreamsLike methods to access and set this property.
	IsActivityStreamsLike() bool
	// IsActivityStreamsListen returns true if this property has a type of
	// "Listen". When true, use the GetActivityStreamsListen and
	// SetActivityStreamsListen methods to access and set this property.
	IsActivityStreamsListen() bool
	// IsActivityStreamsMove returns true if this property has a type of
	// "Move". When true, use the GetActivityStreamsMove and
	// SetActivityStreamsMove methods to access and set this property.
	IsActivityStreamsMove() bool
	// IsActivityStreamsNote returns true if this property has a type of
	// "Note". When true, use the GetActivityStreamsNote and
	// SetActivityStreamsNote methods to access and set this property.
	IsActivityStreamsNote() bool
	// IsActivityStreamsObject returns true if this property has a type of
	// "Object". When true, use the GetActivityStreamsObject and
	// SetActivityStreamsObject methods to access and set this property.
	IsActivityStreamsObject() bool
	// IsActivityStreamsOffer returns true if this property has a type of
	// "Offer". When true, use the GetActivityStreamsOffer and
	// SetActivityStreamsOffer methods to access and set this property.
	IsActivityStreamsOffer() bool
	// IsActivityStreamsOrderedCollection returns true if this property has a
	// type of "OrderedCollection". When true, use the
	// GetActivityStreamsOrderedCollection and
	// SetActivityStreamsOrderedCollection methods to access and set this
	// property.
	IsActivityStreamsOrderedCollection() bool
	// IsActivityStreamsOrderedCollectionPage returns true if this property
	// has a type of "OrderedCollectionPage". When true, use the
	// GetActivityStreamsOrderedCollectionPage and
	// SetActivityStreamsOrderedCollectionPage methods to access and set
	// this property.
	IsActivityStreamsOrderedCollectionPage() bool
	// IsActivityStreamsOrganization returns true if this property has a type
	// of "Organization". When true, use the
	// GetActivityStreamsOrganization and SetActivityStreamsOrganization
	// methods to access and set this property.
	IsActivityStreamsOrganization() bool
	// IsActivityStreamsPage returns true if this property has a type of
	// "Page". When true, use the GetActivityStreamsPage and
	// SetActivityStreamsPage methods to access and set this property.
	IsActivityStreamsPage() bool
	// IsActivityStreamsPerson returns true if this property has a type of
	// "Person". When true, use the GetActivityStreamsPerson and
	// SetActivityStreamsPerson methods to access and set this property.
	IsActivityStreamsPerson() bool
	// IsActivityStreamsPlace returns true if this property has a type of
	// "Place". When true, use the GetActivityStreamsPlace and
	// SetActivityStreamsPlace methods to access and set this property.
	IsActivityStreamsPlace() bool
	// IsActivityStreamsProfile returns true if this property has a type of
	// "Profile". When true, use the GetActivityStreamsProfile and
	// SetActivityStreamsProfile methods to access and set this property.
	IsActivityStreamsProfile() bool
	// IsActivityStreamsQuestion returns true if this property has a type of
	// "Question". When true, use the GetActivityStreamsQuestion and
	// SetActivityStreamsQuestion methods to access and set this property.
	IsActivityStreamsQuestion() bool
	// IsActivityStreamsRead returns true if this property has a type of
	// "Read". When true, use the GetActivityStreamsRead and
	// SetActivityStreamsRead methods to access and set this property.
	IsActivityStreamsRead() bool
	// IsActivityStreamsReject returns true if this property has a type of
	// "Reject". When true, use the GetActivityStreamsReject and
	// SetActivityStreamsReject methods to access and set this property.
	IsActivityStreamsReject() bool
	// IsActivityStreamsRelationship returns true if this property has a type
	// of "Relationship". When true, use the
	// GetActivityStreamsRelationship and SetActivityStreamsRelationship
	// methods to access and set this property.
	IsActivityStreamsRelationship() bool
	// IsActivityStreamsRemove returns true if this property has a type of
	// "Remove". When true, use the GetActivityStreamsRemove and
	// SetActivityStreamsRemove methods to access and set this property.
	IsActivityStreamsRemove() bool
	// IsActivityStreamsService returns true if this property has a type of
	// "Service". When true, use the GetActivityStreamsService and
	// SetActivityStreamsService methods to access and set this property.
	IsActivityStreamsService() bool
	// IsActivityStreamsTentativeAccept returns true if this property has a
	// type of "TentativeAccept". When true, use the
	// GetActivityStreamsTentativeAccept and
	// SetActivityStreamsTentativeAccept methods to access and set this
	// property.
	IsActivityStreamsTentativeAccept() bool
	// IsActivityStreamsTentativeReject returns true if this property has a
	// type of "TentativeReject". When true, use the
	// GetActivityStreamsTentativeReject and
	// SetActivityStreamsTentativeReject methods to access and set this
	// property.
	IsActivityStreamsTentativeReject() bool
	// IsActivityStreamsTombstone returns true if this property has a type of
	// "Tombstone". When true, use the GetActivityStreamsTombstone and
	// SetActivityStreamsTombstone methods to access and set this property.
	IsActivityStreamsTombstone() bool
	// IsActivityStreamsTravel returns true if this property has a type of
	// "Travel". When true, use the GetActivityStreamsTravel and
	// SetActivityStreamsTravel methods to access and set this property.
	IsActivityStreamsTravel() bool
	// IsActivityStreamsUndo returns true if this property has a type of
	// "Undo". When true, use the GetActivityStreamsUndo and
	// SetActivityStreamsUndo methods to access and set this property.
	IsActivityStreamsUndo() bool
	// IsActivityStreamsUpdate returns true if this property has a type of
	// "Update". When true, use the GetActivityStreamsUpdate and
	// SetActivityStreamsUpdate methods to access and set this property.
	IsActivityStreamsUpdate() bool
	// IsActivityStreamsVideo returns true if this property has a type of
	// "Video". When true, use the GetActivityStreamsVideo and
	// SetActivityStreamsVideo methods to access and set this property.
	IsActivityStreamsVideo() bool
	// IsActivityStreamsView returns true if this property has a type of
	// "View". When true, use the GetActivityStreamsView and
	// SetActivityStreamsView methods to access and set this property.
	IsActivityStreamsView() bool
	// IsForgeFedBranch returns true if this property has a type of "Branch".
	// When true, use the GetForgeFedBranch and SetForgeFedBranch methods
	// to access and set this property.
	IsForgeFedBranch() bool
	// IsForgeFedCommit returns true if this property has a type of "Commit".
	// When true, use the GetForgeFedCommit and SetForgeFedCommit methods
	// to access and set this property.
	IsForgeFedCommit() bool
	// IsForgeFedPush returns true if this property has a type of "Push". When
	// true, use the GetForgeFedPush and SetForgeFedPush methods to access
	// and set this property.
	IsForgeFedPush() bool
	// IsForgeFedRepository returns true if this property has a type of
	// "Repository". When true, use the GetForgeFedRepository and
	// SetForgeFedRepository methods to access and set this property.
	IsForgeFedRepository() bool
	// IsForgeFedTicket returns true if this property has a type of "Ticket".
	// When true, use the GetForgeFedTicket and SetForgeFedTicket methods
	// to access and set this property.
	IsForgeFedTicket() bool
	// IsForgeFedTicketDependency returns true if this property has a type of
	// "TicketDependency". When true, use the GetForgeFedTicketDependency
	// and SetForgeFedTicketDependency methods to access and set this
	// property.
	IsForgeFedTicketDependency() bool
	// IsIRI returns true if this property is an IRI. When true, use GetIRI
	// and SetIRI to access and set this property
	IsIRI() bool
	// IsTootEmoji returns true if this property has a type of "Emoji". When
	// true, use the GetTootEmoji and SetTootEmoji methods to access and
	// set this property.
	IsTootEmoji() bool
	// IsTootIdentityProof returns true if this property has a type of
	// "IdentityProof". When true, use the GetTootIdentityProof and
	// SetTootIdentityProof methods to access and set this property.
	IsTootIdentityProof() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o ForgeFedTracksTicketsForPropertyIterator) bool
	// Name returns the name of this property: "ForgeFedTracksTicketsFor".
	Name() string
	// Next returns the next iterator, or nil if there is no next iterator.
	Next() ForgeFedTracksTicketsForPropertyIterator
	// Prev returns the previous iterator, or nil if there is no previous
	// iterator.
	Prev() ForgeFedTracksTicketsForPropertyIterator
	// SetActivityStreamsAccept sets the value of this property. Calling
	// IsActivityStreamsAccept afterwards returns true.
	SetActivityStreamsAccept(v ActivityStreamsAccept)
	// SetActivityStreamsActivity sets the value of this property. Calling
	// IsActivityStreamsActivity afterwards returns true.
	SetActivityStreamsActivity(v ActivityStreamsActivity)
	// SetActivityStreamsAdd sets the value of this property. Calling
	// IsActivityStreamsAdd afterwards returns true.
	SetActivityStreamsAdd(v ActivityStreamsAdd)
	// SetActivityStreamsAnnounce sets the value of this property. Calling
	// IsActivityStreamsAnnounce afterwards returns true.
	SetActivityStreamsAnnounce(v ActivityStreamsAnnounce)
	// SetActivityStreamsApplication sets the value of this property. Calling
	// IsActivityStreamsApplication afterwards returns true.
	SetActivityStreamsApplication(v ActivityStreamsApplication)
	// SetActivityStreamsArrive sets the value of this property. Calling
	// IsActivityStreamsArrive afterwards returns true.
	SetActivityStreamsArrive(v ActivityStreamsArrive)
	// SetActivityStreamsArticle sets the value of this property. Calling
	// IsActivityStreamsArticle afterwards returns true.
	SetActivityStreamsArticle(v ActivityStreamsArticle)
	// SetActivityStreamsAudio sets the value of this property. Calling
	// IsActivityStreamsAudio afterwards returns true.
	SetActivityStreamsAudio(v ActivityStreamsAudio)
	// SetActivityStreamsBlock sets the value of this property. Calling
	// IsActivityStreamsBlock afterwards returns true.
	SetActivityStreamsBlock(v ActivityStreamsBlock)
	// SetActivityStreamsCollection sets the value of this property. Calling
	// IsActivityStreamsCollection afterwards returns true.
	SetActivityStreamsCollection(v ActivityStreamsCollection)
	// SetActivityStreamsCollectionPage sets the value of this property.
	// Calling IsActivityStreamsCollectionPage afterwards returns true.
	SetActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
	// SetActivityStreamsCreate sets the value of this property. Calling
	// IsActivityStreamsCreate afterwards returns true.
	SetActivityStreamsCreate(v ActivityStreamsCreate)
	// SetActivityStreamsDelete sets the value of this property. Calling
	// IsActivityStreamsDelete afterwards returns true.
	SetActivityStreamsDelete(v ActivityStreamsDelete)
	// SetActivityStreamsDislike sets the value of this property. Calling
	// IsActivityStreamsDislike afterwards returns true.
	SetActivityStreamsDislike(v ActivityStreamsDislike)
	// SetActivityStreamsDocument sets the value of this property. Calling
	// IsActivityStreamsDocument afterwards returns true.
	SetActivityStreamsDocument(v ActivityStreamsDocument)
	// SetActivityStreamsEvent sets the value of this property. Calling
	// IsActivityStreamsEvent afterwards returns true.
	SetActivityStreamsEvent(v ActivityStreamsEvent)
	// SetActivityStreamsFlag sets the value of this property. Calling
	// IsActivityStreamsFlag afterwards returns true.
	SetActivityStreamsFlag(v ActivityStreamsFlag)
	// SetActivityStreamsFollow sets the value of this property. Calling
	// IsActivityStreamsFollow afterwards returns true.
	SetActivityStreamsFollow(v ActivityStreamsFollow)
	// SetActivityStreamsGroup sets the value of this property. Calling
	// IsActivityStreamsGroup afterwards returns true.
	SetActivityStreamsGroup(v ActivityStreamsGroup)
	// SetActivityStreamsIgnore sets the value of this property. Calling
	// IsActivityStreamsIgnore afterwards returns true.
	SetActivityStreamsIgnore(v ActivityStreamsIgnore)
	// SetActivityStreamsImage sets the value of this property. Calling
	// IsActivityStreamsImage afterwards returns true.
	SetActivityStreamsImage(v ActivityStreamsImage)
	// SetActivityStreamsIntransitiveActivity sets the value of this property.
	// Calling IsActivityStreamsIntransitiveActivity afterwards returns
	// true.
	SetActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
	// SetActivityStreamsInvite sets the value of this property. Calling
	// IsActivityStreamsInvite afterwards returns true.
	SetActivityStreamsInvite(v ActivityStreamsInvite)
	// SetActivityStreamsJoin sets the value of this property. Calling
	// IsActivityStreamsJoin afterwards returns true.
	SetActivityStreamsJoin(v ActivityStreamsJoin)
	// SetActivityStreamsLeave sets the value of this property. Calling
	// IsActivityStreamsLeave afterwards returns true.
	SetActivityStreamsLeave(v ActivityStreamsLeave)
	// SetActivityStreamsLike sets the value of this property. Calling
	// IsActivityStreamsLike afterwards returns true.
	SetActivityStreamsLike(v ActivityStreamsLike)
	// SetActivityStreamsListen sets the value of this property. Calling
	// IsActivityStreamsListen afterwards returns true.
	SetActivityStreamsListen(v ActivityStreamsListen)
	// SetActivityStreamsMove sets the value of this property. Calling
	// IsActivityStreamsMove afterwards returns true.
	SetActivityStreamsMove(v ActivityStreamsMove)
	// SetActivityStreamsNote sets the value of this property. Calling
	// IsActivityStreamsNote afterwards returns true.
	SetActivityStreamsNote(v ActivityStreamsNote)
	// SetActivityStreamsObject sets the value of this property. Calling
	// IsActivityStreamsObject afterwards returns true.
	SetActivityStreamsObject(v ActivityStreamsObject)
	// SetActivityStreamsOffer sets the value of this property. Calling
	// IsActivityStreamsOffer afterwards returns true.
	SetActivityStreamsOffer(v ActivityStreamsOffer)
	// SetActivityStreamsOrderedCollection sets the value of this property.
	// Calling IsActivityStreamsOrderedCollection afterwards returns true.
	SetActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// SetActivityStreamsOrderedCollectionPage sets the value of this
	// property. Calling IsActivityStreamsOrderedCollectionPage afterwards
	// returns true.
	SetActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// SetActivityStreamsOrganization sets the value of this property. Calling
	// IsActivityStreamsOrganization afterwards returns true.
	SetActivityStreamsOrganization(v ActivityStreamsOrganization)
	// SetActivityStreamsPage sets the value of this property. Calling
	// IsActivityStreamsPage afterwards returns true.
	SetActivityStreamsPage(v ActivityStreamsPage)
	// SetActivityStreamsPerson sets the value of this property. Calling
	// IsActivityStreamsPerson afterwards returns true.
	SetActivityStreamsPerson(v ActivityStreamsPerson)
	// SetActivityStreamsPlace sets the value of this property. Calling
	// IsActivityStreamsPlace afterwards returns true.
	SetActivityStreamsPlace(v ActivityStreamsPlace)
	// SetActivityStreamsProfile sets the value of this property. Calling
	// IsActivityStreamsProfile afterwards returns true.
	SetActivityStreamsProfile(v ActivityStreamsProfile)
	// SetActivityStreamsQuestion sets the value of this property. Calling
	// IsActivityStreamsQuestion afterwards returns true.
	SetActivityStreamsQuestion(v ActivityStreamsQuestion)
	// SetActivityStreamsRead sets the value of this property. Calling
	// IsActivityStreamsRead afterwards returns true.
	SetActivityStreamsRead(v ActivityStreamsRead)
	// SetActivityStreamsReject sets the value of this property. Calling
	// IsActivityStreamsReject afterwards returns true.
	SetActivityStreamsReject(v ActivityStreamsReject)
	// SetActivityStreamsRelationship sets the value of this property. Calling
	// IsActivityStreamsRelationship afterwards returns true.
	SetActivityStreamsRelationship(v ActivityStreamsRelationship)
	// SetActivityStreamsRemove sets the value of this property. Calling
	// IsActivityStreamsRemove afterwards returns true.
	SetActivityStreamsRemove(v ActivityStreamsRemove)
	// SetActivityStreamsService sets the value of this property. Calling
	// IsActivityStreamsService afterwards returns true.
	SetActivityStreamsService(v ActivityStreamsService)
	// SetActivityStreamsTentativeAccept sets the value of this property.
	// Calling IsActivityStreamsTentativeAccept afterwards returns true.
	SetActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
	// SetActivityStreamsTentativeReject sets the value of this property.
	// Calling IsActivityStreamsTentativeReject afterwards returns true.
	SetActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
	// SetActivityStreamsTombstone sets the value of this property. Calling
	// IsActivityStreamsTombstone afterwards returns true.
	SetActivityStreamsTombstone(v ActivityStreamsTombstone)
	// SetActivityStreamsTravel sets the value of this property. Calling
	// IsActivityStreamsTravel afterwards returns true.
	SetActivityStreamsTravel(v ActivityStreamsTravel)
	// SetActivityStreamsUndo sets the value of this property. Calling
	// IsActivityStreamsUndo afterwards returns true.
	SetActivityStreamsUndo(v ActivityStreamsUndo)
	// SetActivityStreamsUpdate sets the value of this property. Calling
	// IsActivityStreamsUpdate afterwards returns true.
	SetActivityStreamsUpdate(v ActivityStreamsUpdate)
	// SetActivityStreamsVideo sets the value of this property. Calling
	// IsActivityStreamsVideo afterwards returns true.
	SetActivityStreamsVideo(v ActivityStreamsVideo)
	// SetActivityStreamsView sets the value of this property. Calling
	// IsActivityStreamsView afterwards returns true.
	SetActivityStreamsView(v ActivityStreamsView)
	// SetForgeFedBranch sets the value of this property. Calling
	// IsForgeFedBranch afterwards returns true.
	SetForgeFedBranch(v ForgeFedBranch)
	// SetForgeFedCommit sets the value of this property. Calling
	// IsForgeFedCommit afterwards returns true.
	SetForgeFedCommit(v ForgeFedCommit)
	// SetForgeFedPush sets the value of this property. Calling IsForgeFedPush
	// afterwards returns true.
	SetForgeFedPush(v ForgeFedPush)
	// SetForgeFedRepository sets the value of this property. Calling
	// IsForgeFedRepository afterwards returns true.
	SetForgeFedRepository(v ForgeFedRepository)
	// SetForgeFedTicket sets the value of this property. Calling
	// IsForgeFedTicket afterwards returns true.
	SetForgeFedTicket(v ForgeFedTicket)
	// SetForgeFedTicketDependency sets the value of this property. Calling
	// IsForgeFedTicketDependency afterwards returns true.
	SetForgeFedTicketDependency(v ForgeFedTicketDependency)
	// SetIRI sets the value of this property. Calling IsIRI afterwards
	// returns true.
	SetIRI(v *url.URL)
	// SetTootEmoji sets the value of this property. Calling IsTootEmoji
	// afterwards returns true.
	SetTootEmoji(v TootEmoji)
	// SetTootIdentityProof sets the value of this property. Calling
	// IsTootIdentityProof afterwards returns true.
	SetTootIdentityProof(v TootIdentityProof)
	// SetType attempts to set the property for the arbitrary type. Returns an
	// error if it is not a valid type to set on this property.
	SetType(t Type) error
}

ForgeFedTracksTicketsForPropertyIterator represents a single value for the "tracksTicketsFor" property.

type JSONLDIdProperty

type JSONLDIdProperty interface {
	// Clear ensures no value of this property is set. Calling
	// IsXMLSchemaAnyURI afterwards will return false.
	Clear()
	// Get returns the value of this property. When IsXMLSchemaAnyURI returns
	// false, Get will return any arbitrary value.
	Get() *url.URL
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return any arbitrary value.
	GetIRI() *url.URL
	// HasAny returns true if the value or IRI is set.
	HasAny() bool
	// IsIRI returns true if this property is an IRI.
	IsIRI() bool
	// IsXMLSchemaAnyURI returns true if this property is set and not an IRI.
	IsXMLSchemaAnyURI() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o JSONLDIdProperty) bool
	// Name returns the name of this property: "id".
	Name() string
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// Set sets the value of this property. Calling IsXMLSchemaAnyURI
	// afterwards will return true.
	Set(v *url.URL)
	// SetIRI sets the value of this property. Calling IsIRI afterwards will
	// return true.
	SetIRI(v *url.URL)
}

Provides the globally unique identifier for JSON-LD entities.

type JSONLDTypeProperty

type JSONLDTypeProperty interface {
	// AppendIRI appends an IRI value to the back of a list of the property
	// "type"
	AppendIRI(v *url.URL)
	// AppendXMLSchemaAnyURI appends a anyURI value to the back of a list of
	// the property "type". Invalidates iterators that are traversing
	// using Prev.
	AppendXMLSchemaAnyURI(v *url.URL)
	// AppendXMLSchemaString appends a string value to the back of a list of
	// the property "type". Invalidates iterators that are traversing
	// using Prev.
	AppendXMLSchemaString(v string)
	// At returns the property value for the specified index. Panics if the
	// index is out of bounds.
	At(index int) JSONLDTypePropertyIterator
	// Begin returns the first iterator, or nil if empty. Can be used with the
	// iterator's Next method and this property's End method to iterate
	// from front to back through all values.
	Begin() JSONLDTypePropertyIterator
	// Empty returns returns true if there are no elements.
	Empty() bool
	// End returns beyond-the-last iterator, which is nil. Can be used with
	// the iterator's Next method and this property's Begin method to
	// iterate from front to back through all values.
	End() JSONLDTypePropertyIterator
	// Insert inserts an IRI value at the specified index for a property
	// "type". Existing elements at that index and higher are shifted back
	// once. Invalidates all iterators.
	InsertIRI(idx int, v *url.URL)
	// InsertXMLSchemaAnyURI inserts a anyURI value at the specified index for
	// a property "type". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertXMLSchemaAnyURI(idx int, v *url.URL)
	// InsertXMLSchemaString inserts a string value at the specified index for
	// a property "type". Existing elements at that index and higher are
	// shifted back once. Invalidates all iterators.
	InsertXMLSchemaString(idx int, v string)
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API method specifically needed only for alternate
	// implementations for go-fed. Applications should not use this
	// method. Panics if the index is out of bounds.
	KindIndex(idx int) int
	// Len returns the number of values that exist for the "type" property.
	Len() (length int)
	// Less computes whether another property is less than this one. Mixing
	// types results in a consistent but arbitrary ordering
	Less(i, j int) bool
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o JSONLDTypeProperty) bool
	// Name returns the name of this property ("type") with any alias.
	Name() string
	// PrependIRI prepends an IRI value to the front of a list of the property
	// "type".
	PrependIRI(v *url.URL)
	// PrependXMLSchemaAnyURI prepends a anyURI value to the front of a list
	// of the property "type". Invalidates all iterators.
	PrependXMLSchemaAnyURI(v *url.URL)
	// PrependXMLSchemaString prepends a string value to the front of a list
	// of the property "type". Invalidates all iterators.
	PrependXMLSchemaString(v string)
	// Remove deletes an element at the specified index from a list of the
	// property "type", regardless of its type. Panics if the index is out
	// of bounds. Invalidates all iterators.
	Remove(idx int)
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// SetIRI sets an IRI value to be at the specified index for the property
	// "type". Panics if the index is out of bounds.
	SetIRI(idx int, v *url.URL)
	// SetXMLSchemaAnyURI sets a anyURI value to be at the specified index for
	// the property "type". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetXMLSchemaAnyURI(idx int, v *url.URL)
	// SetXMLSchemaString sets a string value to be at the specified index for
	// the property "type". Panics if the index is out of bounds.
	// Invalidates all iterators.
	SetXMLSchemaString(idx int, v string)
	// Swap swaps the location of values at two indices for the "type"
	// property.
	Swap(i, j int)
}

Identifies the schema type(s) of the JSON-LD entity.

type JSONLDTypePropertyIterator

type JSONLDTypePropertyIterator interface {
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return an arbitrary value.
	GetIRI() *url.URL
	// GetXMLSchemaAnyURI returns the value of this property. When
	// IsXMLSchemaAnyURI returns false, GetXMLSchemaAnyURI will return an
	// arbitrary value.
	GetXMLSchemaAnyURI() *url.URL
	// GetXMLSchemaString returns the value of this property. When
	// IsXMLSchemaString returns false, GetXMLSchemaString will return an
	// arbitrary value.
	GetXMLSchemaString() string
	// HasAny returns true if any of the different values is set.
	HasAny() bool
	// IsIRI returns true if this property is an IRI. When true, use GetIRI
	// and SetIRI to access and set this property
	IsIRI() bool
	// IsXMLSchemaAnyURI returns true if this property has a type of "anyURI".
	// When true, use the GetXMLSchemaAnyURI and SetXMLSchemaAnyURI
	// methods to access and set this property.
	IsXMLSchemaAnyURI() bool
	// IsXMLSchemaString returns true if this property has a type of "string".
	// When true, use the GetXMLSchemaString and SetXMLSchemaString
	// methods to access and set this property.
	IsXMLSchemaString() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o JSONLDTypePropertyIterator) bool
	// Name returns the name of this property: "JSONLDType".
	Name() string
	// Next returns the next iterator, or nil if there is no next iterator.
	Next() JSONLDTypePropertyIterator
	// Prev returns the previous iterator, or nil if there is no previous
	// iterator.
	Prev() JSONLDTypePropertyIterator
	// SetIRI sets the value of this property. Calling IsIRI afterwards
	// returns true.
	SetIRI(v *url.URL)
	// SetXMLSchemaAnyURI sets the value of this property. Calling
	// IsXMLSchemaAnyURI afterwards returns true.
	SetXMLSchemaAnyURI(v *url.URL)
	// SetXMLSchemaString sets the value of this property. Calling
	// IsXMLSchemaString afterwards returns true.
	SetXMLSchemaString(v string)
}

JSONLDTypePropertyIterator represents a single value for the "type" property.

type TootBlurhashProperty

type TootBlurhashProperty interface {
	// Clear ensures no value of this property is set. Calling
	// IsXMLSchemaString afterwards will return false.
	Clear()
	// Get returns the value of this property. When IsXMLSchemaString returns
	// false, Get will return any arbitrary value.
	Get() string
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return any arbitrary value.
	GetIRI() *url.URL
	// HasAny returns true if the value or IRI is set.
	HasAny() bool
	// IsIRI returns true if this property is an IRI.
	IsIRI() bool
	// IsXMLSchemaString returns true if this property is set and not an IRI.
	IsXMLSchemaString() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o TootBlurhashProperty) bool
	// Name returns the name of this property: "blurhash".
	Name() string
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// Set sets the value of this property. Calling IsXMLSchemaString
	// afterwards will return true.
	Set(v string)
	// SetIRI sets the value of this property. Calling IsIRI afterwards will
	// return true.
	SetIRI(v *url.URL)
}

null

type TootDiscoverableProperty

type TootDiscoverableProperty interface {
	// Clear ensures no value of this property is set. Calling
	// IsXMLSchemaBoolean afterwards will return false.
	Clear()
	// Get returns the value of this property. When IsXMLSchemaBoolean returns
	// false, Get will return any arbitrary value.
	Get() bool
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return any arbitrary value.
	GetIRI() *url.URL
	// HasAny returns true if the value or IRI is set.
	HasAny() bool
	// IsIRI returns true if this property is an IRI.
	IsIRI() bool
	// IsXMLSchemaBoolean returns true if this property is set and not an IRI.
	IsXMLSchemaBoolean() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o TootDiscoverableProperty) bool
	// Name returns the name of this property: "discoverable".
	Name() string
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// Set sets the value of this property. Calling IsXMLSchemaBoolean
	// afterwards will return true.
	Set(v bool)
	// SetIRI sets the value of this property. Calling IsIRI afterwards will
	// return true.
	SetIRI(v *url.URL)
}

null

type TootEmoji

type TootEmoji interface {
	// GetActivityStreamsAltitude returns the "altitude" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAltitude() ActivityStreamsAltitudeProperty
	// GetActivityStreamsAttachment returns the "attachment" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAttachment() ActivityStreamsAttachmentProperty
	// GetActivityStreamsAttributedTo returns the "attributedTo" property if
	// it exists, and nil otherwise.
	GetActivityStreamsAttributedTo() ActivityStreamsAttributedToProperty
	// GetActivityStreamsAudience returns the "audience" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAudience() ActivityStreamsAudienceProperty
	// GetActivityStreamsBcc returns the "bcc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBcc() ActivityStreamsBccProperty
	// GetActivityStreamsBto returns the "bto" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBto() ActivityStreamsBtoProperty
	// GetActivityStreamsCc returns the "cc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsCc() ActivityStreamsCcProperty
	// GetActivityStreamsContent returns the "content" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContent() ActivityStreamsContentProperty
	// GetActivityStreamsContext returns the "context" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContext() ActivityStreamsContextProperty
	// GetActivityStreamsDuration returns the "duration" property if it
	// exists, and nil otherwise.
	GetActivityStreamsDuration() ActivityStreamsDurationProperty
	// GetActivityStreamsEndTime returns the "endTime" property if it exists,
	// and nil otherwise.
	GetActivityStreamsEndTime() ActivityStreamsEndTimeProperty
	// GetActivityStreamsGenerator returns the "generator" property if it
	// exists, and nil otherwise.
	GetActivityStreamsGenerator() ActivityStreamsGeneratorProperty
	// GetActivityStreamsIcon returns the "icon" property if it exists, and
	// nil otherwise.
	GetActivityStreamsIcon() ActivityStreamsIconProperty
	// GetActivityStreamsImage returns the "image" property if it exists, and
	// nil otherwise.
	GetActivityStreamsImage() ActivityStreamsImageProperty
	// GetActivityStreamsInReplyTo returns the "inReplyTo" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInReplyTo() ActivityStreamsInReplyToProperty
	// GetActivityStreamsLikes returns the "likes" property if it exists, and
	// nil otherwise.
	GetActivityStreamsLikes() ActivityStreamsLikesProperty
	// GetActivityStreamsLocation returns the "location" property if it
	// exists, and nil otherwise.
	GetActivityStreamsLocation() ActivityStreamsLocationProperty
	// GetActivityStreamsMediaType returns the "mediaType" property if it
	// exists, and nil otherwise.
	GetActivityStreamsMediaType() ActivityStreamsMediaTypeProperty
	// GetActivityStreamsName returns the "name" property if it exists, and
	// nil otherwise.
	GetActivityStreamsName() ActivityStreamsNameProperty
	// GetActivityStreamsObject returns the "object" property if it exists,
	// and nil otherwise.
	GetActivityStreamsObject() ActivityStreamsObjectProperty
	// GetActivityStreamsPreview returns the "preview" property if it exists,
	// and nil otherwise.
	GetActivityStreamsPreview() ActivityStreamsPreviewProperty
	// GetActivityStreamsPublished returns the "published" property if it
	// exists, and nil otherwise.
	GetActivityStreamsPublished() ActivityStreamsPublishedProperty
	// GetActivityStreamsReplies returns the "replies" property if it exists,
	// and nil otherwise.
	GetActivityStreamsReplies() ActivityStreamsRepliesProperty
	// GetActivityStreamsShares returns the "shares" property if it exists,
	// and nil otherwise.
	GetActivityStreamsShares() ActivityStreamsSharesProperty
	// GetActivityStreamsSource returns the "source" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSource() ActivityStreamsSourceProperty
	// GetActivityStreamsStartTime returns the "startTime" property if it
	// exists, and nil otherwise.
	GetActivityStreamsStartTime() ActivityStreamsStartTimeProperty
	// GetActivityStreamsSummary returns the "summary" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSummary() ActivityStreamsSummaryProperty
	// GetActivityStreamsTag returns the "tag" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTag() ActivityStreamsTagProperty
	// GetActivityStreamsTo returns the "to" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTo() ActivityStreamsToProperty
	// GetActivityStreamsUpdated returns the "updated" property if it exists,
	// and nil otherwise.
	GetActivityStreamsUpdated() ActivityStreamsUpdatedProperty
	// GetActivityStreamsUrl returns the "url" property if it exists, and nil
	// otherwise.
	GetActivityStreamsUrl() ActivityStreamsUrlProperty
	// GetForgeFedTeam returns the "team" property if it exists, and nil
	// otherwise.
	GetForgeFedTeam() ForgeFedTeamProperty
	// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
	// it exists, and nil otherwise.
	GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
	// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
	// it exists, and nil otherwise.
	GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
	// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
	GetJSONLDId() JSONLDIdProperty
	// GetJSONLDType returns the "type" property if it exists, and nil
	// otherwise.
	GetJSONLDType() JSONLDTypeProperty
	// GetTypeName returns the name of this type.
	GetTypeName() string
	// GetUnknownProperties returns the unknown properties for the Emoji type.
	// Note that this should not be used by app developers. It is only
	// used to help determine which implementation is LessThan the other.
	// Developers who are creating a different implementation of this
	// type's interface can use this method in their LessThan
	// implementation, but routine ActivityPub applications should not use
	// this to bypass the code generation tool.
	GetUnknownProperties() map[string]interface{}
	// IsExtending returns true if the Emoji type extends from the other type.
	IsExtending(other Type) bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this type and the specific properties that are set. The value
	// in the map is the alias used to import the type and its properties.
	JSONLDContext() map[string]string
	// LessThan computes if this Emoji is lesser, with an arbitrary but stable
	// determination.
	LessThan(o TootEmoji) bool
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format.
	Serialize() (map[string]interface{}, error)
	// SetActivityStreamsAltitude sets the "altitude" property.
	SetActivityStreamsAltitude(i ActivityStreamsAltitudeProperty)
	// SetActivityStreamsAttachment sets the "attachment" property.
	SetActivityStreamsAttachment(i ActivityStreamsAttachmentProperty)
	// SetActivityStreamsAttributedTo sets the "attributedTo" property.
	SetActivityStreamsAttributedTo(i ActivityStreamsAttributedToProperty)
	// SetActivityStreamsAudience sets the "audience" property.
	SetActivityStreamsAudience(i ActivityStreamsAudienceProperty)
	// SetActivityStreamsBcc sets the "bcc" property.
	SetActivityStreamsBcc(i ActivityStreamsBccProperty)
	// SetActivityStreamsBto sets the "bto" property.
	SetActivityStreamsBto(i ActivityStreamsBtoProperty)
	// SetActivityStreamsCc sets the "cc" property.
	SetActivityStreamsCc(i ActivityStreamsCcProperty)
	// SetActivityStreamsContent sets the "content" property.
	SetActivityStreamsContent(i ActivityStreamsContentProperty)
	// SetActivityStreamsContext sets the "context" property.
	SetActivityStreamsContext(i ActivityStreamsContextProperty)
	// SetActivityStreamsDuration sets the "duration" property.
	SetActivityStreamsDuration(i ActivityStreamsDurationProperty)
	// SetActivityStreamsEndTime sets the "endTime" property.
	SetActivityStreamsEndTime(i ActivityStreamsEndTimeProperty)
	// SetActivityStreamsGenerator sets the "generator" property.
	SetActivityStreamsGenerator(i ActivityStreamsGeneratorProperty)
	// SetActivityStreamsIcon sets the "icon" property.
	SetActivityStreamsIcon(i ActivityStreamsIconProperty)
	// SetActivityStreamsImage sets the "image" property.
	SetActivityStreamsImage(i ActivityStreamsImageProperty)
	// SetActivityStreamsInReplyTo sets the "inReplyTo" property.
	SetActivityStreamsInReplyTo(i ActivityStreamsInReplyToProperty)
	// SetActivityStreamsLikes sets the "likes" property.
	SetActivityStreamsLikes(i ActivityStreamsLikesProperty)
	// SetActivityStreamsLocation sets the "location" property.
	SetActivityStreamsLocation(i ActivityStreamsLocationProperty)
	// SetActivityStreamsMediaType sets the "mediaType" property.
	SetActivityStreamsMediaType(i ActivityStreamsMediaTypeProperty)
	// SetActivityStreamsName sets the "name" property.
	SetActivityStreamsName(i ActivityStreamsNameProperty)
	// SetActivityStreamsObject sets the "object" property.
	SetActivityStreamsObject(i ActivityStreamsObjectProperty)
	// SetActivityStreamsPreview sets the "preview" property.
	SetActivityStreamsPreview(i ActivityStreamsPreviewProperty)
	// SetActivityStreamsPublished sets the "published" property.
	SetActivityStreamsPublished(i ActivityStreamsPublishedProperty)
	// SetActivityStreamsReplies sets the "replies" property.
	SetActivityStreamsReplies(i ActivityStreamsRepliesProperty)
	// SetActivityStreamsShares sets the "shares" property.
	SetActivityStreamsShares(i ActivityStreamsSharesProperty)
	// SetActivityStreamsSource sets the "source" property.
	SetActivityStreamsSource(i ActivityStreamsSourceProperty)
	// SetActivityStreamsStartTime sets the "startTime" property.
	SetActivityStreamsStartTime(i ActivityStreamsStartTimeProperty)
	// SetActivityStreamsSummary sets the "summary" property.
	SetActivityStreamsSummary(i ActivityStreamsSummaryProperty)
	// SetActivityStreamsTag sets the "tag" property.
	SetActivityStreamsTag(i ActivityStreamsTagProperty)
	// SetActivityStreamsTo sets the "to" property.
	SetActivityStreamsTo(i ActivityStreamsToProperty)
	// SetActivityStreamsUpdated sets the "updated" property.
	SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
	// SetActivityStreamsUrl sets the "url" property.
	SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
	// SetForgeFedTeam sets the "team" property.
	SetForgeFedTeam(i ForgeFedTeamProperty)
	// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
	SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
	// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
	SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
	// SetJSONLDId sets the "id" property.
	SetJSONLDId(i JSONLDIdProperty)
	// SetJSONLDType sets the "type" property.
	SetJSONLDType(i JSONLDTypeProperty)
	// VocabularyURI returns the vocabulary's URI as a string.
	VocabularyURI() string
}
{
  "content": "Hello world :Kappa:",
  "id": "https://example.com/@alice/hello-world",
  "tag": [
    {
      "icon": {
        "mediaType": "image/png",
        "type": "Image",
        "url": "https://example.com/files/kappa.png"
      },
      "id": "https://example.com/emoji/123",
      "name": ":Kappa:",
      "type": "Emoji"
    }
  ],
  "type": "Note"
}

type TootFeaturedProperty

type TootFeaturedProperty interface {
	// Clear ensures no value of this property is set. Calling HasAny or any
	// of the 'Is' methods afterwards will return false.
	Clear()
	// GetActivityStreamsOrderedCollection returns the value of this property.
	// When IsActivityStreamsOrderedCollection returns false,
	// GetActivityStreamsOrderedCollection will return an arbitrary value.
	GetActivityStreamsOrderedCollection() ActivityStreamsOrderedCollection
	// GetActivityStreamsOrderedCollectionPage returns the value of this
	// property. When IsActivityStreamsOrderedCollectionPage returns
	// false, GetActivityStreamsOrderedCollectionPage will return an
	// arbitrary value.
	GetActivityStreamsOrderedCollectionPage() ActivityStreamsOrderedCollectionPage
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return an arbitrary value.
	GetIRI() *url.URL
	// GetType returns the value in this property as a Type. Returns nil if
	// the value is not an ActivityStreams type, such as an IRI or another
	// value.
	GetType() Type
	// HasAny returns true if any of the different values is set.
	HasAny() bool
	// IsActivityStreamsOrderedCollection returns true if this property has a
	// type of "OrderedCollection". When true, use the
	// GetActivityStreamsOrderedCollection and
	// SetActivityStreamsOrderedCollection methods to access and set this
	// property.
	IsActivityStreamsOrderedCollection() bool
	// IsActivityStreamsOrderedCollectionPage returns true if this property
	// has a type of "OrderedCollectionPage". When true, use the
	// GetActivityStreamsOrderedCollectionPage and
	// SetActivityStreamsOrderedCollectionPage methods to access and set
	// this property.
	IsActivityStreamsOrderedCollectionPage() bool
	// IsIRI returns true if this property is an IRI. When true, use GetIRI
	// and SetIRI to access and set this property
	IsIRI() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o TootFeaturedProperty) bool
	// Name returns the name of this property: "featured".
	Name() string
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// SetActivityStreamsOrderedCollection sets the value of this property.
	// Calling IsActivityStreamsOrderedCollection afterwards returns true.
	SetActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
	// SetActivityStreamsOrderedCollectionPage sets the value of this
	// property. Calling IsActivityStreamsOrderedCollectionPage afterwards
	// returns true.
	SetActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
	// SetIRI sets the value of this property. Calling IsIRI afterwards
	// returns true.
	SetIRI(v *url.URL)
	// SetType attempts to set the property for the arbitrary type. Returns an
	// error if it is not a valid type to set on this property.
	SetType(t Type) error
}

null

type TootIdentityProof

type TootIdentityProof interface {
	// GetActivityStreamsAltitude returns the "altitude" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAltitude() ActivityStreamsAltitudeProperty
	// GetActivityStreamsAttachment returns the "attachment" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAttachment() ActivityStreamsAttachmentProperty
	// GetActivityStreamsAttributedTo returns the "attributedTo" property if
	// it exists, and nil otherwise.
	GetActivityStreamsAttributedTo() ActivityStreamsAttributedToProperty
	// GetActivityStreamsAudience returns the "audience" property if it
	// exists, and nil otherwise.
	GetActivityStreamsAudience() ActivityStreamsAudienceProperty
	// GetActivityStreamsBcc returns the "bcc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBcc() ActivityStreamsBccProperty
	// GetActivityStreamsBto returns the "bto" property if it exists, and nil
	// otherwise.
	GetActivityStreamsBto() ActivityStreamsBtoProperty
	// GetActivityStreamsCc returns the "cc" property if it exists, and nil
	// otherwise.
	GetActivityStreamsCc() ActivityStreamsCcProperty
	// GetActivityStreamsContent returns the "content" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContent() ActivityStreamsContentProperty
	// GetActivityStreamsContext returns the "context" property if it exists,
	// and nil otherwise.
	GetActivityStreamsContext() ActivityStreamsContextProperty
	// GetActivityStreamsDuration returns the "duration" property if it
	// exists, and nil otherwise.
	GetActivityStreamsDuration() ActivityStreamsDurationProperty
	// GetActivityStreamsEndTime returns the "endTime" property if it exists,
	// and nil otherwise.
	GetActivityStreamsEndTime() ActivityStreamsEndTimeProperty
	// GetActivityStreamsGenerator returns the "generator" property if it
	// exists, and nil otherwise.
	GetActivityStreamsGenerator() ActivityStreamsGeneratorProperty
	// GetActivityStreamsIcon returns the "icon" property if it exists, and
	// nil otherwise.
	GetActivityStreamsIcon() ActivityStreamsIconProperty
	// GetActivityStreamsImage returns the "image" property if it exists, and
	// nil otherwise.
	GetActivityStreamsImage() ActivityStreamsImageProperty
	// GetActivityStreamsInReplyTo returns the "inReplyTo" property if it
	// exists, and nil otherwise.
	GetActivityStreamsInReplyTo() ActivityStreamsInReplyToProperty
	// GetActivityStreamsLikes returns the "likes" property if it exists, and
	// nil otherwise.
	GetActivityStreamsLikes() ActivityStreamsLikesProperty
	// GetActivityStreamsLocation returns the "location" property if it
	// exists, and nil otherwise.
	GetActivityStreamsLocation() ActivityStreamsLocationProperty
	// GetActivityStreamsMediaType returns the "mediaType" property if it
	// exists, and nil otherwise.
	GetActivityStreamsMediaType() ActivityStreamsMediaTypeProperty
	// GetActivityStreamsName returns the "name" property if it exists, and
	// nil otherwise.
	GetActivityStreamsName() ActivityStreamsNameProperty
	// GetActivityStreamsObject returns the "object" property if it exists,
	// and nil otherwise.
	GetActivityStreamsObject() ActivityStreamsObjectProperty
	// GetActivityStreamsPreview returns the "preview" property if it exists,
	// and nil otherwise.
	GetActivityStreamsPreview() ActivityStreamsPreviewProperty
	// GetActivityStreamsPublished returns the "published" property if it
	// exists, and nil otherwise.
	GetActivityStreamsPublished() ActivityStreamsPublishedProperty
	// GetActivityStreamsReplies returns the "replies" property if it exists,
	// and nil otherwise.
	GetActivityStreamsReplies() ActivityStreamsRepliesProperty
	// GetActivityStreamsShares returns the "shares" property if it exists,
	// and nil otherwise.
	GetActivityStreamsShares() ActivityStreamsSharesProperty
	// GetActivityStreamsSource returns the "source" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSource() ActivityStreamsSourceProperty
	// GetActivityStreamsStartTime returns the "startTime" property if it
	// exists, and nil otherwise.
	GetActivityStreamsStartTime() ActivityStreamsStartTimeProperty
	// GetActivityStreamsSummary returns the "summary" property if it exists,
	// and nil otherwise.
	GetActivityStreamsSummary() ActivityStreamsSummaryProperty
	// GetActivityStreamsTag returns the "tag" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTag() ActivityStreamsTagProperty
	// GetActivityStreamsTo returns the "to" property if it exists, and nil
	// otherwise.
	GetActivityStreamsTo() ActivityStreamsToProperty
	// GetActivityStreamsUpdated returns the "updated" property if it exists,
	// and nil otherwise.
	GetActivityStreamsUpdated() ActivityStreamsUpdatedProperty
	// GetActivityStreamsUrl returns the "url" property if it exists, and nil
	// otherwise.
	GetActivityStreamsUrl() ActivityStreamsUrlProperty
	// GetForgeFedTeam returns the "team" property if it exists, and nil
	// otherwise.
	GetForgeFedTeam() ForgeFedTeamProperty
	// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
	// it exists, and nil otherwise.
	GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
	// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
	// it exists, and nil otherwise.
	GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
	// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
	GetJSONLDId() JSONLDIdProperty
	// GetJSONLDType returns the "type" property if it exists, and nil
	// otherwise.
	GetJSONLDType() JSONLDTypeProperty
	// GetTootSignatureAlgorithm returns the "signatureAlgorithm" property if
	// it exists, and nil otherwise.
	GetTootSignatureAlgorithm() TootSignatureAlgorithmProperty
	// GetTootSignatureValue returns the "signatureValue" property if it
	// exists, and nil otherwise.
	GetTootSignatureValue() TootSignatureValueProperty
	// GetTypeName returns the name of this type.
	GetTypeName() string
	// GetUnknownProperties returns the unknown properties for the
	// IdentityProof type. Note that this should not be used by app
	// developers. It is only used to help determine which implementation
	// is LessThan the other. Developers who are creating a different
	// implementation of this type's interface can use this method in
	// their LessThan implementation, but routine ActivityPub applications
	// should not use this to bypass the code generation tool.
	GetUnknownProperties() map[string]interface{}
	// IsExtending returns true if the IdentityProof type extends from the
	// other type.
	IsExtending(other Type) bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this type and the specific properties that are set. The value
	// in the map is the alias used to import the type and its properties.
	JSONLDContext() map[string]string
	// LessThan computes if this IdentityProof is lesser, with an arbitrary
	// but stable determination.
	LessThan(o TootIdentityProof) bool
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format.
	Serialize() (map[string]interface{}, error)
	// SetActivityStreamsAltitude sets the "altitude" property.
	SetActivityStreamsAltitude(i ActivityStreamsAltitudeProperty)
	// SetActivityStreamsAttachment sets the "attachment" property.
	SetActivityStreamsAttachment(i ActivityStreamsAttachmentProperty)
	// SetActivityStreamsAttributedTo sets the "attributedTo" property.
	SetActivityStreamsAttributedTo(i ActivityStreamsAttributedToProperty)
	// SetActivityStreamsAudience sets the "audience" property.
	SetActivityStreamsAudience(i ActivityStreamsAudienceProperty)
	// SetActivityStreamsBcc sets the "bcc" property.
	SetActivityStreamsBcc(i ActivityStreamsBccProperty)
	// SetActivityStreamsBto sets the "bto" property.
	SetActivityStreamsBto(i ActivityStreamsBtoProperty)
	// SetActivityStreamsCc sets the "cc" property.
	SetActivityStreamsCc(i ActivityStreamsCcProperty)
	// SetActivityStreamsContent sets the "content" property.
	SetActivityStreamsContent(i ActivityStreamsContentProperty)
	// SetActivityStreamsContext sets the "context" property.
	SetActivityStreamsContext(i ActivityStreamsContextProperty)
	// SetActivityStreamsDuration sets the "duration" property.
	SetActivityStreamsDuration(i ActivityStreamsDurationProperty)
	// SetActivityStreamsEndTime sets the "endTime" property.
	SetActivityStreamsEndTime(i ActivityStreamsEndTimeProperty)
	// SetActivityStreamsGenerator sets the "generator" property.
	SetActivityStreamsGenerator(i ActivityStreamsGeneratorProperty)
	// SetActivityStreamsIcon sets the "icon" property.
	SetActivityStreamsIcon(i ActivityStreamsIconProperty)
	// SetActivityStreamsImage sets the "image" property.
	SetActivityStreamsImage(i ActivityStreamsImageProperty)
	// SetActivityStreamsInReplyTo sets the "inReplyTo" property.
	SetActivityStreamsInReplyTo(i ActivityStreamsInReplyToProperty)
	// SetActivityStreamsLikes sets the "likes" property.
	SetActivityStreamsLikes(i ActivityStreamsLikesProperty)
	// SetActivityStreamsLocation sets the "location" property.
	SetActivityStreamsLocation(i ActivityStreamsLocationProperty)
	// SetActivityStreamsMediaType sets the "mediaType" property.
	SetActivityStreamsMediaType(i ActivityStreamsMediaTypeProperty)
	// SetActivityStreamsName sets the "name" property.
	SetActivityStreamsName(i ActivityStreamsNameProperty)
	// SetActivityStreamsObject sets the "object" property.
	SetActivityStreamsObject(i ActivityStreamsObjectProperty)
	// SetActivityStreamsPreview sets the "preview" property.
	SetActivityStreamsPreview(i ActivityStreamsPreviewProperty)
	// SetActivityStreamsPublished sets the "published" property.
	SetActivityStreamsPublished(i ActivityStreamsPublishedProperty)
	// SetActivityStreamsReplies sets the "replies" property.
	SetActivityStreamsReplies(i ActivityStreamsRepliesProperty)
	// SetActivityStreamsShares sets the "shares" property.
	SetActivityStreamsShares(i ActivityStreamsSharesProperty)
	// SetActivityStreamsSource sets the "source" property.
	SetActivityStreamsSource(i ActivityStreamsSourceProperty)
	// SetActivityStreamsStartTime sets the "startTime" property.
	SetActivityStreamsStartTime(i ActivityStreamsStartTimeProperty)
	// SetActivityStreamsSummary sets the "summary" property.
	SetActivityStreamsSummary(i ActivityStreamsSummaryProperty)
	// SetActivityStreamsTag sets the "tag" property.
	SetActivityStreamsTag(i ActivityStreamsTagProperty)
	// SetActivityStreamsTo sets the "to" property.
	SetActivityStreamsTo(i ActivityStreamsToProperty)
	// SetActivityStreamsUpdated sets the "updated" property.
	SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
	// SetActivityStreamsUrl sets the "url" property.
	SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
	// SetForgeFedTeam sets the "team" property.
	SetForgeFedTeam(i ForgeFedTeamProperty)
	// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
	SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
	// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
	SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
	// SetJSONLDId sets the "id" property.
	SetJSONLDId(i JSONLDIdProperty)
	// SetJSONLDType sets the "type" property.
	SetJSONLDType(i JSONLDTypeProperty)
	// SetTootSignatureAlgorithm sets the "signatureAlgorithm" property.
	SetTootSignatureAlgorithm(i TootSignatureAlgorithmProperty)
	// SetTootSignatureValue sets the "signatureValue" property.
	SetTootSignatureValue(i TootSignatureValueProperty)
	// VocabularyURI returns the vocabulary's URI as a string.
	VocabularyURI() string
}

null

type TootSignatureAlgorithmProperty

type TootSignatureAlgorithmProperty interface {
	// Clear ensures no value of this property is set. Calling
	// IsXMLSchemaString afterwards will return false.
	Clear()
	// Get returns the value of this property. When IsXMLSchemaString returns
	// false, Get will return any arbitrary value.
	Get() string
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return any arbitrary value.
	GetIRI() *url.URL
	// HasAny returns true if the value or IRI is set.
	HasAny() bool
	// IsIRI returns true if this property is an IRI.
	IsIRI() bool
	// IsXMLSchemaString returns true if this property is set and not an IRI.
	IsXMLSchemaString() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o TootSignatureAlgorithmProperty) bool
	// Name returns the name of this property: "signatureAlgorithm".
	Name() string
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// Set sets the value of this property. Calling IsXMLSchemaString
	// afterwards will return true.
	Set(v string)
	// SetIRI sets the value of this property. Calling IsIRI afterwards will
	// return true.
	SetIRI(v *url.URL)
}

null

type TootSignatureValueProperty

type TootSignatureValueProperty interface {
	// Clear ensures no value of this property is set. Calling
	// IsXMLSchemaString afterwards will return false.
	Clear()
	// Get returns the value of this property. When IsXMLSchemaString returns
	// false, Get will return any arbitrary value.
	Get() string
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return any arbitrary value.
	GetIRI() *url.URL
	// HasAny returns true if the value or IRI is set.
	HasAny() bool
	// IsIRI returns true if this property is an IRI.
	IsIRI() bool
	// IsXMLSchemaString returns true if this property is set and not an IRI.
	IsXMLSchemaString() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o TootSignatureValueProperty) bool
	// Name returns the name of this property: "signatureValue".
	Name() string
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// Set sets the value of this property. Calling IsXMLSchemaString
	// afterwards will return true.
	Set(v string)
	// SetIRI sets the value of this property. Calling IsIRI afterwards will
	// return true.
	SetIRI(v *url.URL)
}

null

type TootVotersCountProperty

type TootVotersCountProperty interface {
	// Clear ensures no value of this property is set. Calling
	// IsXMLSchemaNonNegativeInteger afterwards will return false.
	Clear()
	// Get returns the value of this property. When
	// IsXMLSchemaNonNegativeInteger returns false, Get will return any
	// arbitrary value.
	Get() int
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return any arbitrary value.
	GetIRI() *url.URL
	// HasAny returns true if the value or IRI is set.
	HasAny() bool
	// IsIRI returns true if this property is an IRI.
	IsIRI() bool
	// IsXMLSchemaNonNegativeInteger returns true if this property is set and
	// not an IRI.
	IsXMLSchemaNonNegativeInteger() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o TootVotersCountProperty) bool
	// Name returns the name of this property: "votersCount".
	Name() string
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// Set sets the value of this property. Calling
	// IsXMLSchemaNonNegativeInteger afterwards will return true.
	Set(v int)
	// SetIRI sets the value of this property. Calling IsIRI afterwards will
	// return true.
	SetIRI(v *url.URL)
}

null

type Type

type Type interface {
	// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
	GetJSONLDId() JSONLDIdProperty
	// GetTypeName returns the ActivityStreams type name.
	GetTypeName() string
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format.
	Serialize() (map[string]interface{}, error)
	// SetJSONLDId sets the "id" property.
	SetJSONLDId(JSONLDIdProperty)
	// VocabularyURI returns the vocabulary's URI as a string.
	VocabularyURI() string
}

Type represents an ActivityStreams type.

type W3IDSecurityV1OwnerProperty

type W3IDSecurityV1OwnerProperty interface {
	// Clear ensures no value of this property is set. Calling
	// IsXMLSchemaAnyURI afterwards will return false.
	Clear()
	// Get returns the value of this property. When IsXMLSchemaAnyURI returns
	// false, Get will return any arbitrary value.
	Get() *url.URL
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return any arbitrary value.
	GetIRI() *url.URL
	// HasAny returns true if the value or IRI is set.
	HasAny() bool
	// IsIRI returns true if this property is an IRI.
	IsIRI() bool
	// IsXMLSchemaAnyURI returns true if this property is set and not an IRI.
	IsXMLSchemaAnyURI() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o W3IDSecurityV1OwnerProperty) bool
	// Name returns the name of this property: "owner".
	Name() string
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// Set sets the value of this property. Calling IsXMLSchemaAnyURI
	// afterwards will return true.
	Set(v *url.URL)
	// SetIRI sets the value of this property. Calling IsIRI afterwards will
	// return true.
	SetIRI(v *url.URL)
}

The owner of the public key for an ActivityStreams actor

type W3IDSecurityV1PublicKey

type W3IDSecurityV1PublicKey interface {
	// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
	GetJSONLDId() JSONLDIdProperty
	// GetTypeName returns the name of this type.
	GetTypeName() string
	// GetUnknownProperties returns the unknown properties for the PublicKey
	// type. Note that this should not be used by app developers. It is
	// only used to help determine which implementation is LessThan the
	// other. Developers who are creating a different implementation of
	// this type's interface can use this method in their LessThan
	// implementation, but routine ActivityPub applications should not use
	// this to bypass the code generation tool.
	GetUnknownProperties() map[string]interface{}
	// GetW3IDSecurityV1Owner returns the "owner" property if it exists, and
	// nil otherwise.
	GetW3IDSecurityV1Owner() W3IDSecurityV1OwnerProperty
	// GetW3IDSecurityV1PublicKeyPem returns the "publicKeyPem" property if it
	// exists, and nil otherwise.
	GetW3IDSecurityV1PublicKeyPem() W3IDSecurityV1PublicKeyPemProperty
	// IsExtending returns true if the PublicKey type extends from the other
	// type.
	IsExtending(other Type) bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this type and the specific properties that are set. The value
	// in the map is the alias used to import the type and its properties.
	JSONLDContext() map[string]string
	// LessThan computes if this PublicKey is lesser, with an arbitrary but
	// stable determination.
	LessThan(o W3IDSecurityV1PublicKey) bool
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format.
	Serialize() (map[string]interface{}, error)
	// SetJSONLDId sets the "id" property.
	SetJSONLDId(i JSONLDIdProperty)
	// SetW3IDSecurityV1Owner sets the "owner" property.
	SetW3IDSecurityV1Owner(i W3IDSecurityV1OwnerProperty)
	// SetW3IDSecurityV1PublicKeyPem sets the "publicKeyPem" property.
	SetW3IDSecurityV1PublicKeyPem(i W3IDSecurityV1PublicKeyPemProperty)
	// VocabularyURI returns the vocabulary's URI as a string.
	VocabularyURI() string
}

A public key represents a public cryptographical key for a user

type W3IDSecurityV1PublicKeyPemProperty

type W3IDSecurityV1PublicKeyPemProperty interface {
	// Clear ensures no value of this property is set. Calling
	// IsXMLSchemaString afterwards will return false.
	Clear()
	// Get returns the value of this property. When IsXMLSchemaString returns
	// false, Get will return any arbitrary value.
	Get() string
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return any arbitrary value.
	GetIRI() *url.URL
	// HasAny returns true if the value or IRI is set.
	HasAny() bool
	// IsIRI returns true if this property is an IRI.
	IsIRI() bool
	// IsXMLSchemaString returns true if this property is set and not an IRI.
	IsXMLSchemaString() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o W3IDSecurityV1PublicKeyPemProperty) bool
	// Name returns the name of this property: "publicKeyPem".
	Name() string
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// Set sets the value of this property. Calling IsXMLSchemaString
	// afterwards will return true.
	Set(v string)
	// SetIRI sets the value of this property. Calling IsIRI afterwards will
	// return true.
	SetIRI(v *url.URL)
}

The public key PEM encoded data for an ActivityStreams actor

type W3IDSecurityV1PublicKeyProperty

type W3IDSecurityV1PublicKeyProperty interface {
	// AppendIRI appends an IRI value to the back of a list of the property
	// "publicKey"
	AppendIRI(v *url.URL)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "publicKey". Invalidates iterators that are traversing
	// using Prev. Returns an error if the type is not a valid one to set
	// for this property.
	AppendType(t Type) error
	// AppendW3IDSecurityV1PublicKey appends a PublicKey value to the back of
	// a list of the property "publicKey". Invalidates iterators that are
	// traversing using Prev.
	AppendW3IDSecurityV1PublicKey(v W3IDSecurityV1PublicKey)
	// At returns the property value for the specified index. Panics if the
	// index is out of bounds.
	At(index int) W3IDSecurityV1PublicKeyPropertyIterator
	// Begin returns the first iterator, or nil if empty. Can be used with the
	// iterator's Next method and this property's End method to iterate
	// from front to back through all values.
	Begin() W3IDSecurityV1PublicKeyPropertyIterator
	// Empty returns returns true if there are no elements.
	Empty() bool
	// End returns beyond-the-last iterator, which is nil. Can be used with
	// the iterator's Next method and this property's Begin method to
	// iterate from front to back through all values.
	End() W3IDSecurityV1PublicKeyPropertyIterator
	// Insert inserts an IRI value at the specified index for a property
	// "publicKey". Existing elements at that index and higher are shifted
	// back once. Invalidates all iterators.
	InsertIRI(idx int, v *url.URL)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "publicKey". Invalidates all iterators. Returns an
	// error if the type is not a valid one to set for this property.
	InsertType(idx int, t Type) error
	// InsertW3IDSecurityV1PublicKey inserts a PublicKey value at the
	// specified index for a property "publicKey". Existing elements at
	// that index and higher are shifted back once. Invalidates all
	// iterators.
	InsertW3IDSecurityV1PublicKey(idx int, v W3IDSecurityV1PublicKey)
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API method specifically needed only for alternate
	// implementations for go-fed. Applications should not use this
	// method. Panics if the index is out of bounds.
	KindIndex(idx int) int
	// Len returns the number of values that exist for the "publicKey"
	// property.
	Len() (length int)
	// Less computes whether another property is less than this one. Mixing
	// types results in a consistent but arbitrary ordering
	Less(i, j int) bool
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o W3IDSecurityV1PublicKeyProperty) bool
	// Name returns the name of this property ("publicKey") with any alias.
	Name() string
	// PrependIRI prepends an IRI value to the front of a list of the property
	// "publicKey".
	PrependIRI(v *url.URL)
	// PrependType prepends an arbitrary type value to the front of a list of
	// the property "publicKey". Invalidates all iterators. Returns an
	// error if the type is not a valid one to set for this property.
	PrependType(t Type) error
	// PrependW3IDSecurityV1PublicKey prepends a PublicKey value to the front
	// of a list of the property "publicKey". Invalidates all iterators.
	PrependW3IDSecurityV1PublicKey(v W3IDSecurityV1PublicKey)
	// Remove deletes an element at the specified index from a list of the
	// property "publicKey", regardless of its type. Panics if the index
	// is out of bounds. Invalidates all iterators.
	Remove(idx int)
	// Serialize converts this into an interface representation suitable for
	// marshalling into a text or binary format. Applications should not
	// need this function as most typical use cases serialize types
	// instead of individual properties. It is exposed for alternatives to
	// go-fed implementations to use.
	Serialize() (interface{}, error)
	// Set sets a PublicKey value to be at the specified index for the
	// property "publicKey". Panics if the index is out of bounds.
	// Invalidates all iterators.
	Set(idx int, v W3IDSecurityV1PublicKey)
	// SetIRI sets an IRI value to be at the specified index for the property
	// "publicKey". Panics if the index is out of bounds.
	SetIRI(idx int, v *url.URL)
	// SetType sets an arbitrary type value to the specified index of the
	// property "publicKey". Invalidates all iterators. Returns an error
	// if the type is not a valid one to set for this property. Panics if
	// the index is out of bounds.
	SetType(idx int, t Type) error
	// Swap swaps the location of values at two indices for the "publicKey"
	// property.
	Swap(i, j int)
}

The public key for an ActivityStreams actor

null

type W3IDSecurityV1PublicKeyPropertyIterator

type W3IDSecurityV1PublicKeyPropertyIterator interface {
	// Get returns the value of this property. When IsW3IDSecurityV1PublicKey
	// returns false, Get will return any arbitrary value.
	Get() W3IDSecurityV1PublicKey
	// GetIRI returns the IRI of this property. When IsIRI returns false,
	// GetIRI will return any arbitrary value.
	GetIRI() *url.URL
	// GetType returns the value in this property as a Type. Returns nil if
	// the value is not an ActivityStreams type, such as an IRI or another
	// value.
	GetType() Type
	// HasAny returns true if the value or IRI is set.
	HasAny() bool
	// IsIRI returns true if this property is an IRI.
	IsIRI() bool
	// IsW3IDSecurityV1PublicKey returns true if this property is set and not
	// an IRI.
	IsW3IDSecurityV1PublicKey() bool
	// JSONLDContext returns the JSONLD URIs required in the context string
	// for this property and the specific values that are set. The value
	// in the map is the alias used to import the property's value or
	// values.
	JSONLDContext() map[string]string
	// KindIndex computes an arbitrary value for indexing this kind of value.
	// This is a leaky API detail only for folks looking to replace the
	// go-fed implementation. Applications should not use this method.
	KindIndex() int
	// LessThan compares two instances of this property with an arbitrary but
	// stable comparison. Applications should not use this because it is
	// only meant to help alternative implementations to go-fed to be able
	// to normalize nonfunctional properties.
	LessThan(o W3IDSecurityV1PublicKeyPropertyIterator) bool
	// Name returns the name of this property: "W3IDSecurityV1PublicKey".
	Name() string
	// Next returns the next iterator, or nil if there is no next iterator.
	Next() W3IDSecurityV1PublicKeyPropertyIterator
	// Prev returns the previous iterator, or nil if there is no previous
	// iterator.
	Prev() W3IDSecurityV1PublicKeyPropertyIterator
	// Set sets the value of this property. Calling IsW3IDSecurityV1PublicKey
	// afterwards will return true.
	Set(v W3IDSecurityV1PublicKey)
	// SetIRI sets the value of this property. Calling IsIRI afterwards will
	// return true.
	SetIRI(v *url.URL)
	// SetType attempts to set the property for the arbitrary type. Returns an
	// error if it is not a valid type to set on this property.
	SetType(t Type) error
}

W3IDSecurityV1PublicKeyPropertyIterator represents a single value for the "publicKey" property.

Source Files

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL