streams

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: 169 Imported by: 34

README ¶

streams

ActivityStreams vocabularies automatically code-generated with astool.

Reference & Tutorial

The go-fed website contains tutorials and reference materials, in addition to the rest of this README.

How To Use

go get github.com/go-fed/activity

All generated types and properties are interfaces in github.com/go-fed/streams/vocab, but note that the constructors and supporting functions live in github.com/go-fed/streams.

To create a type and set properties:

var actorURL *url.URL = // ...

// A new "Create" Activity.
create := streams.NewActivityStreamsCreate()
// A new "actor" property.
actor := streams.NewActivityStreamsActorProperty()
actor.AppendIRI(actorURL)
// Set the "actor" property on the "Create" Activity.
create.SetActivityStreamsActor(actor)

To process properties on a type:

// Returns true if the "Update" has at least one "object" with an IRI value.
func hasObjectWithIRIValue(update vocab.ActivityStreamsUpdate) bool {
  objectProperty := update.GetActivityStreamsObject()
  // Any property may be nil if it was either empty in the original JSON or
  // never set on the golang type.
  if objectProperty == nil {
    return false
  }
  // The "object" property is non-functional: it could have multiple values. The
  // generated code has slightly different methods for a functional property
  // versus a non-functional one.
  //
  // While it may be easy to ignore multiple values in other languages
  // (accidentally or purposefully), go-fed is designed to make it hard to do
  // so.
  for iter := objectProperty.Begin(); iter != objectProperty.End(); iter = iter.Next() {
    // If this particular value is an IRI, return true.
    if iter.IsIRI() {
      return true
    }
  }
  // All values are literal embedded values and not IRIs.
  return false
}

The ActivityStreams type hierarchy of "extends" and "disjoint" is not the same as the Object Oriented definition of inheritance. It is also not the same as golang's interface duck-typing. Helper functions are provided to guarantee that an application's logic can correctly apply the type hierarchy.

thing := // Pick a type from streams.NewActivityStreams<Type>()
if streams.ActivityStreamsObjectIsDisjointWith(thing) {
  fmt.Printf("The \"Object\" type is Disjoint with the %T type.\n", thing)
}
if streams.ActivityStreamsLinkIsExtendedBy(thing) {
  fmt.Printf("The %T type Extends from the \"Link\" type.\n", thing)
}
if streams.ActivityStreamsActivityExtends(thing) {
  fmt.Printf("The \"Activity\" type extends from the %T type.\n", thing)
}

When given a generic JSON payload, it can be resolved to a concrete type by creating a streams.JSONResolver and giving it a callback function that accepts the interesting concrete type:

// Callbacks must be in the form:
//   func(context.Context, <TypeInterface>) error
createCallback := func(c context.Context, create vocab.ActivityStreamsCreate) error {
  // Do something with 'create'
  fmt.Printf("createCallback called: %T\n", create)
  return nil
}
updateCallback := func(c context.Context, update vocab.ActivityStreamsUpdate) error {
  // Do something with 'update'
  fmt.Printf("updateCallback called: %T\n", update)
  return nil
}
jsonResolver, err := streams.NewJSONResolver(createCallback, updateCallback)
if err != nil {
  // Something in the setup was wrong. For example, a callback has an
  // unsupported signature and would never be called
  panic(err)
}
// Create a context, which allows you to pass data opaquely through the
// JSONResolver.
c := context.Background()
// Example 15 of the ActivityStreams specification.
b := []byte(`{
  "@context": "https://www.w3.org/ns/activitystreams",
  "summary": "Sally created a note",
  "type": "Create",
  "actor": {
    "type": "Person",
    "name": "Sally"
  },
  "object": {
    "type": "Note",
    "name": "A Simple Note",
    "content": "This is a simple note"
  }
}`)
var jsonMap map[string]interface{}
if err = json.Unmarshal(b, &jsonMap); err != nil {
  panic(err)
}
// The createCallback function will be called.
err = jsonResolver.Resolve(c, jsonMap)
if err != nil && !streams.IsUnmatchedErr(err) {
  // Something went wrong
  panic(err)
} else if streams.IsUnmatchedErr(err) {
  // Everything went right but the callback didn't match or the ActivityStreams
  // type is one that wasn't code generated.
  fmt.Println("No match: ", err)
}

A streams.TypeResolver is similar but uses the golang types instead. It accepts the generic vocab.Type. This is the abstraction when needing to handle any ActivityStreams type. The function ToType can convert a JSON-decoded-map into this kind of value if needed.

A streams.PredicatedTypeResolver lets you apply a boolean predicate function that acts as a check whether a callback is allowed to be invoked.

FAQ

Why Are Empty Properties Nil And Not Zero-Valued?

Due to implementation design decisions, it would require a lot of plumbing to ensure this would work properly. It would also require allocation of a non-trivial amount of memory.

Documentation ¶

Overview ¶

Package streams contains constructors and functions necessary for applications to serialize, deserialize, and use ActivityStreams types in Go. This package is code-generated and subject to the same license as the go-fed tool used to generate it.

This package is useful to three classes of developers: end-user-application developers, specification writers creating an ActivityStream Extension, and ActivityPub implementors wanting to create an alternate ActivityStreams implementation that still satisfies the interfaces generated by the go-fed tool.

Application developers should limit their use to the Resolver type, the constructors beginning with "New", the "Extends" functions, the "DisjointWith" functions, the "ExtendedBy" functions, and any interfaces returned in those functions in this package. This lets applications use Resolvers to Deserialize or Dispatch specific types. The types themselves can Serialize as needed. The "Extends", "DisjointWith", and "ExtendedBy" functions help navigate the ActivityStreams hierarchy since it is not equivalent to object-oriented inheritance.

When creating an ActivityStreams extension, developers will want to ensure that the generated code builds correctly and check that the properties, types, extensions, and disjointedness is set up correctly. Writing unit tests with concrete types is then the next step. If the tool has an error generating this code, a fix is needed in the tool as it is likely there is a new RDF type being used in the extension that the tool does not know how to resolve. Thus, most development will focus on the go-fed tool itself.

Finally, ActivityStreams implementors that want drop-in replacement while still using the generated interfaces are highly encouraged to examine the Manager type in this package (in addition to the constructors) as these are the locations where concrete types are instantiated. When supplying a different type in these two locations, the other generated code will propagate it throughout the rest of an application. The Manager is instantiated as a singleton at init time in this library. It is then injected into each implementation library so they can deserialize their needed types without relying on the underlying concrete type.

Subdirectories of this package include implementation files and functions that are not intended to be directly linked to applications, but are used by this particular package. It is strongly recommended to only use the property interfaces and type interfaces in subdirectories and limiting concrete types to those in this package. The go-fed tool is likely to contain a pruning feature in the future which will analyze an application and eliminate code that would be dead if it were to be generated which reduces the compilation time, compilation resources, and binary size of an application. Such a feature will not be compatible with applications that use the concrete implementation types.

Index ¶

Constants ¶

This section is empty.

Variables ¶

View Source
var ActivityStreamsAcceptName string = "Accept"

ActivityStreamsAcceptName is the string literal of the name for the Accept type in the ActivityStreams vocabulary.

View Source
var ActivityStreamsAccuracyPropertyName string = "accuracy"

ActivityStreamsAccuracyPropertyName is the string literal of the name for the accuracy property in the ActivityStreams vocabulary.

View Source
var ActivityStreamsActivityName string = "Activity"

ActivityStreamsActivityName is the string literal of the name for the Activity type in the ActivityStreams vocabulary.

View Source
var ActivityStreamsActorPropertyName string = "actor"

ActivityStreamsActorPropertyName is the string literal of the name for the actor property in the ActivityStreams vocabulary.

View Source
var ActivityStreamsAddName string = "Add"

ActivityStreamsAddName is the string literal of the name for the Add type in the ActivityStreams vocabulary.

View Source
var ActivityStreamsAltitudePropertyName string = "altitude"

ActivityStreamsAltitudePropertyName is the string literal of the name for the altitude property in the ActivityStreams vocabulary.

View Source
var ActivityStreamsAnnounceName string = "Announce"

ActivityStreamsAnnounceName is the string literal of the name for the Announce type in the ActivityStreams vocabulary.

View Source
var ActivityStreamsAnyOfPropertyName string = "anyOf"

ActivityStreamsAnyOfPropertyName is the string literal of the name for the anyOf property in the ActivityStreams vocabulary.

View Source
var ActivityStreamsApplicationName string = "Application"

ActivityStreamsApplicationName is the string literal of the name for the Application type in the ActivityStreams vocabulary.

View Source
var ActivityStreamsArriveName string = "Arrive"

ActivityStreamsArriveName is the string literal of the name for the Arrive type in the ActivityStreams vocabulary.

View Source
var ActivityStreamsArticleName string = "Article"

ActivityStreamsArticleName is the string literal of the name for the Article type in the ActivityStreams vocabulary.

View Source
var ActivityStreamsAttachmentPropertyName string = "attachment"

ActivityStreamsAttachmentPropertyName is the string literal of the name for the attachment property in the ActivityStreams vocabulary.

View Source
var ActivityStreamsAttributedToPropertyName string = "attributedTo"

ActivityStreamsAttributedToPropertyName is the string literal of the name for the attributedTo property in the ActivityStreams vocabulary.

View Source
var ActivityStreamsAudiencePropertyName string = "audience"

ActivityStreamsAudiencePropertyName is the string literal of the name for the audience property in the ActivityStreams vocabulary.

View Source
var ActivityStreamsAudioName string = "Audio"

ActivityStreamsAudioName is the string literal of the name for the Audio type in the ActivityStreams vocabulary.

View Source
var ActivityStreamsBccPropertyName string = "bcc"

ActivityStreamsBccPropertyName is the string literal of the name for the bcc property in the ActivityStreams vocabulary.

View Source
var ActivityStreamsBlockName string = "Block"

ActivityStreamsBlockName is the string literal of the name for the Block type in the ActivityStreams vocabulary.

View Source
var ActivityStreamsBtoPropertyName string = "bto"

ActivityStreamsBtoPropertyName is the string literal of the name for the bto property in the ActivityStreams vocabulary.

View Source
var ActivityStreamsCcPropertyName string = "cc"

ActivityStreamsCcPropertyName is the string literal of the name for the cc property in the ActivityStreams vocabulary.

View Source
var ActivityStreamsClosedPropertyName string = "closed"

ActivityStreamsClosedPropertyName is the string literal of the name for the closed property in the ActivityStreams vocabulary.

View Source
var ActivityStreamsCollectionName string = "Collection"

ActivityStreamsCollectionName is the string literal of the name for the Collection type in the ActivityStreams vocabulary.

View Source
var ActivityStreamsCollectionPageName string = "CollectionPage"

ActivityStreamsCollectionPageName is the string literal of the name for the CollectionPage type in the ActivityStreams vocabulary.

View Source
var ActivityStreamsContentPropertyMapName string = "contentMap"

ActivityStreamsContentPropertyMapName is the string literal of the name for the content property in the ActivityStreams vocabulary when it is a natural language map.

View Source
var ActivityStreamsContentPropertyName string = "content"

ActivityStreamsContentPropertyName is the string literal of the name for the content property in the ActivityStreams vocabulary.

View Source
var ActivityStreamsContextPropertyName string = "context"

ActivityStreamsContextPropertyName is the string literal of the name for the context property in the ActivityStreams vocabulary.

View Source
var ActivityStreamsCreateName string = "Create"

ActivityStreamsCreateName is the string literal of the name for the Create type in the ActivityStreams vocabulary.

View Source
var ActivityStreamsCurrentPropertyName string = "current"

ActivityStreamsCurrentPropertyName is the string literal of the name for the current property in the ActivityStreams vocabulary.

View Source
var ActivityStreamsDeleteName string = "Delete"

ActivityStreamsDeleteName is the string literal of the name for the Delete type in the ActivityStreams vocabulary.

View Source
var ActivityStreamsDeletedPropertyName string = "deleted"

ActivityStreamsDeletedPropertyName is the string literal of the name for the deleted property in the ActivityStreams vocabulary.

View Source
var ActivityStreamsDescribesPropertyName string = "describes"

ActivityStreamsDescribesPropertyName is the string literal of the name for the describes property in the ActivityStreams vocabulary.

View Source
var ActivityStreamsDislikeName string = "Dislike"

ActivityStreamsDislikeName is the string literal of the name for the Dislike type in the ActivityStreams vocabulary.

View Source
var ActivityStreamsDocumentName string = "Document"

ActivityStreamsDocumentName is the string literal of the name for the Document type in the ActivityStreams vocabulary.

View Source
var ActivityStreamsDurationPropertyName string = "duration"

ActivityStreamsDurationPropertyName is the string literal of the name for the duration property in the ActivityStreams vocabulary.

View Source
var ActivityStreamsEndTimePropertyName string = "endTime"

ActivityStreamsEndTimePropertyName is the string literal of the name for the endTime property in the ActivityStreams vocabulary.

View Source
var ActivityStreamsEventName string = "Event"

ActivityStreamsEventName is the string literal of the name for the Event type in the ActivityStreams vocabulary.

View Source
var ActivityStreamsFirstPropertyName string = "first"

ActivityStreamsFirstPropertyName is the string literal of the name for the first property in the ActivityStreams vocabulary.

View Source
var ActivityStreamsFlagName string = "Flag"

ActivityStreamsFlagName is the string literal of the name for the Flag type in the ActivityStreams vocabulary.

View Source
var ActivityStreamsFollowName string = "Follow"

ActivityStreamsFollowName is the string literal of the name for the Follow type in the ActivityStreams vocabulary.

View Source
var ActivityStreamsFollowersPropertyName string = "followers"

ActivityStreamsFollowersPropertyName is the string literal of the name for the followers property in the ActivityStreams vocabulary.

View Source
var ActivityStreamsFollowingPropertyName string = "following"

ActivityStreamsFollowingPropertyName is the string literal of the name for the following property in the ActivityStreams vocabulary.

View Source
var ActivityStreamsFormerTypePropertyName string = "formerType"

ActivityStreamsFormerTypePropertyName is the string literal of the name for the formerType property in the ActivityStreams vocabulary.

View Source
var ActivityStreamsGeneratorPropertyName string = "generator"

ActivityStreamsGeneratorPropertyName is the string literal of the name for the generator property in the ActivityStreams vocabulary.

View Source
var ActivityStreamsGroupName string = "Group"

ActivityStreamsGroupName is the string literal of the name for the Group type in the ActivityStreams vocabulary.

View Source
var ActivityStreamsHeightPropertyName string = "height"

ActivityStreamsHeightPropertyName is the string literal of the name for the height property in the ActivityStreams vocabulary.

View Source
var ActivityStreamsHrefPropertyName string = "href"

ActivityStreamsHrefPropertyName is the string literal of the name for the href property in the ActivityStreams vocabulary.

View Source
var ActivityStreamsHreflangPropertyName string = "hreflang"

ActivityStreamsHreflangPropertyName is the string literal of the name for the hreflang property in the ActivityStreams vocabulary.

View Source
var ActivityStreamsIconPropertyName string = "icon"

ActivityStreamsIconPropertyName is the string literal of the name for the icon property in the ActivityStreams vocabulary.

View Source
var ActivityStreamsIgnoreName string = "Ignore"

ActivityStreamsIgnoreName is the string literal of the name for the Ignore type in the ActivityStreams vocabulary.

View Source
var ActivityStreamsImageName string = "Image"

ActivityStreamsImageName is the string literal of the name for the Image type in the ActivityStreams vocabulary.

View Source
var ActivityStreamsImagePropertyName string = "image"

ActivityStreamsImagePropertyName is the string literal of the name for the image property in the ActivityStreams vocabulary.

View Source
var ActivityStreamsInReplyToPropertyName string = "inReplyTo"

ActivityStreamsInReplyToPropertyName is the string literal of the name for the inReplyTo property in the ActivityStreams vocabulary.

View Source
var ActivityStreamsInboxPropertyName string = "inbox"

ActivityStreamsInboxPropertyName is the string literal of the name for the inbox property in the ActivityStreams vocabulary.

View Source
var ActivityStreamsInstrumentPropertyName string = "instrument"

ActivityStreamsInstrumentPropertyName is the string literal of the name for the instrument property in the ActivityStreams vocabulary.

View Source
var ActivityStreamsIntransitiveActivityName string = "IntransitiveActivity"

ActivityStreamsIntransitiveActivityName is the string literal of the name for the IntransitiveActivity type in the ActivityStreams vocabulary.

View Source
var ActivityStreamsInviteName string = "Invite"

ActivityStreamsInviteName is the string literal of the name for the Invite type in the ActivityStreams vocabulary.

View Source
var ActivityStreamsItemsPropertyName string = "items"

ActivityStreamsItemsPropertyName is the string literal of the name for the items property in the ActivityStreams vocabulary.

View Source
var ActivityStreamsJoinName string = "Join"

ActivityStreamsJoinName is the string literal of the name for the Join type in the ActivityStreams vocabulary.

View Source
var ActivityStreamsLastPropertyName string = "last"

ActivityStreamsLastPropertyName is the string literal of the name for the last property in the ActivityStreams vocabulary.

View Source
var ActivityStreamsLatitudePropertyName string = "latitude"

ActivityStreamsLatitudePropertyName is the string literal of the name for the latitude property in the ActivityStreams vocabulary.

View Source
var ActivityStreamsLeaveName string = "Leave"

ActivityStreamsLeaveName is the string literal of the name for the Leave type in the ActivityStreams vocabulary.

View Source
var ActivityStreamsLikeName string = "Like"

ActivityStreamsLikeName is the string literal of the name for the Like type in the ActivityStreams vocabulary.

View Source
var ActivityStreamsLikedPropertyName string = "liked"

ActivityStreamsLikedPropertyName is the string literal of the name for the liked property in the ActivityStreams vocabulary.

View Source
var ActivityStreamsLikesPropertyName string = "likes"

ActivityStreamsLikesPropertyName is the string literal of the name for the likes property in the ActivityStreams vocabulary.

View Source
var ActivityStreamsLinkName string = "Link"

ActivityStreamsLinkName is the string literal of the name for the Link type in the ActivityStreams vocabulary.

View Source
var ActivityStreamsListenName string = "Listen"

ActivityStreamsListenName is the string literal of the name for the Listen type in the ActivityStreams vocabulary.

View Source
var ActivityStreamsLocationPropertyName string = "location"

ActivityStreamsLocationPropertyName is the string literal of the name for the location property in the ActivityStreams vocabulary.

View Source
var ActivityStreamsLongitudePropertyName string = "longitude"

ActivityStreamsLongitudePropertyName is the string literal of the name for the longitude property in the ActivityStreams vocabulary.

View Source
var ActivityStreamsMediaTypePropertyName string = "mediaType"

ActivityStreamsMediaTypePropertyName is the string literal of the name for the mediaType property in the ActivityStreams vocabulary.

View Source
var ActivityStreamsMentionName string = "Mention"

ActivityStreamsMentionName is the string literal of the name for the Mention type in the ActivityStreams vocabulary.

View Source
var ActivityStreamsMoveName string = "Move"

ActivityStreamsMoveName is the string literal of the name for the Move type in the ActivityStreams vocabulary.

View Source
var ActivityStreamsNamePropertyMapName string = "nameMap"

ActivityStreamsNamePropertyMapName is the string literal of the name for the name property in the ActivityStreams vocabulary when it is a natural language map.

View Source
var ActivityStreamsNamePropertyName string = "name"

ActivityStreamsNamePropertyName is the string literal of the name for the name property in the ActivityStreams vocabulary.

View Source
var ActivityStreamsNextPropertyName string = "next"

ActivityStreamsNextPropertyName is the string literal of the name for the next property in the ActivityStreams vocabulary.

View Source
var ActivityStreamsNoteName string = "Note"

ActivityStreamsNoteName is the string literal of the name for the Note type in the ActivityStreams vocabulary.

View Source
var ActivityStreamsObjectName string = "Object"

ActivityStreamsObjectName is the string literal of the name for the Object type in the ActivityStreams vocabulary.

View Source
var ActivityStreamsObjectPropertyName string = "object"

ActivityStreamsObjectPropertyName is the string literal of the name for the object property in the ActivityStreams vocabulary.

View Source
var ActivityStreamsOfferName string = "Offer"

ActivityStreamsOfferName is the string literal of the name for the Offer type in the ActivityStreams vocabulary.

View Source
var ActivityStreamsOneOfPropertyName string = "oneOf"

ActivityStreamsOneOfPropertyName is the string literal of the name for the oneOf property in the ActivityStreams vocabulary.

View Source
var ActivityStreamsOrderedCollectionName string = "OrderedCollection"

ActivityStreamsOrderedCollectionName is the string literal of the name for the OrderedCollection type in the ActivityStreams vocabulary.

View Source
var ActivityStreamsOrderedCollectionPageName string = "OrderedCollectionPage"

ActivityStreamsOrderedCollectionPageName is the string literal of the name for the OrderedCollectionPage type in the ActivityStreams vocabulary.

View Source
var ActivityStreamsOrderedItemsPropertyName string = "orderedItems"

ActivityStreamsOrderedItemsPropertyName is the string literal of the name for the orderedItems property in the ActivityStreams vocabulary.

View Source
var ActivityStreamsOrganizationName string = "Organization"

ActivityStreamsOrganizationName is the string literal of the name for the Organization type in the ActivityStreams vocabulary.

View Source
var ActivityStreamsOriginPropertyName string = "origin"

ActivityStreamsOriginPropertyName is the string literal of the name for the origin property in the ActivityStreams vocabulary.

View Source
var ActivityStreamsOutboxPropertyName string = "outbox"

ActivityStreamsOutboxPropertyName is the string literal of the name for the outbox property in the ActivityStreams vocabulary.

View Source
var ActivityStreamsPageName string = "Page"

ActivityStreamsPageName is the string literal of the name for the Page type in the ActivityStreams vocabulary.

View Source
var ActivityStreamsPartOfPropertyName string = "partOf"

ActivityStreamsPartOfPropertyName is the string literal of the name for the partOf property in the ActivityStreams vocabulary.

View Source
var ActivityStreamsPersonName string = "Person"

ActivityStreamsPersonName is the string literal of the name for the Person type in the ActivityStreams vocabulary.

View Source
var ActivityStreamsPlaceName string = "Place"

ActivityStreamsPlaceName is the string literal of the name for the Place type in the ActivityStreams vocabulary.

View Source
var ActivityStreamsPreferredUsernamePropertyMapName string = "preferredUsernameMap"

ActivityStreamsPreferredUsernamePropertyMapName is the string literal of the name for the preferredUsername property in the ActivityStreams vocabulary when it is a natural language map.

View Source
var ActivityStreamsPreferredUsernamePropertyName string = "preferredUsername"

ActivityStreamsPreferredUsernamePropertyName is the string literal of the name for the preferredUsername property in the ActivityStreams vocabulary.

View Source
var ActivityStreamsPrevPropertyName string = "prev"

ActivityStreamsPrevPropertyName is the string literal of the name for the prev property in the ActivityStreams vocabulary.

View Source
var ActivityStreamsPreviewPropertyName string = "preview"

ActivityStreamsPreviewPropertyName is the string literal of the name for the preview property in the ActivityStreams vocabulary.

View Source
var ActivityStreamsProfileName string = "Profile"

ActivityStreamsProfileName is the string literal of the name for the Profile type in the ActivityStreams vocabulary.

View Source
var ActivityStreamsPublishedPropertyName string = "published"

ActivityStreamsPublishedPropertyName is the string literal of the name for the published property in the ActivityStreams vocabulary.

View Source
var ActivityStreamsQuestionName string = "Question"

ActivityStreamsQuestionName is the string literal of the name for the Question type in the ActivityStreams vocabulary.

View Source
var ActivityStreamsRadiusPropertyName string = "radius"

ActivityStreamsRadiusPropertyName is the string literal of the name for the radius property in the ActivityStreams vocabulary.

View Source
var ActivityStreamsReadName string = "Read"

ActivityStreamsReadName is the string literal of the name for the Read type in the ActivityStreams vocabulary.

View Source
var ActivityStreamsRejectName string = "Reject"

ActivityStreamsRejectName is the string literal of the name for the Reject type in the ActivityStreams vocabulary.

View Source
var ActivityStreamsRelPropertyName string = "rel"

ActivityStreamsRelPropertyName is the string literal of the name for the rel property in the ActivityStreams vocabulary.

View Source
var ActivityStreamsRelationshipName string = "Relationship"

ActivityStreamsRelationshipName is the string literal of the name for the Relationship type in the ActivityStreams vocabulary.

View Source
var ActivityStreamsRelationshipPropertyName string = "relationship"

ActivityStreamsRelationshipPropertyName is the string literal of the name for the relationship property in the ActivityStreams vocabulary.

View Source
var ActivityStreamsRemoveName string = "Remove"

ActivityStreamsRemoveName is the string literal of the name for the Remove type in the ActivityStreams vocabulary.

View Source
var ActivityStreamsRepliesPropertyName string = "replies"

ActivityStreamsRepliesPropertyName is the string literal of the name for the replies property in the ActivityStreams vocabulary.

View Source
var ActivityStreamsResultPropertyName string = "result"

ActivityStreamsResultPropertyName is the string literal of the name for the result property in the ActivityStreams vocabulary.

View Source
var ActivityStreamsServiceName string = "Service"

ActivityStreamsServiceName is the string literal of the name for the Service type in the ActivityStreams vocabulary.

View Source
var ActivityStreamsSharesPropertyName string = "shares"

ActivityStreamsSharesPropertyName is the string literal of the name for the shares property in the ActivityStreams vocabulary.

View Source
var ActivityStreamsSourcePropertyName string = "source"

ActivityStreamsSourcePropertyName is the string literal of the name for the source property in the ActivityStreams vocabulary.

View Source
var ActivityStreamsStartIndexPropertyName string = "startIndex"

ActivityStreamsStartIndexPropertyName is the string literal of the name for the startIndex property in the ActivityStreams vocabulary.

View Source
var ActivityStreamsStartTimePropertyName string = "startTime"

ActivityStreamsStartTimePropertyName is the string literal of the name for the startTime property in the ActivityStreams vocabulary.

View Source
var ActivityStreamsStreamsPropertyName string = "streams"

ActivityStreamsStreamsPropertyName is the string literal of the name for the streams property in the ActivityStreams vocabulary.

View Source
var ActivityStreamsSubjectPropertyName string = "subject"

ActivityStreamsSubjectPropertyName is the string literal of the name for the subject property in the ActivityStreams vocabulary.

View Source
var ActivityStreamsSummaryPropertyMapName string = "summaryMap"

ActivityStreamsSummaryPropertyMapName is the string literal of the name for the summary property in the ActivityStreams vocabulary when it is a natural language map.

View Source
var ActivityStreamsSummaryPropertyName string = "summary"

ActivityStreamsSummaryPropertyName is the string literal of the name for the summary property in the ActivityStreams vocabulary.

View Source
var ActivityStreamsTagPropertyName string = "tag"

ActivityStreamsTagPropertyName is the string literal of the name for the tag property in the ActivityStreams vocabulary.

View Source
var ActivityStreamsTargetPropertyName string = "target"

ActivityStreamsTargetPropertyName is the string literal of the name for the target property in the ActivityStreams vocabulary.

View Source
var ActivityStreamsTentativeAcceptName string = "TentativeAccept"

ActivityStreamsTentativeAcceptName is the string literal of the name for the TentativeAccept type in the ActivityStreams vocabulary.

View Source
var ActivityStreamsTentativeRejectName string = "TentativeReject"

ActivityStreamsTentativeRejectName is the string literal of the name for the TentativeReject type in the ActivityStreams vocabulary.

View Source
var ActivityStreamsToPropertyName string = "to"

ActivityStreamsToPropertyName is the string literal of the name for the to property in the ActivityStreams vocabulary.

View Source
var ActivityStreamsTombstoneName string = "Tombstone"

ActivityStreamsTombstoneName is the string literal of the name for the Tombstone type in the ActivityStreams vocabulary.

View Source
var ActivityStreamsTotalItemsPropertyName string = "totalItems"

ActivityStreamsTotalItemsPropertyName is the string literal of the name for the totalItems property in the ActivityStreams vocabulary.

View Source
var ActivityStreamsTravelName string = "Travel"

ActivityStreamsTravelName is the string literal of the name for the Travel type in the ActivityStreams vocabulary.

View Source
var ActivityStreamsUndoName string = "Undo"

ActivityStreamsUndoName is the string literal of the name for the Undo type in the ActivityStreams vocabulary.

View Source
var ActivityStreamsUnitsPropertyName string = "units"

ActivityStreamsUnitsPropertyName is the string literal of the name for the units property in the ActivityStreams vocabulary.

View Source
var ActivityStreamsUpdateName string = "Update"

ActivityStreamsUpdateName is the string literal of the name for the Update type in the ActivityStreams vocabulary.

View Source
var ActivityStreamsUpdatedPropertyName string = "updated"

ActivityStreamsUpdatedPropertyName is the string literal of the name for the updated property in the ActivityStreams vocabulary.

View Source
var ActivityStreamsUrlPropertyName string = "url"

ActivityStreamsUrlPropertyName is the string literal of the name for the url property in the ActivityStreams vocabulary.

View Source
var ActivityStreamsVideoName string = "Video"

ActivityStreamsVideoName is the string literal of the name for the Video type in the ActivityStreams vocabulary.

View Source
var ActivityStreamsViewName string = "View"

ActivityStreamsViewName is the string literal of the name for the View type in the ActivityStreams vocabulary.

View Source
var ActivityStreamsWidthPropertyName string = "width"

ActivityStreamsWidthPropertyName is the string literal of the name for the width property in the ActivityStreams vocabulary.

View Source
var ErrNoCallbackMatch error = errors.New("activity stream did not match the callback function")

ErrNoCallbackMatch indicates a Resolver could not match the ActivityStreams value to a callback function.

View Source
var ErrPredicateUnmatched error = errors.New("activity stream did not match type demanded by predicate")

ErrPredicateUnmatched indicates that a predicate is accepting a type or interface that does not match an ActivityStreams value's type or interface.

View Source
var ErrUnhandledType error = errors.New("activity stream did not match any known types")

ErrUnhandledType indicates that an ActivityStreams value has a type that is not handled by the code that has been generated.

View Source
var ForgeFedAssignedToPropertyName string = "assignedTo"

ForgeFedAssignedToPropertyName is the string literal of the name for the assignedTo property in the ForgeFed vocabulary.

View Source
var ForgeFedBranchName string = "Branch"

ForgeFedBranchName is the string literal of the name for the Branch type in the ForgeFed vocabulary.

View Source
var ForgeFedCommitName string = "Commit"

ForgeFedCommitName is the string literal of the name for the Commit type in the ForgeFed vocabulary.

View Source
var ForgeFedCommittedByPropertyName string = "committedBy"

ForgeFedCommittedByPropertyName is the string literal of the name for the committedBy property in the ForgeFed vocabulary.

View Source
var ForgeFedCommittedPropertyName string = "committed"

ForgeFedCommittedPropertyName is the string literal of the name for the committed property in the ForgeFed vocabulary.

View Source
var ForgeFedDependantsPropertyName string = "dependants"

ForgeFedDependantsPropertyName is the string literal of the name for the dependants property in the ForgeFed vocabulary.

View Source
var ForgeFedDependedByPropertyName string = "dependedBy"

ForgeFedDependedByPropertyName is the string literal of the name for the dependedBy property in the ForgeFed vocabulary.

View Source
var ForgeFedDependenciesPropertyName string = "dependencies"

ForgeFedDependenciesPropertyName is the string literal of the name for the dependencies property in the ForgeFed vocabulary.

View Source
var ForgeFedDependsOnPropertyName string = "dependsOn"

ForgeFedDependsOnPropertyName is the string literal of the name for the dependsOn property in the ForgeFed vocabulary.

View Source
var ForgeFedDescriptionPropertyName string = "description"

ForgeFedDescriptionPropertyName is the string literal of the name for the description property in the ForgeFed vocabulary.

View Source
var ForgeFedEarlyItemsPropertyName string = "earlyItems"

ForgeFedEarlyItemsPropertyName is the string literal of the name for the earlyItems property in the ForgeFed vocabulary.

View Source
var ForgeFedFilesAddedPropertyName string = "filesAdded"

ForgeFedFilesAddedPropertyName is the string literal of the name for the filesAdded property in the ForgeFed vocabulary.

View Source
var ForgeFedFilesModifiedPropertyName string = "filesModified"

ForgeFedFilesModifiedPropertyName is the string literal of the name for the filesModified property in the ForgeFed vocabulary.

View Source
var ForgeFedFilesRemovedPropertyName string = "filesRemoved"

ForgeFedFilesRemovedPropertyName is the string literal of the name for the filesRemoved property in the ForgeFed vocabulary.

View Source
var ForgeFedForksPropertyName string = "forks"

ForgeFedForksPropertyName is the string literal of the name for the forks property in the ForgeFed vocabulary.

View Source
var ForgeFedHashPropertyName string = "hash"

ForgeFedHashPropertyName is the string literal of the name for the hash property in the ForgeFed vocabulary.

View Source
var ForgeFedIsResolvedPropertyName string = "isResolved"

ForgeFedIsResolvedPropertyName is the string literal of the name for the isResolved property in the ForgeFed vocabulary.

View Source
var ForgeFedPushName string = "Push"

ForgeFedPushName is the string literal of the name for the Push type in the ForgeFed vocabulary.

View Source
var ForgeFedRefPropertyName string = "ref"

ForgeFedRefPropertyName is the string literal of the name for the ref property in the ForgeFed vocabulary.

View Source
var ForgeFedRepositoryName string = "Repository"

ForgeFedRepositoryName is the string literal of the name for the Repository type in the ForgeFed vocabulary.

View Source
var ForgeFedTeamPropertyName string = "team"

ForgeFedTeamPropertyName is the string literal of the name for the team property in the ForgeFed vocabulary.

View Source
var ForgeFedTicketDependencyName string = "TicketDependency"

ForgeFedTicketDependencyName is the string literal of the name for the TicketDependency type in the ForgeFed vocabulary.

View Source
var ForgeFedTicketName string = "Ticket"

ForgeFedTicketName is the string literal of the name for the Ticket type in the ForgeFed vocabulary.

View Source
var ForgeFedTicketsTrackedByPropertyName string = "ticketsTrackedBy"

ForgeFedTicketsTrackedByPropertyName is the string literal of the name for the ticketsTrackedBy property in the ForgeFed vocabulary.

View Source
var ForgeFedTracksTicketsForPropertyName string = "tracksTicketsFor"

ForgeFedTracksTicketsForPropertyName is the string literal of the name for the tracksTicketsFor property in the ForgeFed vocabulary.

View Source
var TootBlurhashPropertyName string = "blurhash"

TootBlurhashPropertyName is the string literal of the name for the blurhash property in the Toot vocabulary.

View Source
var TootDiscoverablePropertyName string = "discoverable"

TootDiscoverablePropertyName is the string literal of the name for the discoverable property in the Toot vocabulary.

View Source
var TootEmojiName string = "Emoji"

TootEmojiName is the string literal of the name for the Emoji type in the Toot vocabulary.

View Source
var TootFeaturedPropertyName string = "featured"

TootFeaturedPropertyName is the string literal of the name for the featured property in the Toot vocabulary.

View Source
var TootIdentityProofName string = "IdentityProof"

TootIdentityProofName is the string literal of the name for the IdentityProof type in the Toot vocabulary.

View Source
var TootSignatureAlgorithmPropertyName string = "signatureAlgorithm"

TootSignatureAlgorithmPropertyName is the string literal of the name for the signatureAlgorithm property in the Toot vocabulary.

View Source
var TootSignatureValuePropertyName string = "signatureValue"

TootSignatureValuePropertyName is the string literal of the name for the signatureValue property in the Toot vocabulary.

View Source
var TootVotersCountPropertyName string = "votersCount"

TootVotersCountPropertyName is the string literal of the name for the votersCount property in the Toot vocabulary.

View Source
var W3IDSecurityV1OwnerPropertyName string = "owner"

W3IDSecurityV1OwnerPropertyName is the string literal of the name for the owner property in the W3IDSecurityV1 vocabulary.

View Source
var W3IDSecurityV1PublicKeyName string = "PublicKey"

W3IDSecurityV1PublicKeyName is the string literal of the name for the PublicKey type in the W3IDSecurityV1 vocabulary.

View Source
var W3IDSecurityV1PublicKeyPemPropertyName string = "publicKeyPem"

W3IDSecurityV1PublicKeyPemPropertyName is the string literal of the name for the publicKeyPem property in the W3IDSecurityV1 vocabulary.

View Source
var W3IDSecurityV1PublicKeyPropertyName string = "publicKey"

W3IDSecurityV1PublicKeyPropertyName is the string literal of the name for the publicKey property in the W3IDSecurityV1 vocabulary.

Functions ¶

func ActivityStreamsAcceptIsDisjointWith ¶ added in v1.0.0

func ActivityStreamsAcceptIsDisjointWith(other vocab.Type) bool

ActivityStreamsAcceptIsDisjointWith returns true if Accept is disjoint with the other's type.

func ActivityStreamsAcceptIsExtendedBy ¶ added in v1.0.0

func ActivityStreamsAcceptIsExtendedBy(other vocab.Type) bool

ActivityStreamsAcceptIsExtendedBy returns true if the other's type extends from Accept. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.

func ActivityStreamsActivityIsDisjointWith ¶ added in v1.0.0

func ActivityStreamsActivityIsDisjointWith(other vocab.Type) bool

ActivityStreamsActivityIsDisjointWith returns true if Activity is disjoint with the other's type.

func ActivityStreamsActivityIsExtendedBy ¶ added in v1.0.0

func ActivityStreamsActivityIsExtendedBy(other vocab.Type) bool

ActivityStreamsActivityIsExtendedBy returns true if the other's type extends from Activity. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.

func ActivityStreamsActivityStreamsAcceptExtends ¶ added in v1.0.0

func ActivityStreamsActivityStreamsAcceptExtends(other vocab.Type) bool

ActivityStreamsActivityStreamsAcceptExtends returns true if Accept extends from the other's type.

func ActivityStreamsActivityStreamsActivityExtends ¶ added in v1.0.0

func ActivityStreamsActivityStreamsActivityExtends(other vocab.Type) bool

ActivityStreamsActivityStreamsActivityExtends returns true if Activity extends from the other's type.

func ActivityStreamsActivityStreamsAddExtends ¶ added in v1.0.0

func ActivityStreamsActivityStreamsAddExtends(other vocab.Type) bool

ActivityStreamsActivityStreamsAddExtends returns true if Add extends from the other's type.

func ActivityStreamsActivityStreamsAnnounceExtends ¶ added in v1.0.0

func ActivityStreamsActivityStreamsAnnounceExtends(other vocab.Type) bool

ActivityStreamsActivityStreamsAnnounceExtends returns true if Announce extends from the other's type.

func ActivityStreamsActivityStreamsApplicationExtends ¶ added in v1.0.0

func ActivityStreamsActivityStreamsApplicationExtends(other vocab.Type) bool

ActivityStreamsActivityStreamsApplicationExtends returns true if Application extends from the other's type.

func ActivityStreamsActivityStreamsArriveExtends ¶ added in v1.0.0

func ActivityStreamsActivityStreamsArriveExtends(other vocab.Type) bool

ActivityStreamsActivityStreamsArriveExtends returns true if Arrive extends from the other's type.

func ActivityStreamsActivityStreamsArticleExtends ¶ added in v1.0.0

func ActivityStreamsActivityStreamsArticleExtends(other vocab.Type) bool

ActivityStreamsActivityStreamsArticleExtends returns true if Article extends from the other's type.

func ActivityStreamsActivityStreamsAudioExtends ¶ added in v1.0.0

func ActivityStreamsActivityStreamsAudioExtends(other vocab.Type) bool

ActivityStreamsActivityStreamsAudioExtends returns true if Audio extends from the other's type.

func ActivityStreamsActivityStreamsBlockExtends ¶ added in v1.0.0

func ActivityStreamsActivityStreamsBlockExtends(other vocab.Type) bool

ActivityStreamsActivityStreamsBlockExtends returns true if Block extends from the other's type.

func ActivityStreamsActivityStreamsCollectionExtends ¶ added in v1.0.0

func ActivityStreamsActivityStreamsCollectionExtends(other vocab.Type) bool

ActivityStreamsActivityStreamsCollectionExtends returns true if Collection extends from the other's type.

func ActivityStreamsActivityStreamsCollectionPageExtends ¶ added in v1.0.0

func ActivityStreamsActivityStreamsCollectionPageExtends(other vocab.Type) bool

ActivityStreamsActivityStreamsCollectionPageExtends returns true if CollectionPage extends from the other's type.

func ActivityStreamsActivityStreamsCreateExtends ¶ added in v1.0.0

func ActivityStreamsActivityStreamsCreateExtends(other vocab.Type) bool

ActivityStreamsActivityStreamsCreateExtends returns true if Create extends from the other's type.

func ActivityStreamsActivityStreamsDeleteExtends ¶ added in v1.0.0

func ActivityStreamsActivityStreamsDeleteExtends(other vocab.Type) bool

ActivityStreamsActivityStreamsDeleteExtends returns true if Delete extends from the other's type.

func ActivityStreamsActivityStreamsDislikeExtends ¶ added in v1.0.0

func ActivityStreamsActivityStreamsDislikeExtends(other vocab.Type) bool

ActivityStreamsActivityStreamsDislikeExtends returns true if Dislike extends from the other's type.

func ActivityStreamsActivityStreamsDocumentExtends ¶ added in v1.0.0

func ActivityStreamsActivityStreamsDocumentExtends(other vocab.Type) bool

ActivityStreamsActivityStreamsDocumentExtends returns true if Document extends from the other's type.

func ActivityStreamsActivityStreamsEventExtends ¶ added in v1.0.0

func ActivityStreamsActivityStreamsEventExtends(other vocab.Type) bool

ActivityStreamsActivityStreamsEventExtends returns true if Event extends from the other's type.

func ActivityStreamsActivityStreamsFlagExtends ¶ added in v1.0.0

func ActivityStreamsActivityStreamsFlagExtends(other vocab.Type) bool

ActivityStreamsActivityStreamsFlagExtends returns true if Flag extends from the other's type.

func ActivityStreamsActivityStreamsFollowExtends ¶ added in v1.0.0

func ActivityStreamsActivityStreamsFollowExtends(other vocab.Type) bool

ActivityStreamsActivityStreamsFollowExtends returns true if Follow extends from the other's type.

func ActivityStreamsActivityStreamsGroupExtends ¶ added in v1.0.0

func ActivityStreamsActivityStreamsGroupExtends(other vocab.Type) bool

ActivityStreamsActivityStreamsGroupExtends returns true if Group extends from the other's type.

func ActivityStreamsActivityStreamsIgnoreExtends ¶ added in v1.0.0

func ActivityStreamsActivityStreamsIgnoreExtends(other vocab.Type) bool

ActivityStreamsActivityStreamsIgnoreExtends returns true if Ignore extends from the other's type.

func ActivityStreamsActivityStreamsImageExtends ¶ added in v1.0.0

func ActivityStreamsActivityStreamsImageExtends(other vocab.Type) bool

ActivityStreamsActivityStreamsImageExtends returns true if Image extends from the other's type.

func ActivityStreamsActivityStreamsIntransitiveActivityExtends ¶ added in v1.0.0

func ActivityStreamsActivityStreamsIntransitiveActivityExtends(other vocab.Type) bool

ActivityStreamsActivityStreamsIntransitiveActivityExtends returns true if IntransitiveActivity extends from the other's type.

func ActivityStreamsActivityStreamsInviteExtends ¶ added in v1.0.0

func ActivityStreamsActivityStreamsInviteExtends(other vocab.Type) bool

ActivityStreamsActivityStreamsInviteExtends returns true if Invite extends from the other's type.

func ActivityStreamsActivityStreamsJoinExtends ¶ added in v1.0.0

func ActivityStreamsActivityStreamsJoinExtends(other vocab.Type) bool

ActivityStreamsActivityStreamsJoinExtends returns true if Join extends from the other's type.

func ActivityStreamsActivityStreamsLeaveExtends ¶ added in v1.0.0

func ActivityStreamsActivityStreamsLeaveExtends(other vocab.Type) bool

ActivityStreamsActivityStreamsLeaveExtends returns true if Leave extends from the other's type.

func ActivityStreamsActivityStreamsLikeExtends ¶ added in v1.0.0

func ActivityStreamsActivityStreamsLikeExtends(other vocab.Type) bool

ActivityStreamsActivityStreamsLikeExtends returns true if Like extends from the other's type.

func ActivityStreamsActivityStreamsLinkExtends ¶ added in v1.0.0

func ActivityStreamsActivityStreamsLinkExtends(other vocab.Type) bool

ActivityStreamsActivityStreamsLinkExtends returns true if Link extends from the other's type.

func ActivityStreamsActivityStreamsListenExtends ¶ added in v1.0.0

func ActivityStreamsActivityStreamsListenExtends(other vocab.Type) bool

ActivityStreamsActivityStreamsListenExtends returns true if Listen extends from the other's type.

func ActivityStreamsActivityStreamsMentionExtends ¶ added in v1.0.0

func ActivityStreamsActivityStreamsMentionExtends(other vocab.Type) bool

ActivityStreamsActivityStreamsMentionExtends returns true if Mention extends from the other's type.

func ActivityStreamsActivityStreamsMoveExtends ¶ added in v1.0.0

func ActivityStreamsActivityStreamsMoveExtends(other vocab.Type) bool

ActivityStreamsActivityStreamsMoveExtends returns true if Move extends from the other's type.

func ActivityStreamsActivityStreamsNoteExtends ¶ added in v1.0.0

func ActivityStreamsActivityStreamsNoteExtends(other vocab.Type) bool

ActivityStreamsActivityStreamsNoteExtends returns true if Note extends from the other's type.

func ActivityStreamsActivityStreamsObjectExtends ¶ added in v1.0.0

func ActivityStreamsActivityStreamsObjectExtends(other vocab.Type) bool

ActivityStreamsActivityStreamsObjectExtends returns true if Object extends from the other's type.

func ActivityStreamsActivityStreamsOfferExtends ¶ added in v1.0.0

func ActivityStreamsActivityStreamsOfferExtends(other vocab.Type) bool

ActivityStreamsActivityStreamsOfferExtends returns true if Offer extends from the other's type.

func ActivityStreamsActivityStreamsOrderedCollectionExtends ¶ added in v1.0.0

func ActivityStreamsActivityStreamsOrderedCollectionExtends(other vocab.Type) bool

ActivityStreamsActivityStreamsOrderedCollectionExtends returns true if OrderedCollection extends from the other's type.

func ActivityStreamsActivityStreamsOrderedCollectionPageExtends ¶ added in v1.0.0

func ActivityStreamsActivityStreamsOrderedCollectionPageExtends(other vocab.Type) bool

ActivityStreamsActivityStreamsOrderedCollectionPageExtends returns true if OrderedCollectionPage extends from the other's type.

func ActivityStreamsActivityStreamsOrganizationExtends ¶ added in v1.0.0

func ActivityStreamsActivityStreamsOrganizationExtends(other vocab.Type) bool

ActivityStreamsActivityStreamsOrganizationExtends returns true if Organization extends from the other's type.

func ActivityStreamsActivityStreamsPageExtends ¶ added in v1.0.0

func ActivityStreamsActivityStreamsPageExtends(other vocab.Type) bool

ActivityStreamsActivityStreamsPageExtends returns true if Page extends from the other's type.

func ActivityStreamsActivityStreamsPersonExtends ¶ added in v1.0.0

func ActivityStreamsActivityStreamsPersonExtends(other vocab.Type) bool

ActivityStreamsActivityStreamsPersonExtends returns true if Person extends from the other's type.

func ActivityStreamsActivityStreamsPlaceExtends ¶ added in v1.0.0

func ActivityStreamsActivityStreamsPlaceExtends(other vocab.Type) bool

ActivityStreamsActivityStreamsPlaceExtends returns true if Place extends from the other's type.

func ActivityStreamsActivityStreamsProfileExtends ¶ added in v1.0.0

func ActivityStreamsActivityStreamsProfileExtends(other vocab.Type) bool

ActivityStreamsActivityStreamsProfileExtends returns true if Profile extends from the other's type.

func ActivityStreamsActivityStreamsQuestionExtends ¶ added in v1.0.0

func ActivityStreamsActivityStreamsQuestionExtends(other vocab.Type) bool

ActivityStreamsActivityStreamsQuestionExtends returns true if Question extends from the other's type.

func ActivityStreamsActivityStreamsReadExtends ¶ added in v1.0.0

func ActivityStreamsActivityStreamsReadExtends(other vocab.Type) bool

ActivityStreamsActivityStreamsReadExtends returns true if Read extends from the other's type.

func ActivityStreamsActivityStreamsRejectExtends ¶ added in v1.0.0

func ActivityStreamsActivityStreamsRejectExtends(other vocab.Type) bool

ActivityStreamsActivityStreamsRejectExtends returns true if Reject extends from the other's type.

func ActivityStreamsActivityStreamsRelationshipExtends ¶ added in v1.0.0

func ActivityStreamsActivityStreamsRelationshipExtends(other vocab.Type) bool

ActivityStreamsActivityStreamsRelationshipExtends returns true if Relationship extends from the other's type.

func ActivityStreamsActivityStreamsRemoveExtends ¶ added in v1.0.0

func ActivityStreamsActivityStreamsRemoveExtends(other vocab.Type) bool

ActivityStreamsActivityStreamsRemoveExtends returns true if Remove extends from the other's type.

func ActivityStreamsActivityStreamsServiceExtends ¶ added in v1.0.0

func ActivityStreamsActivityStreamsServiceExtends(other vocab.Type) bool

ActivityStreamsActivityStreamsServiceExtends returns true if Service extends from the other's type.

func ActivityStreamsActivityStreamsTentativeAcceptExtends ¶ added in v1.0.0

func ActivityStreamsActivityStreamsTentativeAcceptExtends(other vocab.Type) bool

ActivityStreamsActivityStreamsTentativeAcceptExtends returns true if TentativeAccept extends from the other's type.

func ActivityStreamsActivityStreamsTentativeRejectExtends ¶ added in v1.0.0

func ActivityStreamsActivityStreamsTentativeRejectExtends(other vocab.Type) bool

ActivityStreamsActivityStreamsTentativeRejectExtends returns true if TentativeReject extends from the other's type.

func ActivityStreamsActivityStreamsTombstoneExtends ¶ added in v1.0.0

func ActivityStreamsActivityStreamsTombstoneExtends(other vocab.Type) bool

ActivityStreamsActivityStreamsTombstoneExtends returns true if Tombstone extends from the other's type.

func ActivityStreamsActivityStreamsTravelExtends ¶ added in v1.0.0

func ActivityStreamsActivityStreamsTravelExtends(other vocab.Type) bool

ActivityStreamsActivityStreamsTravelExtends returns true if Travel extends from the other's type.

func ActivityStreamsActivityStreamsUndoExtends ¶ added in v1.0.0

func ActivityStreamsActivityStreamsUndoExtends(other vocab.Type) bool

ActivityStreamsActivityStreamsUndoExtends returns true if Undo extends from the other's type.

func ActivityStreamsActivityStreamsUpdateExtends ¶ added in v1.0.0

func ActivityStreamsActivityStreamsUpdateExtends(other vocab.Type) bool

ActivityStreamsActivityStreamsUpdateExtends returns true if Update extends from the other's type.

func ActivityStreamsActivityStreamsVideoExtends ¶ added in v1.0.0

func ActivityStreamsActivityStreamsVideoExtends(other vocab.Type) bool

ActivityStreamsActivityStreamsVideoExtends returns true if Video extends from the other's type.

func ActivityStreamsActivityStreamsViewExtends ¶ added in v1.0.0

func ActivityStreamsActivityStreamsViewExtends(other vocab.Type) bool

ActivityStreamsActivityStreamsViewExtends returns true if View extends from the other's type.

func ActivityStreamsAddIsDisjointWith ¶ added in v1.0.0

func ActivityStreamsAddIsDisjointWith(other vocab.Type) bool

ActivityStreamsAddIsDisjointWith returns true if Add is disjoint with the other's type.

func ActivityStreamsAddIsExtendedBy ¶ added in v1.0.0

func ActivityStreamsAddIsExtendedBy(other vocab.Type) bool

ActivityStreamsAddIsExtendedBy returns true if the other's type extends from Add. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.

func ActivityStreamsAnnounceIsDisjointWith ¶ added in v1.0.0

func ActivityStreamsAnnounceIsDisjointWith(other vocab.Type) bool

ActivityStreamsAnnounceIsDisjointWith returns true if Announce is disjoint with the other's type.

func ActivityStreamsAnnounceIsExtendedBy ¶ added in v1.0.0

func ActivityStreamsAnnounceIsExtendedBy(other vocab.Type) bool

ActivityStreamsAnnounceIsExtendedBy returns true if the other's type extends from Announce. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.

func ActivityStreamsApplicationIsDisjointWith ¶ added in v1.0.0

func ActivityStreamsApplicationIsDisjointWith(other vocab.Type) bool

ActivityStreamsApplicationIsDisjointWith returns true if Application is disjoint with the other's type.

func ActivityStreamsApplicationIsExtendedBy ¶ added in v1.0.0

func ActivityStreamsApplicationIsExtendedBy(other vocab.Type) bool

ActivityStreamsApplicationIsExtendedBy returns true if the other's type extends from Application. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.

func ActivityStreamsArriveIsDisjointWith ¶ added in v1.0.0

func ActivityStreamsArriveIsDisjointWith(other vocab.Type) bool

ActivityStreamsArriveIsDisjointWith returns true if Arrive is disjoint with the other's type.

func ActivityStreamsArriveIsExtendedBy ¶ added in v1.0.0

func ActivityStreamsArriveIsExtendedBy(other vocab.Type) bool

ActivityStreamsArriveIsExtendedBy returns true if the other's type extends from Arrive. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.

func ActivityStreamsArticleIsDisjointWith ¶ added in v1.0.0

func ActivityStreamsArticleIsDisjointWith(other vocab.Type) bool

ActivityStreamsArticleIsDisjointWith returns true if Article is disjoint with the other's type.

func ActivityStreamsArticleIsExtendedBy ¶ added in v1.0.0

func ActivityStreamsArticleIsExtendedBy(other vocab.Type) bool

ActivityStreamsArticleIsExtendedBy returns true if the other's type extends from Article. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.

func ActivityStreamsAudioIsDisjointWith ¶ added in v1.0.0

func ActivityStreamsAudioIsDisjointWith(other vocab.Type) bool

ActivityStreamsAudioIsDisjointWith returns true if Audio is disjoint with the other's type.

func ActivityStreamsAudioIsExtendedBy ¶ added in v1.0.0

func ActivityStreamsAudioIsExtendedBy(other vocab.Type) bool

ActivityStreamsAudioIsExtendedBy returns true if the other's type extends from Audio. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.

func ActivityStreamsBlockIsDisjointWith ¶ added in v1.0.0

func ActivityStreamsBlockIsDisjointWith(other vocab.Type) bool

ActivityStreamsBlockIsDisjointWith returns true if Block is disjoint with the other's type.

func ActivityStreamsBlockIsExtendedBy ¶ added in v1.0.0

func ActivityStreamsBlockIsExtendedBy(other vocab.Type) bool

ActivityStreamsBlockIsExtendedBy returns true if the other's type extends from Block. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.

func ActivityStreamsCollectionIsDisjointWith ¶ added in v1.0.0

func ActivityStreamsCollectionIsDisjointWith(other vocab.Type) bool

ActivityStreamsCollectionIsDisjointWith returns true if Collection is disjoint with the other's type.

func ActivityStreamsCollectionIsExtendedBy ¶ added in v1.0.0

func ActivityStreamsCollectionIsExtendedBy(other vocab.Type) bool

ActivityStreamsCollectionIsExtendedBy returns true if the other's type extends from Collection. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.

func ActivityStreamsCollectionPageIsDisjointWith ¶ added in v1.0.0

func ActivityStreamsCollectionPageIsDisjointWith(other vocab.Type) bool

ActivityStreamsCollectionPageIsDisjointWith returns true if CollectionPage is disjoint with the other's type.

func ActivityStreamsCollectionPageIsExtendedBy ¶ added in v1.0.0

func ActivityStreamsCollectionPageIsExtendedBy(other vocab.Type) bool

ActivityStreamsCollectionPageIsExtendedBy returns true if the other's type extends from CollectionPage. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.

func ActivityStreamsCreateIsDisjointWith ¶ added in v1.0.0

func ActivityStreamsCreateIsDisjointWith(other vocab.Type) bool

ActivityStreamsCreateIsDisjointWith returns true if Create is disjoint with the other's type.

func ActivityStreamsCreateIsExtendedBy ¶ added in v1.0.0

func ActivityStreamsCreateIsExtendedBy(other vocab.Type) bool

ActivityStreamsCreateIsExtendedBy returns true if the other's type extends from Create. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.

func ActivityStreamsDeleteIsDisjointWith ¶ added in v1.0.0

func ActivityStreamsDeleteIsDisjointWith(other vocab.Type) bool

ActivityStreamsDeleteIsDisjointWith returns true if Delete is disjoint with the other's type.

func ActivityStreamsDeleteIsExtendedBy ¶ added in v1.0.0

func ActivityStreamsDeleteIsExtendedBy(other vocab.Type) bool

ActivityStreamsDeleteIsExtendedBy returns true if the other's type extends from Delete. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.

func ActivityStreamsDislikeIsDisjointWith ¶ added in v1.0.0

func ActivityStreamsDislikeIsDisjointWith(other vocab.Type) bool

ActivityStreamsDislikeIsDisjointWith returns true if Dislike is disjoint with the other's type.

func ActivityStreamsDislikeIsExtendedBy ¶ added in v1.0.0

func ActivityStreamsDislikeIsExtendedBy(other vocab.Type) bool

ActivityStreamsDislikeIsExtendedBy returns true if the other's type extends from Dislike. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.

func ActivityStreamsDocumentIsDisjointWith ¶ added in v1.0.0

func ActivityStreamsDocumentIsDisjointWith(other vocab.Type) bool

ActivityStreamsDocumentIsDisjointWith returns true if Document is disjoint with the other's type.

func ActivityStreamsDocumentIsExtendedBy ¶ added in v1.0.0

func ActivityStreamsDocumentIsExtendedBy(other vocab.Type) bool

ActivityStreamsDocumentIsExtendedBy returns true if the other's type extends from Document. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.

func ActivityStreamsEventIsDisjointWith ¶ added in v1.0.0

func ActivityStreamsEventIsDisjointWith(other vocab.Type) bool

ActivityStreamsEventIsDisjointWith returns true if Event is disjoint with the other's type.

func ActivityStreamsEventIsExtendedBy ¶ added in v1.0.0

func ActivityStreamsEventIsExtendedBy(other vocab.Type) bool

ActivityStreamsEventIsExtendedBy returns true if the other's type extends from Event. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.

func ActivityStreamsFlagIsDisjointWith ¶ added in v1.0.0

func ActivityStreamsFlagIsDisjointWith(other vocab.Type) bool

ActivityStreamsFlagIsDisjointWith returns true if Flag is disjoint with the other's type.

func ActivityStreamsFlagIsExtendedBy ¶ added in v1.0.0

func ActivityStreamsFlagIsExtendedBy(other vocab.Type) bool

ActivityStreamsFlagIsExtendedBy returns true if the other's type extends from Flag. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.

func ActivityStreamsFollowIsDisjointWith ¶ added in v1.0.0

func ActivityStreamsFollowIsDisjointWith(other vocab.Type) bool

ActivityStreamsFollowIsDisjointWith returns true if Follow is disjoint with the other's type.

func ActivityStreamsFollowIsExtendedBy ¶ added in v1.0.0

func ActivityStreamsFollowIsExtendedBy(other vocab.Type) bool

ActivityStreamsFollowIsExtendedBy returns true if the other's type extends from Follow. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.

func ActivityStreamsGroupIsDisjointWith ¶ added in v1.0.0

func ActivityStreamsGroupIsDisjointWith(other vocab.Type) bool

ActivityStreamsGroupIsDisjointWith returns true if Group is disjoint with the other's type.

func ActivityStreamsGroupIsExtendedBy ¶ added in v1.0.0

func ActivityStreamsGroupIsExtendedBy(other vocab.Type) bool

ActivityStreamsGroupIsExtendedBy returns true if the other's type extends from Group. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.

func ActivityStreamsIgnoreIsDisjointWith ¶ added in v1.0.0

func ActivityStreamsIgnoreIsDisjointWith(other vocab.Type) bool

ActivityStreamsIgnoreIsDisjointWith returns true if Ignore is disjoint with the other's type.

func ActivityStreamsIgnoreIsExtendedBy ¶ added in v1.0.0

func ActivityStreamsIgnoreIsExtendedBy(other vocab.Type) bool

ActivityStreamsIgnoreIsExtendedBy returns true if the other's type extends from Ignore. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.

func ActivityStreamsImageIsDisjointWith ¶ added in v1.0.0

func ActivityStreamsImageIsDisjointWith(other vocab.Type) bool

ActivityStreamsImageIsDisjointWith returns true if Image is disjoint with the other's type.

func ActivityStreamsImageIsExtendedBy ¶ added in v1.0.0

func ActivityStreamsImageIsExtendedBy(other vocab.Type) bool

ActivityStreamsImageIsExtendedBy returns true if the other's type extends from Image. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.

func ActivityStreamsIntransitiveActivityIsDisjointWith ¶ added in v1.0.0

func ActivityStreamsIntransitiveActivityIsDisjointWith(other vocab.Type) bool

ActivityStreamsIntransitiveActivityIsDisjointWith returns true if IntransitiveActivity is disjoint with the other's type.

func ActivityStreamsIntransitiveActivityIsExtendedBy ¶ added in v1.0.0

func ActivityStreamsIntransitiveActivityIsExtendedBy(other vocab.Type) bool

ActivityStreamsIntransitiveActivityIsExtendedBy returns true if the other's type extends from IntransitiveActivity. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.

func ActivityStreamsInviteIsDisjointWith ¶ added in v1.0.0

func ActivityStreamsInviteIsDisjointWith(other vocab.Type) bool

ActivityStreamsInviteIsDisjointWith returns true if Invite is disjoint with the other's type.

func ActivityStreamsInviteIsExtendedBy ¶ added in v1.0.0

func ActivityStreamsInviteIsExtendedBy(other vocab.Type) bool

ActivityStreamsInviteIsExtendedBy returns true if the other's type extends from Invite. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.

func ActivityStreamsJoinIsDisjointWith ¶ added in v1.0.0

func ActivityStreamsJoinIsDisjointWith(other vocab.Type) bool

ActivityStreamsJoinIsDisjointWith returns true if Join is disjoint with the other's type.

func ActivityStreamsJoinIsExtendedBy ¶ added in v1.0.0

func ActivityStreamsJoinIsExtendedBy(other vocab.Type) bool

ActivityStreamsJoinIsExtendedBy returns true if the other's type extends from Join. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.

func ActivityStreamsLeaveIsDisjointWith ¶ added in v1.0.0

func ActivityStreamsLeaveIsDisjointWith(other vocab.Type) bool

ActivityStreamsLeaveIsDisjointWith returns true if Leave is disjoint with the other's type.

func ActivityStreamsLeaveIsExtendedBy ¶ added in v1.0.0

func ActivityStreamsLeaveIsExtendedBy(other vocab.Type) bool

ActivityStreamsLeaveIsExtendedBy returns true if the other's type extends from Leave. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.

func ActivityStreamsLikeIsDisjointWith ¶ added in v1.0.0

func ActivityStreamsLikeIsDisjointWith(other vocab.Type) bool

ActivityStreamsLikeIsDisjointWith returns true if Like is disjoint with the other's type.

func ActivityStreamsLikeIsExtendedBy ¶ added in v1.0.0

func ActivityStreamsLikeIsExtendedBy(other vocab.Type) bool

ActivityStreamsLikeIsExtendedBy returns true if the other's type extends from Like. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.

func ActivityStreamsLinkIsDisjointWith ¶ added in v1.0.0

func ActivityStreamsLinkIsDisjointWith(other vocab.Type) bool

ActivityStreamsLinkIsDisjointWith returns true if Link is disjoint with the other's type.

func ActivityStreamsLinkIsExtendedBy ¶ added in v1.0.0

func ActivityStreamsLinkIsExtendedBy(other vocab.Type) bool

ActivityStreamsLinkIsExtendedBy returns true if the other's type extends from Link. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.

func ActivityStreamsListenIsDisjointWith ¶ added in v1.0.0

func ActivityStreamsListenIsDisjointWith(other vocab.Type) bool

ActivityStreamsListenIsDisjointWith returns true if Listen is disjoint with the other's type.

func ActivityStreamsListenIsExtendedBy ¶ added in v1.0.0

func ActivityStreamsListenIsExtendedBy(other vocab.Type) bool

ActivityStreamsListenIsExtendedBy returns true if the other's type extends from Listen. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.

func ActivityStreamsMentionIsDisjointWith ¶ added in v1.0.0

func ActivityStreamsMentionIsDisjointWith(other vocab.Type) bool

ActivityStreamsMentionIsDisjointWith returns true if Mention is disjoint with the other's type.

func ActivityStreamsMentionIsExtendedBy ¶ added in v1.0.0

func ActivityStreamsMentionIsExtendedBy(other vocab.Type) bool

ActivityStreamsMentionIsExtendedBy returns true if the other's type extends from Mention. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.

func ActivityStreamsMoveIsDisjointWith ¶ added in v1.0.0

func ActivityStreamsMoveIsDisjointWith(other vocab.Type) bool

ActivityStreamsMoveIsDisjointWith returns true if Move is disjoint with the other's type.

func ActivityStreamsMoveIsExtendedBy ¶ added in v1.0.0

func ActivityStreamsMoveIsExtendedBy(other vocab.Type) bool

ActivityStreamsMoveIsExtendedBy returns true if the other's type extends from Move. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.

func ActivityStreamsNoteIsDisjointWith ¶ added in v1.0.0

func ActivityStreamsNoteIsDisjointWith(other vocab.Type) bool

ActivityStreamsNoteIsDisjointWith returns true if Note is disjoint with the other's type.

func ActivityStreamsNoteIsExtendedBy ¶ added in v1.0.0

func ActivityStreamsNoteIsExtendedBy(other vocab.Type) bool

ActivityStreamsNoteIsExtendedBy returns true if the other's type extends from Note. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.

func ActivityStreamsObjectIsDisjointWith ¶ added in v1.0.0

func ActivityStreamsObjectIsDisjointWith(other vocab.Type) bool

ActivityStreamsObjectIsDisjointWith returns true if Object is disjoint with the other's type.

func ActivityStreamsObjectIsExtendedBy ¶ added in v1.0.0

func ActivityStreamsObjectIsExtendedBy(other vocab.Type) bool

ActivityStreamsObjectIsExtendedBy returns true if the other's type extends from Object. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.

func ActivityStreamsOfferIsDisjointWith ¶ added in v1.0.0

func ActivityStreamsOfferIsDisjointWith(other vocab.Type) bool

ActivityStreamsOfferIsDisjointWith returns true if Offer is disjoint with the other's type.

func ActivityStreamsOfferIsExtendedBy ¶ added in v1.0.0

func ActivityStreamsOfferIsExtendedBy(other vocab.Type) bool

ActivityStreamsOfferIsExtendedBy returns true if the other's type extends from Offer. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.

func ActivityStreamsOrderedCollectionIsDisjointWith ¶ added in v1.0.0

func ActivityStreamsOrderedCollectionIsDisjointWith(other vocab.Type) bool

ActivityStreamsOrderedCollectionIsDisjointWith returns true if OrderedCollection is disjoint with the other's type.

func ActivityStreamsOrderedCollectionIsExtendedBy ¶ added in v1.0.0

func ActivityStreamsOrderedCollectionIsExtendedBy(other vocab.Type) bool

ActivityStreamsOrderedCollectionIsExtendedBy returns true if the other's type extends from OrderedCollection. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.

func ActivityStreamsOrderedCollectionPageIsDisjointWith ¶ added in v1.0.0

func ActivityStreamsOrderedCollectionPageIsDisjointWith(other vocab.Type) bool

ActivityStreamsOrderedCollectionPageIsDisjointWith returns true if OrderedCollectionPage is disjoint with the other's type.

func ActivityStreamsOrderedCollectionPageIsExtendedBy ¶ added in v1.0.0

func ActivityStreamsOrderedCollectionPageIsExtendedBy(other vocab.Type) bool

ActivityStreamsOrderedCollectionPageIsExtendedBy returns true if the other's type extends from OrderedCollectionPage. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.

func ActivityStreamsOrganizationIsDisjointWith ¶ added in v1.0.0

func ActivityStreamsOrganizationIsDisjointWith(other vocab.Type) bool

ActivityStreamsOrganizationIsDisjointWith returns true if Organization is disjoint with the other's type.

func ActivityStreamsOrganizationIsExtendedBy ¶ added in v1.0.0

func ActivityStreamsOrganizationIsExtendedBy(other vocab.Type) bool

ActivityStreamsOrganizationIsExtendedBy returns true if the other's type extends from Organization. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.

func ActivityStreamsPageIsDisjointWith ¶ added in v1.0.0

func ActivityStreamsPageIsDisjointWith(other vocab.Type) bool

ActivityStreamsPageIsDisjointWith returns true if Page is disjoint with the other's type.

func ActivityStreamsPageIsExtendedBy ¶ added in v1.0.0

func ActivityStreamsPageIsExtendedBy(other vocab.Type) bool

ActivityStreamsPageIsExtendedBy returns true if the other's type extends from Page. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.

func ActivityStreamsPersonIsDisjointWith ¶ added in v1.0.0

func ActivityStreamsPersonIsDisjointWith(other vocab.Type) bool

ActivityStreamsPersonIsDisjointWith returns true if Person is disjoint with the other's type.

func ActivityStreamsPersonIsExtendedBy ¶ added in v1.0.0

func ActivityStreamsPersonIsExtendedBy(other vocab.Type) bool

ActivityStreamsPersonIsExtendedBy returns true if the other's type extends from Person. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.

func ActivityStreamsPlaceIsDisjointWith ¶ added in v1.0.0

func ActivityStreamsPlaceIsDisjointWith(other vocab.Type) bool

ActivityStreamsPlaceIsDisjointWith returns true if Place is disjoint with the other's type.

func ActivityStreamsPlaceIsExtendedBy ¶ added in v1.0.0

func ActivityStreamsPlaceIsExtendedBy(other vocab.Type) bool

ActivityStreamsPlaceIsExtendedBy returns true if the other's type extends from Place. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.

func ActivityStreamsProfileIsDisjointWith ¶ added in v1.0.0

func ActivityStreamsProfileIsDisjointWith(other vocab.Type) bool

ActivityStreamsProfileIsDisjointWith returns true if Profile is disjoint with the other's type.

func ActivityStreamsProfileIsExtendedBy ¶ added in v1.0.0

func ActivityStreamsProfileIsExtendedBy(other vocab.Type) bool

ActivityStreamsProfileIsExtendedBy returns true if the other's type extends from Profile. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.

func ActivityStreamsQuestionIsDisjointWith ¶ added in v1.0.0

func ActivityStreamsQuestionIsDisjointWith(other vocab.Type) bool

ActivityStreamsQuestionIsDisjointWith returns true if Question is disjoint with the other's type.

func ActivityStreamsQuestionIsExtendedBy ¶ added in v1.0.0

func ActivityStreamsQuestionIsExtendedBy(other vocab.Type) bool

ActivityStreamsQuestionIsExtendedBy returns true if the other's type extends from Question. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.

func ActivityStreamsReadIsDisjointWith ¶ added in v1.0.0

func ActivityStreamsReadIsDisjointWith(other vocab.Type) bool

ActivityStreamsReadIsDisjointWith returns true if Read is disjoint with the other's type.

func ActivityStreamsReadIsExtendedBy ¶ added in v1.0.0

func ActivityStreamsReadIsExtendedBy(other vocab.Type) bool

ActivityStreamsReadIsExtendedBy returns true if the other's type extends from Read. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.

func ActivityStreamsRejectIsDisjointWith ¶ added in v1.0.0

func ActivityStreamsRejectIsDisjointWith(other vocab.Type) bool

ActivityStreamsRejectIsDisjointWith returns true if Reject is disjoint with the other's type.

func ActivityStreamsRejectIsExtendedBy ¶ added in v1.0.0

func ActivityStreamsRejectIsExtendedBy(other vocab.Type) bool

ActivityStreamsRejectIsExtendedBy returns true if the other's type extends from Reject. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.

func ActivityStreamsRelationshipIsDisjointWith ¶ added in v1.0.0

func ActivityStreamsRelationshipIsDisjointWith(other vocab.Type) bool

ActivityStreamsRelationshipIsDisjointWith returns true if Relationship is disjoint with the other's type.

func ActivityStreamsRelationshipIsExtendedBy ¶ added in v1.0.0

func ActivityStreamsRelationshipIsExtendedBy(other vocab.Type) bool

ActivityStreamsRelationshipIsExtendedBy returns true if the other's type extends from Relationship. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.

func ActivityStreamsRemoveIsDisjointWith ¶ added in v1.0.0

func ActivityStreamsRemoveIsDisjointWith(other vocab.Type) bool

ActivityStreamsRemoveIsDisjointWith returns true if Remove is disjoint with the other's type.

func ActivityStreamsRemoveIsExtendedBy ¶ added in v1.0.0

func ActivityStreamsRemoveIsExtendedBy(other vocab.Type) bool

ActivityStreamsRemoveIsExtendedBy returns true if the other's type extends from Remove. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.

func ActivityStreamsServiceIsDisjointWith ¶ added in v1.0.0

func ActivityStreamsServiceIsDisjointWith(other vocab.Type) bool

ActivityStreamsServiceIsDisjointWith returns true if Service is disjoint with the other's type.

func ActivityStreamsServiceIsExtendedBy ¶ added in v1.0.0

func ActivityStreamsServiceIsExtendedBy(other vocab.Type) bool

ActivityStreamsServiceIsExtendedBy returns true if the other's type extends from Service. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.

func ActivityStreamsTentativeAcceptIsDisjointWith ¶ added in v1.0.0

func ActivityStreamsTentativeAcceptIsDisjointWith(other vocab.Type) bool

ActivityStreamsTentativeAcceptIsDisjointWith returns true if TentativeAccept is disjoint with the other's type.

func ActivityStreamsTentativeAcceptIsExtendedBy ¶ added in v1.0.0

func ActivityStreamsTentativeAcceptIsExtendedBy(other vocab.Type) bool

ActivityStreamsTentativeAcceptIsExtendedBy returns true if the other's type extends from TentativeAccept. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.

func ActivityStreamsTentativeRejectIsDisjointWith ¶ added in v1.0.0

func ActivityStreamsTentativeRejectIsDisjointWith(other vocab.Type) bool

ActivityStreamsTentativeRejectIsDisjointWith returns true if TentativeReject is disjoint with the other's type.

func ActivityStreamsTentativeRejectIsExtendedBy ¶ added in v1.0.0

func ActivityStreamsTentativeRejectIsExtendedBy(other vocab.Type) bool

ActivityStreamsTentativeRejectIsExtendedBy returns true if the other's type extends from TentativeReject. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.

func ActivityStreamsTombstoneIsDisjointWith ¶ added in v1.0.0

func ActivityStreamsTombstoneIsDisjointWith(other vocab.Type) bool

ActivityStreamsTombstoneIsDisjointWith returns true if Tombstone is disjoint with the other's type.

func ActivityStreamsTombstoneIsExtendedBy ¶ added in v1.0.0

func ActivityStreamsTombstoneIsExtendedBy(other vocab.Type) bool

ActivityStreamsTombstoneIsExtendedBy returns true if the other's type extends from Tombstone. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.

func ActivityStreamsTravelIsDisjointWith ¶ added in v1.0.0

func ActivityStreamsTravelIsDisjointWith(other vocab.Type) bool

ActivityStreamsTravelIsDisjointWith returns true if Travel is disjoint with the other's type.

func ActivityStreamsTravelIsExtendedBy ¶ added in v1.0.0

func ActivityStreamsTravelIsExtendedBy(other vocab.Type) bool

ActivityStreamsTravelIsExtendedBy returns true if the other's type extends from Travel. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.

func ActivityStreamsUndoIsDisjointWith ¶ added in v1.0.0

func ActivityStreamsUndoIsDisjointWith(other vocab.Type) bool

ActivityStreamsUndoIsDisjointWith returns true if Undo is disjoint with the other's type.

func ActivityStreamsUndoIsExtendedBy ¶ added in v1.0.0

func ActivityStreamsUndoIsExtendedBy(other vocab.Type) bool

ActivityStreamsUndoIsExtendedBy returns true if the other's type extends from Undo. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.

func ActivityStreamsUpdateIsDisjointWith ¶ added in v1.0.0

func ActivityStreamsUpdateIsDisjointWith(other vocab.Type) bool

ActivityStreamsUpdateIsDisjointWith returns true if Update is disjoint with the other's type.

func ActivityStreamsUpdateIsExtendedBy ¶ added in v1.0.0

func ActivityStreamsUpdateIsExtendedBy(other vocab.Type) bool

ActivityStreamsUpdateIsExtendedBy returns true if the other's type extends from Update. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.

func ActivityStreamsVideoIsDisjointWith ¶ added in v1.0.0

func ActivityStreamsVideoIsDisjointWith(other vocab.Type) bool

ActivityStreamsVideoIsDisjointWith returns true if Video is disjoint with the other's type.

func ActivityStreamsVideoIsExtendedBy ¶ added in v1.0.0

func ActivityStreamsVideoIsExtendedBy(other vocab.Type) bool

ActivityStreamsVideoIsExtendedBy returns true if the other's type extends from Video. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.

func ActivityStreamsViewIsDisjointWith ¶ added in v1.0.0

func ActivityStreamsViewIsDisjointWith(other vocab.Type) bool

ActivityStreamsViewIsDisjointWith returns true if View is disjoint with the other's type.

func ActivityStreamsViewIsExtendedBy ¶ added in v1.0.0

func ActivityStreamsViewIsExtendedBy(other vocab.Type) bool

ActivityStreamsViewIsExtendedBy returns true if the other's type extends from View. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.

func ForgeFedBranchIsDisjointWith ¶ added in v1.0.0

func ForgeFedBranchIsDisjointWith(other vocab.Type) bool

ForgeFedBranchIsDisjointWith returns true if Branch is disjoint with the other's type.

func ForgeFedBranchIsExtendedBy ¶ added in v1.0.0

func ForgeFedBranchIsExtendedBy(other vocab.Type) bool

ForgeFedBranchIsExtendedBy returns true if the other's type extends from Branch. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.

func ForgeFedCommitIsDisjointWith ¶ added in v1.0.0

func ForgeFedCommitIsDisjointWith(other vocab.Type) bool

ForgeFedCommitIsDisjointWith returns true if Commit is disjoint with the other's type.

func ForgeFedCommitIsExtendedBy ¶ added in v1.0.0

func ForgeFedCommitIsExtendedBy(other vocab.Type) bool

ForgeFedCommitIsExtendedBy returns true if the other's type extends from Commit. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.

func ForgeFedForgeFedBranchExtends ¶ added in v1.0.0

func ForgeFedForgeFedBranchExtends(other vocab.Type) bool

ForgeFedForgeFedBranchExtends returns true if Branch extends from the other's type.

func ForgeFedForgeFedCommitExtends ¶ added in v1.0.0

func ForgeFedForgeFedCommitExtends(other vocab.Type) bool

ForgeFedForgeFedCommitExtends returns true if Commit extends from the other's type.

func ForgeFedForgeFedPushExtends ¶ added in v1.0.0

func ForgeFedForgeFedPushExtends(other vocab.Type) bool

ForgeFedForgeFedPushExtends returns true if Push extends from the other's type.

func ForgeFedForgeFedRepositoryExtends ¶ added in v1.0.0

func ForgeFedForgeFedRepositoryExtends(other vocab.Type) bool

ForgeFedForgeFedRepositoryExtends returns true if Repository extends from the other's type.

func ForgeFedForgeFedTicketDependencyExtends ¶ added in v1.0.0

func ForgeFedForgeFedTicketDependencyExtends(other vocab.Type) bool

ForgeFedForgeFedTicketDependencyExtends returns true if TicketDependency extends from the other's type.

func ForgeFedForgeFedTicketExtends ¶ added in v1.0.0

func ForgeFedForgeFedTicketExtends(other vocab.Type) bool

ForgeFedForgeFedTicketExtends returns true if Ticket extends from the other's type.

func ForgeFedPushIsDisjointWith ¶ added in v1.0.0

func ForgeFedPushIsDisjointWith(other vocab.Type) bool

ForgeFedPushIsDisjointWith returns true if Push is disjoint with the other's type.

func ForgeFedPushIsExtendedBy ¶ added in v1.0.0

func ForgeFedPushIsExtendedBy(other vocab.Type) bool

ForgeFedPushIsExtendedBy returns true if the other's type extends from Push. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.

func ForgeFedRepositoryIsDisjointWith ¶ added in v1.0.0

func ForgeFedRepositoryIsDisjointWith(other vocab.Type) bool

ForgeFedRepositoryIsDisjointWith returns true if Repository is disjoint with the other's type.

func ForgeFedRepositoryIsExtendedBy ¶ added in v1.0.0

func ForgeFedRepositoryIsExtendedBy(other vocab.Type) bool

ForgeFedRepositoryIsExtendedBy returns true if the other's type extends from Repository. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.

func ForgeFedTicketDependencyIsDisjointWith ¶ added in v1.0.0

func ForgeFedTicketDependencyIsDisjointWith(other vocab.Type) bool

ForgeFedTicketDependencyIsDisjointWith returns true if TicketDependency is disjoint with the other's type.

func ForgeFedTicketDependencyIsExtendedBy ¶ added in v1.0.0

func ForgeFedTicketDependencyIsExtendedBy(other vocab.Type) bool

ForgeFedTicketDependencyIsExtendedBy returns true if the other's type extends from TicketDependency. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.

func ForgeFedTicketIsDisjointWith ¶ added in v1.0.0

func ForgeFedTicketIsDisjointWith(other vocab.Type) bool

ForgeFedTicketIsDisjointWith returns true if Ticket is disjoint with the other's type.

func ForgeFedTicketIsExtendedBy ¶ added in v1.0.0

func ForgeFedTicketIsExtendedBy(other vocab.Type) bool

ForgeFedTicketIsExtendedBy returns true if the other's type extends from Ticket. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.

func IsOrExtendsActivityStreamsAccept ¶ added in v1.0.0

func IsOrExtendsActivityStreamsAccept(other vocab.Type) bool

IsOrExtendsActivityStreamsAccept returns true if the other provided type is the Accept type or extends from the Accept type.

func IsOrExtendsActivityStreamsActivity ¶ added in v1.0.0

func IsOrExtendsActivityStreamsActivity(other vocab.Type) bool

IsOrExtendsActivityStreamsActivity returns true if the other provided type is the Activity type or extends from the Activity type.

func IsOrExtendsActivityStreamsAdd ¶ added in v1.0.0

func IsOrExtendsActivityStreamsAdd(other vocab.Type) bool

IsOrExtendsActivityStreamsAdd returns true if the other provided type is the Add type or extends from the Add type.

func IsOrExtendsActivityStreamsAnnounce ¶ added in v1.0.0

func IsOrExtendsActivityStreamsAnnounce(other vocab.Type) bool

IsOrExtendsActivityStreamsAnnounce returns true if the other provided type is the Announce type or extends from the Announce type.

func IsOrExtendsActivityStreamsApplication ¶ added in v1.0.0

func IsOrExtendsActivityStreamsApplication(other vocab.Type) bool

IsOrExtendsActivityStreamsApplication returns true if the other provided type is the Application type or extends from the Application type.

func IsOrExtendsActivityStreamsArrive ¶ added in v1.0.0

func IsOrExtendsActivityStreamsArrive(other vocab.Type) bool

IsOrExtendsActivityStreamsArrive returns true if the other provided type is the Arrive type or extends from the Arrive type.

func IsOrExtendsActivityStreamsArticle ¶ added in v1.0.0

func IsOrExtendsActivityStreamsArticle(other vocab.Type) bool

IsOrExtendsActivityStreamsArticle returns true if the other provided type is the Article type or extends from the Article type.

func IsOrExtendsActivityStreamsAudio ¶ added in v1.0.0

func IsOrExtendsActivityStreamsAudio(other vocab.Type) bool

IsOrExtendsActivityStreamsAudio returns true if the other provided type is the Audio type or extends from the Audio type.

func IsOrExtendsActivityStreamsBlock ¶ added in v1.0.0

func IsOrExtendsActivityStreamsBlock(other vocab.Type) bool

IsOrExtendsActivityStreamsBlock returns true if the other provided type is the Block type or extends from the Block type.

func IsOrExtendsActivityStreamsCollection ¶ added in v1.0.0

func IsOrExtendsActivityStreamsCollection(other vocab.Type) bool

IsOrExtendsActivityStreamsCollection returns true if the other provided type is the Collection type or extends from the Collection type.

func IsOrExtendsActivityStreamsCollectionPage ¶ added in v1.0.0

func IsOrExtendsActivityStreamsCollectionPage(other vocab.Type) bool

IsOrExtendsActivityStreamsCollectionPage returns true if the other provided type is the CollectionPage type or extends from the CollectionPage type.

func IsOrExtendsActivityStreamsCreate ¶ added in v1.0.0

func IsOrExtendsActivityStreamsCreate(other vocab.Type) bool

IsOrExtendsActivityStreamsCreate returns true if the other provided type is the Create type or extends from the Create type.

func IsOrExtendsActivityStreamsDelete ¶ added in v1.0.0

func IsOrExtendsActivityStreamsDelete(other vocab.Type) bool

IsOrExtendsActivityStreamsDelete returns true if the other provided type is the Delete type or extends from the Delete type.

func IsOrExtendsActivityStreamsDislike ¶ added in v1.0.0

func IsOrExtendsActivityStreamsDislike(other vocab.Type) bool

IsOrExtendsActivityStreamsDislike returns true if the other provided type is the Dislike type or extends from the Dislike type.

func IsOrExtendsActivityStreamsDocument ¶ added in v1.0.0

func IsOrExtendsActivityStreamsDocument(other vocab.Type) bool

IsOrExtendsActivityStreamsDocument returns true if the other provided type is the Document type or extends from the Document type.

func IsOrExtendsActivityStreamsEvent ¶ added in v1.0.0

func IsOrExtendsActivityStreamsEvent(other vocab.Type) bool

IsOrExtendsActivityStreamsEvent returns true if the other provided type is the Event type or extends from the Event type.

func IsOrExtendsActivityStreamsFlag ¶ added in v1.0.0

func IsOrExtendsActivityStreamsFlag(other vocab.Type) bool

IsOrExtendsActivityStreamsFlag returns true if the other provided type is the Flag type or extends from the Flag type.

func IsOrExtendsActivityStreamsFollow ¶ added in v1.0.0

func IsOrExtendsActivityStreamsFollow(other vocab.Type) bool

IsOrExtendsActivityStreamsFollow returns true if the other provided type is the Follow type or extends from the Follow type.

func IsOrExtendsActivityStreamsGroup ¶ added in v1.0.0

func IsOrExtendsActivityStreamsGroup(other vocab.Type) bool

IsOrExtendsActivityStreamsGroup returns true if the other provided type is the Group type or extends from the Group type.

func IsOrExtendsActivityStreamsIgnore ¶ added in v1.0.0

func IsOrExtendsActivityStreamsIgnore(other vocab.Type) bool

IsOrExtendsActivityStreamsIgnore returns true if the other provided type is the Ignore type or extends from the Ignore type.

func IsOrExtendsActivityStreamsImage ¶ added in v1.0.0

func IsOrExtendsActivityStreamsImage(other vocab.Type) bool

IsOrExtendsActivityStreamsImage returns true if the other provided type is the Image type or extends from the Image type.

func IsOrExtendsActivityStreamsIntransitiveActivity ¶ added in v1.0.0

func IsOrExtendsActivityStreamsIntransitiveActivity(other vocab.Type) bool

IsOrExtendsActivityStreamsIntransitiveActivity returns true if the other provided type is the IntransitiveActivity type or extends from the IntransitiveActivity type.

func IsOrExtendsActivityStreamsInvite ¶ added in v1.0.0

func IsOrExtendsActivityStreamsInvite(other vocab.Type) bool

IsOrExtendsActivityStreamsInvite returns true if the other provided type is the Invite type or extends from the Invite type.

func IsOrExtendsActivityStreamsJoin ¶ added in v1.0.0

func IsOrExtendsActivityStreamsJoin(other vocab.Type) bool

IsOrExtendsActivityStreamsJoin returns true if the other provided type is the Join type or extends from the Join type.

func IsOrExtendsActivityStreamsLeave ¶ added in v1.0.0

func IsOrExtendsActivityStreamsLeave(other vocab.Type) bool

IsOrExtendsActivityStreamsLeave returns true if the other provided type is the Leave type or extends from the Leave type.

func IsOrExtendsActivityStreamsLike ¶ added in v1.0.0

func IsOrExtendsActivityStreamsLike(other vocab.Type) bool

IsOrExtendsActivityStreamsLike returns true if the other provided type is the Like type or extends from the Like type.

func IsOrExtendsActivityStreamsLink(other vocab.Type) bool

IsOrExtendsActivityStreamsLink returns true if the other provided type is the Link type or extends from the Link type.

func IsOrExtendsActivityStreamsListen ¶ added in v1.0.0

func IsOrExtendsActivityStreamsListen(other vocab.Type) bool

IsOrExtendsActivityStreamsListen returns true if the other provided type is the Listen type or extends from the Listen type.

func IsOrExtendsActivityStreamsMention ¶ added in v1.0.0

func IsOrExtendsActivityStreamsMention(other vocab.Type) bool

IsOrExtendsActivityStreamsMention returns true if the other provided type is the Mention type or extends from the Mention type.

func IsOrExtendsActivityStreamsMove ¶ added in v1.0.0

func IsOrExtendsActivityStreamsMove(other vocab.Type) bool

IsOrExtendsActivityStreamsMove returns true if the other provided type is the Move type or extends from the Move type.

func IsOrExtendsActivityStreamsNote ¶ added in v1.0.0

func IsOrExtendsActivityStreamsNote(other vocab.Type) bool

IsOrExtendsActivityStreamsNote returns true if the other provided type is the Note type or extends from the Note type.

func IsOrExtendsActivityStreamsObject ¶ added in v1.0.0

func IsOrExtendsActivityStreamsObject(other vocab.Type) bool

IsOrExtendsActivityStreamsObject returns true if the other provided type is the Object type or extends from the Object type.

func IsOrExtendsActivityStreamsOffer ¶ added in v1.0.0

func IsOrExtendsActivityStreamsOffer(other vocab.Type) bool

IsOrExtendsActivityStreamsOffer returns true if the other provided type is the Offer type or extends from the Offer type.

func IsOrExtendsActivityStreamsOrderedCollection ¶ added in v1.0.0

func IsOrExtendsActivityStreamsOrderedCollection(other vocab.Type) bool

IsOrExtendsActivityStreamsOrderedCollection returns true if the other provided type is the OrderedCollection type or extends from the OrderedCollection type.

func IsOrExtendsActivityStreamsOrderedCollectionPage ¶ added in v1.0.0

func IsOrExtendsActivityStreamsOrderedCollectionPage(other vocab.Type) bool

IsOrExtendsActivityStreamsOrderedCollectionPage returns true if the other provided type is the OrderedCollectionPage type or extends from the OrderedCollectionPage type.

func IsOrExtendsActivityStreamsOrganization ¶ added in v1.0.0

func IsOrExtendsActivityStreamsOrganization(other vocab.Type) bool

IsOrExtendsActivityStreamsOrganization returns true if the other provided type is the Organization type or extends from the Organization type.

func IsOrExtendsActivityStreamsPage ¶ added in v1.0.0

func IsOrExtendsActivityStreamsPage(other vocab.Type) bool

IsOrExtendsActivityStreamsPage returns true if the other provided type is the Page type or extends from the Page type.

func IsOrExtendsActivityStreamsPerson ¶ added in v1.0.0

func IsOrExtendsActivityStreamsPerson(other vocab.Type) bool

IsOrExtendsActivityStreamsPerson returns true if the other provided type is the Person type or extends from the Person type.

func IsOrExtendsActivityStreamsPlace ¶ added in v1.0.0

func IsOrExtendsActivityStreamsPlace(other vocab.Type) bool

IsOrExtendsActivityStreamsPlace returns true if the other provided type is the Place type or extends from the Place type.

func IsOrExtendsActivityStreamsProfile ¶ added in v1.0.0

func IsOrExtendsActivityStreamsProfile(other vocab.Type) bool

IsOrExtendsActivityStreamsProfile returns true if the other provided type is the Profile type or extends from the Profile type.

func IsOrExtendsActivityStreamsQuestion ¶ added in v1.0.0

func IsOrExtendsActivityStreamsQuestion(other vocab.Type) bool

IsOrExtendsActivityStreamsQuestion returns true if the other provided type is the Question type or extends from the Question type.

func IsOrExtendsActivityStreamsRead ¶ added in v1.0.0

func IsOrExtendsActivityStreamsRead(other vocab.Type) bool

IsOrExtendsActivityStreamsRead returns true if the other provided type is the Read type or extends from the Read type.

func IsOrExtendsActivityStreamsReject ¶ added in v1.0.0

func IsOrExtendsActivityStreamsReject(other vocab.Type) bool

IsOrExtendsActivityStreamsReject returns true if the other provided type is the Reject type or extends from the Reject type.

func IsOrExtendsActivityStreamsRelationship ¶ added in v1.0.0

func IsOrExtendsActivityStreamsRelationship(other vocab.Type) bool

IsOrExtendsActivityStreamsRelationship returns true if the other provided type is the Relationship type or extends from the Relationship type.

func IsOrExtendsActivityStreamsRemove ¶ added in v1.0.0

func IsOrExtendsActivityStreamsRemove(other vocab.Type) bool

IsOrExtendsActivityStreamsRemove returns true if the other provided type is the Remove type or extends from the Remove type.

func IsOrExtendsActivityStreamsService ¶ added in v1.0.0

func IsOrExtendsActivityStreamsService(other vocab.Type) bool

IsOrExtendsActivityStreamsService returns true if the other provided type is the Service type or extends from the Service type.

func IsOrExtendsActivityStreamsTentativeAccept ¶ added in v1.0.0

func IsOrExtendsActivityStreamsTentativeAccept(other vocab.Type) bool

IsOrExtendsActivityStreamsTentativeAccept returns true if the other provided type is the TentativeAccept type or extends from the TentativeAccept type.

func IsOrExtendsActivityStreamsTentativeReject ¶ added in v1.0.0

func IsOrExtendsActivityStreamsTentativeReject(other vocab.Type) bool

IsOrExtendsActivityStreamsTentativeReject returns true if the other provided type is the TentativeReject type or extends from the TentativeReject type.

func IsOrExtendsActivityStreamsTombstone ¶ added in v1.0.0

func IsOrExtendsActivityStreamsTombstone(other vocab.Type) bool

IsOrExtendsActivityStreamsTombstone returns true if the other provided type is the Tombstone type or extends from the Tombstone type.

func IsOrExtendsActivityStreamsTravel ¶ added in v1.0.0

func IsOrExtendsActivityStreamsTravel(other vocab.Type) bool

IsOrExtendsActivityStreamsTravel returns true if the other provided type is the Travel type or extends from the Travel type.

func IsOrExtendsActivityStreamsUndo ¶ added in v1.0.0

func IsOrExtendsActivityStreamsUndo(other vocab.Type) bool

IsOrExtendsActivityStreamsUndo returns true if the other provided type is the Undo type or extends from the Undo type.

func IsOrExtendsActivityStreamsUpdate ¶ added in v1.0.0

func IsOrExtendsActivityStreamsUpdate(other vocab.Type) bool

IsOrExtendsActivityStreamsUpdate returns true if the other provided type is the Update type or extends from the Update type.

func IsOrExtendsActivityStreamsVideo ¶ added in v1.0.0

func IsOrExtendsActivityStreamsVideo(other vocab.Type) bool

IsOrExtendsActivityStreamsVideo returns true if the other provided type is the Video type or extends from the Video type.

func IsOrExtendsActivityStreamsView ¶ added in v1.0.0

func IsOrExtendsActivityStreamsView(other vocab.Type) bool

IsOrExtendsActivityStreamsView returns true if the other provided type is the View type or extends from the View type.

func IsOrExtendsForgeFedBranch ¶ added in v1.0.0

func IsOrExtendsForgeFedBranch(other vocab.Type) bool

IsOrExtendsForgeFedBranch returns true if the other provided type is the Branch type or extends from the Branch type.

func IsOrExtendsForgeFedCommit ¶ added in v1.0.0

func IsOrExtendsForgeFedCommit(other vocab.Type) bool

IsOrExtendsForgeFedCommit returns true if the other provided type is the Commit type or extends from the Commit type.

func IsOrExtendsForgeFedPush ¶ added in v1.0.0

func IsOrExtendsForgeFedPush(other vocab.Type) bool

IsOrExtendsForgeFedPush returns true if the other provided type is the Push type or extends from the Push type.

func IsOrExtendsForgeFedRepository ¶ added in v1.0.0

func IsOrExtendsForgeFedRepository(other vocab.Type) bool

IsOrExtendsForgeFedRepository returns true if the other provided type is the Repository type or extends from the Repository type.

func IsOrExtendsForgeFedTicket ¶ added in v1.0.0

func IsOrExtendsForgeFedTicket(other vocab.Type) bool

IsOrExtendsForgeFedTicket returns true if the other provided type is the Ticket type or extends from the Ticket type.

func IsOrExtendsForgeFedTicketDependency ¶ added in v1.0.0

func IsOrExtendsForgeFedTicketDependency(other vocab.Type) bool

IsOrExtendsForgeFedTicketDependency returns true if the other provided type is the TicketDependency type or extends from the TicketDependency type.

func IsOrExtendsTootEmoji ¶ added in v1.0.0

func IsOrExtendsTootEmoji(other vocab.Type) bool

IsOrExtendsTootEmoji returns true if the other provided type is the Emoji type or extends from the Emoji type.

func IsOrExtendsTootIdentityProof ¶ added in v1.0.0

func IsOrExtendsTootIdentityProof(other vocab.Type) bool

IsOrExtendsTootIdentityProof returns true if the other provided type is the IdentityProof type or extends from the IdentityProof type.

func IsOrExtendsW3IDSecurityV1PublicKey ¶ added in v1.0.0

func IsOrExtendsW3IDSecurityV1PublicKey(other vocab.Type) bool

IsOrExtendsW3IDSecurityV1PublicKey returns true if the other provided type is the PublicKey type or extends from the PublicKey type.

func IsUnmatchedErr ¶ added in v1.0.0

func IsUnmatchedErr(err error) bool

IsUnmatchedErr is true when the error indicates that a Resolver was unsuccessful due to the ActivityStreams value not matching its callbacks or predicates.

func NewActivityStreamsAccept ¶ added in v1.0.0

func NewActivityStreamsAccept() vocab.ActivityStreamsAccept

NewActivityStreamsAccept creates a new ActivityStreamsAccept

func NewActivityStreamsAccuracyProperty ¶ added in v1.0.0

func NewActivityStreamsAccuracyProperty() vocab.ActivityStreamsAccuracyProperty

NewActivityStreamsActivityStreamsAccuracyProperty creates a new ActivityStreamsAccuracyProperty

func NewActivityStreamsActivity ¶ added in v1.0.0

func NewActivityStreamsActivity() vocab.ActivityStreamsActivity

NewActivityStreamsActivity creates a new ActivityStreamsActivity

func NewActivityStreamsActorProperty ¶ added in v1.0.0

func NewActivityStreamsActorProperty() vocab.ActivityStreamsActorProperty

NewActivityStreamsActivityStreamsActorProperty creates a new ActivityStreamsActorProperty

func NewActivityStreamsAdd ¶ added in v1.0.0

func NewActivityStreamsAdd() vocab.ActivityStreamsAdd

NewActivityStreamsAdd creates a new ActivityStreamsAdd

func NewActivityStreamsAltitudeProperty ¶ added in v1.0.0

func NewActivityStreamsAltitudeProperty() vocab.ActivityStreamsAltitudeProperty

NewActivityStreamsActivityStreamsAltitudeProperty creates a new ActivityStreamsAltitudeProperty

func NewActivityStreamsAnnounce ¶ added in v1.0.0

func NewActivityStreamsAnnounce() vocab.ActivityStreamsAnnounce

NewActivityStreamsAnnounce creates a new ActivityStreamsAnnounce

func NewActivityStreamsAnyOfProperty ¶ added in v1.0.0

func NewActivityStreamsAnyOfProperty() vocab.ActivityStreamsAnyOfProperty

NewActivityStreamsActivityStreamsAnyOfProperty creates a new ActivityStreamsAnyOfProperty

func NewActivityStreamsApplication ¶ added in v1.0.0

func NewActivityStreamsApplication() vocab.ActivityStreamsApplication

NewActivityStreamsApplication creates a new ActivityStreamsApplication

func NewActivityStreamsArrive ¶ added in v1.0.0

func NewActivityStreamsArrive() vocab.ActivityStreamsArrive

NewActivityStreamsArrive creates a new ActivityStreamsArrive

func NewActivityStreamsArticle ¶ added in v1.0.0

func NewActivityStreamsArticle() vocab.ActivityStreamsArticle

NewActivityStreamsArticle creates a new ActivityStreamsArticle

func NewActivityStreamsAttachmentProperty ¶ added in v1.0.0

func NewActivityStreamsAttachmentProperty() vocab.ActivityStreamsAttachmentProperty

NewActivityStreamsActivityStreamsAttachmentProperty creates a new ActivityStreamsAttachmentProperty

func NewActivityStreamsAttributedToProperty ¶ added in v1.0.0

func NewActivityStreamsAttributedToProperty() vocab.ActivityStreamsAttributedToProperty

NewActivityStreamsActivityStreamsAttributedToProperty creates a new ActivityStreamsAttributedToProperty

func NewActivityStreamsAudienceProperty ¶ added in v1.0.0

func NewActivityStreamsAudienceProperty() vocab.ActivityStreamsAudienceProperty

NewActivityStreamsActivityStreamsAudienceProperty creates a new ActivityStreamsAudienceProperty

func NewActivityStreamsAudio ¶ added in v1.0.0

func NewActivityStreamsAudio() vocab.ActivityStreamsAudio

NewActivityStreamsAudio creates a new ActivityStreamsAudio

func NewActivityStreamsBccProperty ¶ added in v1.0.0

func NewActivityStreamsBccProperty() vocab.ActivityStreamsBccProperty

NewActivityStreamsActivityStreamsBccProperty creates a new ActivityStreamsBccProperty

func NewActivityStreamsBlock ¶ added in v1.0.0

func NewActivityStreamsBlock() vocab.ActivityStreamsBlock

NewActivityStreamsBlock creates a new ActivityStreamsBlock

func NewActivityStreamsBtoProperty ¶ added in v1.0.0

func NewActivityStreamsBtoProperty() vocab.ActivityStreamsBtoProperty

NewActivityStreamsActivityStreamsBtoProperty creates a new ActivityStreamsBtoProperty

func NewActivityStreamsCcProperty ¶ added in v1.0.0

func NewActivityStreamsCcProperty() vocab.ActivityStreamsCcProperty

NewActivityStreamsActivityStreamsCcProperty creates a new ActivityStreamsCcProperty

func NewActivityStreamsClosedProperty ¶ added in v1.0.0

func NewActivityStreamsClosedProperty() vocab.ActivityStreamsClosedProperty

NewActivityStreamsActivityStreamsClosedProperty creates a new ActivityStreamsClosedProperty

func NewActivityStreamsCollection ¶ added in v1.0.0

func NewActivityStreamsCollection() vocab.ActivityStreamsCollection

NewActivityStreamsCollection creates a new ActivityStreamsCollection

func NewActivityStreamsCollectionPage ¶ added in v1.0.0

func NewActivityStreamsCollectionPage() vocab.ActivityStreamsCollectionPage

NewActivityStreamsCollectionPage creates a new ActivityStreamsCollectionPage

func NewActivityStreamsContentProperty ¶ added in v1.0.0

func NewActivityStreamsContentProperty() vocab.ActivityStreamsContentProperty

NewActivityStreamsActivityStreamsContentProperty creates a new ActivityStreamsContentProperty

func NewActivityStreamsContextProperty ¶ added in v1.0.0

func NewActivityStreamsContextProperty() vocab.ActivityStreamsContextProperty

NewActivityStreamsActivityStreamsContextProperty creates a new ActivityStreamsContextProperty

func NewActivityStreamsCreate ¶ added in v1.0.0

func NewActivityStreamsCreate() vocab.ActivityStreamsCreate

NewActivityStreamsCreate creates a new ActivityStreamsCreate

func NewActivityStreamsCurrentProperty ¶ added in v1.0.0

func NewActivityStreamsCurrentProperty() vocab.ActivityStreamsCurrentProperty

NewActivityStreamsActivityStreamsCurrentProperty creates a new ActivityStreamsCurrentProperty

func NewActivityStreamsDelete ¶ added in v1.0.0

func NewActivityStreamsDelete() vocab.ActivityStreamsDelete

NewActivityStreamsDelete creates a new ActivityStreamsDelete

func NewActivityStreamsDeletedProperty ¶ added in v1.0.0

func NewActivityStreamsDeletedProperty() vocab.ActivityStreamsDeletedProperty

NewActivityStreamsActivityStreamsDeletedProperty creates a new ActivityStreamsDeletedProperty

func NewActivityStreamsDescribesProperty ¶ added in v1.0.0

func NewActivityStreamsDescribesProperty() vocab.ActivityStreamsDescribesProperty

NewActivityStreamsActivityStreamsDescribesProperty creates a new ActivityStreamsDescribesProperty

func NewActivityStreamsDislike ¶ added in v1.0.0

func NewActivityStreamsDislike() vocab.ActivityStreamsDislike

NewActivityStreamsDislike creates a new ActivityStreamsDislike

func NewActivityStreamsDocument ¶ added in v1.0.0

func NewActivityStreamsDocument() vocab.ActivityStreamsDocument

NewActivityStreamsDocument creates a new ActivityStreamsDocument

func NewActivityStreamsDurationProperty ¶ added in v1.0.0

func NewActivityStreamsDurationProperty() vocab.ActivityStreamsDurationProperty

NewActivityStreamsActivityStreamsDurationProperty creates a new ActivityStreamsDurationProperty

func NewActivityStreamsEndTimeProperty ¶ added in v1.0.0

func NewActivityStreamsEndTimeProperty() vocab.ActivityStreamsEndTimeProperty

NewActivityStreamsActivityStreamsEndTimeProperty creates a new ActivityStreamsEndTimeProperty

func NewActivityStreamsEvent ¶ added in v1.0.0

func NewActivityStreamsEvent() vocab.ActivityStreamsEvent

NewActivityStreamsEvent creates a new ActivityStreamsEvent

func NewActivityStreamsFirstProperty ¶ added in v1.0.0

func NewActivityStreamsFirstProperty() vocab.ActivityStreamsFirstProperty

NewActivityStreamsActivityStreamsFirstProperty creates a new ActivityStreamsFirstProperty

func NewActivityStreamsFlag ¶ added in v1.0.0

func NewActivityStreamsFlag() vocab.ActivityStreamsFlag

NewActivityStreamsFlag creates a new ActivityStreamsFlag

func NewActivityStreamsFollow ¶ added in v1.0.0

func NewActivityStreamsFollow() vocab.ActivityStreamsFollow

NewActivityStreamsFollow creates a new ActivityStreamsFollow

func NewActivityStreamsFollowersProperty ¶ added in v1.0.0

func NewActivityStreamsFollowersProperty() vocab.ActivityStreamsFollowersProperty

NewActivityStreamsActivityStreamsFollowersProperty creates a new ActivityStreamsFollowersProperty

func NewActivityStreamsFollowingProperty ¶ added in v1.0.0

func NewActivityStreamsFollowingProperty() vocab.ActivityStreamsFollowingProperty

NewActivityStreamsActivityStreamsFollowingProperty creates a new ActivityStreamsFollowingProperty

func NewActivityStreamsFormerTypeProperty ¶ added in v1.0.0

func NewActivityStreamsFormerTypeProperty() vocab.ActivityStreamsFormerTypeProperty

NewActivityStreamsActivityStreamsFormerTypeProperty creates a new ActivityStreamsFormerTypeProperty

func NewActivityStreamsGeneratorProperty ¶ added in v1.0.0

func NewActivityStreamsGeneratorProperty() vocab.ActivityStreamsGeneratorProperty

NewActivityStreamsActivityStreamsGeneratorProperty creates a new ActivityStreamsGeneratorProperty

func NewActivityStreamsGroup ¶ added in v1.0.0

func NewActivityStreamsGroup() vocab.ActivityStreamsGroup

NewActivityStreamsGroup creates a new ActivityStreamsGroup

func NewActivityStreamsHeightProperty ¶ added in v1.0.0

func NewActivityStreamsHeightProperty() vocab.ActivityStreamsHeightProperty

NewActivityStreamsActivityStreamsHeightProperty creates a new ActivityStreamsHeightProperty

func NewActivityStreamsHrefProperty ¶ added in v1.0.0

func NewActivityStreamsHrefProperty() vocab.ActivityStreamsHrefProperty

NewActivityStreamsActivityStreamsHrefProperty creates a new ActivityStreamsHrefProperty

func NewActivityStreamsHreflangProperty ¶ added in v1.0.0

func NewActivityStreamsHreflangProperty() vocab.ActivityStreamsHreflangProperty

NewActivityStreamsActivityStreamsHreflangProperty creates a new ActivityStreamsHreflangProperty

func NewActivityStreamsIconProperty ¶ added in v1.0.0

func NewActivityStreamsIconProperty() vocab.ActivityStreamsIconProperty

NewActivityStreamsActivityStreamsIconProperty creates a new ActivityStreamsIconProperty

func NewActivityStreamsIgnore ¶ added in v1.0.0

func NewActivityStreamsIgnore() vocab.ActivityStreamsIgnore

NewActivityStreamsIgnore creates a new ActivityStreamsIgnore

func NewActivityStreamsImage ¶ added in v1.0.0

func NewActivityStreamsImage() vocab.ActivityStreamsImage

NewActivityStreamsImage creates a new ActivityStreamsImage

func NewActivityStreamsImageProperty ¶ added in v1.0.0

func NewActivityStreamsImageProperty() vocab.ActivityStreamsImageProperty

NewActivityStreamsActivityStreamsImageProperty creates a new ActivityStreamsImageProperty

func NewActivityStreamsInReplyToProperty ¶ added in v1.0.0

func NewActivityStreamsInReplyToProperty() vocab.ActivityStreamsInReplyToProperty

NewActivityStreamsActivityStreamsInReplyToProperty creates a new ActivityStreamsInReplyToProperty

func NewActivityStreamsInboxProperty ¶ added in v1.0.0

func NewActivityStreamsInboxProperty() vocab.ActivityStreamsInboxProperty

NewActivityStreamsActivityStreamsInboxProperty creates a new ActivityStreamsInboxProperty

func NewActivityStreamsInstrumentProperty ¶ added in v1.0.0

func NewActivityStreamsInstrumentProperty() vocab.ActivityStreamsInstrumentProperty

NewActivityStreamsActivityStreamsInstrumentProperty creates a new ActivityStreamsInstrumentProperty

func NewActivityStreamsIntransitiveActivity ¶ added in v1.0.0

func NewActivityStreamsIntransitiveActivity() vocab.ActivityStreamsIntransitiveActivity

NewActivityStreamsIntransitiveActivity creates a new ActivityStreamsIntransitiveActivity

func NewActivityStreamsInvite ¶ added in v1.0.0

func NewActivityStreamsInvite() vocab.ActivityStreamsInvite

NewActivityStreamsInvite creates a new ActivityStreamsInvite

func NewActivityStreamsItemsProperty ¶ added in v1.0.0

func NewActivityStreamsItemsProperty() vocab.ActivityStreamsItemsProperty

NewActivityStreamsActivityStreamsItemsProperty creates a new ActivityStreamsItemsProperty

func NewActivityStreamsJoin ¶ added in v1.0.0

func NewActivityStreamsJoin() vocab.ActivityStreamsJoin

NewActivityStreamsJoin creates a new ActivityStreamsJoin

func NewActivityStreamsLastProperty ¶ added in v1.0.0

func NewActivityStreamsLastProperty() vocab.ActivityStreamsLastProperty

NewActivityStreamsActivityStreamsLastProperty creates a new ActivityStreamsLastProperty

func NewActivityStreamsLatitudeProperty ¶ added in v1.0.0

func NewActivityStreamsLatitudeProperty() vocab.ActivityStreamsLatitudeProperty

NewActivityStreamsActivityStreamsLatitudeProperty creates a new ActivityStreamsLatitudeProperty

func NewActivityStreamsLeave ¶ added in v1.0.0

func NewActivityStreamsLeave() vocab.ActivityStreamsLeave

NewActivityStreamsLeave creates a new ActivityStreamsLeave

func NewActivityStreamsLike ¶ added in v1.0.0

func NewActivityStreamsLike() vocab.ActivityStreamsLike

NewActivityStreamsLike creates a new ActivityStreamsLike

func NewActivityStreamsLikedProperty ¶ added in v1.0.0

func NewActivityStreamsLikedProperty() vocab.ActivityStreamsLikedProperty

NewActivityStreamsActivityStreamsLikedProperty creates a new ActivityStreamsLikedProperty

func NewActivityStreamsLikesProperty ¶ added in v1.0.0

func NewActivityStreamsLikesProperty() vocab.ActivityStreamsLikesProperty

NewActivityStreamsActivityStreamsLikesProperty creates a new ActivityStreamsLikesProperty

func NewActivityStreamsLink() vocab.ActivityStreamsLink

NewActivityStreamsLink creates a new ActivityStreamsLink

func NewActivityStreamsListen ¶ added in v1.0.0

func NewActivityStreamsListen() vocab.ActivityStreamsListen

NewActivityStreamsListen creates a new ActivityStreamsListen

func NewActivityStreamsLocationProperty ¶ added in v1.0.0

func NewActivityStreamsLocationProperty() vocab.ActivityStreamsLocationProperty

NewActivityStreamsActivityStreamsLocationProperty creates a new ActivityStreamsLocationProperty

func NewActivityStreamsLongitudeProperty ¶ added in v1.0.0

func NewActivityStreamsLongitudeProperty() vocab.ActivityStreamsLongitudeProperty

NewActivityStreamsActivityStreamsLongitudeProperty creates a new ActivityStreamsLongitudeProperty

func NewActivityStreamsMediaTypeProperty ¶ added in v1.0.0

func NewActivityStreamsMediaTypeProperty() vocab.ActivityStreamsMediaTypeProperty

NewActivityStreamsActivityStreamsMediaTypeProperty creates a new ActivityStreamsMediaTypeProperty

func NewActivityStreamsMention ¶ added in v1.0.0

func NewActivityStreamsMention() vocab.ActivityStreamsMention

NewActivityStreamsMention creates a new ActivityStreamsMention

func NewActivityStreamsMove ¶ added in v1.0.0

func NewActivityStreamsMove() vocab.ActivityStreamsMove

NewActivityStreamsMove creates a new ActivityStreamsMove

func NewActivityStreamsNameProperty ¶ added in v1.0.0

func NewActivityStreamsNameProperty() vocab.ActivityStreamsNameProperty

NewActivityStreamsActivityStreamsNameProperty creates a new ActivityStreamsNameProperty

func NewActivityStreamsNextProperty ¶ added in v1.0.0

func NewActivityStreamsNextProperty() vocab.ActivityStreamsNextProperty

NewActivityStreamsActivityStreamsNextProperty creates a new ActivityStreamsNextProperty

func NewActivityStreamsNote ¶ added in v1.0.0

func NewActivityStreamsNote() vocab.ActivityStreamsNote

NewActivityStreamsNote creates a new ActivityStreamsNote

func NewActivityStreamsObject ¶ added in v1.0.0

func NewActivityStreamsObject() vocab.ActivityStreamsObject

NewActivityStreamsObject creates a new ActivityStreamsObject

func NewActivityStreamsObjectProperty ¶ added in v1.0.0

func NewActivityStreamsObjectProperty() vocab.ActivityStreamsObjectProperty

NewActivityStreamsActivityStreamsObjectProperty creates a new ActivityStreamsObjectProperty

func NewActivityStreamsOffer ¶ added in v1.0.0

func NewActivityStreamsOffer() vocab.ActivityStreamsOffer

NewActivityStreamsOffer creates a new ActivityStreamsOffer

func NewActivityStreamsOneOfProperty ¶ added in v1.0.0

func NewActivityStreamsOneOfProperty() vocab.ActivityStreamsOneOfProperty

NewActivityStreamsActivityStreamsOneOfProperty creates a new ActivityStreamsOneOfProperty

func NewActivityStreamsOrderedCollection ¶ added in v1.0.0

func NewActivityStreamsOrderedCollection() vocab.ActivityStreamsOrderedCollection

NewActivityStreamsOrderedCollection creates a new ActivityStreamsOrderedCollection

func NewActivityStreamsOrderedCollectionPage ¶ added in v1.0.0

func NewActivityStreamsOrderedCollectionPage() vocab.ActivityStreamsOrderedCollectionPage

NewActivityStreamsOrderedCollectionPage creates a new ActivityStreamsOrderedCollectionPage

func NewActivityStreamsOrderedItemsProperty ¶ added in v1.0.0

func NewActivityStreamsOrderedItemsProperty() vocab.ActivityStreamsOrderedItemsProperty

NewActivityStreamsActivityStreamsOrderedItemsProperty creates a new ActivityStreamsOrderedItemsProperty

func NewActivityStreamsOrganization ¶ added in v1.0.0

func NewActivityStreamsOrganization() vocab.ActivityStreamsOrganization

NewActivityStreamsOrganization creates a new ActivityStreamsOrganization

func NewActivityStreamsOriginProperty ¶ added in v1.0.0

func NewActivityStreamsOriginProperty() vocab.ActivityStreamsOriginProperty

NewActivityStreamsActivityStreamsOriginProperty creates a new ActivityStreamsOriginProperty

func NewActivityStreamsOutboxProperty ¶ added in v1.0.0

func NewActivityStreamsOutboxProperty() vocab.ActivityStreamsOutboxProperty

NewActivityStreamsActivityStreamsOutboxProperty creates a new ActivityStreamsOutboxProperty

func NewActivityStreamsPage ¶ added in v1.0.0

func NewActivityStreamsPage() vocab.ActivityStreamsPage

NewActivityStreamsPage creates a new ActivityStreamsPage

func NewActivityStreamsPartOfProperty ¶ added in v1.0.0

func NewActivityStreamsPartOfProperty() vocab.ActivityStreamsPartOfProperty

NewActivityStreamsActivityStreamsPartOfProperty creates a new ActivityStreamsPartOfProperty

func NewActivityStreamsPerson ¶ added in v1.0.0

func NewActivityStreamsPerson() vocab.ActivityStreamsPerson

NewActivityStreamsPerson creates a new ActivityStreamsPerson

func NewActivityStreamsPlace ¶ added in v1.0.0

func NewActivityStreamsPlace() vocab.ActivityStreamsPlace

NewActivityStreamsPlace creates a new ActivityStreamsPlace

func NewActivityStreamsPreferredUsernameProperty ¶ added in v1.0.0

func NewActivityStreamsPreferredUsernameProperty() vocab.ActivityStreamsPreferredUsernameProperty

NewActivityStreamsActivityStreamsPreferredUsernameProperty creates a new ActivityStreamsPreferredUsernameProperty

func NewActivityStreamsPrevProperty ¶ added in v1.0.0

func NewActivityStreamsPrevProperty() vocab.ActivityStreamsPrevProperty

NewActivityStreamsActivityStreamsPrevProperty creates a new ActivityStreamsPrevProperty

func NewActivityStreamsPreviewProperty ¶ added in v1.0.0

func NewActivityStreamsPreviewProperty() vocab.ActivityStreamsPreviewProperty

NewActivityStreamsActivityStreamsPreviewProperty creates a new ActivityStreamsPreviewProperty

func NewActivityStreamsProfile ¶ added in v1.0.0

func NewActivityStreamsProfile() vocab.ActivityStreamsProfile

NewActivityStreamsProfile creates a new ActivityStreamsProfile

func NewActivityStreamsPublishedProperty ¶ added in v1.0.0

func NewActivityStreamsPublishedProperty() vocab.ActivityStreamsPublishedProperty

NewActivityStreamsActivityStreamsPublishedProperty creates a new ActivityStreamsPublishedProperty

func NewActivityStreamsQuestion ¶ added in v1.0.0

func NewActivityStreamsQuestion() vocab.ActivityStreamsQuestion

NewActivityStreamsQuestion creates a new ActivityStreamsQuestion

func NewActivityStreamsRadiusProperty ¶ added in v1.0.0

func NewActivityStreamsRadiusProperty() vocab.ActivityStreamsRadiusProperty

NewActivityStreamsActivityStreamsRadiusProperty creates a new ActivityStreamsRadiusProperty

func NewActivityStreamsRead ¶ added in v1.0.0

func NewActivityStreamsRead() vocab.ActivityStreamsRead

NewActivityStreamsRead creates a new ActivityStreamsRead

func NewActivityStreamsReject ¶ added in v1.0.0

func NewActivityStreamsReject() vocab.ActivityStreamsReject

NewActivityStreamsReject creates a new ActivityStreamsReject

func NewActivityStreamsRelProperty ¶ added in v1.0.0

func NewActivityStreamsRelProperty() vocab.ActivityStreamsRelProperty

NewActivityStreamsActivityStreamsRelProperty creates a new ActivityStreamsRelProperty

func NewActivityStreamsRelationship ¶ added in v1.0.0

func NewActivityStreamsRelationship() vocab.ActivityStreamsRelationship

NewActivityStreamsRelationship creates a new ActivityStreamsRelationship

func NewActivityStreamsRelationshipProperty ¶ added in v1.0.0

func NewActivityStreamsRelationshipProperty() vocab.ActivityStreamsRelationshipProperty

NewActivityStreamsActivityStreamsRelationshipProperty creates a new ActivityStreamsRelationshipProperty

func NewActivityStreamsRemove ¶ added in v1.0.0

func NewActivityStreamsRemove() vocab.ActivityStreamsRemove

NewActivityStreamsRemove creates a new ActivityStreamsRemove

func NewActivityStreamsRepliesProperty ¶ added in v1.0.0

func NewActivityStreamsRepliesProperty() vocab.ActivityStreamsRepliesProperty

NewActivityStreamsActivityStreamsRepliesProperty creates a new ActivityStreamsRepliesProperty

func NewActivityStreamsResultProperty ¶ added in v1.0.0

func NewActivityStreamsResultProperty() vocab.ActivityStreamsResultProperty

NewActivityStreamsActivityStreamsResultProperty creates a new ActivityStreamsResultProperty

func NewActivityStreamsService ¶ added in v1.0.0

func NewActivityStreamsService() vocab.ActivityStreamsService

NewActivityStreamsService creates a new ActivityStreamsService

func NewActivityStreamsSharesProperty ¶ added in v1.0.0

func NewActivityStreamsSharesProperty() vocab.ActivityStreamsSharesProperty

NewActivityStreamsActivityStreamsSharesProperty creates a new ActivityStreamsSharesProperty

func NewActivityStreamsSourceProperty ¶ added in v1.0.0

func NewActivityStreamsSourceProperty() vocab.ActivityStreamsSourceProperty

NewActivityStreamsActivityStreamsSourceProperty creates a new ActivityStreamsSourceProperty

func NewActivityStreamsStartIndexProperty ¶ added in v1.0.0

func NewActivityStreamsStartIndexProperty() vocab.ActivityStreamsStartIndexProperty

NewActivityStreamsActivityStreamsStartIndexProperty creates a new ActivityStreamsStartIndexProperty

func NewActivityStreamsStartTimeProperty ¶ added in v1.0.0

func NewActivityStreamsStartTimeProperty() vocab.ActivityStreamsStartTimeProperty

NewActivityStreamsActivityStreamsStartTimeProperty creates a new ActivityStreamsStartTimeProperty

func NewActivityStreamsStreamsProperty ¶ added in v1.0.0

func NewActivityStreamsStreamsProperty() vocab.ActivityStreamsStreamsProperty

NewActivityStreamsActivityStreamsStreamsProperty creates a new ActivityStreamsStreamsProperty

func NewActivityStreamsSubjectProperty ¶ added in v1.0.0

func NewActivityStreamsSubjectProperty() vocab.ActivityStreamsSubjectProperty

NewActivityStreamsActivityStreamsSubjectProperty creates a new ActivityStreamsSubjectProperty

func NewActivityStreamsSummaryProperty ¶ added in v1.0.0

func NewActivityStreamsSummaryProperty() vocab.ActivityStreamsSummaryProperty

NewActivityStreamsActivityStreamsSummaryProperty creates a new ActivityStreamsSummaryProperty

func NewActivityStreamsTagProperty ¶ added in v1.0.0

func NewActivityStreamsTagProperty() vocab.ActivityStreamsTagProperty

NewActivityStreamsActivityStreamsTagProperty creates a new ActivityStreamsTagProperty

func NewActivityStreamsTargetProperty ¶ added in v1.0.0

func NewActivityStreamsTargetProperty() vocab.ActivityStreamsTargetProperty

NewActivityStreamsActivityStreamsTargetProperty creates a new ActivityStreamsTargetProperty

func NewActivityStreamsTentativeAccept ¶ added in v1.0.0

func NewActivityStreamsTentativeAccept() vocab.ActivityStreamsTentativeAccept

NewActivityStreamsTentativeAccept creates a new ActivityStreamsTentativeAccept

func NewActivityStreamsTentativeReject ¶ added in v1.0.0

func NewActivityStreamsTentativeReject() vocab.ActivityStreamsTentativeReject

NewActivityStreamsTentativeReject creates a new ActivityStreamsTentativeReject

func NewActivityStreamsToProperty ¶ added in v1.0.0

func NewActivityStreamsToProperty() vocab.ActivityStreamsToProperty

NewActivityStreamsActivityStreamsToProperty creates a new ActivityStreamsToProperty

func NewActivityStreamsTombstone ¶ added in v1.0.0

func NewActivityStreamsTombstone() vocab.ActivityStreamsTombstone

NewActivityStreamsTombstone creates a new ActivityStreamsTombstone

func NewActivityStreamsTotalItemsProperty ¶ added in v1.0.0

func NewActivityStreamsTotalItemsProperty() vocab.ActivityStreamsTotalItemsProperty

NewActivityStreamsActivityStreamsTotalItemsProperty creates a new ActivityStreamsTotalItemsProperty

func NewActivityStreamsTravel ¶ added in v1.0.0

func NewActivityStreamsTravel() vocab.ActivityStreamsTravel

NewActivityStreamsTravel creates a new ActivityStreamsTravel

func NewActivityStreamsUndo ¶ added in v1.0.0

func NewActivityStreamsUndo() vocab.ActivityStreamsUndo

NewActivityStreamsUndo creates a new ActivityStreamsUndo

func NewActivityStreamsUnitsProperty ¶ added in v1.0.0

func NewActivityStreamsUnitsProperty() vocab.ActivityStreamsUnitsProperty

NewActivityStreamsActivityStreamsUnitsProperty creates a new ActivityStreamsUnitsProperty

func NewActivityStreamsUpdate ¶ added in v1.0.0

func NewActivityStreamsUpdate() vocab.ActivityStreamsUpdate

NewActivityStreamsUpdate creates a new ActivityStreamsUpdate

func NewActivityStreamsUpdatedProperty ¶ added in v1.0.0

func NewActivityStreamsUpdatedProperty() vocab.ActivityStreamsUpdatedProperty

NewActivityStreamsActivityStreamsUpdatedProperty creates a new ActivityStreamsUpdatedProperty

func NewActivityStreamsUrlProperty ¶ added in v1.0.0

func NewActivityStreamsUrlProperty() vocab.ActivityStreamsUrlProperty

NewActivityStreamsActivityStreamsUrlProperty creates a new ActivityStreamsUrlProperty

func NewActivityStreamsVideo ¶ added in v1.0.0

func NewActivityStreamsVideo() vocab.ActivityStreamsVideo

NewActivityStreamsVideo creates a new ActivityStreamsVideo

func NewActivityStreamsView ¶ added in v1.0.0

func NewActivityStreamsView() vocab.ActivityStreamsView

NewActivityStreamsView creates a new ActivityStreamsView

func NewActivityStreamsWidthProperty ¶ added in v1.0.0

func NewActivityStreamsWidthProperty() vocab.ActivityStreamsWidthProperty

NewActivityStreamsActivityStreamsWidthProperty creates a new ActivityStreamsWidthProperty

func NewForgeFedAssignedToProperty ¶ added in v1.0.0

func NewForgeFedAssignedToProperty() vocab.ForgeFedAssignedToProperty

NewForgeFedForgeFedAssignedToProperty creates a new ForgeFedAssignedToProperty

func NewForgeFedBranch ¶ added in v1.0.0

func NewForgeFedBranch() vocab.ForgeFedBranch

NewForgeFedBranch creates a new ForgeFedBranch

func NewForgeFedCommit ¶ added in v1.0.0

func NewForgeFedCommit() vocab.ForgeFedCommit

NewForgeFedCommit creates a new ForgeFedCommit

func NewForgeFedCommittedByProperty ¶ added in v1.0.0

func NewForgeFedCommittedByProperty() vocab.ForgeFedCommittedByProperty

NewForgeFedForgeFedCommittedByProperty creates a new ForgeFedCommittedByProperty

func NewForgeFedCommittedProperty ¶ added in v1.0.0

func NewForgeFedCommittedProperty() vocab.ForgeFedCommittedProperty

NewForgeFedForgeFedCommittedProperty creates a new ForgeFedCommittedProperty

func NewForgeFedDependantsProperty ¶ added in v1.0.0

func NewForgeFedDependantsProperty() vocab.ForgeFedDependantsProperty

NewForgeFedForgeFedDependantsProperty creates a new ForgeFedDependantsProperty

func NewForgeFedDependedByProperty ¶ added in v1.0.0

func NewForgeFedDependedByProperty() vocab.ForgeFedDependedByProperty

NewForgeFedForgeFedDependedByProperty creates a new ForgeFedDependedByProperty

func NewForgeFedDependenciesProperty ¶ added in v1.0.0

func NewForgeFedDependenciesProperty() vocab.ForgeFedDependenciesProperty

NewForgeFedForgeFedDependenciesProperty creates a new ForgeFedDependenciesProperty

func NewForgeFedDependsOnProperty ¶ added in v1.0.0

func NewForgeFedDependsOnProperty() vocab.ForgeFedDependsOnProperty

NewForgeFedForgeFedDependsOnProperty creates a new ForgeFedDependsOnProperty

func NewForgeFedDescriptionProperty ¶ added in v1.0.0

func NewForgeFedDescriptionProperty() vocab.ForgeFedDescriptionProperty

NewForgeFedForgeFedDescriptionProperty creates a new ForgeFedDescriptionProperty

func NewForgeFedEarlyItemsProperty ¶ added in v1.0.0

func NewForgeFedEarlyItemsProperty() vocab.ForgeFedEarlyItemsProperty

NewForgeFedForgeFedEarlyItemsProperty creates a new ForgeFedEarlyItemsProperty

func NewForgeFedFilesAddedProperty ¶ added in v1.0.0

func NewForgeFedFilesAddedProperty() vocab.ForgeFedFilesAddedProperty

NewForgeFedForgeFedFilesAddedProperty creates a new ForgeFedFilesAddedProperty

func NewForgeFedFilesModifiedProperty ¶ added in v1.0.0

func NewForgeFedFilesModifiedProperty() vocab.ForgeFedFilesModifiedProperty

NewForgeFedForgeFedFilesModifiedProperty creates a new ForgeFedFilesModifiedProperty

func NewForgeFedFilesRemovedProperty ¶ added in v1.0.0

func NewForgeFedFilesRemovedProperty() vocab.ForgeFedFilesRemovedProperty

NewForgeFedForgeFedFilesRemovedProperty creates a new ForgeFedFilesRemovedProperty

func NewForgeFedForksProperty ¶ added in v1.0.0

func NewForgeFedForksProperty() vocab.ForgeFedForksProperty

NewForgeFedForgeFedForksProperty creates a new ForgeFedForksProperty

func NewForgeFedHashProperty ¶ added in v1.0.0

func NewForgeFedHashProperty() vocab.ForgeFedHashProperty

NewForgeFedForgeFedHashProperty creates a new ForgeFedHashProperty

func NewForgeFedIsResolvedProperty ¶ added in v1.0.0

func NewForgeFedIsResolvedProperty() vocab.ForgeFedIsResolvedProperty

NewForgeFedForgeFedIsResolvedProperty creates a new ForgeFedIsResolvedProperty

func NewForgeFedPush ¶ added in v1.0.0

func NewForgeFedPush() vocab.ForgeFedPush

NewForgeFedPush creates a new ForgeFedPush

func NewForgeFedRefProperty ¶ added in v1.0.0

func NewForgeFedRefProperty() vocab.ForgeFedRefProperty

NewForgeFedForgeFedRefProperty creates a new ForgeFedRefProperty

func NewForgeFedRepository ¶ added in v1.0.0

func NewForgeFedRepository() vocab.ForgeFedRepository

NewForgeFedRepository creates a new ForgeFedRepository

func NewForgeFedTeamProperty ¶ added in v1.0.0

func NewForgeFedTeamProperty() vocab.ForgeFedTeamProperty

NewForgeFedForgeFedTeamProperty creates a new ForgeFedTeamProperty

func NewForgeFedTicket ¶ added in v1.0.0

func NewForgeFedTicket() vocab.ForgeFedTicket

NewForgeFedTicket creates a new ForgeFedTicket

func NewForgeFedTicketDependency ¶ added in v1.0.0

func NewForgeFedTicketDependency() vocab.ForgeFedTicketDependency

NewForgeFedTicketDependency creates a new ForgeFedTicketDependency

func NewForgeFedTicketsTrackedByProperty ¶ added in v1.0.0

func NewForgeFedTicketsTrackedByProperty() vocab.ForgeFedTicketsTrackedByProperty

NewForgeFedForgeFedTicketsTrackedByProperty creates a new ForgeFedTicketsTrackedByProperty

func NewForgeFedTracksTicketsForProperty ¶ added in v1.0.0

func NewForgeFedTracksTicketsForProperty() vocab.ForgeFedTracksTicketsForProperty

NewForgeFedForgeFedTracksTicketsForProperty creates a new ForgeFedTracksTicketsForProperty

func NewJSONLDIdProperty ¶ added in v1.0.0

func NewJSONLDIdProperty() vocab.JSONLDIdProperty

NewJSONLDJSONLDIdProperty creates a new JSONLDIdProperty

func NewJSONLDTypeProperty ¶ added in v1.0.0

func NewJSONLDTypeProperty() vocab.JSONLDTypeProperty

NewJSONLDJSONLDTypeProperty creates a new JSONLDTypeProperty

func NewTootBlurhashProperty ¶ added in v1.0.0

func NewTootBlurhashProperty() vocab.TootBlurhashProperty

NewTootTootBlurhashProperty creates a new TootBlurhashProperty

func NewTootDiscoverableProperty ¶ added in v1.0.0

func NewTootDiscoverableProperty() vocab.TootDiscoverableProperty

NewTootTootDiscoverableProperty creates a new TootDiscoverableProperty

func NewTootEmoji ¶ added in v1.0.0

func NewTootEmoji() vocab.TootEmoji

NewTootEmoji creates a new TootEmoji

func NewTootFeaturedProperty ¶ added in v1.0.0

func NewTootFeaturedProperty() vocab.TootFeaturedProperty

NewTootTootFeaturedProperty creates a new TootFeaturedProperty

func NewTootIdentityProof ¶ added in v1.0.0

func NewTootIdentityProof() vocab.TootIdentityProof

NewTootIdentityProof creates a new TootIdentityProof

func NewTootSignatureAlgorithmProperty ¶ added in v1.0.0

func NewTootSignatureAlgorithmProperty() vocab.TootSignatureAlgorithmProperty

NewTootTootSignatureAlgorithmProperty creates a new TootSignatureAlgorithmProperty

func NewTootSignatureValueProperty ¶ added in v1.0.0

func NewTootSignatureValueProperty() vocab.TootSignatureValueProperty

NewTootTootSignatureValueProperty creates a new TootSignatureValueProperty

func NewTootVotersCountProperty ¶ added in v1.0.0

func NewTootVotersCountProperty() vocab.TootVotersCountProperty

NewTootTootVotersCountProperty creates a new TootVotersCountProperty

func NewW3IDSecurityV1OwnerProperty ¶ added in v1.0.0

func NewW3IDSecurityV1OwnerProperty() vocab.W3IDSecurityV1OwnerProperty

NewW3IDSecurityV1W3IDSecurityV1OwnerProperty creates a new W3IDSecurityV1OwnerProperty

func NewW3IDSecurityV1PublicKey ¶ added in v1.0.0

func NewW3IDSecurityV1PublicKey() vocab.W3IDSecurityV1PublicKey

NewW3IDSecurityV1PublicKey creates a new W3IDSecurityV1PublicKey

func NewW3IDSecurityV1PublicKeyPemProperty ¶ added in v1.0.0

func NewW3IDSecurityV1PublicKeyPemProperty() vocab.W3IDSecurityV1PublicKeyPemProperty

NewW3IDSecurityV1W3IDSecurityV1PublicKeyPemProperty creates a new W3IDSecurityV1PublicKeyPemProperty

func NewW3IDSecurityV1PublicKeyProperty ¶ added in v1.0.0

func NewW3IDSecurityV1PublicKeyProperty() vocab.W3IDSecurityV1PublicKeyProperty

NewW3IDSecurityV1W3IDSecurityV1PublicKeyProperty creates a new W3IDSecurityV1PublicKeyProperty

func Serialize ¶ added in v1.0.0

func Serialize(a vocab.Type) (m map[string]interface{}, e error)

Serialize adds the context vocabularies contained within the type into the JSON-LD @context field, and aliases them appropriately.

func ToType ¶ added in v1.0.0

func ToType(c context.Context, m map[string]interface{}) (t vocab.Type, err error)

ToType attempts to resolve the generic JSON map into a Type.

func TootEmojiIsDisjointWith ¶ added in v1.0.0

func TootEmojiIsDisjointWith(other vocab.Type) bool

TootEmojiIsDisjointWith returns true if Emoji is disjoint with the other's type.

func TootEmojiIsExtendedBy ¶ added in v1.0.0

func TootEmojiIsExtendedBy(other vocab.Type) bool

TootEmojiIsExtendedBy returns true if the other's type extends from Emoji. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.

func TootIdentityProofIsDisjointWith ¶ added in v1.0.0

func TootIdentityProofIsDisjointWith(other vocab.Type) bool

TootIdentityProofIsDisjointWith returns true if IdentityProof is disjoint with the other's type.

func TootIdentityProofIsExtendedBy ¶ added in v1.0.0

func TootIdentityProofIsExtendedBy(other vocab.Type) bool

TootIdentityProofIsExtendedBy returns true if the other's type extends from IdentityProof. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.

func TootTootEmojiExtends ¶ added in v1.0.0

func TootTootEmojiExtends(other vocab.Type) bool

TootTootEmojiExtends returns true if Emoji extends from the other's type.

func TootTootIdentityProofExtends ¶ added in v1.0.0

func TootTootIdentityProofExtends(other vocab.Type) bool

TootTootIdentityProofExtends returns true if IdentityProof extends from the other's type.

func W3IDSecurityV1PublicKeyIsDisjointWith ¶ added in v1.0.0

func W3IDSecurityV1PublicKeyIsDisjointWith(other vocab.Type) bool

W3IDSecurityV1PublicKeyIsDisjointWith returns true if PublicKey is disjoint with the other's type.

func W3IDSecurityV1PublicKeyIsExtendedBy ¶ added in v1.0.0

func W3IDSecurityV1PublicKeyIsExtendedBy(other vocab.Type) bool

W3IDSecurityV1PublicKeyIsExtendedBy returns true if the other's type extends from PublicKey. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.

func W3IDSecurityV1W3IDSecurityV1PublicKeyExtends ¶ added in v1.0.0

func W3IDSecurityV1W3IDSecurityV1PublicKeyExtends(other vocab.Type) bool

W3IDSecurityV1W3IDSecurityV1PublicKeyExtends returns true if PublicKey extends from the other's type.

Types ¶

type ActivityStreamsInterface ¶ added in v1.0.0

type ActivityStreamsInterface interface {
	// GetTypeName returns the ActiivtyStreams value's type.
	GetTypeName() string
	// VocabularyURI returns the vocabulary's URI as a string.
	VocabularyURI() string
}

ActivityStreamsInterface represents any ActivityStream value code-generated by go-fed or compatible with the generated interfaces.

type JSONResolver ¶ added in v1.0.0

type JSONResolver struct {
	// contains filtered or unexported fields
}

JSONResolver resolves a JSON-deserialized map into its concrete ActivityStreams type

func NewJSONResolver ¶ added in v1.0.0

func NewJSONResolver(callbacks ...interface{}) (*JSONResolver, error)

NewJSONResolver creates a new Resolver that takes a JSON-deserialized generic map and determines the correct concrete Go type. The callback function is guaranteed to receive a value whose underlying ActivityStreams type matches the concrete interface name in its signature. The callback functions must be of the form:

func(context.Context, <TypeInterface>) error

where TypeInterface is the code-generated interface for an ActivityStream type. An error is returned if a callback function does not match this signature.

func (JSONResolver) Resolve ¶ added in v1.0.0

func (this JSONResolver) Resolve(ctx context.Context, m map[string]interface{}) error

Resolve determines the ActivityStreams type of the payload, then applies the first callback function whose signature accepts the ActivityStreams value's type. This strictly assures that the callback function will only be passed ActivityStream objects whose type matches its interface. Returns an error if the ActivityStreams type does not match callbackers or is not a type handled by the generated code. If multiple types are present, it will check each one in order and apply only the first one. It returns an unhandled error for a multi-typed object if none of the types were able to be handled.

type Manager ¶ added in v1.0.0

type Manager struct {
}

Manager manages interface types and deserializations for use by generated code. Application code implicitly uses this manager at run-time to create concrete implementations of the interfaces.

func (Manager) DeserializeAcceptActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeAcceptActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsAccept, error)

DeserializeAcceptActivityStreams returns the deserialization method for the "ActivityStreamsAccept" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeAccuracyPropertyActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeAccuracyPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsAccuracyProperty, error)

DeserializeAccuracyPropertyActivityStreams returns the deserialization method for the "ActivityStreamsAccuracyProperty" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeActivityActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeActivityActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsActivity, error)

DeserializeActivityActivityStreams returns the deserialization method for the "ActivityStreamsActivity" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeActorPropertyActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeActorPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsActorProperty, error)

DeserializeActorPropertyActivityStreams returns the deserialization method for the "ActivityStreamsActorProperty" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeAddActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeAddActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsAdd, error)

DeserializeAddActivityStreams returns the deserialization method for the "ActivityStreamsAdd" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeAltitudePropertyActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeAltitudePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsAltitudeProperty, error)

DeserializeAltitudePropertyActivityStreams returns the deserialization method for the "ActivityStreamsAltitudeProperty" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeAnnounceActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeAnnounceActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsAnnounce, error)

DeserializeAnnounceActivityStreams returns the deserialization method for the "ActivityStreamsAnnounce" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeAnyOfPropertyActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeAnyOfPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsAnyOfProperty, error)

DeserializeAnyOfPropertyActivityStreams returns the deserialization method for the "ActivityStreamsAnyOfProperty" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeApplicationActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeApplicationActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsApplication, error)

DeserializeApplicationActivityStreams returns the deserialization method for the "ActivityStreamsApplication" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeArriveActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeArriveActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsArrive, error)

DeserializeArriveActivityStreams returns the deserialization method for the "ActivityStreamsArrive" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeArticleActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeArticleActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsArticle, error)

DeserializeArticleActivityStreams returns the deserialization method for the "ActivityStreamsArticle" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeAssignedToPropertyForgeFed ¶ added in v1.0.0

func (this Manager) DeserializeAssignedToPropertyForgeFed() func(map[string]interface{}, map[string]string) (vocab.ForgeFedAssignedToProperty, error)

DeserializeAssignedToPropertyForgeFed returns the deserialization method for the "ForgeFedAssignedToProperty" non-functional property in the vocabulary "ForgeFed"

func (Manager) DeserializeAttachmentPropertyActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeAttachmentPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsAttachmentProperty, error)

DeserializeAttachmentPropertyActivityStreams returns the deserialization method for the "ActivityStreamsAttachmentProperty" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeAttributedToPropertyActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeAttributedToPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsAttributedToProperty, error)

DeserializeAttributedToPropertyActivityStreams returns the deserialization method for the "ActivityStreamsAttributedToProperty" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeAudiencePropertyActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeAudiencePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsAudienceProperty, error)

DeserializeAudiencePropertyActivityStreams returns the deserialization method for the "ActivityStreamsAudienceProperty" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeAudioActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeAudioActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsAudio, error)

DeserializeAudioActivityStreams returns the deserialization method for the "ActivityStreamsAudio" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeBccPropertyActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeBccPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsBccProperty, error)

DeserializeBccPropertyActivityStreams returns the deserialization method for the "ActivityStreamsBccProperty" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeBlockActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeBlockActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsBlock, error)

DeserializeBlockActivityStreams returns the deserialization method for the "ActivityStreamsBlock" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeBlurhashPropertyToot ¶ added in v1.0.0

func (this Manager) DeserializeBlurhashPropertyToot() func(map[string]interface{}, map[string]string) (vocab.TootBlurhashProperty, error)

DeserializeBlurhashPropertyToot returns the deserialization method for the "TootBlurhashProperty" non-functional property in the vocabulary "Toot"

func (Manager) DeserializeBranchForgeFed ¶ added in v1.0.0

func (this Manager) DeserializeBranchForgeFed() func(map[string]interface{}, map[string]string) (vocab.ForgeFedBranch, error)

DeserializeBranchForgeFed returns the deserialization method for the "ForgeFedBranch" non-functional property in the vocabulary "ForgeFed"

func (Manager) DeserializeBtoPropertyActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeBtoPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsBtoProperty, error)

DeserializeBtoPropertyActivityStreams returns the deserialization method for the "ActivityStreamsBtoProperty" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeCcPropertyActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeCcPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsCcProperty, error)

DeserializeCcPropertyActivityStreams returns the deserialization method for the "ActivityStreamsCcProperty" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeClosedPropertyActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeClosedPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsClosedProperty, error)

DeserializeClosedPropertyActivityStreams returns the deserialization method for the "ActivityStreamsClosedProperty" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeCollectionActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeCollectionActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsCollection, error)

DeserializeCollectionActivityStreams returns the deserialization method for the "ActivityStreamsCollection" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeCollectionPageActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeCollectionPageActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsCollectionPage, error)

DeserializeCollectionPageActivityStreams returns the deserialization method for the "ActivityStreamsCollectionPage" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeCommitForgeFed ¶ added in v1.0.0

func (this Manager) DeserializeCommitForgeFed() func(map[string]interface{}, map[string]string) (vocab.ForgeFedCommit, error)

DeserializeCommitForgeFed returns the deserialization method for the "ForgeFedCommit" non-functional property in the vocabulary "ForgeFed"

func (Manager) DeserializeCommittedByPropertyForgeFed ¶ added in v1.0.0

func (this Manager) DeserializeCommittedByPropertyForgeFed() func(map[string]interface{}, map[string]string) (vocab.ForgeFedCommittedByProperty, error)

DeserializeCommittedByPropertyForgeFed returns the deserialization method for the "ForgeFedCommittedByProperty" non-functional property in the vocabulary "ForgeFed"

func (Manager) DeserializeCommittedPropertyForgeFed ¶ added in v1.0.0

func (this Manager) DeserializeCommittedPropertyForgeFed() func(map[string]interface{}, map[string]string) (vocab.ForgeFedCommittedProperty, error)

DeserializeCommittedPropertyForgeFed returns the deserialization method for the "ForgeFedCommittedProperty" non-functional property in the vocabulary "ForgeFed"

func (Manager) DeserializeContentPropertyActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeContentPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsContentProperty, error)

DeserializeContentPropertyActivityStreams returns the deserialization method for the "ActivityStreamsContentProperty" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeContextPropertyActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeContextPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsContextProperty, error)

DeserializeContextPropertyActivityStreams returns the deserialization method for the "ActivityStreamsContextProperty" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeCreateActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeCreateActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsCreate, error)

DeserializeCreateActivityStreams returns the deserialization method for the "ActivityStreamsCreate" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeCurrentPropertyActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeCurrentPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsCurrentProperty, error)

DeserializeCurrentPropertyActivityStreams returns the deserialization method for the "ActivityStreamsCurrentProperty" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeDeleteActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeDeleteActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsDelete, error)

DeserializeDeleteActivityStreams returns the deserialization method for the "ActivityStreamsDelete" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeDeletedPropertyActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeDeletedPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsDeletedProperty, error)

DeserializeDeletedPropertyActivityStreams returns the deserialization method for the "ActivityStreamsDeletedProperty" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeDependantsPropertyForgeFed ¶ added in v1.0.0

func (this Manager) DeserializeDependantsPropertyForgeFed() func(map[string]interface{}, map[string]string) (vocab.ForgeFedDependantsProperty, error)

DeserializeDependantsPropertyForgeFed returns the deserialization method for the "ForgeFedDependantsProperty" non-functional property in the vocabulary "ForgeFed"

func (Manager) DeserializeDependedByPropertyForgeFed ¶ added in v1.0.0

func (this Manager) DeserializeDependedByPropertyForgeFed() func(map[string]interface{}, map[string]string) (vocab.ForgeFedDependedByProperty, error)

DeserializeDependedByPropertyForgeFed returns the deserialization method for the "ForgeFedDependedByProperty" non-functional property in the vocabulary "ForgeFed"

func (Manager) DeserializeDependenciesPropertyForgeFed ¶ added in v1.0.0

func (this Manager) DeserializeDependenciesPropertyForgeFed() func(map[string]interface{}, map[string]string) (vocab.ForgeFedDependenciesProperty, error)

DeserializeDependenciesPropertyForgeFed returns the deserialization method for the "ForgeFedDependenciesProperty" non-functional property in the vocabulary "ForgeFed"

func (Manager) DeserializeDependsOnPropertyForgeFed ¶ added in v1.0.0

func (this Manager) DeserializeDependsOnPropertyForgeFed() func(map[string]interface{}, map[string]string) (vocab.ForgeFedDependsOnProperty, error)

DeserializeDependsOnPropertyForgeFed returns the deserialization method for the "ForgeFedDependsOnProperty" non-functional property in the vocabulary "ForgeFed"

func (Manager) DeserializeDescribesPropertyActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeDescribesPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsDescribesProperty, error)

DeserializeDescribesPropertyActivityStreams returns the deserialization method for the "ActivityStreamsDescribesProperty" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeDescriptionPropertyForgeFed ¶ added in v1.0.0

func (this Manager) DeserializeDescriptionPropertyForgeFed() func(map[string]interface{}, map[string]string) (vocab.ForgeFedDescriptionProperty, error)

DeserializeDescriptionPropertyForgeFed returns the deserialization method for the "ForgeFedDescriptionProperty" non-functional property in the vocabulary "ForgeFed"

func (Manager) DeserializeDiscoverablePropertyToot ¶ added in v1.0.0

func (this Manager) DeserializeDiscoverablePropertyToot() func(map[string]interface{}, map[string]string) (vocab.TootDiscoverableProperty, error)

DeserializeDiscoverablePropertyToot returns the deserialization method for the "TootDiscoverableProperty" non-functional property in the vocabulary "Toot"

func (Manager) DeserializeDislikeActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeDislikeActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsDislike, error)

DeserializeDislikeActivityStreams returns the deserialization method for the "ActivityStreamsDislike" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeDocumentActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeDocumentActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsDocument, error)

DeserializeDocumentActivityStreams returns the deserialization method for the "ActivityStreamsDocument" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeDurationPropertyActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeDurationPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsDurationProperty, error)

DeserializeDurationPropertyActivityStreams returns the deserialization method for the "ActivityStreamsDurationProperty" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeEarlyItemsPropertyForgeFed ¶ added in v1.0.0

func (this Manager) DeserializeEarlyItemsPropertyForgeFed() func(map[string]interface{}, map[string]string) (vocab.ForgeFedEarlyItemsProperty, error)

DeserializeEarlyItemsPropertyForgeFed returns the deserialization method for the "ForgeFedEarlyItemsProperty" non-functional property in the vocabulary "ForgeFed"

func (Manager) DeserializeEmojiToot ¶ added in v1.0.0

func (this Manager) DeserializeEmojiToot() func(map[string]interface{}, map[string]string) (vocab.TootEmoji, error)

DeserializeEmojiToot returns the deserialization method for the "TootEmoji" non-functional property in the vocabulary "Toot"

func (Manager) DeserializeEndTimePropertyActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeEndTimePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsEndTimeProperty, error)

DeserializeEndTimePropertyActivityStreams returns the deserialization method for the "ActivityStreamsEndTimeProperty" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeEventActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeEventActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsEvent, error)

DeserializeEventActivityStreams returns the deserialization method for the "ActivityStreamsEvent" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeFeaturedPropertyToot ¶ added in v1.0.0

func (this Manager) DeserializeFeaturedPropertyToot() func(map[string]interface{}, map[string]string) (vocab.TootFeaturedProperty, error)

DeserializeFeaturedPropertyToot returns the deserialization method for the "TootFeaturedProperty" non-functional property in the vocabulary "Toot"

func (Manager) DeserializeFilesAddedPropertyForgeFed ¶ added in v1.0.0

func (this Manager) DeserializeFilesAddedPropertyForgeFed() func(map[string]interface{}, map[string]string) (vocab.ForgeFedFilesAddedProperty, error)

DeserializeFilesAddedPropertyForgeFed returns the deserialization method for the "ForgeFedFilesAddedProperty" non-functional property in the vocabulary "ForgeFed"

func (Manager) DeserializeFilesModifiedPropertyForgeFed ¶ added in v1.0.0

func (this Manager) DeserializeFilesModifiedPropertyForgeFed() func(map[string]interface{}, map[string]string) (vocab.ForgeFedFilesModifiedProperty, error)

DeserializeFilesModifiedPropertyForgeFed returns the deserialization method for the "ForgeFedFilesModifiedProperty" non-functional property in the vocabulary "ForgeFed"

func (Manager) DeserializeFilesRemovedPropertyForgeFed ¶ added in v1.0.0

func (this Manager) DeserializeFilesRemovedPropertyForgeFed() func(map[string]interface{}, map[string]string) (vocab.ForgeFedFilesRemovedProperty, error)

DeserializeFilesRemovedPropertyForgeFed returns the deserialization method for the "ForgeFedFilesRemovedProperty" non-functional property in the vocabulary "ForgeFed"

func (Manager) DeserializeFirstPropertyActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeFirstPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsFirstProperty, error)

DeserializeFirstPropertyActivityStreams returns the deserialization method for the "ActivityStreamsFirstProperty" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeFlagActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeFlagActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsFlag, error)

DeserializeFlagActivityStreams returns the deserialization method for the "ActivityStreamsFlag" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeFollowActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeFollowActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsFollow, error)

DeserializeFollowActivityStreams returns the deserialization method for the "ActivityStreamsFollow" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeFollowersPropertyActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeFollowersPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsFollowersProperty, error)

DeserializeFollowersPropertyActivityStreams returns the deserialization method for the "ActivityStreamsFollowersProperty" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeFollowingPropertyActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeFollowingPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsFollowingProperty, error)

DeserializeFollowingPropertyActivityStreams returns the deserialization method for the "ActivityStreamsFollowingProperty" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeForksPropertyForgeFed ¶ added in v1.0.0

func (this Manager) DeserializeForksPropertyForgeFed() func(map[string]interface{}, map[string]string) (vocab.ForgeFedForksProperty, error)

DeserializeForksPropertyForgeFed returns the deserialization method for the "ForgeFedForksProperty" non-functional property in the vocabulary "ForgeFed"

func (Manager) DeserializeFormerTypePropertyActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeFormerTypePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsFormerTypeProperty, error)

DeserializeFormerTypePropertyActivityStreams returns the deserialization method for the "ActivityStreamsFormerTypeProperty" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeGeneratorPropertyActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeGeneratorPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsGeneratorProperty, error)

DeserializeGeneratorPropertyActivityStreams returns the deserialization method for the "ActivityStreamsGeneratorProperty" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeGroupActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeGroupActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsGroup, error)

DeserializeGroupActivityStreams returns the deserialization method for the "ActivityStreamsGroup" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeHashPropertyForgeFed ¶ added in v1.0.0

func (this Manager) DeserializeHashPropertyForgeFed() func(map[string]interface{}, map[string]string) (vocab.ForgeFedHashProperty, error)

DeserializeHashPropertyForgeFed returns the deserialization method for the "ForgeFedHashProperty" non-functional property in the vocabulary "ForgeFed"

func (Manager) DeserializeHeightPropertyActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeHeightPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsHeightProperty, error)

DeserializeHeightPropertyActivityStreams returns the deserialization method for the "ActivityStreamsHeightProperty" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeHrefPropertyActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeHrefPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsHrefProperty, error)

DeserializeHrefPropertyActivityStreams returns the deserialization method for the "ActivityStreamsHrefProperty" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeHreflangPropertyActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeHreflangPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsHreflangProperty, error)

DeserializeHreflangPropertyActivityStreams returns the deserialization method for the "ActivityStreamsHreflangProperty" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeIconPropertyActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeIconPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsIconProperty, error)

DeserializeIconPropertyActivityStreams returns the deserialization method for the "ActivityStreamsIconProperty" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeIdPropertyJSONLD ¶ added in v1.0.0

func (this Manager) DeserializeIdPropertyJSONLD() func(map[string]interface{}, map[string]string) (vocab.JSONLDIdProperty, error)

DeserializeIdPropertyJSONLD returns the deserialization method for the "JSONLDIdProperty" non-functional property in the vocabulary "JSONLD"

func (Manager) DeserializeIdentityProofToot ¶ added in v1.0.0

func (this Manager) DeserializeIdentityProofToot() func(map[string]interface{}, map[string]string) (vocab.TootIdentityProof, error)

DeserializeIdentityProofToot returns the deserialization method for the "TootIdentityProof" non-functional property in the vocabulary "Toot"

func (Manager) DeserializeIgnoreActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeIgnoreActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsIgnore, error)

DeserializeIgnoreActivityStreams returns the deserialization method for the "ActivityStreamsIgnore" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeImageActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeImageActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsImage, error)

DeserializeImageActivityStreams returns the deserialization method for the "ActivityStreamsImage" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeImagePropertyActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeImagePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsImageProperty, error)

DeserializeImagePropertyActivityStreams returns the deserialization method for the "ActivityStreamsImageProperty" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeInReplyToPropertyActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeInReplyToPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsInReplyToProperty, error)

DeserializeInReplyToPropertyActivityStreams returns the deserialization method for the "ActivityStreamsInReplyToProperty" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeInboxPropertyActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeInboxPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsInboxProperty, error)

DeserializeInboxPropertyActivityStreams returns the deserialization method for the "ActivityStreamsInboxProperty" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeInstrumentPropertyActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeInstrumentPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsInstrumentProperty, error)

DeserializeInstrumentPropertyActivityStreams returns the deserialization method for the "ActivityStreamsInstrumentProperty" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeIntransitiveActivityActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeIntransitiveActivityActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsIntransitiveActivity, error)

DeserializeIntransitiveActivityActivityStreams returns the deserialization method for the "ActivityStreamsIntransitiveActivity" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeInviteActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeInviteActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsInvite, error)

DeserializeInviteActivityStreams returns the deserialization method for the "ActivityStreamsInvite" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeIsResolvedPropertyForgeFed ¶ added in v1.0.0

func (this Manager) DeserializeIsResolvedPropertyForgeFed() func(map[string]interface{}, map[string]string) (vocab.ForgeFedIsResolvedProperty, error)

DeserializeIsResolvedPropertyForgeFed returns the deserialization method for the "ForgeFedIsResolvedProperty" non-functional property in the vocabulary "ForgeFed"

func (Manager) DeserializeItemsPropertyActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeItemsPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsItemsProperty, error)

DeserializeItemsPropertyActivityStreams returns the deserialization method for the "ActivityStreamsItemsProperty" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeJoinActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeJoinActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsJoin, error)

DeserializeJoinActivityStreams returns the deserialization method for the "ActivityStreamsJoin" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeLastPropertyActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeLastPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsLastProperty, error)

DeserializeLastPropertyActivityStreams returns the deserialization method for the "ActivityStreamsLastProperty" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeLatitudePropertyActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeLatitudePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsLatitudeProperty, error)

DeserializeLatitudePropertyActivityStreams returns the deserialization method for the "ActivityStreamsLatitudeProperty" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeLeaveActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeLeaveActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsLeave, error)

DeserializeLeaveActivityStreams returns the deserialization method for the "ActivityStreamsLeave" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeLikeActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeLikeActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsLike, error)

DeserializeLikeActivityStreams returns the deserialization method for the "ActivityStreamsLike" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeLikedPropertyActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeLikedPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsLikedProperty, error)

DeserializeLikedPropertyActivityStreams returns the deserialization method for the "ActivityStreamsLikedProperty" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeLikesPropertyActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeLikesPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsLikesProperty, error)

DeserializeLikesPropertyActivityStreams returns the deserialization method for the "ActivityStreamsLikesProperty" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeLinkActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeLinkActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsLink, error)

DeserializeLinkActivityStreams returns the deserialization method for the "ActivityStreamsLink" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeListenActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeListenActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsListen, error)

DeserializeListenActivityStreams returns the deserialization method for the "ActivityStreamsListen" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeLocationPropertyActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeLocationPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsLocationProperty, error)

DeserializeLocationPropertyActivityStreams returns the deserialization method for the "ActivityStreamsLocationProperty" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeLongitudePropertyActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeLongitudePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsLongitudeProperty, error)

DeserializeLongitudePropertyActivityStreams returns the deserialization method for the "ActivityStreamsLongitudeProperty" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeMediaTypePropertyActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeMediaTypePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsMediaTypeProperty, error)

DeserializeMediaTypePropertyActivityStreams returns the deserialization method for the "ActivityStreamsMediaTypeProperty" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeMentionActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeMentionActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsMention, error)

DeserializeMentionActivityStreams returns the deserialization method for the "ActivityStreamsMention" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeMoveActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeMoveActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsMove, error)

DeserializeMoveActivityStreams returns the deserialization method for the "ActivityStreamsMove" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeNamePropertyActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeNamePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsNameProperty, error)

DeserializeNamePropertyActivityStreams returns the deserialization method for the "ActivityStreamsNameProperty" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeNextPropertyActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeNextPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsNextProperty, error)

DeserializeNextPropertyActivityStreams returns the deserialization method for the "ActivityStreamsNextProperty" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeNoteActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeNoteActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsNote, error)

DeserializeNoteActivityStreams returns the deserialization method for the "ActivityStreamsNote" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeObjectActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeObjectActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsObject, error)

DeserializeObjectActivityStreams returns the deserialization method for the "ActivityStreamsObject" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeObjectPropertyActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeObjectPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsObjectProperty, error)

DeserializeObjectPropertyActivityStreams returns the deserialization method for the "ActivityStreamsObjectProperty" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeOfferActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeOfferActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsOffer, error)

DeserializeOfferActivityStreams returns the deserialization method for the "ActivityStreamsOffer" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeOneOfPropertyActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeOneOfPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsOneOfProperty, error)

DeserializeOneOfPropertyActivityStreams returns the deserialization method for the "ActivityStreamsOneOfProperty" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeOrderedCollectionActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeOrderedCollectionActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsOrderedCollection, error)

DeserializeOrderedCollectionActivityStreams returns the deserialization method for the "ActivityStreamsOrderedCollection" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeOrderedCollectionPageActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeOrderedCollectionPageActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsOrderedCollectionPage, error)

DeserializeOrderedCollectionPageActivityStreams returns the deserialization method for the "ActivityStreamsOrderedCollectionPage" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeOrderedItemsPropertyActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeOrderedItemsPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsOrderedItemsProperty, error)

DeserializeOrderedItemsPropertyActivityStreams returns the deserialization method for the "ActivityStreamsOrderedItemsProperty" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeOrganizationActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeOrganizationActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsOrganization, error)

DeserializeOrganizationActivityStreams returns the deserialization method for the "ActivityStreamsOrganization" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeOriginPropertyActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeOriginPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsOriginProperty, error)

DeserializeOriginPropertyActivityStreams returns the deserialization method for the "ActivityStreamsOriginProperty" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeOutboxPropertyActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeOutboxPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsOutboxProperty, error)

DeserializeOutboxPropertyActivityStreams returns the deserialization method for the "ActivityStreamsOutboxProperty" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeOwnerPropertyW3IDSecurityV1 ¶ added in v1.0.0

func (this Manager) DeserializeOwnerPropertyW3IDSecurityV1() func(map[string]interface{}, map[string]string) (vocab.W3IDSecurityV1OwnerProperty, error)

DeserializeOwnerPropertyW3IDSecurityV1 returns the deserialization method for the "W3IDSecurityV1OwnerProperty" non-functional property in the vocabulary "W3IDSecurityV1"

func (Manager) DeserializePageActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializePageActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsPage, error)

DeserializePageActivityStreams returns the deserialization method for the "ActivityStreamsPage" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializePartOfPropertyActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializePartOfPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsPartOfProperty, error)

DeserializePartOfPropertyActivityStreams returns the deserialization method for the "ActivityStreamsPartOfProperty" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializePersonActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializePersonActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsPerson, error)

DeserializePersonActivityStreams returns the deserialization method for the "ActivityStreamsPerson" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializePlaceActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializePlaceActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsPlace, error)

DeserializePlaceActivityStreams returns the deserialization method for the "ActivityStreamsPlace" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializePreferredUsernamePropertyActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializePreferredUsernamePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsPreferredUsernameProperty, error)

DeserializePreferredUsernamePropertyActivityStreams returns the deserialization method for the "ActivityStreamsPreferredUsernameProperty" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializePrevPropertyActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializePrevPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsPrevProperty, error)

DeserializePrevPropertyActivityStreams returns the deserialization method for the "ActivityStreamsPrevProperty" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializePreviewPropertyActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializePreviewPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsPreviewProperty, error)

DeserializePreviewPropertyActivityStreams returns the deserialization method for the "ActivityStreamsPreviewProperty" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeProfileActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeProfileActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsProfile, error)

DeserializeProfileActivityStreams returns the deserialization method for the "ActivityStreamsProfile" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializePublicKeyPemPropertyW3IDSecurityV1 ¶ added in v1.0.0

func (this Manager) DeserializePublicKeyPemPropertyW3IDSecurityV1() func(map[string]interface{}, map[string]string) (vocab.W3IDSecurityV1PublicKeyPemProperty, error)

DeserializePublicKeyPemPropertyW3IDSecurityV1 returns the deserialization method for the "W3IDSecurityV1PublicKeyPemProperty" non-functional property in the vocabulary "W3IDSecurityV1"

func (Manager) DeserializePublicKeyPropertyW3IDSecurityV1 ¶ added in v1.0.0

func (this Manager) DeserializePublicKeyPropertyW3IDSecurityV1() func(map[string]interface{}, map[string]string) (vocab.W3IDSecurityV1PublicKeyProperty, error)

DeserializePublicKeyPropertyW3IDSecurityV1 returns the deserialization method for the "W3IDSecurityV1PublicKeyProperty" non-functional property in the vocabulary "W3IDSecurityV1"

func (Manager) DeserializePublicKeyW3IDSecurityV1 ¶ added in v1.0.0

func (this Manager) DeserializePublicKeyW3IDSecurityV1() func(map[string]interface{}, map[string]string) (vocab.W3IDSecurityV1PublicKey, error)

DeserializePublicKeyW3IDSecurityV1 returns the deserialization method for the "W3IDSecurityV1PublicKey" non-functional property in the vocabulary "W3IDSecurityV1"

func (Manager) DeserializePublishedPropertyActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializePublishedPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsPublishedProperty, error)

DeserializePublishedPropertyActivityStreams returns the deserialization method for the "ActivityStreamsPublishedProperty" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializePushForgeFed ¶ added in v1.0.0

func (this Manager) DeserializePushForgeFed() func(map[string]interface{}, map[string]string) (vocab.ForgeFedPush, error)

DeserializePushForgeFed returns the deserialization method for the "ForgeFedPush" non-functional property in the vocabulary "ForgeFed"

func (Manager) DeserializeQuestionActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeQuestionActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsQuestion, error)

DeserializeQuestionActivityStreams returns the deserialization method for the "ActivityStreamsQuestion" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeRadiusPropertyActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeRadiusPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsRadiusProperty, error)

DeserializeRadiusPropertyActivityStreams returns the deserialization method for the "ActivityStreamsRadiusProperty" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeReadActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeReadActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsRead, error)

DeserializeReadActivityStreams returns the deserialization method for the "ActivityStreamsRead" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeRefPropertyForgeFed ¶ added in v1.0.0

func (this Manager) DeserializeRefPropertyForgeFed() func(map[string]interface{}, map[string]string) (vocab.ForgeFedRefProperty, error)

DeserializeRefPropertyForgeFed returns the deserialization method for the "ForgeFedRefProperty" non-functional property in the vocabulary "ForgeFed"

func (Manager) DeserializeRejectActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeRejectActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsReject, error)

DeserializeRejectActivityStreams returns the deserialization method for the "ActivityStreamsReject" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeRelPropertyActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeRelPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsRelProperty, error)

DeserializeRelPropertyActivityStreams returns the deserialization method for the "ActivityStreamsRelProperty" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeRelationshipActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeRelationshipActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsRelationship, error)

DeserializeRelationshipActivityStreams returns the deserialization method for the "ActivityStreamsRelationship" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeRelationshipPropertyActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeRelationshipPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsRelationshipProperty, error)

DeserializeRelationshipPropertyActivityStreams returns the deserialization method for the "ActivityStreamsRelationshipProperty" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeRemoveActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeRemoveActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsRemove, error)

DeserializeRemoveActivityStreams returns the deserialization method for the "ActivityStreamsRemove" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeRepliesPropertyActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeRepliesPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsRepliesProperty, error)

DeserializeRepliesPropertyActivityStreams returns the deserialization method for the "ActivityStreamsRepliesProperty" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeRepositoryForgeFed ¶ added in v1.0.0

func (this Manager) DeserializeRepositoryForgeFed() func(map[string]interface{}, map[string]string) (vocab.ForgeFedRepository, error)

DeserializeRepositoryForgeFed returns the deserialization method for the "ForgeFedRepository" non-functional property in the vocabulary "ForgeFed"

func (Manager) DeserializeResultPropertyActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeResultPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsResultProperty, error)

DeserializeResultPropertyActivityStreams returns the deserialization method for the "ActivityStreamsResultProperty" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeServiceActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeServiceActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsService, error)

DeserializeServiceActivityStreams returns the deserialization method for the "ActivityStreamsService" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeSharesPropertyActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeSharesPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSharesProperty, error)

DeserializeSharesPropertyActivityStreams returns the deserialization method for the "ActivityStreamsSharesProperty" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeSignatureAlgorithmPropertyToot ¶ added in v1.0.0

func (this Manager) DeserializeSignatureAlgorithmPropertyToot() func(map[string]interface{}, map[string]string) (vocab.TootSignatureAlgorithmProperty, error)

DeserializeSignatureAlgorithmPropertyToot returns the deserialization method for the "TootSignatureAlgorithmProperty" non-functional property in the vocabulary "Toot"

func (Manager) DeserializeSignatureValuePropertyToot ¶ added in v1.0.0

func (this Manager) DeserializeSignatureValuePropertyToot() func(map[string]interface{}, map[string]string) (vocab.TootSignatureValueProperty, error)

DeserializeSignatureValuePropertyToot returns the deserialization method for the "TootSignatureValueProperty" non-functional property in the vocabulary "Toot"

func (Manager) DeserializeSourcePropertyActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeSourcePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSourceProperty, error)

DeserializeSourcePropertyActivityStreams returns the deserialization method for the "ActivityStreamsSourceProperty" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeStartIndexPropertyActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeStartIndexPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsStartIndexProperty, error)

DeserializeStartIndexPropertyActivityStreams returns the deserialization method for the "ActivityStreamsStartIndexProperty" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeStartTimePropertyActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeStartTimePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsStartTimeProperty, error)

DeserializeStartTimePropertyActivityStreams returns the deserialization method for the "ActivityStreamsStartTimeProperty" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeStreamsPropertyActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeStreamsPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsStreamsProperty, error)

DeserializeStreamsPropertyActivityStreams returns the deserialization method for the "ActivityStreamsStreamsProperty" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeSubjectPropertyActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeSubjectPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSubjectProperty, error)

DeserializeSubjectPropertyActivityStreams returns the deserialization method for the "ActivityStreamsSubjectProperty" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeSummaryPropertyActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeSummaryPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSummaryProperty, error)

DeserializeSummaryPropertyActivityStreams returns the deserialization method for the "ActivityStreamsSummaryProperty" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeTagPropertyActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeTagPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsTagProperty, error)

DeserializeTagPropertyActivityStreams returns the deserialization method for the "ActivityStreamsTagProperty" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeTargetPropertyActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeTargetPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsTargetProperty, error)

DeserializeTargetPropertyActivityStreams returns the deserialization method for the "ActivityStreamsTargetProperty" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeTeamPropertyForgeFed ¶ added in v1.0.0

func (this Manager) DeserializeTeamPropertyForgeFed() func(map[string]interface{}, map[string]string) (vocab.ForgeFedTeamProperty, error)

DeserializeTeamPropertyForgeFed returns the deserialization method for the "ForgeFedTeamProperty" non-functional property in the vocabulary "ForgeFed"

func (Manager) DeserializeTentativeAcceptActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeTentativeAcceptActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsTentativeAccept, error)

DeserializeTentativeAcceptActivityStreams returns the deserialization method for the "ActivityStreamsTentativeAccept" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeTentativeRejectActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeTentativeRejectActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsTentativeReject, error)

DeserializeTentativeRejectActivityStreams returns the deserialization method for the "ActivityStreamsTentativeReject" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeTicketDependencyForgeFed ¶ added in v1.0.0

func (this Manager) DeserializeTicketDependencyForgeFed() func(map[string]interface{}, map[string]string) (vocab.ForgeFedTicketDependency, error)

DeserializeTicketDependencyForgeFed returns the deserialization method for the "ForgeFedTicketDependency" non-functional property in the vocabulary "ForgeFed"

func (Manager) DeserializeTicketForgeFed ¶ added in v1.0.0

func (this Manager) DeserializeTicketForgeFed() func(map[string]interface{}, map[string]string) (vocab.ForgeFedTicket, error)

DeserializeTicketForgeFed returns the deserialization method for the "ForgeFedTicket" non-functional property in the vocabulary "ForgeFed"

func (Manager) DeserializeTicketsTrackedByPropertyForgeFed ¶ added in v1.0.0

func (this Manager) DeserializeTicketsTrackedByPropertyForgeFed() func(map[string]interface{}, map[string]string) (vocab.ForgeFedTicketsTrackedByProperty, error)

DeserializeTicketsTrackedByPropertyForgeFed returns the deserialization method for the "ForgeFedTicketsTrackedByProperty" non-functional property in the vocabulary "ForgeFed"

func (Manager) DeserializeToPropertyActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeToPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsToProperty, error)

DeserializeToPropertyActivityStreams returns the deserialization method for the "ActivityStreamsToProperty" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeTombstoneActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeTombstoneActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsTombstone, error)

DeserializeTombstoneActivityStreams returns the deserialization method for the "ActivityStreamsTombstone" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeTotalItemsPropertyActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeTotalItemsPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsTotalItemsProperty, error)

DeserializeTotalItemsPropertyActivityStreams returns the deserialization method for the "ActivityStreamsTotalItemsProperty" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeTracksTicketsForPropertyForgeFed ¶ added in v1.0.0

func (this Manager) DeserializeTracksTicketsForPropertyForgeFed() func(map[string]interface{}, map[string]string) (vocab.ForgeFedTracksTicketsForProperty, error)

DeserializeTracksTicketsForPropertyForgeFed returns the deserialization method for the "ForgeFedTracksTicketsForProperty" non-functional property in the vocabulary "ForgeFed"

func (Manager) DeserializeTravelActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeTravelActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsTravel, error)

DeserializeTravelActivityStreams returns the deserialization method for the "ActivityStreamsTravel" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeTypePropertyJSONLD ¶ added in v1.0.0

func (this Manager) DeserializeTypePropertyJSONLD() func(map[string]interface{}, map[string]string) (vocab.JSONLDTypeProperty, error)

DeserializeTypePropertyJSONLD returns the deserialization method for the "JSONLDTypeProperty" non-functional property in the vocabulary "JSONLD"

func (Manager) DeserializeUndoActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeUndoActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsUndo, error)

DeserializeUndoActivityStreams returns the deserialization method for the "ActivityStreamsUndo" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeUnitsPropertyActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeUnitsPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsUnitsProperty, error)

DeserializeUnitsPropertyActivityStreams returns the deserialization method for the "ActivityStreamsUnitsProperty" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeUpdateActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeUpdateActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsUpdate, error)

DeserializeUpdateActivityStreams returns the deserialization method for the "ActivityStreamsUpdate" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeUpdatedPropertyActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeUpdatedPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsUpdatedProperty, error)

DeserializeUpdatedPropertyActivityStreams returns the deserialization method for the "ActivityStreamsUpdatedProperty" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeUrlPropertyActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeUrlPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsUrlProperty, error)

DeserializeUrlPropertyActivityStreams returns the deserialization method for the "ActivityStreamsUrlProperty" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeVideoActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeVideoActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsVideo, error)

DeserializeVideoActivityStreams returns the deserialization method for the "ActivityStreamsVideo" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeViewActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeViewActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsView, error)

DeserializeViewActivityStreams returns the deserialization method for the "ActivityStreamsView" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeVotersCountPropertyToot ¶ added in v1.0.0

func (this Manager) DeserializeVotersCountPropertyToot() func(map[string]interface{}, map[string]string) (vocab.TootVotersCountProperty, error)

DeserializeVotersCountPropertyToot returns the deserialization method for the "TootVotersCountProperty" non-functional property in the vocabulary "Toot"

func (Manager) DeserializeWidthPropertyActivityStreams ¶ added in v1.0.0

func (this Manager) DeserializeWidthPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsWidthProperty, error)

DeserializeWidthPropertyActivityStreams returns the deserialization method for the "ActivityStreamsWidthProperty" non-functional property in the vocabulary "ActivityStreams"

type Resolver ¶

type Resolver interface {
	// Resolve will attempt to resolve an untyped ActivityStreams value into a
	// Go concrete type.
	Resolve(ctx context.Context, o ActivityStreamsInterface) error
}

Resolver represents any TypeResolver.

type TypePredicatedResolver ¶ added in v1.0.0

type TypePredicatedResolver struct {
	// contains filtered or unexported fields
}

TypePredicatedResolver resolves ActivityStreams values if the value satisfies a predicate condition based on its type.

func NewTypePredicatedResolver ¶ added in v1.0.0

func NewTypePredicatedResolver(delegate Resolver, predicate interface{}) (*TypePredicatedResolver, error)

NewTypePredicatedResolver creates a new Resolver that applies a predicate to an ActivityStreams value to determine whether to Resolve or not. The ActivityStreams value's type is examined to determine if the predicate can apply itself to the value. This guarantees the predicate will receive a concrete value whose underlying ActivityStreams type matches the concrete interface name. The predicate function must be of the form:

func(context.Context, <TypeInterface>) (bool, error)

where TypeInterface is the code-generated interface for an ActivityStreams type. An error is returned if the predicate does not match this signature.

func (TypePredicatedResolver) Apply ¶ added in v1.0.0

Apply uses a predicate to determine whether to resolve the ActivityStreams value. The predicate's signature is matched with the ActivityStreams value's type. This strictly assures that the predicate will only be passed ActivityStream objects whose type matches its interface. Returns an error if the ActivityStreams type does not match the predicate, is not a type handled by the generated code, or the resolver returns an error. Returns true if the predicate returned true.

type TypeResolver ¶ added in v1.0.0

type TypeResolver struct {
	// contains filtered or unexported fields
}

TypeResolver resolves ActivityStreams values based on their type name.

func NewTypeResolver ¶ added in v1.0.0

func NewTypeResolver(callbacks ...interface{}) (*TypeResolver, error)

NewTypeResolver creates a new Resolver that examines the type of an ActivityStream value to determine what callback function to pass the concretely typed value. The callback is guaranteed to receive a value whose underlying ActivityStreams type matches the concrete interface name in its signature. The callback functions must be of the form:

func(context.Context, <TypeInterface>) error

where TypeInterface is the code-generated interface for an ActivityStream type. An error is returned if a callback function does not match this signature.

func (TypeResolver) Resolve ¶ added in v1.0.0

Resolve applies the first callback function whose signature accepts the ActivityStreams value's type. This strictly assures that the callback function will only be passed ActivityStream objects whose type matches its interface. Returns an error if the ActivityStreams type does not match callbackers, is not a type handled by the generated code, or the value passed in is not go-fed compatible.

Directories ¶

Path Synopsis
impl
activitystreams/property_accuracy
Package propertyaccuracy contains the implementation for the accuracy property.
Package propertyaccuracy contains the implementation for the accuracy property.
activitystreams/property_actor
Package propertyactor contains the implementation for the actor property.
Package propertyactor contains the implementation for the actor property.
activitystreams/property_altitude
Package propertyaltitude contains the implementation for the altitude property.
Package propertyaltitude contains the implementation for the altitude property.
activitystreams/property_anyof
Package propertyanyof contains the implementation for the anyOf property.
Package propertyanyof contains the implementation for the anyOf property.
activitystreams/property_attachment
Package propertyattachment contains the implementation for the attachment property.
Package propertyattachment contains the implementation for the attachment property.
activitystreams/property_attributedto
Package propertyattributedto contains the implementation for the attributedTo property.
Package propertyattributedto contains the implementation for the attributedTo property.
activitystreams/property_audience
Package propertyaudience contains the implementation for the audience property.
Package propertyaudience contains the implementation for the audience property.
activitystreams/property_bcc
Package propertybcc contains the implementation for the bcc property.
Package propertybcc contains the implementation for the bcc property.
activitystreams/property_bto
Package propertybto contains the implementation for the bto property.
Package propertybto contains the implementation for the bto property.
activitystreams/property_cc
Package propertycc contains the implementation for the cc property.
Package propertycc contains the implementation for the cc property.
activitystreams/property_closed
Package propertyclosed contains the implementation for the closed property.
Package propertyclosed contains the implementation for the closed property.
activitystreams/property_content
Package propertycontent contains the implementation for the content property.
Package propertycontent contains the implementation for the content property.
activitystreams/property_context
Package propertycontext contains the implementation for the context property.
Package propertycontext contains the implementation for the context property.
activitystreams/property_current
Package propertycurrent contains the implementation for the current property.
Package propertycurrent contains the implementation for the current property.
activitystreams/property_deleted
Package propertydeleted contains the implementation for the deleted property.
Package propertydeleted contains the implementation for the deleted property.
activitystreams/property_describes
Package propertydescribes contains the implementation for the describes property.
Package propertydescribes contains the implementation for the describes property.
activitystreams/property_duration
Package propertyduration contains the implementation for the duration property.
Package propertyduration contains the implementation for the duration property.
activitystreams/property_endtime
Package propertyendtime contains the implementation for the endTime property.
Package propertyendtime contains the implementation for the endTime property.
activitystreams/property_first
Package propertyfirst contains the implementation for the first property.
Package propertyfirst contains the implementation for the first property.
activitystreams/property_followers
Package propertyfollowers contains the implementation for the followers property.
Package propertyfollowers contains the implementation for the followers property.
activitystreams/property_following
Package propertyfollowing contains the implementation for the following property.
Package propertyfollowing contains the implementation for the following property.
activitystreams/property_formertype
Package propertyformertype contains the implementation for the formerType property.
Package propertyformertype contains the implementation for the formerType property.
activitystreams/property_generator
Package propertygenerator contains the implementation for the generator property.
Package propertygenerator contains the implementation for the generator property.
activitystreams/property_height
Package propertyheight contains the implementation for the height property.
Package propertyheight contains the implementation for the height property.
activitystreams/property_href
Package propertyhref contains the implementation for the href property.
Package propertyhref contains the implementation for the href property.
activitystreams/property_hreflang
Package propertyhreflang contains the implementation for the hreflang property.
Package propertyhreflang contains the implementation for the hreflang property.
activitystreams/property_icon
Package propertyicon contains the implementation for the icon property.
Package propertyicon contains the implementation for the icon property.
activitystreams/property_image
Package propertyimage contains the implementation for the image property.
Package propertyimage contains the implementation for the image property.
activitystreams/property_inbox
Package propertyinbox contains the implementation for the inbox property.
Package propertyinbox contains the implementation for the inbox property.
activitystreams/property_inreplyto
Package propertyinreplyto contains the implementation for the inReplyTo property.
Package propertyinreplyto contains the implementation for the inReplyTo property.
activitystreams/property_instrument
Package propertyinstrument contains the implementation for the instrument property.
Package propertyinstrument contains the implementation for the instrument property.
activitystreams/property_items
Package propertyitems contains the implementation for the items property.
Package propertyitems contains the implementation for the items property.
activitystreams/property_last
Package propertylast contains the implementation for the last property.
Package propertylast contains the implementation for the last property.
activitystreams/property_latitude
Package propertylatitude contains the implementation for the latitude property.
Package propertylatitude contains the implementation for the latitude property.
activitystreams/property_liked
Package propertyliked contains the implementation for the liked property.
Package propertyliked contains the implementation for the liked property.
activitystreams/property_likes
Package propertylikes contains the implementation for the likes property.
Package propertylikes contains the implementation for the likes property.
activitystreams/property_location
Package propertylocation contains the implementation for the location property.
Package propertylocation contains the implementation for the location property.
activitystreams/property_longitude
Package propertylongitude contains the implementation for the longitude property.
Package propertylongitude contains the implementation for the longitude property.
activitystreams/property_mediatype
Package propertymediatype contains the implementation for the mediaType property.
Package propertymediatype contains the implementation for the mediaType property.
activitystreams/property_name
Package propertyname contains the implementation for the name property.
Package propertyname contains the implementation for the name property.
activitystreams/property_next
Package propertynext contains the implementation for the next property.
Package propertynext contains the implementation for the next property.
activitystreams/property_object
Package propertyobject contains the implementation for the object property.
Package propertyobject contains the implementation for the object property.
activitystreams/property_oneof
Package propertyoneof contains the implementation for the oneOf property.
Package propertyoneof contains the implementation for the oneOf property.
activitystreams/property_ordereditems
Package propertyordereditems contains the implementation for the orderedItems property.
Package propertyordereditems contains the implementation for the orderedItems property.
activitystreams/property_origin
Package propertyorigin contains the implementation for the origin property.
Package propertyorigin contains the implementation for the origin property.
activitystreams/property_outbox
Package propertyoutbox contains the implementation for the outbox property.
Package propertyoutbox contains the implementation for the outbox property.
activitystreams/property_partof
Package propertypartof contains the implementation for the partOf property.
Package propertypartof contains the implementation for the partOf property.
activitystreams/property_preferredusername
Package propertypreferredusername contains the implementation for the preferredUsername property.
Package propertypreferredusername contains the implementation for the preferredUsername property.
activitystreams/property_prev
Package propertyprev contains the implementation for the prev property.
Package propertyprev contains the implementation for the prev property.
activitystreams/property_preview
Package propertypreview contains the implementation for the preview property.
Package propertypreview contains the implementation for the preview property.
activitystreams/property_published
Package propertypublished contains the implementation for the published property.
Package propertypublished contains the implementation for the published property.
activitystreams/property_radius
Package propertyradius contains the implementation for the radius property.
Package propertyradius contains the implementation for the radius property.
activitystreams/property_rel
Package propertyrel contains the implementation for the rel property.
Package propertyrel contains the implementation for the rel property.
activitystreams/property_relationship
Package propertyrelationship contains the implementation for the relationship property.
Package propertyrelationship contains the implementation for the relationship property.
activitystreams/property_replies
Package propertyreplies contains the implementation for the replies property.
Package propertyreplies contains the implementation for the replies property.
activitystreams/property_result
Package propertyresult contains the implementation for the result property.
Package propertyresult contains the implementation for the result property.
activitystreams/property_shares
Package propertyshares contains the implementation for the shares property.
Package propertyshares contains the implementation for the shares property.
activitystreams/property_source
Package propertysource contains the implementation for the source property.
Package propertysource contains the implementation for the source property.
activitystreams/property_startindex
Package propertystartindex contains the implementation for the startIndex property.
Package propertystartindex contains the implementation for the startIndex property.
activitystreams/property_starttime
Package propertystarttime contains the implementation for the startTime property.
Package propertystarttime contains the implementation for the startTime property.
activitystreams/property_streams
Package propertystreams contains the implementation for the streams property.
Package propertystreams contains the implementation for the streams property.
activitystreams/property_subject
Package propertysubject contains the implementation for the subject property.
Package propertysubject contains the implementation for the subject property.
activitystreams/property_summary
Package propertysummary contains the implementation for the summary property.
Package propertysummary contains the implementation for the summary property.
activitystreams/property_tag
Package propertytag contains the implementation for the tag property.
Package propertytag contains the implementation for the tag property.
activitystreams/property_target
Package propertytarget contains the implementation for the target property.
Package propertytarget contains the implementation for the target property.
activitystreams/property_to
Package propertyto contains the implementation for the to property.
Package propertyto contains the implementation for the to property.
activitystreams/property_totalitems
Package propertytotalitems contains the implementation for the totalItems property.
Package propertytotalitems contains the implementation for the totalItems property.
activitystreams/property_units
Package propertyunits contains the implementation for the units property.
Package propertyunits contains the implementation for the units property.
activitystreams/property_updated
Package propertyupdated contains the implementation for the updated property.
Package propertyupdated contains the implementation for the updated property.
activitystreams/property_url
Package propertyurl contains the implementation for the url property.
Package propertyurl contains the implementation for the url property.
activitystreams/property_width
Package propertywidth contains the implementation for the width property.
Package propertywidth contains the implementation for the width property.
activitystreams/type_accept
Package typeaccept contains the implementation for the Accept type.
Package typeaccept contains the implementation for the Accept type.
activitystreams/type_activity
Package typeactivity contains the implementation for the Activity type.
Package typeactivity contains the implementation for the Activity type.
activitystreams/type_add
Package typeadd contains the implementation for the Add type.
Package typeadd contains the implementation for the Add type.
activitystreams/type_announce
Package typeannounce contains the implementation for the Announce type.
Package typeannounce contains the implementation for the Announce type.
activitystreams/type_application
Package typeapplication contains the implementation for the Application type.
Package typeapplication contains the implementation for the Application type.
activitystreams/type_arrive
Package typearrive contains the implementation for the Arrive type.
Package typearrive contains the implementation for the Arrive type.
activitystreams/type_article
Package typearticle contains the implementation for the Article type.
Package typearticle contains the implementation for the Article type.
activitystreams/type_audio
Package typeaudio contains the implementation for the Audio type.
Package typeaudio contains the implementation for the Audio type.
activitystreams/type_block
Package typeblock contains the implementation for the Block type.
Package typeblock contains the implementation for the Block type.
activitystreams/type_collection
Package typecollection contains the implementation for the Collection type.
Package typecollection contains the implementation for the Collection type.
activitystreams/type_collectionpage
Package typecollectionpage contains the implementation for the CollectionPage type.
Package typecollectionpage contains the implementation for the CollectionPage type.
activitystreams/type_create
Package typecreate contains the implementation for the Create type.
Package typecreate contains the implementation for the Create type.
activitystreams/type_delete
Package typedelete contains the implementation for the Delete type.
Package typedelete contains the implementation for the Delete type.
activitystreams/type_dislike
Package typedislike contains the implementation for the Dislike type.
Package typedislike contains the implementation for the Dislike type.
activitystreams/type_document
Package typedocument contains the implementation for the Document type.
Package typedocument contains the implementation for the Document type.
activitystreams/type_event
Package typeevent contains the implementation for the Event type.
Package typeevent contains the implementation for the Event type.
activitystreams/type_flag
Package typeflag contains the implementation for the Flag type.
Package typeflag contains the implementation for the Flag type.
activitystreams/type_follow
Package typefollow contains the implementation for the Follow type.
Package typefollow contains the implementation for the Follow type.
activitystreams/type_group
Package typegroup contains the implementation for the Group type.
Package typegroup contains the implementation for the Group type.
activitystreams/type_ignore
Package typeignore contains the implementation for the Ignore type.
Package typeignore contains the implementation for the Ignore type.
activitystreams/type_image
Package typeimage contains the implementation for the Image type.
Package typeimage contains the implementation for the Image type.
activitystreams/type_intransitiveactivity
Package typeintransitiveactivity contains the implementation for the IntransitiveActivity type.
Package typeintransitiveactivity contains the implementation for the IntransitiveActivity type.
activitystreams/type_invite
Package typeinvite contains the implementation for the Invite type.
Package typeinvite contains the implementation for the Invite type.
activitystreams/type_join
Package typejoin contains the implementation for the Join type.
Package typejoin contains the implementation for the Join type.
activitystreams/type_leave
Package typeleave contains the implementation for the Leave type.
Package typeleave contains the implementation for the Leave type.
activitystreams/type_like
Package typelike contains the implementation for the Like type.
Package typelike contains the implementation for the Like type.
activitystreams/type_link
Package typelink contains the implementation for the Link type.
Package typelink contains the implementation for the Link type.
activitystreams/type_listen
Package typelisten contains the implementation for the Listen type.
Package typelisten contains the implementation for the Listen type.
activitystreams/type_mention
Package typemention contains the implementation for the Mention type.
Package typemention contains the implementation for the Mention type.
activitystreams/type_move
Package typemove contains the implementation for the Move type.
Package typemove contains the implementation for the Move type.
activitystreams/type_note
Package typenote contains the implementation for the Note type.
Package typenote contains the implementation for the Note type.
activitystreams/type_object
Package typeobject contains the implementation for the Object type.
Package typeobject contains the implementation for the Object type.
activitystreams/type_offer
Package typeoffer contains the implementation for the Offer type.
Package typeoffer contains the implementation for the Offer type.
activitystreams/type_orderedcollection
Package typeorderedcollection contains the implementation for the OrderedCollection type.
Package typeorderedcollection contains the implementation for the OrderedCollection type.
activitystreams/type_orderedcollectionpage
Package typeorderedcollectionpage contains the implementation for the OrderedCollectionPage type.
Package typeorderedcollectionpage contains the implementation for the OrderedCollectionPage type.
activitystreams/type_organization
Package typeorganization contains the implementation for the Organization type.
Package typeorganization contains the implementation for the Organization type.
activitystreams/type_page
Package typepage contains the implementation for the Page type.
Package typepage contains the implementation for the Page type.
activitystreams/type_person
Package typeperson contains the implementation for the Person type.
Package typeperson contains the implementation for the Person type.
activitystreams/type_place
Package typeplace contains the implementation for the Place type.
Package typeplace contains the implementation for the Place type.
activitystreams/type_profile
Package typeprofile contains the implementation for the Profile type.
Package typeprofile contains the implementation for the Profile type.
activitystreams/type_question
Package typequestion contains the implementation for the Question type.
Package typequestion contains the implementation for the Question type.
activitystreams/type_read
Package typeread contains the implementation for the Read type.
Package typeread contains the implementation for the Read type.
activitystreams/type_reject
Package typereject contains the implementation for the Reject type.
Package typereject contains the implementation for the Reject type.
activitystreams/type_relationship
Package typerelationship contains the implementation for the Relationship type.
Package typerelationship contains the implementation for the Relationship type.
activitystreams/type_remove
Package typeremove contains the implementation for the Remove type.
Package typeremove contains the implementation for the Remove type.
activitystreams/type_service
Package typeservice contains the implementation for the Service type.
Package typeservice contains the implementation for the Service type.
activitystreams/type_tentativeaccept
Package typetentativeaccept contains the implementation for the TentativeAccept type.
Package typetentativeaccept contains the implementation for the TentativeAccept type.
activitystreams/type_tentativereject
Package typetentativereject contains the implementation for the TentativeReject type.
Package typetentativereject contains the implementation for the TentativeReject type.
activitystreams/type_tombstone
Package typetombstone contains the implementation for the Tombstone type.
Package typetombstone contains the implementation for the Tombstone type.
activitystreams/type_travel
Package typetravel contains the implementation for the Travel type.
Package typetravel contains the implementation for the Travel type.
activitystreams/type_undo
Package typeundo contains the implementation for the Undo type.
Package typeundo contains the implementation for the Undo type.
activitystreams/type_update
Package typeupdate contains the implementation for the Update type.
Package typeupdate contains the implementation for the Update type.
activitystreams/type_video
Package typevideo contains the implementation for the Video type.
Package typevideo contains the implementation for the Video type.
activitystreams/type_view
Package typeview contains the implementation for the View type.
Package typeview contains the implementation for the View type.
forgefed/property_assignedto
Package propertyassignedto contains the implementation for the assignedTo property.
Package propertyassignedto contains the implementation for the assignedTo property.
forgefed/property_committed
Package propertycommitted contains the implementation for the committed property.
Package propertycommitted contains the implementation for the committed property.
forgefed/property_committedby
Package propertycommittedby contains the implementation for the committedBy property.
Package propertycommittedby contains the implementation for the committedBy property.
forgefed/property_dependants
Package propertydependants contains the implementation for the dependants property.
Package propertydependants contains the implementation for the dependants property.
forgefed/property_dependedby
Package propertydependedby contains the implementation for the dependedBy property.
Package propertydependedby contains the implementation for the dependedBy property.
forgefed/property_dependencies
Package propertydependencies contains the implementation for the dependencies property.
Package propertydependencies contains the implementation for the dependencies property.
forgefed/property_dependson
Package propertydependson contains the implementation for the dependsOn property.
Package propertydependson contains the implementation for the dependsOn property.
forgefed/property_description
Package propertydescription contains the implementation for the description property.
Package propertydescription contains the implementation for the description property.
forgefed/property_earlyitems
Package propertyearlyitems contains the implementation for the earlyItems property.
Package propertyearlyitems contains the implementation for the earlyItems property.
forgefed/property_filesadded
Package propertyfilesadded contains the implementation for the filesAdded property.
Package propertyfilesadded contains the implementation for the filesAdded property.
forgefed/property_filesmodified
Package propertyfilesmodified contains the implementation for the filesModified property.
Package propertyfilesmodified contains the implementation for the filesModified property.
forgefed/property_filesremoved
Package propertyfilesremoved contains the implementation for the filesRemoved property.
Package propertyfilesremoved contains the implementation for the filesRemoved property.
forgefed/property_forks
Package propertyforks contains the implementation for the forks property.
Package propertyforks contains the implementation for the forks property.
forgefed/property_hash
Package propertyhash contains the implementation for the hash property.
Package propertyhash contains the implementation for the hash property.
forgefed/property_isresolved
Package propertyisresolved contains the implementation for the isResolved property.
Package propertyisresolved contains the implementation for the isResolved property.
forgefed/property_ref
Package propertyref contains the implementation for the ref property.
Package propertyref contains the implementation for the ref property.
forgefed/property_team
Package propertyteam contains the implementation for the team property.
Package propertyteam contains the implementation for the team property.
forgefed/property_ticketstrackedby
Package propertyticketstrackedby contains the implementation for the ticketsTrackedBy property.
Package propertyticketstrackedby contains the implementation for the ticketsTrackedBy property.
forgefed/property_tracksticketsfor
Package propertytracksticketsfor contains the implementation for the tracksTicketsFor property.
Package propertytracksticketsfor contains the implementation for the tracksTicketsFor property.
forgefed/type_branch
Package typebranch contains the implementation for the Branch type.
Package typebranch contains the implementation for the Branch type.
forgefed/type_commit
Package typecommit contains the implementation for the Commit type.
Package typecommit contains the implementation for the Commit type.
forgefed/type_push
Package typepush contains the implementation for the Push type.
Package typepush contains the implementation for the Push type.
forgefed/type_repository
Package typerepository contains the implementation for the Repository type.
Package typerepository contains the implementation for the Repository type.
forgefed/type_ticket
Package typeticket contains the implementation for the Ticket type.
Package typeticket contains the implementation for the Ticket type.
forgefed/type_ticketdependency
Package typeticketdependency contains the implementation for the TicketDependency type.
Package typeticketdependency contains the implementation for the TicketDependency type.
jsonld/property_id
Package propertyid contains the implementation for the id property.
Package propertyid contains the implementation for the id property.
jsonld/property_type
Package propertytype contains the implementation for the type property.
Package propertytype contains the implementation for the type property.
toot/property_blurhash
Package propertyblurhash contains the implementation for the blurhash property.
Package propertyblurhash contains the implementation for the blurhash property.
toot/property_discoverable
Package propertydiscoverable contains the implementation for the discoverable property.
Package propertydiscoverable contains the implementation for the discoverable property.
toot/property_featured
Package propertyfeatured contains the implementation for the featured property.
Package propertyfeatured contains the implementation for the featured property.
toot/property_signaturealgorithm
Package propertysignaturealgorithm contains the implementation for the signatureAlgorithm property.
Package propertysignaturealgorithm contains the implementation for the signatureAlgorithm property.
toot/property_signaturevalue
Package propertysignaturevalue contains the implementation for the signatureValue property.
Package propertysignaturevalue contains the implementation for the signatureValue property.
toot/property_voterscount
Package propertyvoterscount contains the implementation for the votersCount property.
Package propertyvoterscount contains the implementation for the votersCount property.
toot/type_emoji
Package typeemoji contains the implementation for the Emoji type.
Package typeemoji contains the implementation for the Emoji type.
toot/type_identityproof
Package typeidentityproof contains the implementation for the IdentityProof type.
Package typeidentityproof contains the implementation for the IdentityProof type.
w3idsecurityv1/property_owner
Package propertyowner contains the implementation for the owner property.
Package propertyowner contains the implementation for the owner property.
w3idsecurityv1/property_publickey
Package propertypublickey contains the implementation for the publicKey property.
Package propertypublickey contains the implementation for the publicKey property.
w3idsecurityv1/property_publickeypem
Package propertypublickeypem contains the implementation for the publicKeyPem property.
Package propertypublickeypem contains the implementation for the publicKeyPem property.
w3idsecurityv1/type_publickey
Package typepublickey contains the implementation for the PublicKey type.
Package typepublickey contains the implementation for the PublicKey type.
values
Package vocab contains the interfaces for the JSONLD vocabulary.
Package vocab contains the interfaces for the JSONLD vocabulary.

Jump to

Keyboard shortcuts

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