streams

package
v1.6.0-gts Latest Latest
Warning

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

Go to latest
Published: Jan 26, 2024 License: BSD-3-Clause Imports: 154 Imported by: 0

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 ActivityStreamsAlsoKnownAsPropertyName string = "alsoKnownAs"

ActivityStreamsAlsoKnownAsPropertyName is the string literal of the name for the alsoKnownAs property 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 ActivityStreamsEndpointsName string = "Endpoints"

ActivityStreamsEndpointsName is the string literal of the name for the Endpoints type in the ActivityStreams vocabulary.

View Source
var ActivityStreamsEndpointsPropertyName string = "endpoints"

ActivityStreamsEndpointsPropertyName is the string literal of the name for the endpoints 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 ActivityStreamsManuallyApprovesFollowersPropertyName string = "manuallyApprovesFollowers"

ActivityStreamsManuallyApprovesFollowersPropertyName is the string literal of the name for the manuallyApprovesFollowers 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 ActivityStreamsMovedToPropertyName string = "movedTo"

ActivityStreamsMovedToPropertyName is the string literal of the name for the movedTo property 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 ActivityStreamsSensitivePropertyName string = "sensitive"

ActivityStreamsSensitivePropertyName is the string literal of the name for the sensitive 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 ActivityStreamsSharedInboxPropertyName string = "sharedInbox"

ActivityStreamsSharedInboxPropertyName is the string literal of the name for the sharedInbox property 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 SchemaPropertyValueName string = "PropertyValue"

SchemaPropertyValueName is the string literal of the name for the PropertyValue type in the Schema vocabulary.

View Source
var SchemaValuePropertyName string = "value"

SchemaValuePropertyName is the string literal of the name for the value property in the Schema 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 TootHashtagName string = "Hashtag"

TootHashtagName is the string literal of the name for the Hashtag type 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 ¶

func ActivityStreamsAcceptIsDisjointWith(other vocab.Type) bool

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

func ActivityStreamsAcceptIsExtendedBy ¶

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 ¶

func ActivityStreamsActivityIsDisjointWith(other vocab.Type) bool

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

func ActivityStreamsActivityIsExtendedBy ¶

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 ¶

func ActivityStreamsActivityStreamsAcceptExtends(other vocab.Type) bool

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

func ActivityStreamsActivityStreamsActivityExtends ¶

func ActivityStreamsActivityStreamsActivityExtends(other vocab.Type) bool

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

func ActivityStreamsActivityStreamsAddExtends ¶

func ActivityStreamsActivityStreamsAddExtends(other vocab.Type) bool

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

func ActivityStreamsActivityStreamsAnnounceExtends ¶

func ActivityStreamsActivityStreamsAnnounceExtends(other vocab.Type) bool

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

func ActivityStreamsActivityStreamsApplicationExtends ¶

func ActivityStreamsActivityStreamsApplicationExtends(other vocab.Type) bool

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

func ActivityStreamsActivityStreamsArriveExtends ¶

func ActivityStreamsActivityStreamsArriveExtends(other vocab.Type) bool

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

func ActivityStreamsActivityStreamsArticleExtends ¶

func ActivityStreamsActivityStreamsArticleExtends(other vocab.Type) bool

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

func ActivityStreamsActivityStreamsAudioExtends ¶

func ActivityStreamsActivityStreamsAudioExtends(other vocab.Type) bool

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

func ActivityStreamsActivityStreamsBlockExtends ¶

func ActivityStreamsActivityStreamsBlockExtends(other vocab.Type) bool

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

func ActivityStreamsActivityStreamsCollectionExtends ¶

func ActivityStreamsActivityStreamsCollectionExtends(other vocab.Type) bool

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

func ActivityStreamsActivityStreamsCollectionPageExtends ¶

func ActivityStreamsActivityStreamsCollectionPageExtends(other vocab.Type) bool

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

func ActivityStreamsActivityStreamsCreateExtends ¶

func ActivityStreamsActivityStreamsCreateExtends(other vocab.Type) bool

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

func ActivityStreamsActivityStreamsDeleteExtends ¶

func ActivityStreamsActivityStreamsDeleteExtends(other vocab.Type) bool

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

func ActivityStreamsActivityStreamsDislikeExtends ¶

func ActivityStreamsActivityStreamsDislikeExtends(other vocab.Type) bool

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

func ActivityStreamsActivityStreamsDocumentExtends ¶

func ActivityStreamsActivityStreamsDocumentExtends(other vocab.Type) bool

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

func ActivityStreamsActivityStreamsEndpointsExtends ¶

func ActivityStreamsActivityStreamsEndpointsExtends(other vocab.Type) bool

ActivityStreamsActivityStreamsEndpointsExtends returns true if Endpoints extends from the other's type.

func ActivityStreamsActivityStreamsEventExtends ¶

func ActivityStreamsActivityStreamsEventExtends(other vocab.Type) bool

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

func ActivityStreamsActivityStreamsFlagExtends ¶

func ActivityStreamsActivityStreamsFlagExtends(other vocab.Type) bool

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

func ActivityStreamsActivityStreamsFollowExtends ¶

func ActivityStreamsActivityStreamsFollowExtends(other vocab.Type) bool

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

func ActivityStreamsActivityStreamsGroupExtends ¶

func ActivityStreamsActivityStreamsGroupExtends(other vocab.Type) bool

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

func ActivityStreamsActivityStreamsIgnoreExtends ¶

func ActivityStreamsActivityStreamsIgnoreExtends(other vocab.Type) bool

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

func ActivityStreamsActivityStreamsImageExtends ¶

func ActivityStreamsActivityStreamsImageExtends(other vocab.Type) bool

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

func ActivityStreamsActivityStreamsIntransitiveActivityExtends ¶

func ActivityStreamsActivityStreamsIntransitiveActivityExtends(other vocab.Type) bool

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

func ActivityStreamsActivityStreamsInviteExtends ¶

func ActivityStreamsActivityStreamsInviteExtends(other vocab.Type) bool

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

func ActivityStreamsActivityStreamsJoinExtends ¶

func ActivityStreamsActivityStreamsJoinExtends(other vocab.Type) bool

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

func ActivityStreamsActivityStreamsLeaveExtends ¶

func ActivityStreamsActivityStreamsLeaveExtends(other vocab.Type) bool

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

func ActivityStreamsActivityStreamsLikeExtends ¶

func ActivityStreamsActivityStreamsLikeExtends(other vocab.Type) bool

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

func ActivityStreamsActivityStreamsLinkExtends ¶

func ActivityStreamsActivityStreamsLinkExtends(other vocab.Type) bool

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

func ActivityStreamsActivityStreamsListenExtends ¶

func ActivityStreamsActivityStreamsListenExtends(other vocab.Type) bool

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

func ActivityStreamsActivityStreamsMentionExtends ¶

func ActivityStreamsActivityStreamsMentionExtends(other vocab.Type) bool

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

func ActivityStreamsActivityStreamsMoveExtends ¶

func ActivityStreamsActivityStreamsMoveExtends(other vocab.Type) bool

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

func ActivityStreamsActivityStreamsNoteExtends ¶

func ActivityStreamsActivityStreamsNoteExtends(other vocab.Type) bool

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

func ActivityStreamsActivityStreamsObjectExtends ¶

func ActivityStreamsActivityStreamsObjectExtends(other vocab.Type) bool

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

func ActivityStreamsActivityStreamsOfferExtends ¶

func ActivityStreamsActivityStreamsOfferExtends(other vocab.Type) bool

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

func ActivityStreamsActivityStreamsOrderedCollectionExtends ¶

func ActivityStreamsActivityStreamsOrderedCollectionExtends(other vocab.Type) bool

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

func ActivityStreamsActivityStreamsOrderedCollectionPageExtends ¶

func ActivityStreamsActivityStreamsOrderedCollectionPageExtends(other vocab.Type) bool

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

func ActivityStreamsActivityStreamsOrganizationExtends ¶

func ActivityStreamsActivityStreamsOrganizationExtends(other vocab.Type) bool

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

func ActivityStreamsActivityStreamsPageExtends ¶

func ActivityStreamsActivityStreamsPageExtends(other vocab.Type) bool

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

func ActivityStreamsActivityStreamsPersonExtends ¶

func ActivityStreamsActivityStreamsPersonExtends(other vocab.Type) bool

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

func ActivityStreamsActivityStreamsPlaceExtends ¶

func ActivityStreamsActivityStreamsPlaceExtends(other vocab.Type) bool

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

func ActivityStreamsActivityStreamsProfileExtends ¶

func ActivityStreamsActivityStreamsProfileExtends(other vocab.Type) bool

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

func ActivityStreamsActivityStreamsQuestionExtends ¶

func ActivityStreamsActivityStreamsQuestionExtends(other vocab.Type) bool

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

func ActivityStreamsActivityStreamsReadExtends ¶

func ActivityStreamsActivityStreamsReadExtends(other vocab.Type) bool

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

func ActivityStreamsActivityStreamsRejectExtends ¶

func ActivityStreamsActivityStreamsRejectExtends(other vocab.Type) bool

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

func ActivityStreamsActivityStreamsRelationshipExtends ¶

func ActivityStreamsActivityStreamsRelationshipExtends(other vocab.Type) bool

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

func ActivityStreamsActivityStreamsRemoveExtends ¶

func ActivityStreamsActivityStreamsRemoveExtends(other vocab.Type) bool

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

func ActivityStreamsActivityStreamsServiceExtends ¶

func ActivityStreamsActivityStreamsServiceExtends(other vocab.Type) bool

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

func ActivityStreamsActivityStreamsTentativeAcceptExtends ¶

func ActivityStreamsActivityStreamsTentativeAcceptExtends(other vocab.Type) bool

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

func ActivityStreamsActivityStreamsTentativeRejectExtends ¶

func ActivityStreamsActivityStreamsTentativeRejectExtends(other vocab.Type) bool

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

func ActivityStreamsActivityStreamsTombstoneExtends ¶

func ActivityStreamsActivityStreamsTombstoneExtends(other vocab.Type) bool

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

func ActivityStreamsActivityStreamsTravelExtends ¶

func ActivityStreamsActivityStreamsTravelExtends(other vocab.Type) bool

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

func ActivityStreamsActivityStreamsUndoExtends ¶

func ActivityStreamsActivityStreamsUndoExtends(other vocab.Type) bool

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

func ActivityStreamsActivityStreamsUpdateExtends ¶

func ActivityStreamsActivityStreamsUpdateExtends(other vocab.Type) bool

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

func ActivityStreamsActivityStreamsVideoExtends ¶

func ActivityStreamsActivityStreamsVideoExtends(other vocab.Type) bool

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

func ActivityStreamsActivityStreamsViewExtends ¶

func ActivityStreamsActivityStreamsViewExtends(other vocab.Type) bool

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

func ActivityStreamsAddIsDisjointWith ¶

func ActivityStreamsAddIsDisjointWith(other vocab.Type) bool

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

func ActivityStreamsAddIsExtendedBy ¶

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 ¶

func ActivityStreamsAnnounceIsDisjointWith(other vocab.Type) bool

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

func ActivityStreamsAnnounceIsExtendedBy ¶

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 ¶

func ActivityStreamsApplicationIsDisjointWith(other vocab.Type) bool

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

func ActivityStreamsApplicationIsExtendedBy ¶

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 ¶

func ActivityStreamsArriveIsDisjointWith(other vocab.Type) bool

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

func ActivityStreamsArriveIsExtendedBy ¶

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 ¶

func ActivityStreamsArticleIsDisjointWith(other vocab.Type) bool

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

func ActivityStreamsArticleIsExtendedBy ¶

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 ¶

func ActivityStreamsAudioIsDisjointWith(other vocab.Type) bool

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

func ActivityStreamsAudioIsExtendedBy ¶

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 ¶

func ActivityStreamsBlockIsDisjointWith(other vocab.Type) bool

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

func ActivityStreamsBlockIsExtendedBy ¶

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 ¶

func ActivityStreamsCollectionIsDisjointWith(other vocab.Type) bool

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

func ActivityStreamsCollectionIsExtendedBy ¶

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 ¶

func ActivityStreamsCollectionPageIsDisjointWith(other vocab.Type) bool

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

func ActivityStreamsCollectionPageIsExtendedBy ¶

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 ¶

func ActivityStreamsCreateIsDisjointWith(other vocab.Type) bool

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

func ActivityStreamsCreateIsExtendedBy ¶

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 ¶

func ActivityStreamsDeleteIsDisjointWith(other vocab.Type) bool

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

func ActivityStreamsDeleteIsExtendedBy ¶

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 ¶

func ActivityStreamsDislikeIsDisjointWith(other vocab.Type) bool

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

func ActivityStreamsDislikeIsExtendedBy ¶

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 ¶

func ActivityStreamsDocumentIsDisjointWith(other vocab.Type) bool

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

func ActivityStreamsDocumentIsExtendedBy ¶

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 ActivityStreamsEndpointsIsDisjointWith ¶

func ActivityStreamsEndpointsIsDisjointWith(other vocab.Type) bool

ActivityStreamsEndpointsIsDisjointWith returns true if Endpoints is disjoint with the other's type.

func ActivityStreamsEndpointsIsExtendedBy ¶

func ActivityStreamsEndpointsIsExtendedBy(other vocab.Type) bool

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

func ActivityStreamsEventIsDisjointWith ¶

func ActivityStreamsEventIsDisjointWith(other vocab.Type) bool

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

func ActivityStreamsEventIsExtendedBy ¶

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 ¶

func ActivityStreamsFlagIsDisjointWith(other vocab.Type) bool

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

func ActivityStreamsFlagIsExtendedBy ¶

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 ¶

func ActivityStreamsFollowIsDisjointWith(other vocab.Type) bool

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

func ActivityStreamsFollowIsExtendedBy ¶

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 ¶

func ActivityStreamsGroupIsDisjointWith(other vocab.Type) bool

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

func ActivityStreamsGroupIsExtendedBy ¶

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 ¶

func ActivityStreamsIgnoreIsDisjointWith(other vocab.Type) bool

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

func ActivityStreamsIgnoreIsExtendedBy ¶

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 ¶

func ActivityStreamsImageIsDisjointWith(other vocab.Type) bool

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

func ActivityStreamsImageIsExtendedBy ¶

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 ¶

func ActivityStreamsIntransitiveActivityIsDisjointWith(other vocab.Type) bool

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

func ActivityStreamsIntransitiveActivityIsExtendedBy ¶

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 ¶

func ActivityStreamsInviteIsDisjointWith(other vocab.Type) bool

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

func ActivityStreamsInviteIsExtendedBy ¶

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 ¶

func ActivityStreamsJoinIsDisjointWith(other vocab.Type) bool

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

func ActivityStreamsJoinIsExtendedBy ¶

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 ¶

func ActivityStreamsLeaveIsDisjointWith(other vocab.Type) bool

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

func ActivityStreamsLeaveIsExtendedBy ¶

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 ¶

func ActivityStreamsLikeIsDisjointWith(other vocab.Type) bool

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

func ActivityStreamsLikeIsExtendedBy ¶

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 ¶

func ActivityStreamsLinkIsDisjointWith(other vocab.Type) bool

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

func ActivityStreamsLinkIsExtendedBy ¶

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 ¶

func ActivityStreamsListenIsDisjointWith(other vocab.Type) bool

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

func ActivityStreamsListenIsExtendedBy ¶

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 ¶

func ActivityStreamsMentionIsDisjointWith(other vocab.Type) bool

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

func ActivityStreamsMentionIsExtendedBy ¶

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 ¶

func ActivityStreamsMoveIsDisjointWith(other vocab.Type) bool

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

func ActivityStreamsMoveIsExtendedBy ¶

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 ¶

func ActivityStreamsNoteIsDisjointWith(other vocab.Type) bool

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

func ActivityStreamsNoteIsExtendedBy ¶

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 ¶

func ActivityStreamsObjectIsDisjointWith(other vocab.Type) bool

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

func ActivityStreamsObjectIsExtendedBy ¶

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 ¶

func ActivityStreamsOfferIsDisjointWith(other vocab.Type) bool

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

func ActivityStreamsOfferIsExtendedBy ¶

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 ¶

func ActivityStreamsOrderedCollectionIsDisjointWith(other vocab.Type) bool

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

func ActivityStreamsOrderedCollectionIsExtendedBy ¶

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 ¶

func ActivityStreamsOrderedCollectionPageIsDisjointWith(other vocab.Type) bool

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

func ActivityStreamsOrderedCollectionPageIsExtendedBy ¶

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 ¶

func ActivityStreamsOrganizationIsDisjointWith(other vocab.Type) bool

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

func ActivityStreamsOrganizationIsExtendedBy ¶

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 ¶

func ActivityStreamsPageIsDisjointWith(other vocab.Type) bool

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

func ActivityStreamsPageIsExtendedBy ¶

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 ¶

func ActivityStreamsPersonIsDisjointWith(other vocab.Type) bool

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

func ActivityStreamsPersonIsExtendedBy ¶

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 ¶

func ActivityStreamsPlaceIsDisjointWith(other vocab.Type) bool

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

func ActivityStreamsPlaceIsExtendedBy ¶

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 ¶

func ActivityStreamsProfileIsDisjointWith(other vocab.Type) bool

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

func ActivityStreamsProfileIsExtendedBy ¶

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 ¶

func ActivityStreamsQuestionIsDisjointWith(other vocab.Type) bool

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

func ActivityStreamsQuestionIsExtendedBy ¶

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 ¶

func ActivityStreamsReadIsDisjointWith(other vocab.Type) bool

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

func ActivityStreamsReadIsExtendedBy ¶

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 ¶

func ActivityStreamsRejectIsDisjointWith(other vocab.Type) bool

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

func ActivityStreamsRejectIsExtendedBy ¶

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 ¶

func ActivityStreamsRelationshipIsDisjointWith(other vocab.Type) bool

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

func ActivityStreamsRelationshipIsExtendedBy ¶

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 ¶

func ActivityStreamsRemoveIsDisjointWith(other vocab.Type) bool

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

func ActivityStreamsRemoveIsExtendedBy ¶

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 ¶

func ActivityStreamsServiceIsDisjointWith(other vocab.Type) bool

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

func ActivityStreamsServiceIsExtendedBy ¶

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 ¶

func ActivityStreamsTentativeAcceptIsDisjointWith(other vocab.Type) bool

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

func ActivityStreamsTentativeAcceptIsExtendedBy ¶

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 ¶

func ActivityStreamsTentativeRejectIsDisjointWith(other vocab.Type) bool

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

func ActivityStreamsTentativeRejectIsExtendedBy ¶

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 ¶

func ActivityStreamsTombstoneIsDisjointWith(other vocab.Type) bool

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

func ActivityStreamsTombstoneIsExtendedBy ¶

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 ¶

func ActivityStreamsTravelIsDisjointWith(other vocab.Type) bool

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

func ActivityStreamsTravelIsExtendedBy ¶

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 ¶

func ActivityStreamsUndoIsDisjointWith(other vocab.Type) bool

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

func ActivityStreamsUndoIsExtendedBy ¶

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 ¶

func ActivityStreamsUpdateIsDisjointWith(other vocab.Type) bool

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

func ActivityStreamsUpdateIsExtendedBy ¶

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 ¶

func ActivityStreamsVideoIsDisjointWith(other vocab.Type) bool

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

func ActivityStreamsVideoIsExtendedBy ¶

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 ¶

func ActivityStreamsViewIsDisjointWith(other vocab.Type) bool

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

func ActivityStreamsViewIsExtendedBy ¶

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 IsOrExtendsActivityStreamsAccept ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 IsOrExtendsActivityStreamsEndpoints ¶

func IsOrExtendsActivityStreamsEndpoints(other vocab.Type) bool

IsOrExtendsActivityStreamsEndpoints returns true if the other provided type is the Endpoints type or extends from the Endpoints type.

func IsOrExtendsActivityStreamsEvent ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 IsOrExtendsSchemaPropertyValue ¶

func IsOrExtendsSchemaPropertyValue(other vocab.Type) bool

IsOrExtendsSchemaPropertyValue returns true if the other provided type is the PropertyValue type or extends from the PropertyValue type.

func IsOrExtendsTootEmoji ¶

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 IsOrExtendsTootHashtag ¶

func IsOrExtendsTootHashtag(other vocab.Type) bool

IsOrExtendsTootHashtag returns true if the other provided type is the Hashtag type or extends from the Hashtag type.

func IsOrExtendsTootIdentityProof ¶

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 ¶

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 ¶

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 ¶

func NewActivityStreamsAccept() vocab.ActivityStreamsAccept

NewActivityStreamsAccept creates a new ActivityStreamsAccept

func NewActivityStreamsAccuracyProperty ¶

func NewActivityStreamsAccuracyProperty() vocab.ActivityStreamsAccuracyProperty

NewActivityStreamsActivityStreamsAccuracyProperty creates a new ActivityStreamsAccuracyProperty

func NewActivityStreamsActivity ¶

func NewActivityStreamsActivity() vocab.ActivityStreamsActivity

NewActivityStreamsActivity creates a new ActivityStreamsActivity

func NewActivityStreamsActorProperty ¶

func NewActivityStreamsActorProperty() vocab.ActivityStreamsActorProperty

NewActivityStreamsActivityStreamsActorProperty creates a new ActivityStreamsActorProperty

func NewActivityStreamsAdd ¶

func NewActivityStreamsAdd() vocab.ActivityStreamsAdd

NewActivityStreamsAdd creates a new ActivityStreamsAdd

func NewActivityStreamsAlsoKnownAsProperty ¶

func NewActivityStreamsAlsoKnownAsProperty() vocab.ActivityStreamsAlsoKnownAsProperty

NewActivityStreamsActivityStreamsAlsoKnownAsProperty creates a new ActivityStreamsAlsoKnownAsProperty

func NewActivityStreamsAltitudeProperty ¶

func NewActivityStreamsAltitudeProperty() vocab.ActivityStreamsAltitudeProperty

NewActivityStreamsActivityStreamsAltitudeProperty creates a new ActivityStreamsAltitudeProperty

func NewActivityStreamsAnnounce ¶

func NewActivityStreamsAnnounce() vocab.ActivityStreamsAnnounce

NewActivityStreamsAnnounce creates a new ActivityStreamsAnnounce

func NewActivityStreamsAnyOfProperty ¶

func NewActivityStreamsAnyOfProperty() vocab.ActivityStreamsAnyOfProperty

NewActivityStreamsActivityStreamsAnyOfProperty creates a new ActivityStreamsAnyOfProperty

func NewActivityStreamsApplication ¶

func NewActivityStreamsApplication() vocab.ActivityStreamsApplication

NewActivityStreamsApplication creates a new ActivityStreamsApplication

func NewActivityStreamsArrive ¶

func NewActivityStreamsArrive() vocab.ActivityStreamsArrive

NewActivityStreamsArrive creates a new ActivityStreamsArrive

func NewActivityStreamsArticle ¶

func NewActivityStreamsArticle() vocab.ActivityStreamsArticle

NewActivityStreamsArticle creates a new ActivityStreamsArticle

func NewActivityStreamsAttachmentProperty ¶

func NewActivityStreamsAttachmentProperty() vocab.ActivityStreamsAttachmentProperty

NewActivityStreamsActivityStreamsAttachmentProperty creates a new ActivityStreamsAttachmentProperty

func NewActivityStreamsAttributedToProperty ¶

func NewActivityStreamsAttributedToProperty() vocab.ActivityStreamsAttributedToProperty

NewActivityStreamsActivityStreamsAttributedToProperty creates a new ActivityStreamsAttributedToProperty

func NewActivityStreamsAudienceProperty ¶

func NewActivityStreamsAudienceProperty() vocab.ActivityStreamsAudienceProperty

NewActivityStreamsActivityStreamsAudienceProperty creates a new ActivityStreamsAudienceProperty

func NewActivityStreamsAudio ¶

func NewActivityStreamsAudio() vocab.ActivityStreamsAudio

NewActivityStreamsAudio creates a new ActivityStreamsAudio

func NewActivityStreamsBccProperty ¶

func NewActivityStreamsBccProperty() vocab.ActivityStreamsBccProperty

NewActivityStreamsActivityStreamsBccProperty creates a new ActivityStreamsBccProperty

func NewActivityStreamsBlock ¶

func NewActivityStreamsBlock() vocab.ActivityStreamsBlock

NewActivityStreamsBlock creates a new ActivityStreamsBlock

func NewActivityStreamsBtoProperty ¶

func NewActivityStreamsBtoProperty() vocab.ActivityStreamsBtoProperty

NewActivityStreamsActivityStreamsBtoProperty creates a new ActivityStreamsBtoProperty

func NewActivityStreamsCcProperty ¶

func NewActivityStreamsCcProperty() vocab.ActivityStreamsCcProperty

NewActivityStreamsActivityStreamsCcProperty creates a new ActivityStreamsCcProperty

func NewActivityStreamsClosedProperty ¶

func NewActivityStreamsClosedProperty() vocab.ActivityStreamsClosedProperty

NewActivityStreamsActivityStreamsClosedProperty creates a new ActivityStreamsClosedProperty

func NewActivityStreamsCollection ¶

func NewActivityStreamsCollection() vocab.ActivityStreamsCollection

NewActivityStreamsCollection creates a new ActivityStreamsCollection

func NewActivityStreamsCollectionPage ¶

func NewActivityStreamsCollectionPage() vocab.ActivityStreamsCollectionPage

NewActivityStreamsCollectionPage creates a new ActivityStreamsCollectionPage

func NewActivityStreamsContentProperty ¶

func NewActivityStreamsContentProperty() vocab.ActivityStreamsContentProperty

NewActivityStreamsActivityStreamsContentProperty creates a new ActivityStreamsContentProperty

func NewActivityStreamsContextProperty ¶

func NewActivityStreamsContextProperty() vocab.ActivityStreamsContextProperty

NewActivityStreamsActivityStreamsContextProperty creates a new ActivityStreamsContextProperty

func NewActivityStreamsCreate ¶

func NewActivityStreamsCreate() vocab.ActivityStreamsCreate

NewActivityStreamsCreate creates a new ActivityStreamsCreate

func NewActivityStreamsCurrentProperty ¶

func NewActivityStreamsCurrentProperty() vocab.ActivityStreamsCurrentProperty

NewActivityStreamsActivityStreamsCurrentProperty creates a new ActivityStreamsCurrentProperty

func NewActivityStreamsDelete ¶

func NewActivityStreamsDelete() vocab.ActivityStreamsDelete

NewActivityStreamsDelete creates a new ActivityStreamsDelete

func NewActivityStreamsDeletedProperty ¶

func NewActivityStreamsDeletedProperty() vocab.ActivityStreamsDeletedProperty

NewActivityStreamsActivityStreamsDeletedProperty creates a new ActivityStreamsDeletedProperty

func NewActivityStreamsDescribesProperty ¶

func NewActivityStreamsDescribesProperty() vocab.ActivityStreamsDescribesProperty

NewActivityStreamsActivityStreamsDescribesProperty creates a new ActivityStreamsDescribesProperty

func NewActivityStreamsDislike ¶

func NewActivityStreamsDislike() vocab.ActivityStreamsDislike

NewActivityStreamsDislike creates a new ActivityStreamsDislike

func NewActivityStreamsDocument ¶

func NewActivityStreamsDocument() vocab.ActivityStreamsDocument

NewActivityStreamsDocument creates a new ActivityStreamsDocument

func NewActivityStreamsDurationProperty ¶

func NewActivityStreamsDurationProperty() vocab.ActivityStreamsDurationProperty

NewActivityStreamsActivityStreamsDurationProperty creates a new ActivityStreamsDurationProperty

func NewActivityStreamsEndTimeProperty ¶

func NewActivityStreamsEndTimeProperty() vocab.ActivityStreamsEndTimeProperty

NewActivityStreamsActivityStreamsEndTimeProperty creates a new ActivityStreamsEndTimeProperty

func NewActivityStreamsEndpoints ¶

func NewActivityStreamsEndpoints() vocab.ActivityStreamsEndpoints

NewActivityStreamsEndpoints creates a new ActivityStreamsEndpoints

func NewActivityStreamsEndpointsProperty ¶

func NewActivityStreamsEndpointsProperty() vocab.ActivityStreamsEndpointsProperty

NewActivityStreamsActivityStreamsEndpointsProperty creates a new ActivityStreamsEndpointsProperty

func NewActivityStreamsEvent ¶

func NewActivityStreamsEvent() vocab.ActivityStreamsEvent

NewActivityStreamsEvent creates a new ActivityStreamsEvent

func NewActivityStreamsFirstProperty ¶

func NewActivityStreamsFirstProperty() vocab.ActivityStreamsFirstProperty

NewActivityStreamsActivityStreamsFirstProperty creates a new ActivityStreamsFirstProperty

func NewActivityStreamsFlag ¶

func NewActivityStreamsFlag() vocab.ActivityStreamsFlag

NewActivityStreamsFlag creates a new ActivityStreamsFlag

func NewActivityStreamsFollow ¶

func NewActivityStreamsFollow() vocab.ActivityStreamsFollow

NewActivityStreamsFollow creates a new ActivityStreamsFollow

func NewActivityStreamsFollowersProperty ¶

func NewActivityStreamsFollowersProperty() vocab.ActivityStreamsFollowersProperty

NewActivityStreamsActivityStreamsFollowersProperty creates a new ActivityStreamsFollowersProperty

func NewActivityStreamsFollowingProperty ¶

func NewActivityStreamsFollowingProperty() vocab.ActivityStreamsFollowingProperty

NewActivityStreamsActivityStreamsFollowingProperty creates a new ActivityStreamsFollowingProperty

func NewActivityStreamsFormerTypeProperty ¶

func NewActivityStreamsFormerTypeProperty() vocab.ActivityStreamsFormerTypeProperty

NewActivityStreamsActivityStreamsFormerTypeProperty creates a new ActivityStreamsFormerTypeProperty

func NewActivityStreamsGeneratorProperty ¶

func NewActivityStreamsGeneratorProperty() vocab.ActivityStreamsGeneratorProperty

NewActivityStreamsActivityStreamsGeneratorProperty creates a new ActivityStreamsGeneratorProperty

func NewActivityStreamsGroup ¶

func NewActivityStreamsGroup() vocab.ActivityStreamsGroup

NewActivityStreamsGroup creates a new ActivityStreamsGroup

func NewActivityStreamsHeightProperty ¶

func NewActivityStreamsHeightProperty() vocab.ActivityStreamsHeightProperty

NewActivityStreamsActivityStreamsHeightProperty creates a new ActivityStreamsHeightProperty

func NewActivityStreamsHrefProperty ¶

func NewActivityStreamsHrefProperty() vocab.ActivityStreamsHrefProperty

NewActivityStreamsActivityStreamsHrefProperty creates a new ActivityStreamsHrefProperty

func NewActivityStreamsHreflangProperty ¶

func NewActivityStreamsHreflangProperty() vocab.ActivityStreamsHreflangProperty

NewActivityStreamsActivityStreamsHreflangProperty creates a new ActivityStreamsHreflangProperty

func NewActivityStreamsIconProperty ¶

func NewActivityStreamsIconProperty() vocab.ActivityStreamsIconProperty

NewActivityStreamsActivityStreamsIconProperty creates a new ActivityStreamsIconProperty

func NewActivityStreamsIgnore ¶

func NewActivityStreamsIgnore() vocab.ActivityStreamsIgnore

NewActivityStreamsIgnore creates a new ActivityStreamsIgnore

func NewActivityStreamsImage ¶

func NewActivityStreamsImage() vocab.ActivityStreamsImage

NewActivityStreamsImage creates a new ActivityStreamsImage

func NewActivityStreamsImageProperty ¶

func NewActivityStreamsImageProperty() vocab.ActivityStreamsImageProperty

NewActivityStreamsActivityStreamsImageProperty creates a new ActivityStreamsImageProperty

func NewActivityStreamsInReplyToProperty ¶

func NewActivityStreamsInReplyToProperty() vocab.ActivityStreamsInReplyToProperty

NewActivityStreamsActivityStreamsInReplyToProperty creates a new ActivityStreamsInReplyToProperty

func NewActivityStreamsInboxProperty ¶

func NewActivityStreamsInboxProperty() vocab.ActivityStreamsInboxProperty

NewActivityStreamsActivityStreamsInboxProperty creates a new ActivityStreamsInboxProperty

func NewActivityStreamsInstrumentProperty ¶

func NewActivityStreamsInstrumentProperty() vocab.ActivityStreamsInstrumentProperty

NewActivityStreamsActivityStreamsInstrumentProperty creates a new ActivityStreamsInstrumentProperty

func NewActivityStreamsIntransitiveActivity ¶

func NewActivityStreamsIntransitiveActivity() vocab.ActivityStreamsIntransitiveActivity

NewActivityStreamsIntransitiveActivity creates a new ActivityStreamsIntransitiveActivity

func NewActivityStreamsInvite ¶

func NewActivityStreamsInvite() vocab.ActivityStreamsInvite

NewActivityStreamsInvite creates a new ActivityStreamsInvite

func NewActivityStreamsItemsProperty ¶

func NewActivityStreamsItemsProperty() vocab.ActivityStreamsItemsProperty

NewActivityStreamsActivityStreamsItemsProperty creates a new ActivityStreamsItemsProperty

func NewActivityStreamsJoin ¶

func NewActivityStreamsJoin() vocab.ActivityStreamsJoin

NewActivityStreamsJoin creates a new ActivityStreamsJoin

func NewActivityStreamsLastProperty ¶

func NewActivityStreamsLastProperty() vocab.ActivityStreamsLastProperty

NewActivityStreamsActivityStreamsLastProperty creates a new ActivityStreamsLastProperty

func NewActivityStreamsLatitudeProperty ¶

func NewActivityStreamsLatitudeProperty() vocab.ActivityStreamsLatitudeProperty

NewActivityStreamsActivityStreamsLatitudeProperty creates a new ActivityStreamsLatitudeProperty

func NewActivityStreamsLeave ¶

func NewActivityStreamsLeave() vocab.ActivityStreamsLeave

NewActivityStreamsLeave creates a new ActivityStreamsLeave

func NewActivityStreamsLike ¶

func NewActivityStreamsLike() vocab.ActivityStreamsLike

NewActivityStreamsLike creates a new ActivityStreamsLike

func NewActivityStreamsLikedProperty ¶

func NewActivityStreamsLikedProperty() vocab.ActivityStreamsLikedProperty

NewActivityStreamsActivityStreamsLikedProperty creates a new ActivityStreamsLikedProperty

func NewActivityStreamsLikesProperty ¶

func NewActivityStreamsLikesProperty() vocab.ActivityStreamsLikesProperty

NewActivityStreamsActivityStreamsLikesProperty creates a new ActivityStreamsLikesProperty

func NewActivityStreamsLink() vocab.ActivityStreamsLink

NewActivityStreamsLink creates a new ActivityStreamsLink

func NewActivityStreamsListen ¶

func NewActivityStreamsListen() vocab.ActivityStreamsListen

NewActivityStreamsListen creates a new ActivityStreamsListen

func NewActivityStreamsLocationProperty ¶

func NewActivityStreamsLocationProperty() vocab.ActivityStreamsLocationProperty

NewActivityStreamsActivityStreamsLocationProperty creates a new ActivityStreamsLocationProperty

func NewActivityStreamsLongitudeProperty ¶

func NewActivityStreamsLongitudeProperty() vocab.ActivityStreamsLongitudeProperty

NewActivityStreamsActivityStreamsLongitudeProperty creates a new ActivityStreamsLongitudeProperty

func NewActivityStreamsManuallyApprovesFollowersProperty ¶

func NewActivityStreamsManuallyApprovesFollowersProperty() vocab.ActivityStreamsManuallyApprovesFollowersProperty

NewActivityStreamsActivityStreamsManuallyApprovesFollowersProperty creates a new ActivityStreamsManuallyApprovesFollowersProperty

func NewActivityStreamsMediaTypeProperty ¶

func NewActivityStreamsMediaTypeProperty() vocab.ActivityStreamsMediaTypeProperty

NewActivityStreamsActivityStreamsMediaTypeProperty creates a new ActivityStreamsMediaTypeProperty

func NewActivityStreamsMention ¶

func NewActivityStreamsMention() vocab.ActivityStreamsMention

NewActivityStreamsMention creates a new ActivityStreamsMention

func NewActivityStreamsMove ¶

func NewActivityStreamsMove() vocab.ActivityStreamsMove

NewActivityStreamsMove creates a new ActivityStreamsMove

func NewActivityStreamsMovedToProperty ¶

func NewActivityStreamsMovedToProperty() vocab.ActivityStreamsMovedToProperty

NewActivityStreamsActivityStreamsMovedToProperty creates a new ActivityStreamsMovedToProperty

func NewActivityStreamsNameProperty ¶

func NewActivityStreamsNameProperty() vocab.ActivityStreamsNameProperty

NewActivityStreamsActivityStreamsNameProperty creates a new ActivityStreamsNameProperty

func NewActivityStreamsNextProperty ¶

func NewActivityStreamsNextProperty() vocab.ActivityStreamsNextProperty

NewActivityStreamsActivityStreamsNextProperty creates a new ActivityStreamsNextProperty

func NewActivityStreamsNote ¶

func NewActivityStreamsNote() vocab.ActivityStreamsNote

NewActivityStreamsNote creates a new ActivityStreamsNote

func NewActivityStreamsObject ¶

func NewActivityStreamsObject() vocab.ActivityStreamsObject

NewActivityStreamsObject creates a new ActivityStreamsObject

func NewActivityStreamsObjectProperty ¶

func NewActivityStreamsObjectProperty() vocab.ActivityStreamsObjectProperty

NewActivityStreamsActivityStreamsObjectProperty creates a new ActivityStreamsObjectProperty

func NewActivityStreamsOffer ¶

func NewActivityStreamsOffer() vocab.ActivityStreamsOffer

NewActivityStreamsOffer creates a new ActivityStreamsOffer

func NewActivityStreamsOneOfProperty ¶

func NewActivityStreamsOneOfProperty() vocab.ActivityStreamsOneOfProperty

NewActivityStreamsActivityStreamsOneOfProperty creates a new ActivityStreamsOneOfProperty

func NewActivityStreamsOrderedCollection ¶

func NewActivityStreamsOrderedCollection() vocab.ActivityStreamsOrderedCollection

NewActivityStreamsOrderedCollection creates a new ActivityStreamsOrderedCollection

func NewActivityStreamsOrderedCollectionPage ¶

func NewActivityStreamsOrderedCollectionPage() vocab.ActivityStreamsOrderedCollectionPage

NewActivityStreamsOrderedCollectionPage creates a new ActivityStreamsOrderedCollectionPage

func NewActivityStreamsOrderedItemsProperty ¶

func NewActivityStreamsOrderedItemsProperty() vocab.ActivityStreamsOrderedItemsProperty

NewActivityStreamsActivityStreamsOrderedItemsProperty creates a new ActivityStreamsOrderedItemsProperty

func NewActivityStreamsOrganization ¶

func NewActivityStreamsOrganization() vocab.ActivityStreamsOrganization

NewActivityStreamsOrganization creates a new ActivityStreamsOrganization

func NewActivityStreamsOriginProperty ¶

func NewActivityStreamsOriginProperty() vocab.ActivityStreamsOriginProperty

NewActivityStreamsActivityStreamsOriginProperty creates a new ActivityStreamsOriginProperty

func NewActivityStreamsOutboxProperty ¶

func NewActivityStreamsOutboxProperty() vocab.ActivityStreamsOutboxProperty

NewActivityStreamsActivityStreamsOutboxProperty creates a new ActivityStreamsOutboxProperty

func NewActivityStreamsPage ¶

func NewActivityStreamsPage() vocab.ActivityStreamsPage

NewActivityStreamsPage creates a new ActivityStreamsPage

func NewActivityStreamsPartOfProperty ¶

func NewActivityStreamsPartOfProperty() vocab.ActivityStreamsPartOfProperty

NewActivityStreamsActivityStreamsPartOfProperty creates a new ActivityStreamsPartOfProperty

func NewActivityStreamsPerson ¶

func NewActivityStreamsPerson() vocab.ActivityStreamsPerson

NewActivityStreamsPerson creates a new ActivityStreamsPerson

func NewActivityStreamsPlace ¶

func NewActivityStreamsPlace() vocab.ActivityStreamsPlace

NewActivityStreamsPlace creates a new ActivityStreamsPlace

func NewActivityStreamsPreferredUsernameProperty ¶

func NewActivityStreamsPreferredUsernameProperty() vocab.ActivityStreamsPreferredUsernameProperty

NewActivityStreamsActivityStreamsPreferredUsernameProperty creates a new ActivityStreamsPreferredUsernameProperty

func NewActivityStreamsPrevProperty ¶

func NewActivityStreamsPrevProperty() vocab.ActivityStreamsPrevProperty

NewActivityStreamsActivityStreamsPrevProperty creates a new ActivityStreamsPrevProperty

func NewActivityStreamsPreviewProperty ¶

func NewActivityStreamsPreviewProperty() vocab.ActivityStreamsPreviewProperty

NewActivityStreamsActivityStreamsPreviewProperty creates a new ActivityStreamsPreviewProperty

func NewActivityStreamsProfile ¶

func NewActivityStreamsProfile() vocab.ActivityStreamsProfile

NewActivityStreamsProfile creates a new ActivityStreamsProfile

func NewActivityStreamsPublishedProperty ¶

func NewActivityStreamsPublishedProperty() vocab.ActivityStreamsPublishedProperty

NewActivityStreamsActivityStreamsPublishedProperty creates a new ActivityStreamsPublishedProperty

func NewActivityStreamsQuestion ¶

func NewActivityStreamsQuestion() vocab.ActivityStreamsQuestion

NewActivityStreamsQuestion creates a new ActivityStreamsQuestion

func NewActivityStreamsRadiusProperty ¶

func NewActivityStreamsRadiusProperty() vocab.ActivityStreamsRadiusProperty

NewActivityStreamsActivityStreamsRadiusProperty creates a new ActivityStreamsRadiusProperty

func NewActivityStreamsRead ¶

func NewActivityStreamsRead() vocab.ActivityStreamsRead

NewActivityStreamsRead creates a new ActivityStreamsRead

func NewActivityStreamsReject ¶

func NewActivityStreamsReject() vocab.ActivityStreamsReject

NewActivityStreamsReject creates a new ActivityStreamsReject

func NewActivityStreamsRelProperty ¶

func NewActivityStreamsRelProperty() vocab.ActivityStreamsRelProperty

NewActivityStreamsActivityStreamsRelProperty creates a new ActivityStreamsRelProperty

func NewActivityStreamsRelationship ¶

func NewActivityStreamsRelationship() vocab.ActivityStreamsRelationship

NewActivityStreamsRelationship creates a new ActivityStreamsRelationship

func NewActivityStreamsRelationshipProperty ¶

func NewActivityStreamsRelationshipProperty() vocab.ActivityStreamsRelationshipProperty

NewActivityStreamsActivityStreamsRelationshipProperty creates a new ActivityStreamsRelationshipProperty

func NewActivityStreamsRemove ¶

func NewActivityStreamsRemove() vocab.ActivityStreamsRemove

NewActivityStreamsRemove creates a new ActivityStreamsRemove

func NewActivityStreamsRepliesProperty ¶

func NewActivityStreamsRepliesProperty() vocab.ActivityStreamsRepliesProperty

NewActivityStreamsActivityStreamsRepliesProperty creates a new ActivityStreamsRepliesProperty

func NewActivityStreamsResultProperty ¶

func NewActivityStreamsResultProperty() vocab.ActivityStreamsResultProperty

NewActivityStreamsActivityStreamsResultProperty creates a new ActivityStreamsResultProperty

func NewActivityStreamsSensitiveProperty ¶

func NewActivityStreamsSensitiveProperty() vocab.ActivityStreamsSensitiveProperty

NewActivityStreamsActivityStreamsSensitiveProperty creates a new ActivityStreamsSensitiveProperty

func NewActivityStreamsService ¶

func NewActivityStreamsService() vocab.ActivityStreamsService

NewActivityStreamsService creates a new ActivityStreamsService

func NewActivityStreamsSharedInboxProperty ¶

func NewActivityStreamsSharedInboxProperty() vocab.ActivityStreamsSharedInboxProperty

NewActivityStreamsActivityStreamsSharedInboxProperty creates a new ActivityStreamsSharedInboxProperty

func NewActivityStreamsSharesProperty ¶

func NewActivityStreamsSharesProperty() vocab.ActivityStreamsSharesProperty

NewActivityStreamsActivityStreamsSharesProperty creates a new ActivityStreamsSharesProperty

func NewActivityStreamsSourceProperty ¶

func NewActivityStreamsSourceProperty() vocab.ActivityStreamsSourceProperty

NewActivityStreamsActivityStreamsSourceProperty creates a new ActivityStreamsSourceProperty

func NewActivityStreamsStartIndexProperty ¶

func NewActivityStreamsStartIndexProperty() vocab.ActivityStreamsStartIndexProperty

NewActivityStreamsActivityStreamsStartIndexProperty creates a new ActivityStreamsStartIndexProperty

func NewActivityStreamsStartTimeProperty ¶

func NewActivityStreamsStartTimeProperty() vocab.ActivityStreamsStartTimeProperty

NewActivityStreamsActivityStreamsStartTimeProperty creates a new ActivityStreamsStartTimeProperty

func NewActivityStreamsStreamsProperty ¶

func NewActivityStreamsStreamsProperty() vocab.ActivityStreamsStreamsProperty

NewActivityStreamsActivityStreamsStreamsProperty creates a new ActivityStreamsStreamsProperty

func NewActivityStreamsSubjectProperty ¶

func NewActivityStreamsSubjectProperty() vocab.ActivityStreamsSubjectProperty

NewActivityStreamsActivityStreamsSubjectProperty creates a new ActivityStreamsSubjectProperty

func NewActivityStreamsSummaryProperty ¶

func NewActivityStreamsSummaryProperty() vocab.ActivityStreamsSummaryProperty

NewActivityStreamsActivityStreamsSummaryProperty creates a new ActivityStreamsSummaryProperty

func NewActivityStreamsTagProperty ¶

func NewActivityStreamsTagProperty() vocab.ActivityStreamsTagProperty

NewActivityStreamsActivityStreamsTagProperty creates a new ActivityStreamsTagProperty

func NewActivityStreamsTargetProperty ¶

func NewActivityStreamsTargetProperty() vocab.ActivityStreamsTargetProperty

NewActivityStreamsActivityStreamsTargetProperty creates a new ActivityStreamsTargetProperty

func NewActivityStreamsTentativeAccept ¶

func NewActivityStreamsTentativeAccept() vocab.ActivityStreamsTentativeAccept

NewActivityStreamsTentativeAccept creates a new ActivityStreamsTentativeAccept

func NewActivityStreamsTentativeReject ¶

func NewActivityStreamsTentativeReject() vocab.ActivityStreamsTentativeReject

NewActivityStreamsTentativeReject creates a new ActivityStreamsTentativeReject

func NewActivityStreamsToProperty ¶

func NewActivityStreamsToProperty() vocab.ActivityStreamsToProperty

NewActivityStreamsActivityStreamsToProperty creates a new ActivityStreamsToProperty

func NewActivityStreamsTombstone ¶

func NewActivityStreamsTombstone() vocab.ActivityStreamsTombstone

NewActivityStreamsTombstone creates a new ActivityStreamsTombstone

func NewActivityStreamsTotalItemsProperty ¶

func NewActivityStreamsTotalItemsProperty() vocab.ActivityStreamsTotalItemsProperty

NewActivityStreamsActivityStreamsTotalItemsProperty creates a new ActivityStreamsTotalItemsProperty

func NewActivityStreamsTravel ¶

func NewActivityStreamsTravel() vocab.ActivityStreamsTravel

NewActivityStreamsTravel creates a new ActivityStreamsTravel

func NewActivityStreamsUndo ¶

func NewActivityStreamsUndo() vocab.ActivityStreamsUndo

NewActivityStreamsUndo creates a new ActivityStreamsUndo

func NewActivityStreamsUnitsProperty ¶

func NewActivityStreamsUnitsProperty() vocab.ActivityStreamsUnitsProperty

NewActivityStreamsActivityStreamsUnitsProperty creates a new ActivityStreamsUnitsProperty

func NewActivityStreamsUpdate ¶

func NewActivityStreamsUpdate() vocab.ActivityStreamsUpdate

NewActivityStreamsUpdate creates a new ActivityStreamsUpdate

func NewActivityStreamsUpdatedProperty ¶

func NewActivityStreamsUpdatedProperty() vocab.ActivityStreamsUpdatedProperty

NewActivityStreamsActivityStreamsUpdatedProperty creates a new ActivityStreamsUpdatedProperty

func NewActivityStreamsUrlProperty ¶

func NewActivityStreamsUrlProperty() vocab.ActivityStreamsUrlProperty

NewActivityStreamsActivityStreamsUrlProperty creates a new ActivityStreamsUrlProperty

func NewActivityStreamsVideo ¶

func NewActivityStreamsVideo() vocab.ActivityStreamsVideo

NewActivityStreamsVideo creates a new ActivityStreamsVideo

func NewActivityStreamsView ¶

func NewActivityStreamsView() vocab.ActivityStreamsView

NewActivityStreamsView creates a new ActivityStreamsView

func NewActivityStreamsWidthProperty ¶

func NewActivityStreamsWidthProperty() vocab.ActivityStreamsWidthProperty

NewActivityStreamsActivityStreamsWidthProperty creates a new ActivityStreamsWidthProperty

func NewJSONLDIdProperty ¶

func NewJSONLDIdProperty() vocab.JSONLDIdProperty

NewJSONLDJSONLDIdProperty creates a new JSONLDIdProperty

func NewJSONLDTypeProperty ¶

func NewJSONLDTypeProperty() vocab.JSONLDTypeProperty

NewJSONLDJSONLDTypeProperty creates a new JSONLDTypeProperty

func NewSchemaPropertyValue ¶

func NewSchemaPropertyValue() vocab.SchemaPropertyValue

NewSchemaPropertyValue creates a new SchemaPropertyValue

func NewSchemaValueProperty ¶

func NewSchemaValueProperty() vocab.SchemaValueProperty

NewSchemaSchemaValueProperty creates a new SchemaValueProperty

func NewTootBlurhashProperty ¶

func NewTootBlurhashProperty() vocab.TootBlurhashProperty

NewTootTootBlurhashProperty creates a new TootBlurhashProperty

func NewTootDiscoverableProperty ¶

func NewTootDiscoverableProperty() vocab.TootDiscoverableProperty

NewTootTootDiscoverableProperty creates a new TootDiscoverableProperty

func NewTootEmoji ¶

func NewTootEmoji() vocab.TootEmoji

NewTootEmoji creates a new TootEmoji

func NewTootFeaturedProperty ¶

func NewTootFeaturedProperty() vocab.TootFeaturedProperty

NewTootTootFeaturedProperty creates a new TootFeaturedProperty

func NewTootHashtag ¶

func NewTootHashtag() vocab.TootHashtag

NewTootHashtag creates a new TootHashtag

func NewTootIdentityProof ¶

func NewTootIdentityProof() vocab.TootIdentityProof

NewTootIdentityProof creates a new TootIdentityProof

func NewTootSignatureAlgorithmProperty ¶

func NewTootSignatureAlgorithmProperty() vocab.TootSignatureAlgorithmProperty

NewTootTootSignatureAlgorithmProperty creates a new TootSignatureAlgorithmProperty

func NewTootSignatureValueProperty ¶

func NewTootSignatureValueProperty() vocab.TootSignatureValueProperty

NewTootTootSignatureValueProperty creates a new TootSignatureValueProperty

func NewTootVotersCountProperty ¶

func NewTootVotersCountProperty() vocab.TootVotersCountProperty

NewTootTootVotersCountProperty creates a new TootVotersCountProperty

func NewW3IDSecurityV1OwnerProperty ¶

func NewW3IDSecurityV1OwnerProperty() vocab.W3IDSecurityV1OwnerProperty

NewW3IDSecurityV1W3IDSecurityV1OwnerProperty creates a new W3IDSecurityV1OwnerProperty

func NewW3IDSecurityV1PublicKey ¶

func NewW3IDSecurityV1PublicKey() vocab.W3IDSecurityV1PublicKey

NewW3IDSecurityV1PublicKey creates a new W3IDSecurityV1PublicKey

func NewW3IDSecurityV1PublicKeyPemProperty ¶

func NewW3IDSecurityV1PublicKeyPemProperty() vocab.W3IDSecurityV1PublicKeyPemProperty

NewW3IDSecurityV1W3IDSecurityV1PublicKeyPemProperty creates a new W3IDSecurityV1PublicKeyPemProperty

func NewW3IDSecurityV1PublicKeyProperty ¶

func NewW3IDSecurityV1PublicKeyProperty() vocab.W3IDSecurityV1PublicKeyProperty

NewW3IDSecurityV1W3IDSecurityV1PublicKeyProperty creates a new W3IDSecurityV1PublicKeyProperty

func SchemaPropertyValueIsDisjointWith ¶

func SchemaPropertyValueIsDisjointWith(other vocab.Type) bool

SchemaPropertyValueIsDisjointWith returns true if PropertyValue is disjoint with the other's type.

func SchemaPropertyValueIsExtendedBy ¶

func SchemaPropertyValueIsExtendedBy(other vocab.Type) bool

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

func SchemaSchemaPropertyValueExtends ¶

func SchemaSchemaPropertyValueExtends(other vocab.Type) bool

SchemaSchemaPropertyValueExtends returns true if PropertyValue extends from the other's type.

func Serialize ¶

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 ¶

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 ¶

func TootEmojiIsDisjointWith(other vocab.Type) bool

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

func TootEmojiIsExtendedBy ¶

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 TootHashtagIsDisjointWith ¶

func TootHashtagIsDisjointWith(other vocab.Type) bool

TootHashtagIsDisjointWith returns true if Hashtag is disjoint with the other's type.

func TootHashtagIsExtendedBy ¶

func TootHashtagIsExtendedBy(other vocab.Type) bool

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

func TootIdentityProofIsDisjointWith ¶

func TootIdentityProofIsDisjointWith(other vocab.Type) bool

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

func TootIdentityProofIsExtendedBy ¶

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 ¶

func TootTootEmojiExtends(other vocab.Type) bool

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

func TootTootHashtagExtends ¶

func TootTootHashtagExtends(other vocab.Type) bool

TootTootHashtagExtends returns true if Hashtag extends from the other's type.

func TootTootIdentityProofExtends ¶

func TootTootIdentityProofExtends(other vocab.Type) bool

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

func W3IDSecurityV1PublicKeyIsDisjointWith ¶

func W3IDSecurityV1PublicKeyIsDisjointWith(other vocab.Type) bool

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

func W3IDSecurityV1PublicKeyIsExtendedBy ¶

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 ¶

func W3IDSecurityV1W3IDSecurityV1PublicKeyExtends(other vocab.Type) bool

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

Types ¶

type ActivityStreamsInterface ¶

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 ¶

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

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

func NewJSONResolver ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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) DeserializeAlsoKnownAsPropertyActivityStreams ¶

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

DeserializeAlsoKnownAsPropertyActivityStreams returns the deserialization method for the "ActivityStreamsAlsoKnownAsProperty" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeAltitudePropertyActivityStreams ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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) DeserializeAttachmentPropertyActivityStreams ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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) DeserializeBtoPropertyActivityStreams ¶

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 ¶

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 ¶

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 ¶

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 ¶

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) DeserializeContentPropertyActivityStreams ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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) DeserializeDescribesPropertyActivityStreams ¶

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) DeserializeDiscoverablePropertyToot ¶

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 ¶

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 ¶

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 ¶

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) DeserializeEmojiToot ¶

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 ¶

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) DeserializeEndpointsActivityStreams ¶

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

DeserializeEndpointsActivityStreams returns the deserialization method for the "ActivityStreamsEndpoints" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeEndpointsPropertyActivityStreams ¶

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

DeserializeEndpointsPropertyActivityStreams returns the deserialization method for the "ActivityStreamsEndpointsProperty" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeEventActivityStreams ¶

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 ¶

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) DeserializeFirstPropertyActivityStreams ¶

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 ¶

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 ¶

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 ¶

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 ¶

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) DeserializeFormerTypePropertyActivityStreams ¶

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 ¶

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 ¶

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) DeserializeHashtagToot ¶

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

DeserializeHashtagToot returns the deserialization method for the "TootHashtag" non-functional property in the vocabulary "Toot"

func (Manager) DeserializeHeightPropertyActivityStreams ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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) DeserializeItemsPropertyActivityStreams ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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) DeserializeManuallyApprovesFollowersPropertyActivityStreams ¶

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

DeserializeManuallyApprovesFollowersPropertyActivityStreams returns the deserialization method for the "ActivityStreamsManuallyApprovesFollowersProperty" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeMediaTypePropertyActivityStreams ¶

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 ¶

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 ¶

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) DeserializeMovedToPropertyActivityStreams ¶

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

DeserializeMovedToPropertyActivityStreams returns the deserialization method for the "ActivityStreamsMovedToProperty" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeNamePropertyActivityStreams ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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) DeserializePropertyValueSchema ¶

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

DeserializePropertyValueSchema returns the deserialization method for the "SchemaPropertyValue" non-functional property in the vocabulary "Schema"

func (Manager) DeserializePublicKeyPemPropertyW3IDSecurityV1 ¶

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 ¶

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 ¶

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 ¶

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) DeserializeQuestionActivityStreams ¶

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 ¶

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 ¶

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) DeserializeRejectActivityStreams ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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) DeserializeResultPropertyActivityStreams ¶

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) DeserializeSensitivePropertyActivityStreams ¶

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

DeserializeSensitivePropertyActivityStreams returns the deserialization method for the "ActivityStreamsSensitiveProperty" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeServiceActivityStreams ¶

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) DeserializeSharedInboxPropertyActivityStreams ¶

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

DeserializeSharedInboxPropertyActivityStreams returns the deserialization method for the "ActivityStreamsSharedInboxProperty" non-functional property in the vocabulary "ActivityStreams"

func (Manager) DeserializeSharesPropertyActivityStreams ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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) DeserializeTentativeAcceptActivityStreams ¶

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 ¶

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) DeserializeToPropertyActivityStreams ¶

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 ¶

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 ¶

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) DeserializeTravelActivityStreams ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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) DeserializeValuePropertySchema ¶

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

DeserializeValuePropertySchema returns the deserialization method for the "SchemaValueProperty" non-functional property in the vocabulary "Schema"

func (Manager) DeserializeVideoActivityStreams ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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 ¶

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

TypeResolver resolves ActivityStreams values based on their type name.

func NewTypeResolver ¶

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 ¶

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_alsoknownas
Package propertyalsoknownas contains the implementation for the alsoKnownAs property.
Package propertyalsoknownas contains the implementation for the alsoKnownAs 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_endpoints
Package propertyendpoints contains the implementation for the endpoints property.
Package propertyendpoints contains the implementation for the endpoints 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_manuallyapprovesfollowers
Package propertymanuallyapprovesfollowers contains the implementation for the manuallyApprovesFollowers property.
Package propertymanuallyapprovesfollowers contains the implementation for the manuallyApprovesFollowers property.
activitystreams/property_mediatype
Package propertymediatype contains the implementation for the mediaType property.
Package propertymediatype contains the implementation for the mediaType property.
activitystreams/property_movedto
Package propertymovedto contains the implementation for the movedTo property.
Package propertymovedto contains the implementation for the movedTo 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_sensitive
Package propertysensitive contains the implementation for the sensitive property.
Package propertysensitive contains the implementation for the sensitive property.
activitystreams/property_sharedinbox
Package propertysharedinbox contains the implementation for the sharedInbox property.
Package propertysharedinbox contains the implementation for the sharedInbox 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_endpoints
Package typeendpoints contains the implementation for the Endpoints type.
Package typeendpoints contains the implementation for the Endpoints 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.
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.
schema/property_value
Package propertyvalue contains the implementation for the value property.
Package propertyvalue contains the implementation for the value property.
schema/type_propertyvalue
Package typepropertyvalue contains the implementation for the PropertyValue type.
Package typepropertyvalue contains the implementation for the PropertyValue type.
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_hashtag
Package typehashtag contains the implementation for the Hashtag type.
Package typehashtag contains the implementation for the Hashtag 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