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 ¶
- Variables
- func ActivityStreamsAcceptIsDisjointWith(other vocab.Type) bool
- func ActivityStreamsAcceptIsExtendedBy(other vocab.Type) bool
- func ActivityStreamsActivityIsDisjointWith(other vocab.Type) bool
- func ActivityStreamsActivityIsExtendedBy(other vocab.Type) bool
- func ActivityStreamsActivityStreamsAcceptExtends(other vocab.Type) bool
- func ActivityStreamsActivityStreamsActivityExtends(other vocab.Type) bool
- func ActivityStreamsActivityStreamsAddExtends(other vocab.Type) bool
- func ActivityStreamsActivityStreamsAnnounceExtends(other vocab.Type) bool
- func ActivityStreamsActivityStreamsApplicationExtends(other vocab.Type) bool
- func ActivityStreamsActivityStreamsArriveExtends(other vocab.Type) bool
- func ActivityStreamsActivityStreamsArticleExtends(other vocab.Type) bool
- func ActivityStreamsActivityStreamsAudioExtends(other vocab.Type) bool
- func ActivityStreamsActivityStreamsBlockExtends(other vocab.Type) bool
- func ActivityStreamsActivityStreamsCollectionExtends(other vocab.Type) bool
- func ActivityStreamsActivityStreamsCollectionPageExtends(other vocab.Type) bool
- func ActivityStreamsActivityStreamsCreateExtends(other vocab.Type) bool
- func ActivityStreamsActivityStreamsDeleteExtends(other vocab.Type) bool
- func ActivityStreamsActivityStreamsDislikeExtends(other vocab.Type) bool
- func ActivityStreamsActivityStreamsDocumentExtends(other vocab.Type) bool
- func ActivityStreamsActivityStreamsEventExtends(other vocab.Type) bool
- func ActivityStreamsActivityStreamsFlagExtends(other vocab.Type) bool
- func ActivityStreamsActivityStreamsFollowExtends(other vocab.Type) bool
- func ActivityStreamsActivityStreamsGroupExtends(other vocab.Type) bool
- func ActivityStreamsActivityStreamsIgnoreExtends(other vocab.Type) bool
- func ActivityStreamsActivityStreamsImageExtends(other vocab.Type) bool
- func ActivityStreamsActivityStreamsIntransitiveActivityExtends(other vocab.Type) bool
- func ActivityStreamsActivityStreamsInviteExtends(other vocab.Type) bool
- func ActivityStreamsActivityStreamsJoinExtends(other vocab.Type) bool
- func ActivityStreamsActivityStreamsLeaveExtends(other vocab.Type) bool
- func ActivityStreamsActivityStreamsLikeExtends(other vocab.Type) bool
- func ActivityStreamsActivityStreamsLinkExtends(other vocab.Type) bool
- func ActivityStreamsActivityStreamsListenExtends(other vocab.Type) bool
- func ActivityStreamsActivityStreamsMentionExtends(other vocab.Type) bool
- func ActivityStreamsActivityStreamsMoveExtends(other vocab.Type) bool
- func ActivityStreamsActivityStreamsNoteExtends(other vocab.Type) bool
- func ActivityStreamsActivityStreamsObjectExtends(other vocab.Type) bool
- func ActivityStreamsActivityStreamsOfferExtends(other vocab.Type) bool
- func ActivityStreamsActivityStreamsOrderedCollectionExtends(other vocab.Type) bool
- func ActivityStreamsActivityStreamsOrderedCollectionPageExtends(other vocab.Type) bool
- func ActivityStreamsActivityStreamsOrganizationExtends(other vocab.Type) bool
- func ActivityStreamsActivityStreamsPageExtends(other vocab.Type) bool
- func ActivityStreamsActivityStreamsPersonExtends(other vocab.Type) bool
- func ActivityStreamsActivityStreamsPlaceExtends(other vocab.Type) bool
- func ActivityStreamsActivityStreamsProfileExtends(other vocab.Type) bool
- func ActivityStreamsActivityStreamsQuestionExtends(other vocab.Type) bool
- func ActivityStreamsActivityStreamsReadExtends(other vocab.Type) bool
- func ActivityStreamsActivityStreamsRejectExtends(other vocab.Type) bool
- func ActivityStreamsActivityStreamsRelationshipExtends(other vocab.Type) bool
- func ActivityStreamsActivityStreamsRemoveExtends(other vocab.Type) bool
- func ActivityStreamsActivityStreamsServiceExtends(other vocab.Type) bool
- func ActivityStreamsActivityStreamsTentativeAcceptExtends(other vocab.Type) bool
- func ActivityStreamsActivityStreamsTentativeRejectExtends(other vocab.Type) bool
- func ActivityStreamsActivityStreamsTombstoneExtends(other vocab.Type) bool
- func ActivityStreamsActivityStreamsTravelExtends(other vocab.Type) bool
- func ActivityStreamsActivityStreamsUndoExtends(other vocab.Type) bool
- func ActivityStreamsActivityStreamsUpdateExtends(other vocab.Type) bool
- func ActivityStreamsActivityStreamsVideoExtends(other vocab.Type) bool
- func ActivityStreamsActivityStreamsViewExtends(other vocab.Type) bool
- func ActivityStreamsAddIsDisjointWith(other vocab.Type) bool
- func ActivityStreamsAddIsExtendedBy(other vocab.Type) bool
- func ActivityStreamsAnnounceIsDisjointWith(other vocab.Type) bool
- func ActivityStreamsAnnounceIsExtendedBy(other vocab.Type) bool
- func ActivityStreamsApplicationIsDisjointWith(other vocab.Type) bool
- func ActivityStreamsApplicationIsExtendedBy(other vocab.Type) bool
- func ActivityStreamsArriveIsDisjointWith(other vocab.Type) bool
- func ActivityStreamsArriveIsExtendedBy(other vocab.Type) bool
- func ActivityStreamsArticleIsDisjointWith(other vocab.Type) bool
- func ActivityStreamsArticleIsExtendedBy(other vocab.Type) bool
- func ActivityStreamsAudioIsDisjointWith(other vocab.Type) bool
- func ActivityStreamsAudioIsExtendedBy(other vocab.Type) bool
- func ActivityStreamsBlockIsDisjointWith(other vocab.Type) bool
- func ActivityStreamsBlockIsExtendedBy(other vocab.Type) bool
- func ActivityStreamsCollectionIsDisjointWith(other vocab.Type) bool
- func ActivityStreamsCollectionIsExtendedBy(other vocab.Type) bool
- func ActivityStreamsCollectionPageIsDisjointWith(other vocab.Type) bool
- func ActivityStreamsCollectionPageIsExtendedBy(other vocab.Type) bool
- func ActivityStreamsCreateIsDisjointWith(other vocab.Type) bool
- func ActivityStreamsCreateIsExtendedBy(other vocab.Type) bool
- func ActivityStreamsDeleteIsDisjointWith(other vocab.Type) bool
- func ActivityStreamsDeleteIsExtendedBy(other vocab.Type) bool
- func ActivityStreamsDislikeIsDisjointWith(other vocab.Type) bool
- func ActivityStreamsDislikeIsExtendedBy(other vocab.Type) bool
- func ActivityStreamsDocumentIsDisjointWith(other vocab.Type) bool
- func ActivityStreamsDocumentIsExtendedBy(other vocab.Type) bool
- func ActivityStreamsEventIsDisjointWith(other vocab.Type) bool
- func ActivityStreamsEventIsExtendedBy(other vocab.Type) bool
- func ActivityStreamsFlagIsDisjointWith(other vocab.Type) bool
- func ActivityStreamsFlagIsExtendedBy(other vocab.Type) bool
- func ActivityStreamsFollowIsDisjointWith(other vocab.Type) bool
- func ActivityStreamsFollowIsExtendedBy(other vocab.Type) bool
- func ActivityStreamsGroupIsDisjointWith(other vocab.Type) bool
- func ActivityStreamsGroupIsExtendedBy(other vocab.Type) bool
- func ActivityStreamsIgnoreIsDisjointWith(other vocab.Type) bool
- func ActivityStreamsIgnoreIsExtendedBy(other vocab.Type) bool
- func ActivityStreamsImageIsDisjointWith(other vocab.Type) bool
- func ActivityStreamsImageIsExtendedBy(other vocab.Type) bool
- func ActivityStreamsIntransitiveActivityIsDisjointWith(other vocab.Type) bool
- func ActivityStreamsIntransitiveActivityIsExtendedBy(other vocab.Type) bool
- func ActivityStreamsInviteIsDisjointWith(other vocab.Type) bool
- func ActivityStreamsInviteIsExtendedBy(other vocab.Type) bool
- func ActivityStreamsJoinIsDisjointWith(other vocab.Type) bool
- func ActivityStreamsJoinIsExtendedBy(other vocab.Type) bool
- func ActivityStreamsLeaveIsDisjointWith(other vocab.Type) bool
- func ActivityStreamsLeaveIsExtendedBy(other vocab.Type) bool
- func ActivityStreamsLikeIsDisjointWith(other vocab.Type) bool
- func ActivityStreamsLikeIsExtendedBy(other vocab.Type) bool
- func ActivityStreamsLinkIsDisjointWith(other vocab.Type) bool
- func ActivityStreamsLinkIsExtendedBy(other vocab.Type) bool
- func ActivityStreamsListenIsDisjointWith(other vocab.Type) bool
- func ActivityStreamsListenIsExtendedBy(other vocab.Type) bool
- func ActivityStreamsMentionIsDisjointWith(other vocab.Type) bool
- func ActivityStreamsMentionIsExtendedBy(other vocab.Type) bool
- func ActivityStreamsMoveIsDisjointWith(other vocab.Type) bool
- func ActivityStreamsMoveIsExtendedBy(other vocab.Type) bool
- func ActivityStreamsNoteIsDisjointWith(other vocab.Type) bool
- func ActivityStreamsNoteIsExtendedBy(other vocab.Type) bool
- func ActivityStreamsObjectIsDisjointWith(other vocab.Type) bool
- func ActivityStreamsObjectIsExtendedBy(other vocab.Type) bool
- func ActivityStreamsOfferIsDisjointWith(other vocab.Type) bool
- func ActivityStreamsOfferIsExtendedBy(other vocab.Type) bool
- func ActivityStreamsOrderedCollectionIsDisjointWith(other vocab.Type) bool
- func ActivityStreamsOrderedCollectionIsExtendedBy(other vocab.Type) bool
- func ActivityStreamsOrderedCollectionPageIsDisjointWith(other vocab.Type) bool
- func ActivityStreamsOrderedCollectionPageIsExtendedBy(other vocab.Type) bool
- func ActivityStreamsOrganizationIsDisjointWith(other vocab.Type) bool
- func ActivityStreamsOrganizationIsExtendedBy(other vocab.Type) bool
- func ActivityStreamsPageIsDisjointWith(other vocab.Type) bool
- func ActivityStreamsPageIsExtendedBy(other vocab.Type) bool
- func ActivityStreamsPersonIsDisjointWith(other vocab.Type) bool
- func ActivityStreamsPersonIsExtendedBy(other vocab.Type) bool
- func ActivityStreamsPlaceIsDisjointWith(other vocab.Type) bool
- func ActivityStreamsPlaceIsExtendedBy(other vocab.Type) bool
- func ActivityStreamsProfileIsDisjointWith(other vocab.Type) bool
- func ActivityStreamsProfileIsExtendedBy(other vocab.Type) bool
- func ActivityStreamsQuestionIsDisjointWith(other vocab.Type) bool
- func ActivityStreamsQuestionIsExtendedBy(other vocab.Type) bool
- func ActivityStreamsReadIsDisjointWith(other vocab.Type) bool
- func ActivityStreamsReadIsExtendedBy(other vocab.Type) bool
- func ActivityStreamsRejectIsDisjointWith(other vocab.Type) bool
- func ActivityStreamsRejectIsExtendedBy(other vocab.Type) bool
- func ActivityStreamsRelationshipIsDisjointWith(other vocab.Type) bool
- func ActivityStreamsRelationshipIsExtendedBy(other vocab.Type) bool
- func ActivityStreamsRemoveIsDisjointWith(other vocab.Type) bool
- func ActivityStreamsRemoveIsExtendedBy(other vocab.Type) bool
- func ActivityStreamsServiceIsDisjointWith(other vocab.Type) bool
- func ActivityStreamsServiceIsExtendedBy(other vocab.Type) bool
- func ActivityStreamsTentativeAcceptIsDisjointWith(other vocab.Type) bool
- func ActivityStreamsTentativeAcceptIsExtendedBy(other vocab.Type) bool
- func ActivityStreamsTentativeRejectIsDisjointWith(other vocab.Type) bool
- func ActivityStreamsTentativeRejectIsExtendedBy(other vocab.Type) bool
- func ActivityStreamsTombstoneIsDisjointWith(other vocab.Type) bool
- func ActivityStreamsTombstoneIsExtendedBy(other vocab.Type) bool
- func ActivityStreamsTravelIsDisjointWith(other vocab.Type) bool
- func ActivityStreamsTravelIsExtendedBy(other vocab.Type) bool
- func ActivityStreamsUndoIsDisjointWith(other vocab.Type) bool
- func ActivityStreamsUndoIsExtendedBy(other vocab.Type) bool
- func ActivityStreamsUpdateIsDisjointWith(other vocab.Type) bool
- func ActivityStreamsUpdateIsExtendedBy(other vocab.Type) bool
- func ActivityStreamsVideoIsDisjointWith(other vocab.Type) bool
- func ActivityStreamsVideoIsExtendedBy(other vocab.Type) bool
- func ActivityStreamsViewIsDisjointWith(other vocab.Type) bool
- func ActivityStreamsViewIsExtendedBy(other vocab.Type) bool
- func ForgeFedBranchIsDisjointWith(other vocab.Type) bool
- func ForgeFedBranchIsExtendedBy(other vocab.Type) bool
- func ForgeFedCommitIsDisjointWith(other vocab.Type) bool
- func ForgeFedCommitIsExtendedBy(other vocab.Type) bool
- func ForgeFedForgeFedBranchExtends(other vocab.Type) bool
- func ForgeFedForgeFedCommitExtends(other vocab.Type) bool
- func ForgeFedForgeFedPushExtends(other vocab.Type) bool
- func ForgeFedForgeFedRepositoryExtends(other vocab.Type) bool
- func ForgeFedForgeFedTicketDependencyExtends(other vocab.Type) bool
- func ForgeFedForgeFedTicketExtends(other vocab.Type) bool
- func ForgeFedPushIsDisjointWith(other vocab.Type) bool
- func ForgeFedPushIsExtendedBy(other vocab.Type) bool
- func ForgeFedRepositoryIsDisjointWith(other vocab.Type) bool
- func ForgeFedRepositoryIsExtendedBy(other vocab.Type) bool
- func ForgeFedTicketDependencyIsDisjointWith(other vocab.Type) bool
- func ForgeFedTicketDependencyIsExtendedBy(other vocab.Type) bool
- func ForgeFedTicketIsDisjointWith(other vocab.Type) bool
- func ForgeFedTicketIsExtendedBy(other vocab.Type) bool
- func IsOrExtendsActivityStreamsAccept(other vocab.Type) bool
- func IsOrExtendsActivityStreamsActivity(other vocab.Type) bool
- func IsOrExtendsActivityStreamsAdd(other vocab.Type) bool
- func IsOrExtendsActivityStreamsAnnounce(other vocab.Type) bool
- func IsOrExtendsActivityStreamsApplication(other vocab.Type) bool
- func IsOrExtendsActivityStreamsArrive(other vocab.Type) bool
- func IsOrExtendsActivityStreamsArticle(other vocab.Type) bool
- func IsOrExtendsActivityStreamsAudio(other vocab.Type) bool
- func IsOrExtendsActivityStreamsBlock(other vocab.Type) bool
- func IsOrExtendsActivityStreamsCollection(other vocab.Type) bool
- func IsOrExtendsActivityStreamsCollectionPage(other vocab.Type) bool
- func IsOrExtendsActivityStreamsCreate(other vocab.Type) bool
- func IsOrExtendsActivityStreamsDelete(other vocab.Type) bool
- func IsOrExtendsActivityStreamsDislike(other vocab.Type) bool
- func IsOrExtendsActivityStreamsDocument(other vocab.Type) bool
- func IsOrExtendsActivityStreamsEvent(other vocab.Type) bool
- func IsOrExtendsActivityStreamsFlag(other vocab.Type) bool
- func IsOrExtendsActivityStreamsFollow(other vocab.Type) bool
- func IsOrExtendsActivityStreamsGroup(other vocab.Type) bool
- func IsOrExtendsActivityStreamsIgnore(other vocab.Type) bool
- func IsOrExtendsActivityStreamsImage(other vocab.Type) bool
- func IsOrExtendsActivityStreamsIntransitiveActivity(other vocab.Type) bool
- func IsOrExtendsActivityStreamsInvite(other vocab.Type) bool
- func IsOrExtendsActivityStreamsJoin(other vocab.Type) bool
- func IsOrExtendsActivityStreamsLeave(other vocab.Type) bool
- func IsOrExtendsActivityStreamsLike(other vocab.Type) bool
- func IsOrExtendsActivityStreamsLink(other vocab.Type) bool
- func IsOrExtendsActivityStreamsListen(other vocab.Type) bool
- func IsOrExtendsActivityStreamsMention(other vocab.Type) bool
- func IsOrExtendsActivityStreamsMove(other vocab.Type) bool
- func IsOrExtendsActivityStreamsNote(other vocab.Type) bool
- func IsOrExtendsActivityStreamsObject(other vocab.Type) bool
- func IsOrExtendsActivityStreamsOffer(other vocab.Type) bool
- func IsOrExtendsActivityStreamsOrderedCollection(other vocab.Type) bool
- func IsOrExtendsActivityStreamsOrderedCollectionPage(other vocab.Type) bool
- func IsOrExtendsActivityStreamsOrganization(other vocab.Type) bool
- func IsOrExtendsActivityStreamsPage(other vocab.Type) bool
- func IsOrExtendsActivityStreamsPerson(other vocab.Type) bool
- func IsOrExtendsActivityStreamsPlace(other vocab.Type) bool
- func IsOrExtendsActivityStreamsProfile(other vocab.Type) bool
- func IsOrExtendsActivityStreamsQuestion(other vocab.Type) bool
- func IsOrExtendsActivityStreamsRead(other vocab.Type) bool
- func IsOrExtendsActivityStreamsReject(other vocab.Type) bool
- func IsOrExtendsActivityStreamsRelationship(other vocab.Type) bool
- func IsOrExtendsActivityStreamsRemove(other vocab.Type) bool
- func IsOrExtendsActivityStreamsService(other vocab.Type) bool
- func IsOrExtendsActivityStreamsTentativeAccept(other vocab.Type) bool
- func IsOrExtendsActivityStreamsTentativeReject(other vocab.Type) bool
- func IsOrExtendsActivityStreamsTombstone(other vocab.Type) bool
- func IsOrExtendsActivityStreamsTravel(other vocab.Type) bool
- func IsOrExtendsActivityStreamsUndo(other vocab.Type) bool
- func IsOrExtendsActivityStreamsUpdate(other vocab.Type) bool
- func IsOrExtendsActivityStreamsVideo(other vocab.Type) bool
- func IsOrExtendsActivityStreamsView(other vocab.Type) bool
- func IsOrExtendsForgeFedBranch(other vocab.Type) bool
- func IsOrExtendsForgeFedCommit(other vocab.Type) bool
- func IsOrExtendsForgeFedPush(other vocab.Type) bool
- func IsOrExtendsForgeFedRepository(other vocab.Type) bool
- func IsOrExtendsForgeFedTicket(other vocab.Type) bool
- func IsOrExtendsForgeFedTicketDependency(other vocab.Type) bool
- func IsOrExtendsTootEmoji(other vocab.Type) bool
- func IsOrExtendsTootIdentityProof(other vocab.Type) bool
- func IsOrExtendsW3IDSecurityV1PublicKey(other vocab.Type) bool
- func IsUnmatchedErr(err error) bool
- func NewActivityStreamsAccept() vocab.ActivityStreamsAccept
- func NewActivityStreamsAccuracyProperty() vocab.ActivityStreamsAccuracyProperty
- func NewActivityStreamsActivity() vocab.ActivityStreamsActivity
- func NewActivityStreamsActorProperty() vocab.ActivityStreamsActorProperty
- func NewActivityStreamsAdd() vocab.ActivityStreamsAdd
- func NewActivityStreamsAltitudeProperty() vocab.ActivityStreamsAltitudeProperty
- func NewActivityStreamsAnnounce() vocab.ActivityStreamsAnnounce
- func NewActivityStreamsAnyOfProperty() vocab.ActivityStreamsAnyOfProperty
- func NewActivityStreamsApplication() vocab.ActivityStreamsApplication
- func NewActivityStreamsArrive() vocab.ActivityStreamsArrive
- func NewActivityStreamsArticle() vocab.ActivityStreamsArticle
- func NewActivityStreamsAttachmentProperty() vocab.ActivityStreamsAttachmentProperty
- func NewActivityStreamsAttributedToProperty() vocab.ActivityStreamsAttributedToProperty
- func NewActivityStreamsAudienceProperty() vocab.ActivityStreamsAudienceProperty
- func NewActivityStreamsAudio() vocab.ActivityStreamsAudio
- func NewActivityStreamsBccProperty() vocab.ActivityStreamsBccProperty
- func NewActivityStreamsBlock() vocab.ActivityStreamsBlock
- func NewActivityStreamsBtoProperty() vocab.ActivityStreamsBtoProperty
- func NewActivityStreamsCcProperty() vocab.ActivityStreamsCcProperty
- func NewActivityStreamsClosedProperty() vocab.ActivityStreamsClosedProperty
- func NewActivityStreamsCollection() vocab.ActivityStreamsCollection
- func NewActivityStreamsCollectionPage() vocab.ActivityStreamsCollectionPage
- func NewActivityStreamsContentProperty() vocab.ActivityStreamsContentProperty
- func NewActivityStreamsContextProperty() vocab.ActivityStreamsContextProperty
- func NewActivityStreamsCreate() vocab.ActivityStreamsCreate
- func NewActivityStreamsCurrentProperty() vocab.ActivityStreamsCurrentProperty
- func NewActivityStreamsDelete() vocab.ActivityStreamsDelete
- func NewActivityStreamsDeletedProperty() vocab.ActivityStreamsDeletedProperty
- func NewActivityStreamsDescribesProperty() vocab.ActivityStreamsDescribesProperty
- func NewActivityStreamsDislike() vocab.ActivityStreamsDislike
- func NewActivityStreamsDocument() vocab.ActivityStreamsDocument
- func NewActivityStreamsDurationProperty() vocab.ActivityStreamsDurationProperty
- func NewActivityStreamsEndTimeProperty() vocab.ActivityStreamsEndTimeProperty
- func NewActivityStreamsEvent() vocab.ActivityStreamsEvent
- func NewActivityStreamsFirstProperty() vocab.ActivityStreamsFirstProperty
- func NewActivityStreamsFlag() vocab.ActivityStreamsFlag
- func NewActivityStreamsFollow() vocab.ActivityStreamsFollow
- func NewActivityStreamsFollowersProperty() vocab.ActivityStreamsFollowersProperty
- func NewActivityStreamsFollowingProperty() vocab.ActivityStreamsFollowingProperty
- func NewActivityStreamsFormerTypeProperty() vocab.ActivityStreamsFormerTypeProperty
- func NewActivityStreamsGeneratorProperty() vocab.ActivityStreamsGeneratorProperty
- func NewActivityStreamsGroup() vocab.ActivityStreamsGroup
- func NewActivityStreamsHeightProperty() vocab.ActivityStreamsHeightProperty
- func NewActivityStreamsHrefProperty() vocab.ActivityStreamsHrefProperty
- func NewActivityStreamsHreflangProperty() vocab.ActivityStreamsHreflangProperty
- func NewActivityStreamsIconProperty() vocab.ActivityStreamsIconProperty
- func NewActivityStreamsIgnore() vocab.ActivityStreamsIgnore
- func NewActivityStreamsImage() vocab.ActivityStreamsImage
- func NewActivityStreamsImageProperty() vocab.ActivityStreamsImageProperty
- func NewActivityStreamsInReplyToProperty() vocab.ActivityStreamsInReplyToProperty
- func NewActivityStreamsInboxProperty() vocab.ActivityStreamsInboxProperty
- func NewActivityStreamsInstrumentProperty() vocab.ActivityStreamsInstrumentProperty
- func NewActivityStreamsIntransitiveActivity() vocab.ActivityStreamsIntransitiveActivity
- func NewActivityStreamsInvite() vocab.ActivityStreamsInvite
- func NewActivityStreamsItemsProperty() vocab.ActivityStreamsItemsProperty
- func NewActivityStreamsJoin() vocab.ActivityStreamsJoin
- func NewActivityStreamsLastProperty() vocab.ActivityStreamsLastProperty
- func NewActivityStreamsLatitudeProperty() vocab.ActivityStreamsLatitudeProperty
- func NewActivityStreamsLeave() vocab.ActivityStreamsLeave
- func NewActivityStreamsLike() vocab.ActivityStreamsLike
- func NewActivityStreamsLikedProperty() vocab.ActivityStreamsLikedProperty
- func NewActivityStreamsLikesProperty() vocab.ActivityStreamsLikesProperty
- func NewActivityStreamsLink() vocab.ActivityStreamsLink
- func NewActivityStreamsListen() vocab.ActivityStreamsListen
- func NewActivityStreamsLocationProperty() vocab.ActivityStreamsLocationProperty
- func NewActivityStreamsLongitudeProperty() vocab.ActivityStreamsLongitudeProperty
- func NewActivityStreamsMediaTypeProperty() vocab.ActivityStreamsMediaTypeProperty
- func NewActivityStreamsMention() vocab.ActivityStreamsMention
- func NewActivityStreamsMove() vocab.ActivityStreamsMove
- func NewActivityStreamsNameProperty() vocab.ActivityStreamsNameProperty
- func NewActivityStreamsNextProperty() vocab.ActivityStreamsNextProperty
- func NewActivityStreamsNote() vocab.ActivityStreamsNote
- func NewActivityStreamsObject() vocab.ActivityStreamsObject
- func NewActivityStreamsObjectProperty() vocab.ActivityStreamsObjectProperty
- func NewActivityStreamsOffer() vocab.ActivityStreamsOffer
- func NewActivityStreamsOneOfProperty() vocab.ActivityStreamsOneOfProperty
- func NewActivityStreamsOrderedCollection() vocab.ActivityStreamsOrderedCollection
- func NewActivityStreamsOrderedCollectionPage() vocab.ActivityStreamsOrderedCollectionPage
- func NewActivityStreamsOrderedItemsProperty() vocab.ActivityStreamsOrderedItemsProperty
- func NewActivityStreamsOrganization() vocab.ActivityStreamsOrganization
- func NewActivityStreamsOriginProperty() vocab.ActivityStreamsOriginProperty
- func NewActivityStreamsOutboxProperty() vocab.ActivityStreamsOutboxProperty
- func NewActivityStreamsPage() vocab.ActivityStreamsPage
- func NewActivityStreamsPartOfProperty() vocab.ActivityStreamsPartOfProperty
- func NewActivityStreamsPerson() vocab.ActivityStreamsPerson
- func NewActivityStreamsPlace() vocab.ActivityStreamsPlace
- func NewActivityStreamsPreferredUsernameProperty() vocab.ActivityStreamsPreferredUsernameProperty
- func NewActivityStreamsPrevProperty() vocab.ActivityStreamsPrevProperty
- func NewActivityStreamsPreviewProperty() vocab.ActivityStreamsPreviewProperty
- func NewActivityStreamsProfile() vocab.ActivityStreamsProfile
- func NewActivityStreamsPublishedProperty() vocab.ActivityStreamsPublishedProperty
- func NewActivityStreamsQuestion() vocab.ActivityStreamsQuestion
- func NewActivityStreamsRadiusProperty() vocab.ActivityStreamsRadiusProperty
- func NewActivityStreamsRead() vocab.ActivityStreamsRead
- func NewActivityStreamsReject() vocab.ActivityStreamsReject
- func NewActivityStreamsRelProperty() vocab.ActivityStreamsRelProperty
- func NewActivityStreamsRelationship() vocab.ActivityStreamsRelationship
- func NewActivityStreamsRelationshipProperty() vocab.ActivityStreamsRelationshipProperty
- func NewActivityStreamsRemove() vocab.ActivityStreamsRemove
- func NewActivityStreamsRepliesProperty() vocab.ActivityStreamsRepliesProperty
- func NewActivityStreamsResultProperty() vocab.ActivityStreamsResultProperty
- func NewActivityStreamsService() vocab.ActivityStreamsService
- func NewActivityStreamsSharesProperty() vocab.ActivityStreamsSharesProperty
- func NewActivityStreamsSourceProperty() vocab.ActivityStreamsSourceProperty
- func NewActivityStreamsStartIndexProperty() vocab.ActivityStreamsStartIndexProperty
- func NewActivityStreamsStartTimeProperty() vocab.ActivityStreamsStartTimeProperty
- func NewActivityStreamsStreamsProperty() vocab.ActivityStreamsStreamsProperty
- func NewActivityStreamsSubjectProperty() vocab.ActivityStreamsSubjectProperty
- func NewActivityStreamsSummaryProperty() vocab.ActivityStreamsSummaryProperty
- func NewActivityStreamsTagProperty() vocab.ActivityStreamsTagProperty
- func NewActivityStreamsTargetProperty() vocab.ActivityStreamsTargetProperty
- func NewActivityStreamsTentativeAccept() vocab.ActivityStreamsTentativeAccept
- func NewActivityStreamsTentativeReject() vocab.ActivityStreamsTentativeReject
- func NewActivityStreamsToProperty() vocab.ActivityStreamsToProperty
- func NewActivityStreamsTombstone() vocab.ActivityStreamsTombstone
- func NewActivityStreamsTotalItemsProperty() vocab.ActivityStreamsTotalItemsProperty
- func NewActivityStreamsTravel() vocab.ActivityStreamsTravel
- func NewActivityStreamsUndo() vocab.ActivityStreamsUndo
- func NewActivityStreamsUnitsProperty() vocab.ActivityStreamsUnitsProperty
- func NewActivityStreamsUpdate() vocab.ActivityStreamsUpdate
- func NewActivityStreamsUpdatedProperty() vocab.ActivityStreamsUpdatedProperty
- func NewActivityStreamsUrlProperty() vocab.ActivityStreamsUrlProperty
- func NewActivityStreamsVideo() vocab.ActivityStreamsVideo
- func NewActivityStreamsView() vocab.ActivityStreamsView
- func NewActivityStreamsWidthProperty() vocab.ActivityStreamsWidthProperty
- func NewForgeFedAssignedToProperty() vocab.ForgeFedAssignedToProperty
- func NewForgeFedBranch() vocab.ForgeFedBranch
- func NewForgeFedCommit() vocab.ForgeFedCommit
- func NewForgeFedCommittedByProperty() vocab.ForgeFedCommittedByProperty
- func NewForgeFedCommittedProperty() vocab.ForgeFedCommittedProperty
- func NewForgeFedDependantsProperty() vocab.ForgeFedDependantsProperty
- func NewForgeFedDependedByProperty() vocab.ForgeFedDependedByProperty
- func NewForgeFedDependenciesProperty() vocab.ForgeFedDependenciesProperty
- func NewForgeFedDependsOnProperty() vocab.ForgeFedDependsOnProperty
- func NewForgeFedDescriptionProperty() vocab.ForgeFedDescriptionProperty
- func NewForgeFedEarlyItemsProperty() vocab.ForgeFedEarlyItemsProperty
- func NewForgeFedFilesAddedProperty() vocab.ForgeFedFilesAddedProperty
- func NewForgeFedFilesModifiedProperty() vocab.ForgeFedFilesModifiedProperty
- func NewForgeFedFilesRemovedProperty() vocab.ForgeFedFilesRemovedProperty
- func NewForgeFedForksProperty() vocab.ForgeFedForksProperty
- func NewForgeFedHashProperty() vocab.ForgeFedHashProperty
- func NewForgeFedIsResolvedProperty() vocab.ForgeFedIsResolvedProperty
- func NewForgeFedPush() vocab.ForgeFedPush
- func NewForgeFedRefProperty() vocab.ForgeFedRefProperty
- func NewForgeFedRepository() vocab.ForgeFedRepository
- func NewForgeFedTeamProperty() vocab.ForgeFedTeamProperty
- func NewForgeFedTicket() vocab.ForgeFedTicket
- func NewForgeFedTicketDependency() vocab.ForgeFedTicketDependency
- func NewForgeFedTicketsTrackedByProperty() vocab.ForgeFedTicketsTrackedByProperty
- func NewForgeFedTracksTicketsForProperty() vocab.ForgeFedTracksTicketsForProperty
- func NewJSONLDIdProperty() vocab.JSONLDIdProperty
- func NewJSONLDTypeProperty() vocab.JSONLDTypeProperty
- func NewTootBlurhashProperty() vocab.TootBlurhashProperty
- func NewTootDiscoverableProperty() vocab.TootDiscoverableProperty
- func NewTootEmoji() vocab.TootEmoji
- func NewTootFeaturedProperty() vocab.TootFeaturedProperty
- func NewTootIdentityProof() vocab.TootIdentityProof
- func NewTootSignatureAlgorithmProperty() vocab.TootSignatureAlgorithmProperty
- func NewTootSignatureValueProperty() vocab.TootSignatureValueProperty
- func NewTootVotersCountProperty() vocab.TootVotersCountProperty
- func NewW3IDSecurityV1OwnerProperty() vocab.W3IDSecurityV1OwnerProperty
- func NewW3IDSecurityV1PublicKey() vocab.W3IDSecurityV1PublicKey
- func NewW3IDSecurityV1PublicKeyPemProperty() vocab.W3IDSecurityV1PublicKeyPemProperty
- func NewW3IDSecurityV1PublicKeyProperty() vocab.W3IDSecurityV1PublicKeyProperty
- func Serialize(a vocab.Type) (m map[string]interface{}, e error)
- func ToType(c context.Context, m map[string]interface{}) (t vocab.Type, err error)
- func TootEmojiIsDisjointWith(other vocab.Type) bool
- func TootEmojiIsExtendedBy(other vocab.Type) bool
- func TootIdentityProofIsDisjointWith(other vocab.Type) bool
- func TootIdentityProofIsExtendedBy(other vocab.Type) bool
- func TootTootEmojiExtends(other vocab.Type) bool
- func TootTootIdentityProofExtends(other vocab.Type) bool
- func W3IDSecurityV1PublicKeyIsDisjointWith(other vocab.Type) bool
- func W3IDSecurityV1PublicKeyIsExtendedBy(other vocab.Type) bool
- func W3IDSecurityV1W3IDSecurityV1PublicKeyExtends(other vocab.Type) bool
- type ActivityStreamsInterface
- type JSONResolver
- type Manager
- func (this Manager) DeserializeAcceptActivityStreams() ...
- func (this Manager) DeserializeAccuracyPropertyActivityStreams() ...
- func (this Manager) DeserializeActivityActivityStreams() ...
- func (this Manager) DeserializeActorPropertyActivityStreams() ...
- func (this Manager) DeserializeAddActivityStreams() ...
- func (this Manager) DeserializeAltitudePropertyActivityStreams() ...
- func (this Manager) DeserializeAnnounceActivityStreams() ...
- func (this Manager) DeserializeAnyOfPropertyActivityStreams() ...
- func (this Manager) DeserializeApplicationActivityStreams() ...
- func (this Manager) DeserializeArriveActivityStreams() ...
- func (this Manager) DeserializeArticleActivityStreams() ...
- func (this Manager) DeserializeAssignedToPropertyForgeFed() ...
- func (this Manager) DeserializeAttachmentPropertyActivityStreams() ...
- func (this Manager) DeserializeAttributedToPropertyActivityStreams() ...
- func (this Manager) DeserializeAudiencePropertyActivityStreams() ...
- func (this Manager) DeserializeAudioActivityStreams() ...
- func (this Manager) DeserializeBccPropertyActivityStreams() ...
- func (this Manager) DeserializeBlockActivityStreams() ...
- func (this Manager) DeserializeBlurhashPropertyToot() ...
- func (this Manager) DeserializeBranchForgeFed() func(map[string]interface{}, map[string]string) (vocab.ForgeFedBranch, error)
- func (this Manager) DeserializeBtoPropertyActivityStreams() ...
- func (this Manager) DeserializeCcPropertyActivityStreams() ...
- func (this Manager) DeserializeClosedPropertyActivityStreams() ...
- func (this Manager) DeserializeCollectionActivityStreams() ...
- func (this Manager) DeserializeCollectionPageActivityStreams() ...
- func (this Manager) DeserializeCommitForgeFed() func(map[string]interface{}, map[string]string) (vocab.ForgeFedCommit, error)
- func (this Manager) DeserializeCommittedByPropertyForgeFed() ...
- func (this Manager) DeserializeCommittedPropertyForgeFed() ...
- func (this Manager) DeserializeContentPropertyActivityStreams() ...
- func (this Manager) DeserializeContextPropertyActivityStreams() ...
- func (this Manager) DeserializeCreateActivityStreams() ...
- func (this Manager) DeserializeCurrentPropertyActivityStreams() ...
- func (this Manager) DeserializeDeleteActivityStreams() ...
- func (this Manager) DeserializeDeletedPropertyActivityStreams() ...
- func (this Manager) DeserializeDependantsPropertyForgeFed() ...
- func (this Manager) DeserializeDependedByPropertyForgeFed() ...
- func (this Manager) DeserializeDependenciesPropertyForgeFed() ...
- func (this Manager) DeserializeDependsOnPropertyForgeFed() ...
- func (this Manager) DeserializeDescribesPropertyActivityStreams() ...
- func (this Manager) DeserializeDescriptionPropertyForgeFed() ...
- func (this Manager) DeserializeDiscoverablePropertyToot() ...
- func (this Manager) DeserializeDislikeActivityStreams() ...
- func (this Manager) DeserializeDocumentActivityStreams() ...
- func (this Manager) DeserializeDurationPropertyActivityStreams() ...
- func (this Manager) DeserializeEarlyItemsPropertyForgeFed() ...
- func (this Manager) DeserializeEmojiToot() func(map[string]interface{}, map[string]string) (vocab.TootEmoji, error)
- func (this Manager) DeserializeEndTimePropertyActivityStreams() ...
- func (this Manager) DeserializeEventActivityStreams() ...
- func (this Manager) DeserializeFeaturedPropertyToot() ...
- func (this Manager) DeserializeFilesAddedPropertyForgeFed() ...
- func (this Manager) DeserializeFilesModifiedPropertyForgeFed() ...
- func (this Manager) DeserializeFilesRemovedPropertyForgeFed() ...
- func (this Manager) DeserializeFirstPropertyActivityStreams() ...
- func (this Manager) DeserializeFlagActivityStreams() ...
- func (this Manager) DeserializeFollowActivityStreams() ...
- func (this Manager) DeserializeFollowersPropertyActivityStreams() ...
- func (this Manager) DeserializeFollowingPropertyActivityStreams() ...
- func (this Manager) DeserializeForksPropertyForgeFed() ...
- func (this Manager) DeserializeFormerTypePropertyActivityStreams() ...
- func (this Manager) DeserializeGeneratorPropertyActivityStreams() ...
- func (this Manager) DeserializeGroupActivityStreams() ...
- func (this Manager) DeserializeHashPropertyForgeFed() ...
- func (this Manager) DeserializeHeightPropertyActivityStreams() ...
- func (this Manager) DeserializeHrefPropertyActivityStreams() ...
- func (this Manager) DeserializeHreflangPropertyActivityStreams() ...
- func (this Manager) DeserializeIconPropertyActivityStreams() ...
- func (this Manager) DeserializeIdPropertyJSONLD() ...
- func (this Manager) DeserializeIdentityProofToot() ...
- func (this Manager) DeserializeIgnoreActivityStreams() ...
- func (this Manager) DeserializeImageActivityStreams() ...
- func (this Manager) DeserializeImagePropertyActivityStreams() ...
- func (this Manager) DeserializeInReplyToPropertyActivityStreams() ...
- func (this Manager) DeserializeInboxPropertyActivityStreams() ...
- func (this Manager) DeserializeInstrumentPropertyActivityStreams() ...
- func (this Manager) DeserializeIntransitiveActivityActivityStreams() ...
- func (this Manager) DeserializeInviteActivityStreams() ...
- func (this Manager) DeserializeIsResolvedPropertyForgeFed() ...
- func (this Manager) DeserializeItemsPropertyActivityStreams() ...
- func (this Manager) DeserializeJoinActivityStreams() ...
- func (this Manager) DeserializeLastPropertyActivityStreams() ...
- func (this Manager) DeserializeLatitudePropertyActivityStreams() ...
- func (this Manager) DeserializeLeaveActivityStreams() ...
- func (this Manager) DeserializeLikeActivityStreams() ...
- func (this Manager) DeserializeLikedPropertyActivityStreams() ...
- func (this Manager) DeserializeLikesPropertyActivityStreams() ...
- func (this Manager) DeserializeLinkActivityStreams() ...
- func (this Manager) DeserializeListenActivityStreams() ...
- func (this Manager) DeserializeLocationPropertyActivityStreams() ...
- func (this Manager) DeserializeLongitudePropertyActivityStreams() ...
- func (this Manager) DeserializeMediaTypePropertyActivityStreams() ...
- func (this Manager) DeserializeMentionActivityStreams() ...
- func (this Manager) DeserializeMoveActivityStreams() ...
- func (this Manager) DeserializeNamePropertyActivityStreams() ...
- func (this Manager) DeserializeNextPropertyActivityStreams() ...
- func (this Manager) DeserializeNoteActivityStreams() ...
- func (this Manager) DeserializeObjectActivityStreams() ...
- func (this Manager) DeserializeObjectPropertyActivityStreams() ...
- func (this Manager) DeserializeOfferActivityStreams() ...
- func (this Manager) DeserializeOneOfPropertyActivityStreams() ...
- func (this Manager) DeserializeOrderedCollectionActivityStreams() ...
- func (this Manager) DeserializeOrderedCollectionPageActivityStreams() ...
- func (this Manager) DeserializeOrderedItemsPropertyActivityStreams() ...
- func (this Manager) DeserializeOrganizationActivityStreams() ...
- func (this Manager) DeserializeOriginPropertyActivityStreams() ...
- func (this Manager) DeserializeOutboxPropertyActivityStreams() ...
- func (this Manager) DeserializeOwnerPropertyW3IDSecurityV1() ...
- func (this Manager) DeserializePageActivityStreams() ...
- func (this Manager) DeserializePartOfPropertyActivityStreams() ...
- func (this Manager) DeserializePersonActivityStreams() ...
- func (this Manager) DeserializePlaceActivityStreams() ...
- func (this Manager) DeserializePreferredUsernamePropertyActivityStreams() ...
- func (this Manager) DeserializePrevPropertyActivityStreams() ...
- func (this Manager) DeserializePreviewPropertyActivityStreams() ...
- func (this Manager) DeserializeProfileActivityStreams() ...
- func (this Manager) DeserializePublicKeyPemPropertyW3IDSecurityV1() ...
- func (this Manager) DeserializePublicKeyPropertyW3IDSecurityV1() ...
- func (this Manager) DeserializePublicKeyW3IDSecurityV1() ...
- func (this Manager) DeserializePublishedPropertyActivityStreams() ...
- func (this Manager) DeserializePushForgeFed() func(map[string]interface{}, map[string]string) (vocab.ForgeFedPush, error)
- func (this Manager) DeserializeQuestionActivityStreams() ...
- func (this Manager) DeserializeRadiusPropertyActivityStreams() ...
- func (this Manager) DeserializeReadActivityStreams() ...
- func (this Manager) DeserializeRefPropertyForgeFed() ...
- func (this Manager) DeserializeRejectActivityStreams() ...
- func (this Manager) DeserializeRelPropertyActivityStreams() ...
- func (this Manager) DeserializeRelationshipActivityStreams() ...
- func (this Manager) DeserializeRelationshipPropertyActivityStreams() ...
- func (this Manager) DeserializeRemoveActivityStreams() ...
- func (this Manager) DeserializeRepliesPropertyActivityStreams() ...
- func (this Manager) DeserializeRepositoryForgeFed() ...
- func (this Manager) DeserializeResultPropertyActivityStreams() ...
- func (this Manager) DeserializeServiceActivityStreams() ...
- func (this Manager) DeserializeSharesPropertyActivityStreams() ...
- func (this Manager) DeserializeSignatureAlgorithmPropertyToot() ...
- func (this Manager) DeserializeSignatureValuePropertyToot() ...
- func (this Manager) DeserializeSourcePropertyActivityStreams() ...
- func (this Manager) DeserializeStartIndexPropertyActivityStreams() ...
- func (this Manager) DeserializeStartTimePropertyActivityStreams() ...
- func (this Manager) DeserializeStreamsPropertyActivityStreams() ...
- func (this Manager) DeserializeSubjectPropertyActivityStreams() ...
- func (this Manager) DeserializeSummaryPropertyActivityStreams() ...
- func (this Manager) DeserializeTagPropertyActivityStreams() ...
- func (this Manager) DeserializeTargetPropertyActivityStreams() ...
- func (this Manager) DeserializeTeamPropertyForgeFed() ...
- func (this Manager) DeserializeTentativeAcceptActivityStreams() ...
- func (this Manager) DeserializeTentativeRejectActivityStreams() ...
- func (this Manager) DeserializeTicketDependencyForgeFed() ...
- func (this Manager) DeserializeTicketForgeFed() func(map[string]interface{}, map[string]string) (vocab.ForgeFedTicket, error)
- func (this Manager) DeserializeTicketsTrackedByPropertyForgeFed() ...
- func (this Manager) DeserializeToPropertyActivityStreams() ...
- func (this Manager) DeserializeTombstoneActivityStreams() ...
- func (this Manager) DeserializeTotalItemsPropertyActivityStreams() ...
- func (this Manager) DeserializeTracksTicketsForPropertyForgeFed() ...
- func (this Manager) DeserializeTravelActivityStreams() ...
- func (this Manager) DeserializeTypePropertyJSONLD() ...
- func (this Manager) DeserializeUndoActivityStreams() ...
- func (this Manager) DeserializeUnitsPropertyActivityStreams() ...
- func (this Manager) DeserializeUpdateActivityStreams() ...
- func (this Manager) DeserializeUpdatedPropertyActivityStreams() ...
- func (this Manager) DeserializeUrlPropertyActivityStreams() ...
- func (this Manager) DeserializeVideoActivityStreams() ...
- func (this Manager) DeserializeViewActivityStreams() ...
- func (this Manager) DeserializeVotersCountPropertyToot() ...
- func (this Manager) DeserializeWidthPropertyActivityStreams() ...
- type Resolver
- type TypePredicatedResolver
- type TypeResolver
Constants ¶
This section is empty.
Variables ¶
var ActivityStreamsAcceptName string = "Accept"
ActivityStreamsAcceptName is the string literal of the name for the Accept type in the ActivityStreams vocabulary.
var ActivityStreamsAccuracyPropertyName string = "accuracy"
ActivityStreamsAccuracyPropertyName is the string literal of the name for the accuracy property in the ActivityStreams vocabulary.
var ActivityStreamsActivityName string = "Activity"
ActivityStreamsActivityName is the string literal of the name for the Activity type in the ActivityStreams vocabulary.
var ActivityStreamsActorPropertyName string = "actor"
ActivityStreamsActorPropertyName is the string literal of the name for the actor property in the ActivityStreams vocabulary.
var ActivityStreamsAddName string = "Add"
ActivityStreamsAddName is the string literal of the name for the Add type in the ActivityStreams vocabulary.
var ActivityStreamsAltitudePropertyName string = "altitude"
ActivityStreamsAltitudePropertyName is the string literal of the name for the altitude property in the ActivityStreams vocabulary.
var ActivityStreamsAnnounceName string = "Announce"
ActivityStreamsAnnounceName is the string literal of the name for the Announce type in the ActivityStreams vocabulary.
var ActivityStreamsAnyOfPropertyName string = "anyOf"
ActivityStreamsAnyOfPropertyName is the string literal of the name for the anyOf property in the ActivityStreams vocabulary.
var ActivityStreamsApplicationName string = "Application"
ActivityStreamsApplicationName is the string literal of the name for the Application type in the ActivityStreams vocabulary.
var ActivityStreamsArriveName string = "Arrive"
ActivityStreamsArriveName is the string literal of the name for the Arrive type in the ActivityStreams vocabulary.
var ActivityStreamsArticleName string = "Article"
ActivityStreamsArticleName is the string literal of the name for the Article type in the ActivityStreams vocabulary.
var ActivityStreamsAttachmentPropertyName string = "attachment"
ActivityStreamsAttachmentPropertyName is the string literal of the name for the attachment property in the ActivityStreams vocabulary.
var ActivityStreamsAttributedToPropertyName string = "attributedTo"
ActivityStreamsAttributedToPropertyName is the string literal of the name for the attributedTo property in the ActivityStreams vocabulary.
var ActivityStreamsAudiencePropertyName string = "audience"
ActivityStreamsAudiencePropertyName is the string literal of the name for the audience property in the ActivityStreams vocabulary.
var ActivityStreamsAudioName string = "Audio"
ActivityStreamsAudioName is the string literal of the name for the Audio type in the ActivityStreams vocabulary.
var ActivityStreamsBccPropertyName string = "bcc"
ActivityStreamsBccPropertyName is the string literal of the name for the bcc property in the ActivityStreams vocabulary.
var ActivityStreamsBlockName string = "Block"
ActivityStreamsBlockName is the string literal of the name for the Block type in the ActivityStreams vocabulary.
var ActivityStreamsBtoPropertyName string = "bto"
ActivityStreamsBtoPropertyName is the string literal of the name for the bto property in the ActivityStreams vocabulary.
var ActivityStreamsCcPropertyName string = "cc"
ActivityStreamsCcPropertyName is the string literal of the name for the cc property in the ActivityStreams vocabulary.
var ActivityStreamsClosedPropertyName string = "closed"
ActivityStreamsClosedPropertyName is the string literal of the name for the closed property in the ActivityStreams vocabulary.
var ActivityStreamsCollectionName string = "Collection"
ActivityStreamsCollectionName is the string literal of the name for the Collection type in the ActivityStreams vocabulary.
var ActivityStreamsCollectionPageName string = "CollectionPage"
ActivityStreamsCollectionPageName is the string literal of the name for the CollectionPage type in the ActivityStreams vocabulary.
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.
var ActivityStreamsContentPropertyName string = "content"
ActivityStreamsContentPropertyName is the string literal of the name for the content property in the ActivityStreams vocabulary.
var ActivityStreamsContextPropertyName string = "context"
ActivityStreamsContextPropertyName is the string literal of the name for the context property in the ActivityStreams vocabulary.
var ActivityStreamsCreateName string = "Create"
ActivityStreamsCreateName is the string literal of the name for the Create type in the ActivityStreams vocabulary.
var ActivityStreamsCurrentPropertyName string = "current"
ActivityStreamsCurrentPropertyName is the string literal of the name for the current property in the ActivityStreams vocabulary.
var ActivityStreamsDeleteName string = "Delete"
ActivityStreamsDeleteName is the string literal of the name for the Delete type in the ActivityStreams vocabulary.
var ActivityStreamsDeletedPropertyName string = "deleted"
ActivityStreamsDeletedPropertyName is the string literal of the name for the deleted property in the ActivityStreams vocabulary.
var ActivityStreamsDescribesPropertyName string = "describes"
ActivityStreamsDescribesPropertyName is the string literal of the name for the describes property in the ActivityStreams vocabulary.
var ActivityStreamsDislikeName string = "Dislike"
ActivityStreamsDislikeName is the string literal of the name for the Dislike type in the ActivityStreams vocabulary.
var ActivityStreamsDocumentName string = "Document"
ActivityStreamsDocumentName is the string literal of the name for the Document type in the ActivityStreams vocabulary.
var ActivityStreamsDurationPropertyName string = "duration"
ActivityStreamsDurationPropertyName is the string literal of the name for the duration property in the ActivityStreams vocabulary.
var ActivityStreamsEndTimePropertyName string = "endTime"
ActivityStreamsEndTimePropertyName is the string literal of the name for the endTime property in the ActivityStreams vocabulary.
var ActivityStreamsEventName string = "Event"
ActivityStreamsEventName is the string literal of the name for the Event type in the ActivityStreams vocabulary.
var ActivityStreamsFirstPropertyName string = "first"
ActivityStreamsFirstPropertyName is the string literal of the name for the first property in the ActivityStreams vocabulary.
var ActivityStreamsFlagName string = "Flag"
ActivityStreamsFlagName is the string literal of the name for the Flag type in the ActivityStreams vocabulary.
var ActivityStreamsFollowName string = "Follow"
ActivityStreamsFollowName is the string literal of the name for the Follow type in the ActivityStreams vocabulary.
var ActivityStreamsFollowersPropertyName string = "followers"
ActivityStreamsFollowersPropertyName is the string literal of the name for the followers property in the ActivityStreams vocabulary.
var ActivityStreamsFollowingPropertyName string = "following"
ActivityStreamsFollowingPropertyName is the string literal of the name for the following property in the ActivityStreams vocabulary.
var ActivityStreamsFormerTypePropertyName string = "formerType"
ActivityStreamsFormerTypePropertyName is the string literal of the name for the formerType property in the ActivityStreams vocabulary.
var ActivityStreamsGeneratorPropertyName string = "generator"
ActivityStreamsGeneratorPropertyName is the string literal of the name for the generator property in the ActivityStreams vocabulary.
var ActivityStreamsGroupName string = "Group"
ActivityStreamsGroupName is the string literal of the name for the Group type in the ActivityStreams vocabulary.
var ActivityStreamsHeightPropertyName string = "height"
ActivityStreamsHeightPropertyName is the string literal of the name for the height property in the ActivityStreams vocabulary.
var ActivityStreamsHrefPropertyName string = "href"
ActivityStreamsHrefPropertyName is the string literal of the name for the href property in the ActivityStreams vocabulary.
var ActivityStreamsHreflangPropertyName string = "hreflang"
ActivityStreamsHreflangPropertyName is the string literal of the name for the hreflang property in the ActivityStreams vocabulary.
var ActivityStreamsIconPropertyName string = "icon"
ActivityStreamsIconPropertyName is the string literal of the name for the icon property in the ActivityStreams vocabulary.
var ActivityStreamsIgnoreName string = "Ignore"
ActivityStreamsIgnoreName is the string literal of the name for the Ignore type in the ActivityStreams vocabulary.
var ActivityStreamsImageName string = "Image"
ActivityStreamsImageName is the string literal of the name for the Image type in the ActivityStreams vocabulary.
var ActivityStreamsImagePropertyName string = "image"
ActivityStreamsImagePropertyName is the string literal of the name for the image property in the ActivityStreams vocabulary.
var ActivityStreamsInReplyToPropertyName string = "inReplyTo"
ActivityStreamsInReplyToPropertyName is the string literal of the name for the inReplyTo property in the ActivityStreams vocabulary.
var ActivityStreamsInboxPropertyName string = "inbox"
ActivityStreamsInboxPropertyName is the string literal of the name for the inbox property in the ActivityStreams vocabulary.
var ActivityStreamsInstrumentPropertyName string = "instrument"
ActivityStreamsInstrumentPropertyName is the string literal of the name for the instrument property in the ActivityStreams vocabulary.
var ActivityStreamsIntransitiveActivityName string = "IntransitiveActivity"
ActivityStreamsIntransitiveActivityName is the string literal of the name for the IntransitiveActivity type in the ActivityStreams vocabulary.
var ActivityStreamsInviteName string = "Invite"
ActivityStreamsInviteName is the string literal of the name for the Invite type in the ActivityStreams vocabulary.
var ActivityStreamsItemsPropertyName string = "items"
ActivityStreamsItemsPropertyName is the string literal of the name for the items property in the ActivityStreams vocabulary.
var ActivityStreamsJoinName string = "Join"
ActivityStreamsJoinName is the string literal of the name for the Join type in the ActivityStreams vocabulary.
var ActivityStreamsLastPropertyName string = "last"
ActivityStreamsLastPropertyName is the string literal of the name for the last property in the ActivityStreams vocabulary.
var ActivityStreamsLatitudePropertyName string = "latitude"
ActivityStreamsLatitudePropertyName is the string literal of the name for the latitude property in the ActivityStreams vocabulary.
var ActivityStreamsLeaveName string = "Leave"
ActivityStreamsLeaveName is the string literal of the name for the Leave type in the ActivityStreams vocabulary.
var ActivityStreamsLikeName string = "Like"
ActivityStreamsLikeName is the string literal of the name for the Like type in the ActivityStreams vocabulary.
var ActivityStreamsLikedPropertyName string = "liked"
ActivityStreamsLikedPropertyName is the string literal of the name for the liked property in the ActivityStreams vocabulary.
var ActivityStreamsLikesPropertyName string = "likes"
ActivityStreamsLikesPropertyName is the string literal of the name for the likes property in the ActivityStreams vocabulary.
var ActivityStreamsLinkName string = "Link"
ActivityStreamsLinkName is the string literal of the name for the Link type in the ActivityStreams vocabulary.
var ActivityStreamsListenName string = "Listen"
ActivityStreamsListenName is the string literal of the name for the Listen type in the ActivityStreams vocabulary.
var ActivityStreamsLocationPropertyName string = "location"
ActivityStreamsLocationPropertyName is the string literal of the name for the location property in the ActivityStreams vocabulary.
var ActivityStreamsLongitudePropertyName string = "longitude"
ActivityStreamsLongitudePropertyName is the string literal of the name for the longitude property in the ActivityStreams vocabulary.
var ActivityStreamsMediaTypePropertyName string = "mediaType"
ActivityStreamsMediaTypePropertyName is the string literal of the name for the mediaType property in the ActivityStreams vocabulary.
var ActivityStreamsMentionName string = "Mention"
ActivityStreamsMentionName is the string literal of the name for the Mention type in the ActivityStreams vocabulary.
var ActivityStreamsMoveName string = "Move"
ActivityStreamsMoveName is the string literal of the name for the Move type in the ActivityStreams vocabulary.
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.
var ActivityStreamsNamePropertyName string = "name"
ActivityStreamsNamePropertyName is the string literal of the name for the name property in the ActivityStreams vocabulary.
var ActivityStreamsNextPropertyName string = "next"
ActivityStreamsNextPropertyName is the string literal of the name for the next property in the ActivityStreams vocabulary.
var ActivityStreamsNoteName string = "Note"
ActivityStreamsNoteName is the string literal of the name for the Note type in the ActivityStreams vocabulary.
var ActivityStreamsObjectName string = "Object"
ActivityStreamsObjectName is the string literal of the name for the Object type in the ActivityStreams vocabulary.
var ActivityStreamsObjectPropertyName string = "object"
ActivityStreamsObjectPropertyName is the string literal of the name for the object property in the ActivityStreams vocabulary.
var ActivityStreamsOfferName string = "Offer"
ActivityStreamsOfferName is the string literal of the name for the Offer type in the ActivityStreams vocabulary.
var ActivityStreamsOneOfPropertyName string = "oneOf"
ActivityStreamsOneOfPropertyName is the string literal of the name for the oneOf property in the ActivityStreams vocabulary.
var ActivityStreamsOrderedCollectionName string = "OrderedCollection"
ActivityStreamsOrderedCollectionName is the string literal of the name for the OrderedCollection type in the ActivityStreams vocabulary.
var ActivityStreamsOrderedCollectionPageName string = "OrderedCollectionPage"
ActivityStreamsOrderedCollectionPageName is the string literal of the name for the OrderedCollectionPage type in the ActivityStreams vocabulary.
var ActivityStreamsOrderedItemsPropertyName string = "orderedItems"
ActivityStreamsOrderedItemsPropertyName is the string literal of the name for the orderedItems property in the ActivityStreams vocabulary.
var ActivityStreamsOrganizationName string = "Organization"
ActivityStreamsOrganizationName is the string literal of the name for the Organization type in the ActivityStreams vocabulary.
var ActivityStreamsOriginPropertyName string = "origin"
ActivityStreamsOriginPropertyName is the string literal of the name for the origin property in the ActivityStreams vocabulary.
var ActivityStreamsOutboxPropertyName string = "outbox"
ActivityStreamsOutboxPropertyName is the string literal of the name for the outbox property in the ActivityStreams vocabulary.
var ActivityStreamsPageName string = "Page"
ActivityStreamsPageName is the string literal of the name for the Page type in the ActivityStreams vocabulary.
var ActivityStreamsPartOfPropertyName string = "partOf"
ActivityStreamsPartOfPropertyName is the string literal of the name for the partOf property in the ActivityStreams vocabulary.
var ActivityStreamsPersonName string = "Person"
ActivityStreamsPersonName is the string literal of the name for the Person type in the ActivityStreams vocabulary.
var ActivityStreamsPlaceName string = "Place"
ActivityStreamsPlaceName is the string literal of the name for the Place type in the ActivityStreams vocabulary.
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.
var ActivityStreamsPreferredUsernamePropertyName string = "preferredUsername"
ActivityStreamsPreferredUsernamePropertyName is the string literal of the name for the preferredUsername property in the ActivityStreams vocabulary.
var ActivityStreamsPrevPropertyName string = "prev"
ActivityStreamsPrevPropertyName is the string literal of the name for the prev property in the ActivityStreams vocabulary.
var ActivityStreamsPreviewPropertyName string = "preview"
ActivityStreamsPreviewPropertyName is the string literal of the name for the preview property in the ActivityStreams vocabulary.
var ActivityStreamsProfileName string = "Profile"
ActivityStreamsProfileName is the string literal of the name for the Profile type in the ActivityStreams vocabulary.
var ActivityStreamsPublishedPropertyName string = "published"
ActivityStreamsPublishedPropertyName is the string literal of the name for the published property in the ActivityStreams vocabulary.
var ActivityStreamsQuestionName string = "Question"
ActivityStreamsQuestionName is the string literal of the name for the Question type in the ActivityStreams vocabulary.
var ActivityStreamsRadiusPropertyName string = "radius"
ActivityStreamsRadiusPropertyName is the string literal of the name for the radius property in the ActivityStreams vocabulary.
var ActivityStreamsReadName string = "Read"
ActivityStreamsReadName is the string literal of the name for the Read type in the ActivityStreams vocabulary.
var ActivityStreamsRejectName string = "Reject"
ActivityStreamsRejectName is the string literal of the name for the Reject type in the ActivityStreams vocabulary.
var ActivityStreamsRelPropertyName string = "rel"
ActivityStreamsRelPropertyName is the string literal of the name for the rel property in the ActivityStreams vocabulary.
var ActivityStreamsRelationshipName string = "Relationship"
ActivityStreamsRelationshipName is the string literal of the name for the Relationship type in the ActivityStreams vocabulary.
var ActivityStreamsRelationshipPropertyName string = "relationship"
ActivityStreamsRelationshipPropertyName is the string literal of the name for the relationship property in the ActivityStreams vocabulary.
var ActivityStreamsRemoveName string = "Remove"
ActivityStreamsRemoveName is the string literal of the name for the Remove type in the ActivityStreams vocabulary.
var ActivityStreamsRepliesPropertyName string = "replies"
ActivityStreamsRepliesPropertyName is the string literal of the name for the replies property in the ActivityStreams vocabulary.
var ActivityStreamsResultPropertyName string = "result"
ActivityStreamsResultPropertyName is the string literal of the name for the result property in the ActivityStreams vocabulary.
var ActivityStreamsServiceName string = "Service"
ActivityStreamsServiceName is the string literal of the name for the Service type in the ActivityStreams vocabulary.
ActivityStreamsSharesPropertyName is the string literal of the name for the shares property in the ActivityStreams vocabulary.
var ActivityStreamsSourcePropertyName string = "source"
ActivityStreamsSourcePropertyName is the string literal of the name for the source property in the ActivityStreams vocabulary.
var ActivityStreamsStartIndexPropertyName string = "startIndex"
ActivityStreamsStartIndexPropertyName is the string literal of the name for the startIndex property in the ActivityStreams vocabulary.
var ActivityStreamsStartTimePropertyName string = "startTime"
ActivityStreamsStartTimePropertyName is the string literal of the name for the startTime property in the ActivityStreams vocabulary.
var ActivityStreamsStreamsPropertyName string = "streams"
ActivityStreamsStreamsPropertyName is the string literal of the name for the streams property in the ActivityStreams vocabulary.
var ActivityStreamsSubjectPropertyName string = "subject"
ActivityStreamsSubjectPropertyName is the string literal of the name for the subject property in the ActivityStreams vocabulary.
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.
var ActivityStreamsSummaryPropertyName string = "summary"
ActivityStreamsSummaryPropertyName is the string literal of the name for the summary property in the ActivityStreams vocabulary.
var ActivityStreamsTagPropertyName string = "tag"
ActivityStreamsTagPropertyName is the string literal of the name for the tag property in the ActivityStreams vocabulary.
var ActivityStreamsTargetPropertyName string = "target"
ActivityStreamsTargetPropertyName is the string literal of the name for the target property in the ActivityStreams vocabulary.
var ActivityStreamsTentativeAcceptName string = "TentativeAccept"
ActivityStreamsTentativeAcceptName is the string literal of the name for the TentativeAccept type in the ActivityStreams vocabulary.
var ActivityStreamsTentativeRejectName string = "TentativeReject"
ActivityStreamsTentativeRejectName is the string literal of the name for the TentativeReject type in the ActivityStreams vocabulary.
var ActivityStreamsToPropertyName string = "to"
ActivityStreamsToPropertyName is the string literal of the name for the to property in the ActivityStreams vocabulary.
var ActivityStreamsTombstoneName string = "Tombstone"
ActivityStreamsTombstoneName is the string literal of the name for the Tombstone type in the ActivityStreams vocabulary.
var ActivityStreamsTotalItemsPropertyName string = "totalItems"
ActivityStreamsTotalItemsPropertyName is the string literal of the name for the totalItems property in the ActivityStreams vocabulary.
var ActivityStreamsTravelName string = "Travel"
ActivityStreamsTravelName is the string literal of the name for the Travel type in the ActivityStreams vocabulary.
var ActivityStreamsUndoName string = "Undo"
ActivityStreamsUndoName is the string literal of the name for the Undo type in the ActivityStreams vocabulary.
var ActivityStreamsUnitsPropertyName string = "units"
ActivityStreamsUnitsPropertyName is the string literal of the name for the units property in the ActivityStreams vocabulary.
var ActivityStreamsUpdateName string = "Update"
ActivityStreamsUpdateName is the string literal of the name for the Update type in the ActivityStreams vocabulary.
var ActivityStreamsUpdatedPropertyName string = "updated"
ActivityStreamsUpdatedPropertyName is the string literal of the name for the updated property in the ActivityStreams vocabulary.
var ActivityStreamsUrlPropertyName string = "url"
ActivityStreamsUrlPropertyName is the string literal of the name for the url property in the ActivityStreams vocabulary.
var ActivityStreamsVideoName string = "Video"
ActivityStreamsVideoName is the string literal of the name for the Video type in the ActivityStreams vocabulary.
var ActivityStreamsViewName string = "View"
ActivityStreamsViewName is the string literal of the name for the View type in the ActivityStreams vocabulary.
var ActivityStreamsWidthPropertyName string = "width"
ActivityStreamsWidthPropertyName is the string literal of the name for the width property in the ActivityStreams vocabulary.
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.
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.
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.
var ForgeFedAssignedToPropertyName string = "assignedTo"
ForgeFedAssignedToPropertyName is the string literal of the name for the assignedTo property in the ForgeFed vocabulary.
var ForgeFedBranchName string = "Branch"
ForgeFedBranchName is the string literal of the name for the Branch type in the ForgeFed vocabulary.
var ForgeFedCommitName string = "Commit"
ForgeFedCommitName is the string literal of the name for the Commit type in the ForgeFed vocabulary.
var ForgeFedCommittedByPropertyName string = "committedBy"
ForgeFedCommittedByPropertyName is the string literal of the name for the committedBy property in the ForgeFed vocabulary.
var ForgeFedCommittedPropertyName string = "committed"
ForgeFedCommittedPropertyName is the string literal of the name for the committed property in the ForgeFed vocabulary.
var ForgeFedDependantsPropertyName string = "dependants"
ForgeFedDependantsPropertyName is the string literal of the name for the dependants property in the ForgeFed vocabulary.
var ForgeFedDependedByPropertyName string = "dependedBy"
ForgeFedDependedByPropertyName is the string literal of the name for the dependedBy property in the ForgeFed vocabulary.
var ForgeFedDependenciesPropertyName string = "dependencies"
ForgeFedDependenciesPropertyName is the string literal of the name for the dependencies property in the ForgeFed vocabulary.
var ForgeFedDependsOnPropertyName string = "dependsOn"
ForgeFedDependsOnPropertyName is the string literal of the name for the dependsOn property in the ForgeFed vocabulary.
var ForgeFedDescriptionPropertyName string = "description"
ForgeFedDescriptionPropertyName is the string literal of the name for the description property in the ForgeFed vocabulary.
var ForgeFedEarlyItemsPropertyName string = "earlyItems"
ForgeFedEarlyItemsPropertyName is the string literal of the name for the earlyItems property in the ForgeFed vocabulary.
var ForgeFedFilesAddedPropertyName string = "filesAdded"
ForgeFedFilesAddedPropertyName is the string literal of the name for the filesAdded property in the ForgeFed vocabulary.
var ForgeFedFilesModifiedPropertyName string = "filesModified"
ForgeFedFilesModifiedPropertyName is the string literal of the name for the filesModified property in the ForgeFed vocabulary.
var ForgeFedFilesRemovedPropertyName string = "filesRemoved"
ForgeFedFilesRemovedPropertyName is the string literal of the name for the filesRemoved property in the ForgeFed vocabulary.
var ForgeFedForksPropertyName string = "forks"
ForgeFedForksPropertyName is the string literal of the name for the forks property in the ForgeFed vocabulary.
var ForgeFedHashPropertyName string = "hash"
ForgeFedHashPropertyName is the string literal of the name for the hash property in the ForgeFed vocabulary.
var ForgeFedIsResolvedPropertyName string = "isResolved"
ForgeFedIsResolvedPropertyName is the string literal of the name for the isResolved property in the ForgeFed vocabulary.
var ForgeFedPushName string = "Push"
ForgeFedPushName is the string literal of the name for the Push type in the ForgeFed vocabulary.
var ForgeFedRefPropertyName string = "ref"
ForgeFedRefPropertyName is the string literal of the name for the ref property in the ForgeFed vocabulary.
var ForgeFedRepositoryName string = "Repository"
ForgeFedRepositoryName is the string literal of the name for the Repository type in the ForgeFed vocabulary.
var ForgeFedTeamPropertyName string = "team"
ForgeFedTeamPropertyName is the string literal of the name for the team property in the ForgeFed vocabulary.
var ForgeFedTicketDependencyName string = "TicketDependency"
ForgeFedTicketDependencyName is the string literal of the name for the TicketDependency type in the ForgeFed vocabulary.
var ForgeFedTicketName string = "Ticket"
ForgeFedTicketName is the string literal of the name for the Ticket type in the ForgeFed vocabulary.
var ForgeFedTicketsTrackedByPropertyName string = "ticketsTrackedBy"
ForgeFedTicketsTrackedByPropertyName is the string literal of the name for the ticketsTrackedBy property in the ForgeFed vocabulary.
var ForgeFedTracksTicketsForPropertyName string = "tracksTicketsFor"
ForgeFedTracksTicketsForPropertyName is the string literal of the name for the tracksTicketsFor property in the ForgeFed vocabulary.
var TootBlurhashPropertyName string = "blurhash"
TootBlurhashPropertyName is the string literal of the name for the blurhash property in the Toot vocabulary.
var TootDiscoverablePropertyName string = "discoverable"
TootDiscoverablePropertyName is the string literal of the name for the discoverable property in the Toot vocabulary.
var TootEmojiName string = "Emoji"
TootEmojiName is the string literal of the name for the Emoji type in the Toot vocabulary.
var TootFeaturedPropertyName string = "featured"
TootFeaturedPropertyName is the string literal of the name for the featured property in the Toot vocabulary.
var TootIdentityProofName string = "IdentityProof"
TootIdentityProofName is the string literal of the name for the IdentityProof type in the Toot vocabulary.
var TootSignatureAlgorithmPropertyName string = "signatureAlgorithm"
TootSignatureAlgorithmPropertyName is the string literal of the name for the signatureAlgorithm property in the Toot vocabulary.
var TootSignatureValuePropertyName string = "signatureValue"
TootSignatureValuePropertyName is the string literal of the name for the signatureValue property in the Toot vocabulary.
var TootVotersCountPropertyName string = "votersCount"
TootVotersCountPropertyName is the string literal of the name for the votersCount property in the Toot vocabulary.
var W3IDSecurityV1OwnerPropertyName string = "owner"
W3IDSecurityV1OwnerPropertyName is the string literal of the name for the owner property in the W3IDSecurityV1 vocabulary.
var W3IDSecurityV1PublicKeyName string = "PublicKey"
W3IDSecurityV1PublicKeyName is the string literal of the name for the PublicKey type in the W3IDSecurityV1 vocabulary.
var W3IDSecurityV1PublicKeyPemPropertyName string = "publicKeyPem"
W3IDSecurityV1PublicKeyPemPropertyName is the string literal of the name for the publicKeyPem property in the W3IDSecurityV1 vocabulary.
var W3IDSecurityV1PublicKeyPropertyName string = "publicKey"
W3IDSecurityV1PublicKeyPropertyName is the string literal of the name for the publicKey property in the W3IDSecurityV1 vocabulary.
Functions ¶
func ActivityStreamsAcceptIsDisjointWith ¶ added in v1.0.0
ActivityStreamsAcceptIsDisjointWith returns true if Accept is disjoint with the other's type.
func ActivityStreamsAcceptIsExtendedBy ¶ added in v1.0.0
ActivityStreamsAcceptIsExtendedBy returns true if the other's type extends from Accept. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.
func ActivityStreamsActivityIsDisjointWith ¶ added in v1.0.0
ActivityStreamsActivityIsDisjointWith returns true if Activity is disjoint with the other's type.
func ActivityStreamsActivityIsExtendedBy ¶ added in v1.0.0
ActivityStreamsActivityIsExtendedBy returns true if the other's type extends from Activity. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.
func ActivityStreamsActivityStreamsAcceptExtends ¶ added in v1.0.0
ActivityStreamsActivityStreamsAcceptExtends returns true if Accept extends from the other's type.
func ActivityStreamsActivityStreamsActivityExtends ¶ added in v1.0.0
ActivityStreamsActivityStreamsActivityExtends returns true if Activity extends from the other's type.
func ActivityStreamsActivityStreamsAddExtends ¶ added in v1.0.0
ActivityStreamsActivityStreamsAddExtends returns true if Add extends from the other's type.
func ActivityStreamsActivityStreamsAnnounceExtends ¶ added in v1.0.0
ActivityStreamsActivityStreamsAnnounceExtends returns true if Announce extends from the other's type.
func ActivityStreamsActivityStreamsApplicationExtends ¶ added in v1.0.0
ActivityStreamsActivityStreamsApplicationExtends returns true if Application extends from the other's type.
func ActivityStreamsActivityStreamsArriveExtends ¶ added in v1.0.0
ActivityStreamsActivityStreamsArriveExtends returns true if Arrive extends from the other's type.
func ActivityStreamsActivityStreamsArticleExtends ¶ added in v1.0.0
ActivityStreamsActivityStreamsArticleExtends returns true if Article extends from the other's type.
func ActivityStreamsActivityStreamsAudioExtends ¶ added in v1.0.0
ActivityStreamsActivityStreamsAudioExtends returns true if Audio extends from the other's type.
func ActivityStreamsActivityStreamsBlockExtends ¶ added in v1.0.0
ActivityStreamsActivityStreamsBlockExtends returns true if Block extends from the other's type.
func ActivityStreamsActivityStreamsCollectionExtends ¶ added in v1.0.0
ActivityStreamsActivityStreamsCollectionExtends returns true if Collection extends from the other's type.
func ActivityStreamsActivityStreamsCollectionPageExtends ¶ added in v1.0.0
ActivityStreamsActivityStreamsCollectionPageExtends returns true if CollectionPage extends from the other's type.
func ActivityStreamsActivityStreamsCreateExtends ¶ added in v1.0.0
ActivityStreamsActivityStreamsCreateExtends returns true if Create extends from the other's type.
func ActivityStreamsActivityStreamsDeleteExtends ¶ added in v1.0.0
ActivityStreamsActivityStreamsDeleteExtends returns true if Delete extends from the other's type.
func ActivityStreamsActivityStreamsDislikeExtends ¶ added in v1.0.0
ActivityStreamsActivityStreamsDislikeExtends returns true if Dislike extends from the other's type.
func ActivityStreamsActivityStreamsDocumentExtends ¶ added in v1.0.0
ActivityStreamsActivityStreamsDocumentExtends returns true if Document extends from the other's type.
func ActivityStreamsActivityStreamsEventExtends ¶ added in v1.0.0
ActivityStreamsActivityStreamsEventExtends returns true if Event extends from the other's type.
func ActivityStreamsActivityStreamsFlagExtends ¶ added in v1.0.0
ActivityStreamsActivityStreamsFlagExtends returns true if Flag extends from the other's type.
func ActivityStreamsActivityStreamsFollowExtends ¶ added in v1.0.0
ActivityStreamsActivityStreamsFollowExtends returns true if Follow extends from the other's type.
func ActivityStreamsActivityStreamsGroupExtends ¶ added in v1.0.0
ActivityStreamsActivityStreamsGroupExtends returns true if Group extends from the other's type.
func ActivityStreamsActivityStreamsIgnoreExtends ¶ added in v1.0.0
ActivityStreamsActivityStreamsIgnoreExtends returns true if Ignore extends from the other's type.
func ActivityStreamsActivityStreamsImageExtends ¶ added in v1.0.0
ActivityStreamsActivityStreamsImageExtends returns true if Image extends from the other's type.
func ActivityStreamsActivityStreamsIntransitiveActivityExtends ¶ added in v1.0.0
ActivityStreamsActivityStreamsIntransitiveActivityExtends returns true if IntransitiveActivity extends from the other's type.
func ActivityStreamsActivityStreamsInviteExtends ¶ added in v1.0.0
ActivityStreamsActivityStreamsInviteExtends returns true if Invite extends from the other's type.
func ActivityStreamsActivityStreamsJoinExtends ¶ added in v1.0.0
ActivityStreamsActivityStreamsJoinExtends returns true if Join extends from the other's type.
func ActivityStreamsActivityStreamsLeaveExtends ¶ added in v1.0.0
ActivityStreamsActivityStreamsLeaveExtends returns true if Leave extends from the other's type.
func ActivityStreamsActivityStreamsLikeExtends ¶ added in v1.0.0
ActivityStreamsActivityStreamsLikeExtends returns true if Like extends from the other's type.
func ActivityStreamsActivityStreamsLinkExtends ¶ added in v1.0.0
ActivityStreamsActivityStreamsLinkExtends returns true if Link extends from the other's type.
func ActivityStreamsActivityStreamsListenExtends ¶ added in v1.0.0
ActivityStreamsActivityStreamsListenExtends returns true if Listen extends from the other's type.
func ActivityStreamsActivityStreamsMentionExtends ¶ added in v1.0.0
ActivityStreamsActivityStreamsMentionExtends returns true if Mention extends from the other's type.
func ActivityStreamsActivityStreamsMoveExtends ¶ added in v1.0.0
ActivityStreamsActivityStreamsMoveExtends returns true if Move extends from the other's type.
func ActivityStreamsActivityStreamsNoteExtends ¶ added in v1.0.0
ActivityStreamsActivityStreamsNoteExtends returns true if Note extends from the other's type.
func ActivityStreamsActivityStreamsObjectExtends ¶ added in v1.0.0
ActivityStreamsActivityStreamsObjectExtends returns true if Object extends from the other's type.
func ActivityStreamsActivityStreamsOfferExtends ¶ added in v1.0.0
ActivityStreamsActivityStreamsOfferExtends returns true if Offer extends from the other's type.
func ActivityStreamsActivityStreamsOrderedCollectionExtends ¶ added in v1.0.0
ActivityStreamsActivityStreamsOrderedCollectionExtends returns true if OrderedCollection extends from the other's type.
func ActivityStreamsActivityStreamsOrderedCollectionPageExtends ¶ added in v1.0.0
ActivityStreamsActivityStreamsOrderedCollectionPageExtends returns true if OrderedCollectionPage extends from the other's type.
func ActivityStreamsActivityStreamsOrganizationExtends ¶ added in v1.0.0
ActivityStreamsActivityStreamsOrganizationExtends returns true if Organization extends from the other's type.
func ActivityStreamsActivityStreamsPageExtends ¶ added in v1.0.0
ActivityStreamsActivityStreamsPageExtends returns true if Page extends from the other's type.
func ActivityStreamsActivityStreamsPersonExtends ¶ added in v1.0.0
ActivityStreamsActivityStreamsPersonExtends returns true if Person extends from the other's type.
func ActivityStreamsActivityStreamsPlaceExtends ¶ added in v1.0.0
ActivityStreamsActivityStreamsPlaceExtends returns true if Place extends from the other's type.
func ActivityStreamsActivityStreamsProfileExtends ¶ added in v1.0.0
ActivityStreamsActivityStreamsProfileExtends returns true if Profile extends from the other's type.
func ActivityStreamsActivityStreamsQuestionExtends ¶ added in v1.0.0
ActivityStreamsActivityStreamsQuestionExtends returns true if Question extends from the other's type.
func ActivityStreamsActivityStreamsReadExtends ¶ added in v1.0.0
ActivityStreamsActivityStreamsReadExtends returns true if Read extends from the other's type.
func ActivityStreamsActivityStreamsRejectExtends ¶ added in v1.0.0
ActivityStreamsActivityStreamsRejectExtends returns true if Reject extends from the other's type.
func ActivityStreamsActivityStreamsRelationshipExtends ¶ added in v1.0.0
ActivityStreamsActivityStreamsRelationshipExtends returns true if Relationship extends from the other's type.
func ActivityStreamsActivityStreamsRemoveExtends ¶ added in v1.0.0
ActivityStreamsActivityStreamsRemoveExtends returns true if Remove extends from the other's type.
func ActivityStreamsActivityStreamsServiceExtends ¶ added in v1.0.0
ActivityStreamsActivityStreamsServiceExtends returns true if Service extends from the other's type.
func ActivityStreamsActivityStreamsTentativeAcceptExtends ¶ added in v1.0.0
ActivityStreamsActivityStreamsTentativeAcceptExtends returns true if TentativeAccept extends from the other's type.
func ActivityStreamsActivityStreamsTentativeRejectExtends ¶ added in v1.0.0
ActivityStreamsActivityStreamsTentativeRejectExtends returns true if TentativeReject extends from the other's type.
func ActivityStreamsActivityStreamsTombstoneExtends ¶ added in v1.0.0
ActivityStreamsActivityStreamsTombstoneExtends returns true if Tombstone extends from the other's type.
func ActivityStreamsActivityStreamsTravelExtends ¶ added in v1.0.0
ActivityStreamsActivityStreamsTravelExtends returns true if Travel extends from the other's type.
func ActivityStreamsActivityStreamsUndoExtends ¶ added in v1.0.0
ActivityStreamsActivityStreamsUndoExtends returns true if Undo extends from the other's type.
func ActivityStreamsActivityStreamsUpdateExtends ¶ added in v1.0.0
ActivityStreamsActivityStreamsUpdateExtends returns true if Update extends from the other's type.
func ActivityStreamsActivityStreamsVideoExtends ¶ added in v1.0.0
ActivityStreamsActivityStreamsVideoExtends returns true if Video extends from the other's type.
func ActivityStreamsActivityStreamsViewExtends ¶ added in v1.0.0
ActivityStreamsActivityStreamsViewExtends returns true if View extends from the other's type.
func ActivityStreamsAddIsDisjointWith ¶ added in v1.0.0
ActivityStreamsAddIsDisjointWith returns true if Add is disjoint with the other's type.
func ActivityStreamsAddIsExtendedBy ¶ added in v1.0.0
ActivityStreamsAddIsExtendedBy returns true if the other's type extends from Add. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.
func ActivityStreamsAnnounceIsDisjointWith ¶ added in v1.0.0
ActivityStreamsAnnounceIsDisjointWith returns true if Announce is disjoint with the other's type.
func ActivityStreamsAnnounceIsExtendedBy ¶ added in v1.0.0
ActivityStreamsAnnounceIsExtendedBy returns true if the other's type extends from Announce. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.
func ActivityStreamsApplicationIsDisjointWith ¶ added in v1.0.0
ActivityStreamsApplicationIsDisjointWith returns true if Application is disjoint with the other's type.
func ActivityStreamsApplicationIsExtendedBy ¶ added in v1.0.0
ActivityStreamsApplicationIsExtendedBy returns true if the other's type extends from Application. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.
func ActivityStreamsArriveIsDisjointWith ¶ added in v1.0.0
ActivityStreamsArriveIsDisjointWith returns true if Arrive is disjoint with the other's type.
func ActivityStreamsArriveIsExtendedBy ¶ added in v1.0.0
ActivityStreamsArriveIsExtendedBy returns true if the other's type extends from Arrive. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.
func ActivityStreamsArticleIsDisjointWith ¶ added in v1.0.0
ActivityStreamsArticleIsDisjointWith returns true if Article is disjoint with the other's type.
func ActivityStreamsArticleIsExtendedBy ¶ added in v1.0.0
ActivityStreamsArticleIsExtendedBy returns true if the other's type extends from Article. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.
func ActivityStreamsAudioIsDisjointWith ¶ added in v1.0.0
ActivityStreamsAudioIsDisjointWith returns true if Audio is disjoint with the other's type.
func ActivityStreamsAudioIsExtendedBy ¶ added in v1.0.0
ActivityStreamsAudioIsExtendedBy returns true if the other's type extends from Audio. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.
func ActivityStreamsBlockIsDisjointWith ¶ added in v1.0.0
ActivityStreamsBlockIsDisjointWith returns true if Block is disjoint with the other's type.
func ActivityStreamsBlockIsExtendedBy ¶ added in v1.0.0
ActivityStreamsBlockIsExtendedBy returns true if the other's type extends from Block. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.
func ActivityStreamsCollectionIsDisjointWith ¶ added in v1.0.0
ActivityStreamsCollectionIsDisjointWith returns true if Collection is disjoint with the other's type.
func ActivityStreamsCollectionIsExtendedBy ¶ added in v1.0.0
ActivityStreamsCollectionIsExtendedBy returns true if the other's type extends from Collection. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.
func ActivityStreamsCollectionPageIsDisjointWith ¶ added in v1.0.0
ActivityStreamsCollectionPageIsDisjointWith returns true if CollectionPage is disjoint with the other's type.
func ActivityStreamsCollectionPageIsExtendedBy ¶ added in v1.0.0
ActivityStreamsCollectionPageIsExtendedBy returns true if the other's type extends from CollectionPage. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.
func ActivityStreamsCreateIsDisjointWith ¶ added in v1.0.0
ActivityStreamsCreateIsDisjointWith returns true if Create is disjoint with the other's type.
func ActivityStreamsCreateIsExtendedBy ¶ added in v1.0.0
ActivityStreamsCreateIsExtendedBy returns true if the other's type extends from Create. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.
func ActivityStreamsDeleteIsDisjointWith ¶ added in v1.0.0
ActivityStreamsDeleteIsDisjointWith returns true if Delete is disjoint with the other's type.
func ActivityStreamsDeleteIsExtendedBy ¶ added in v1.0.0
ActivityStreamsDeleteIsExtendedBy returns true if the other's type extends from Delete. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.
func ActivityStreamsDislikeIsDisjointWith ¶ added in v1.0.0
ActivityStreamsDislikeIsDisjointWith returns true if Dislike is disjoint with the other's type.
func ActivityStreamsDislikeIsExtendedBy ¶ added in v1.0.0
ActivityStreamsDislikeIsExtendedBy returns true if the other's type extends from Dislike. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.
func ActivityStreamsDocumentIsDisjointWith ¶ added in v1.0.0
ActivityStreamsDocumentIsDisjointWith returns true if Document is disjoint with the other's type.
func ActivityStreamsDocumentIsExtendedBy ¶ added in v1.0.0
ActivityStreamsDocumentIsExtendedBy returns true if the other's type extends from Document. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.
func ActivityStreamsEventIsDisjointWith ¶ added in v1.0.0
ActivityStreamsEventIsDisjointWith returns true if Event is disjoint with the other's type.
func ActivityStreamsEventIsExtendedBy ¶ added in v1.0.0
ActivityStreamsEventIsExtendedBy returns true if the other's type extends from Event. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.
func ActivityStreamsFlagIsDisjointWith ¶ added in v1.0.0
ActivityStreamsFlagIsDisjointWith returns true if Flag is disjoint with the other's type.
func ActivityStreamsFlagIsExtendedBy ¶ added in v1.0.0
ActivityStreamsFlagIsExtendedBy returns true if the other's type extends from Flag. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.
func ActivityStreamsFollowIsDisjointWith ¶ added in v1.0.0
ActivityStreamsFollowIsDisjointWith returns true if Follow is disjoint with the other's type.
func ActivityStreamsFollowIsExtendedBy ¶ added in v1.0.0
ActivityStreamsFollowIsExtendedBy returns true if the other's type extends from Follow. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.
func ActivityStreamsGroupIsDisjointWith ¶ added in v1.0.0
ActivityStreamsGroupIsDisjointWith returns true if Group is disjoint with the other's type.
func ActivityStreamsGroupIsExtendedBy ¶ added in v1.0.0
ActivityStreamsGroupIsExtendedBy returns true if the other's type extends from Group. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.
func ActivityStreamsIgnoreIsDisjointWith ¶ added in v1.0.0
ActivityStreamsIgnoreIsDisjointWith returns true if Ignore is disjoint with the other's type.
func ActivityStreamsIgnoreIsExtendedBy ¶ added in v1.0.0
ActivityStreamsIgnoreIsExtendedBy returns true if the other's type extends from Ignore. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.
func ActivityStreamsImageIsDisjointWith ¶ added in v1.0.0
ActivityStreamsImageIsDisjointWith returns true if Image is disjoint with the other's type.
func ActivityStreamsImageIsExtendedBy ¶ added in v1.0.0
ActivityStreamsImageIsExtendedBy returns true if the other's type extends from Image. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.
func ActivityStreamsIntransitiveActivityIsDisjointWith ¶ added in v1.0.0
ActivityStreamsIntransitiveActivityIsDisjointWith returns true if IntransitiveActivity is disjoint with the other's type.
func ActivityStreamsIntransitiveActivityIsExtendedBy ¶ added in v1.0.0
ActivityStreamsIntransitiveActivityIsExtendedBy returns true if the other's type extends from IntransitiveActivity. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.
func ActivityStreamsInviteIsDisjointWith ¶ added in v1.0.0
ActivityStreamsInviteIsDisjointWith returns true if Invite is disjoint with the other's type.
func ActivityStreamsInviteIsExtendedBy ¶ added in v1.0.0
ActivityStreamsInviteIsExtendedBy returns true if the other's type extends from Invite. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.
func ActivityStreamsJoinIsDisjointWith ¶ added in v1.0.0
ActivityStreamsJoinIsDisjointWith returns true if Join is disjoint with the other's type.
func ActivityStreamsJoinIsExtendedBy ¶ added in v1.0.0
ActivityStreamsJoinIsExtendedBy returns true if the other's type extends from Join. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.
func ActivityStreamsLeaveIsDisjointWith ¶ added in v1.0.0
ActivityStreamsLeaveIsDisjointWith returns true if Leave is disjoint with the other's type.
func ActivityStreamsLeaveIsExtendedBy ¶ added in v1.0.0
ActivityStreamsLeaveIsExtendedBy returns true if the other's type extends from Leave. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.
func ActivityStreamsLikeIsDisjointWith ¶ added in v1.0.0
ActivityStreamsLikeIsDisjointWith returns true if Like is disjoint with the other's type.
func ActivityStreamsLikeIsExtendedBy ¶ added in v1.0.0
ActivityStreamsLikeIsExtendedBy returns true if the other's type extends from Like. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.
func ActivityStreamsLinkIsDisjointWith ¶ added in v1.0.0
ActivityStreamsLinkIsDisjointWith returns true if Link is disjoint with the other's type.
func ActivityStreamsLinkIsExtendedBy ¶ added in v1.0.0
ActivityStreamsLinkIsExtendedBy returns true if the other's type extends from Link. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.
func ActivityStreamsListenIsDisjointWith ¶ added in v1.0.0
ActivityStreamsListenIsDisjointWith returns true if Listen is disjoint with the other's type.
func ActivityStreamsListenIsExtendedBy ¶ added in v1.0.0
ActivityStreamsListenIsExtendedBy returns true if the other's type extends from Listen. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.
func ActivityStreamsMentionIsDisjointWith ¶ added in v1.0.0
ActivityStreamsMentionIsDisjointWith returns true if Mention is disjoint with the other's type.
func ActivityStreamsMentionIsExtendedBy ¶ added in v1.0.0
ActivityStreamsMentionIsExtendedBy returns true if the other's type extends from Mention. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.
func ActivityStreamsMoveIsDisjointWith ¶ added in v1.0.0
ActivityStreamsMoveIsDisjointWith returns true if Move is disjoint with the other's type.
func ActivityStreamsMoveIsExtendedBy ¶ added in v1.0.0
ActivityStreamsMoveIsExtendedBy returns true if the other's type extends from Move. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.
func ActivityStreamsNoteIsDisjointWith ¶ added in v1.0.0
ActivityStreamsNoteIsDisjointWith returns true if Note is disjoint with the other's type.
func ActivityStreamsNoteIsExtendedBy ¶ added in v1.0.0
ActivityStreamsNoteIsExtendedBy returns true if the other's type extends from Note. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.
func ActivityStreamsObjectIsDisjointWith ¶ added in v1.0.0
ActivityStreamsObjectIsDisjointWith returns true if Object is disjoint with the other's type.
func ActivityStreamsObjectIsExtendedBy ¶ added in v1.0.0
ActivityStreamsObjectIsExtendedBy returns true if the other's type extends from Object. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.
func ActivityStreamsOfferIsDisjointWith ¶ added in v1.0.0
ActivityStreamsOfferIsDisjointWith returns true if Offer is disjoint with the other's type.
func ActivityStreamsOfferIsExtendedBy ¶ added in v1.0.0
ActivityStreamsOfferIsExtendedBy returns true if the other's type extends from Offer. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.
func ActivityStreamsOrderedCollectionIsDisjointWith ¶ added in v1.0.0
ActivityStreamsOrderedCollectionIsDisjointWith returns true if OrderedCollection is disjoint with the other's type.
func ActivityStreamsOrderedCollectionIsExtendedBy ¶ added in v1.0.0
ActivityStreamsOrderedCollectionIsExtendedBy returns true if the other's type extends from OrderedCollection. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.
func ActivityStreamsOrderedCollectionPageIsDisjointWith ¶ added in v1.0.0
ActivityStreamsOrderedCollectionPageIsDisjointWith returns true if OrderedCollectionPage is disjoint with the other's type.
func ActivityStreamsOrderedCollectionPageIsExtendedBy ¶ added in v1.0.0
ActivityStreamsOrderedCollectionPageIsExtendedBy returns true if the other's type extends from OrderedCollectionPage. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.
func ActivityStreamsOrganizationIsDisjointWith ¶ added in v1.0.0
ActivityStreamsOrganizationIsDisjointWith returns true if Organization is disjoint with the other's type.
func ActivityStreamsOrganizationIsExtendedBy ¶ added in v1.0.0
ActivityStreamsOrganizationIsExtendedBy returns true if the other's type extends from Organization. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.
func ActivityStreamsPageIsDisjointWith ¶ added in v1.0.0
ActivityStreamsPageIsDisjointWith returns true if Page is disjoint with the other's type.
func ActivityStreamsPageIsExtendedBy ¶ added in v1.0.0
ActivityStreamsPageIsExtendedBy returns true if the other's type extends from Page. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.
func ActivityStreamsPersonIsDisjointWith ¶ added in v1.0.0
ActivityStreamsPersonIsDisjointWith returns true if Person is disjoint with the other's type.
func ActivityStreamsPersonIsExtendedBy ¶ added in v1.0.0
ActivityStreamsPersonIsExtendedBy returns true if the other's type extends from Person. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.
func ActivityStreamsPlaceIsDisjointWith ¶ added in v1.0.0
ActivityStreamsPlaceIsDisjointWith returns true if Place is disjoint with the other's type.
func ActivityStreamsPlaceIsExtendedBy ¶ added in v1.0.0
ActivityStreamsPlaceIsExtendedBy returns true if the other's type extends from Place. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.
func ActivityStreamsProfileIsDisjointWith ¶ added in v1.0.0
ActivityStreamsProfileIsDisjointWith returns true if Profile is disjoint with the other's type.
func ActivityStreamsProfileIsExtendedBy ¶ added in v1.0.0
ActivityStreamsProfileIsExtendedBy returns true if the other's type extends from Profile. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.
func ActivityStreamsQuestionIsDisjointWith ¶ added in v1.0.0
ActivityStreamsQuestionIsDisjointWith returns true if Question is disjoint with the other's type.
func ActivityStreamsQuestionIsExtendedBy ¶ added in v1.0.0
ActivityStreamsQuestionIsExtendedBy returns true if the other's type extends from Question. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.
func ActivityStreamsReadIsDisjointWith ¶ added in v1.0.0
ActivityStreamsReadIsDisjointWith returns true if Read is disjoint with the other's type.
func ActivityStreamsReadIsExtendedBy ¶ added in v1.0.0
ActivityStreamsReadIsExtendedBy returns true if the other's type extends from Read. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.
func ActivityStreamsRejectIsDisjointWith ¶ added in v1.0.0
ActivityStreamsRejectIsDisjointWith returns true if Reject is disjoint with the other's type.
func ActivityStreamsRejectIsExtendedBy ¶ added in v1.0.0
ActivityStreamsRejectIsExtendedBy returns true if the other's type extends from Reject. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.
func ActivityStreamsRelationshipIsDisjointWith ¶ added in v1.0.0
ActivityStreamsRelationshipIsDisjointWith returns true if Relationship is disjoint with the other's type.
func ActivityStreamsRelationshipIsExtendedBy ¶ added in v1.0.0
ActivityStreamsRelationshipIsExtendedBy returns true if the other's type extends from Relationship. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.
func ActivityStreamsRemoveIsDisjointWith ¶ added in v1.0.0
ActivityStreamsRemoveIsDisjointWith returns true if Remove is disjoint with the other's type.
func ActivityStreamsRemoveIsExtendedBy ¶ added in v1.0.0
ActivityStreamsRemoveIsExtendedBy returns true if the other's type extends from Remove. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.
func ActivityStreamsServiceIsDisjointWith ¶ added in v1.0.0
ActivityStreamsServiceIsDisjointWith returns true if Service is disjoint with the other's type.
func ActivityStreamsServiceIsExtendedBy ¶ added in v1.0.0
ActivityStreamsServiceIsExtendedBy returns true if the other's type extends from Service. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.
func ActivityStreamsTentativeAcceptIsDisjointWith ¶ added in v1.0.0
ActivityStreamsTentativeAcceptIsDisjointWith returns true if TentativeAccept is disjoint with the other's type.
func ActivityStreamsTentativeAcceptIsExtendedBy ¶ added in v1.0.0
ActivityStreamsTentativeAcceptIsExtendedBy returns true if the other's type extends from TentativeAccept. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.
func ActivityStreamsTentativeRejectIsDisjointWith ¶ added in v1.0.0
ActivityStreamsTentativeRejectIsDisjointWith returns true if TentativeReject is disjoint with the other's type.
func ActivityStreamsTentativeRejectIsExtendedBy ¶ added in v1.0.0
ActivityStreamsTentativeRejectIsExtendedBy returns true if the other's type extends from TentativeReject. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.
func ActivityStreamsTombstoneIsDisjointWith ¶ added in v1.0.0
ActivityStreamsTombstoneIsDisjointWith returns true if Tombstone is disjoint with the other's type.
func ActivityStreamsTombstoneIsExtendedBy ¶ added in v1.0.0
ActivityStreamsTombstoneIsExtendedBy returns true if the other's type extends from Tombstone. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.
func ActivityStreamsTravelIsDisjointWith ¶ added in v1.0.0
ActivityStreamsTravelIsDisjointWith returns true if Travel is disjoint with the other's type.
func ActivityStreamsTravelIsExtendedBy ¶ added in v1.0.0
ActivityStreamsTravelIsExtendedBy returns true if the other's type extends from Travel. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.
func ActivityStreamsUndoIsDisjointWith ¶ added in v1.0.0
ActivityStreamsUndoIsDisjointWith returns true if Undo is disjoint with the other's type.
func ActivityStreamsUndoIsExtendedBy ¶ added in v1.0.0
ActivityStreamsUndoIsExtendedBy returns true if the other's type extends from Undo. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.
func ActivityStreamsUpdateIsDisjointWith ¶ added in v1.0.0
ActivityStreamsUpdateIsDisjointWith returns true if Update is disjoint with the other's type.
func ActivityStreamsUpdateIsExtendedBy ¶ added in v1.0.0
ActivityStreamsUpdateIsExtendedBy returns true if the other's type extends from Update. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.
func ActivityStreamsVideoIsDisjointWith ¶ added in v1.0.0
ActivityStreamsVideoIsDisjointWith returns true if Video is disjoint with the other's type.
func ActivityStreamsVideoIsExtendedBy ¶ added in v1.0.0
ActivityStreamsVideoIsExtendedBy returns true if the other's type extends from Video. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.
func ActivityStreamsViewIsDisjointWith ¶ added in v1.0.0
ActivityStreamsViewIsDisjointWith returns true if View is disjoint with the other's type.
func ActivityStreamsViewIsExtendedBy ¶ added in v1.0.0
ActivityStreamsViewIsExtendedBy returns true if the other's type extends from View. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.
func ForgeFedBranchIsDisjointWith ¶ added in v1.0.0
ForgeFedBranchIsDisjointWith returns true if Branch is disjoint with the other's type.
func ForgeFedBranchIsExtendedBy ¶ added in v1.0.0
ForgeFedBranchIsExtendedBy returns true if the other's type extends from Branch. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.
func ForgeFedCommitIsDisjointWith ¶ added in v1.0.0
ForgeFedCommitIsDisjointWith returns true if Commit is disjoint with the other's type.
func ForgeFedCommitIsExtendedBy ¶ added in v1.0.0
ForgeFedCommitIsExtendedBy returns true if the other's type extends from Commit. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.
func ForgeFedForgeFedBranchExtends ¶ added in v1.0.0
ForgeFedForgeFedBranchExtends returns true if Branch extends from the other's type.
func ForgeFedForgeFedCommitExtends ¶ added in v1.0.0
ForgeFedForgeFedCommitExtends returns true if Commit extends from the other's type.
func ForgeFedForgeFedPushExtends ¶ added in v1.0.0
ForgeFedForgeFedPushExtends returns true if Push extends from the other's type.
func ForgeFedForgeFedRepositoryExtends ¶ added in v1.0.0
ForgeFedForgeFedRepositoryExtends returns true if Repository extends from the other's type.
func ForgeFedForgeFedTicketDependencyExtends ¶ added in v1.0.0
ForgeFedForgeFedTicketDependencyExtends returns true if TicketDependency extends from the other's type.
func ForgeFedForgeFedTicketExtends ¶ added in v1.0.0
ForgeFedForgeFedTicketExtends returns true if Ticket extends from the other's type.
func ForgeFedPushIsDisjointWith ¶ added in v1.0.0
ForgeFedPushIsDisjointWith returns true if Push is disjoint with the other's type.
func ForgeFedPushIsExtendedBy ¶ added in v1.0.0
ForgeFedPushIsExtendedBy returns true if the other's type extends from Push. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.
func ForgeFedRepositoryIsDisjointWith ¶ added in v1.0.0
ForgeFedRepositoryIsDisjointWith returns true if Repository is disjoint with the other's type.
func ForgeFedRepositoryIsExtendedBy ¶ added in v1.0.0
ForgeFedRepositoryIsExtendedBy returns true if the other's type extends from Repository. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.
func ForgeFedTicketDependencyIsDisjointWith ¶ added in v1.0.0
ForgeFedTicketDependencyIsDisjointWith returns true if TicketDependency is disjoint with the other's type.
func ForgeFedTicketDependencyIsExtendedBy ¶ added in v1.0.0
ForgeFedTicketDependencyIsExtendedBy returns true if the other's type extends from TicketDependency. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.
func ForgeFedTicketIsDisjointWith ¶ added in v1.0.0
ForgeFedTicketIsDisjointWith returns true if Ticket is disjoint with the other's type.
func ForgeFedTicketIsExtendedBy ¶ added in v1.0.0
ForgeFedTicketIsExtendedBy returns true if the other's type extends from Ticket. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.
func IsOrExtendsActivityStreamsAccept ¶ added in v1.0.0
IsOrExtendsActivityStreamsAccept returns true if the other provided type is the Accept type or extends from the Accept type.
func IsOrExtendsActivityStreamsActivity ¶ added in v1.0.0
IsOrExtendsActivityStreamsActivity returns true if the other provided type is the Activity type or extends from the Activity type.
func IsOrExtendsActivityStreamsAdd ¶ added in v1.0.0
IsOrExtendsActivityStreamsAdd returns true if the other provided type is the Add type or extends from the Add type.
func IsOrExtendsActivityStreamsAnnounce ¶ added in v1.0.0
IsOrExtendsActivityStreamsAnnounce returns true if the other provided type is the Announce type or extends from the Announce type.
func IsOrExtendsActivityStreamsApplication ¶ added in v1.0.0
IsOrExtendsActivityStreamsApplication returns true if the other provided type is the Application type or extends from the Application type.
func IsOrExtendsActivityStreamsArrive ¶ added in v1.0.0
IsOrExtendsActivityStreamsArrive returns true if the other provided type is the Arrive type or extends from the Arrive type.
func IsOrExtendsActivityStreamsArticle ¶ added in v1.0.0
IsOrExtendsActivityStreamsArticle returns true if the other provided type is the Article type or extends from the Article type.
func IsOrExtendsActivityStreamsAudio ¶ added in v1.0.0
IsOrExtendsActivityStreamsAudio returns true if the other provided type is the Audio type or extends from the Audio type.
func IsOrExtendsActivityStreamsBlock ¶ added in v1.0.0
IsOrExtendsActivityStreamsBlock returns true if the other provided type is the Block type or extends from the Block type.
func IsOrExtendsActivityStreamsCollection ¶ added in v1.0.0
IsOrExtendsActivityStreamsCollection returns true if the other provided type is the Collection type or extends from the Collection type.
func IsOrExtendsActivityStreamsCollectionPage ¶ added in v1.0.0
IsOrExtendsActivityStreamsCollectionPage returns true if the other provided type is the CollectionPage type or extends from the CollectionPage type.
func IsOrExtendsActivityStreamsCreate ¶ added in v1.0.0
IsOrExtendsActivityStreamsCreate returns true if the other provided type is the Create type or extends from the Create type.
func IsOrExtendsActivityStreamsDelete ¶ added in v1.0.0
IsOrExtendsActivityStreamsDelete returns true if the other provided type is the Delete type or extends from the Delete type.
func IsOrExtendsActivityStreamsDislike ¶ added in v1.0.0
IsOrExtendsActivityStreamsDislike returns true if the other provided type is the Dislike type or extends from the Dislike type.
func IsOrExtendsActivityStreamsDocument ¶ added in v1.0.0
IsOrExtendsActivityStreamsDocument returns true if the other provided type is the Document type or extends from the Document type.
func IsOrExtendsActivityStreamsEvent ¶ added in v1.0.0
IsOrExtendsActivityStreamsEvent returns true if the other provided type is the Event type or extends from the Event type.
func IsOrExtendsActivityStreamsFlag ¶ added in v1.0.0
IsOrExtendsActivityStreamsFlag returns true if the other provided type is the Flag type or extends from the Flag type.
func IsOrExtendsActivityStreamsFollow ¶ added in v1.0.0
IsOrExtendsActivityStreamsFollow returns true if the other provided type is the Follow type or extends from the Follow type.
func IsOrExtendsActivityStreamsGroup ¶ added in v1.0.0
IsOrExtendsActivityStreamsGroup returns true if the other provided type is the Group type or extends from the Group type.
func IsOrExtendsActivityStreamsIgnore ¶ added in v1.0.0
IsOrExtendsActivityStreamsIgnore returns true if the other provided type is the Ignore type or extends from the Ignore type.
func IsOrExtendsActivityStreamsImage ¶ added in v1.0.0
IsOrExtendsActivityStreamsImage returns true if the other provided type is the Image type or extends from the Image type.
func IsOrExtendsActivityStreamsIntransitiveActivity ¶ added in v1.0.0
IsOrExtendsActivityStreamsIntransitiveActivity returns true if the other provided type is the IntransitiveActivity type or extends from the IntransitiveActivity type.
func IsOrExtendsActivityStreamsInvite ¶ added in v1.0.0
IsOrExtendsActivityStreamsInvite returns true if the other provided type is the Invite type or extends from the Invite type.
func IsOrExtendsActivityStreamsJoin ¶ added in v1.0.0
IsOrExtendsActivityStreamsJoin returns true if the other provided type is the Join type or extends from the Join type.
func IsOrExtendsActivityStreamsLeave ¶ added in v1.0.0
IsOrExtendsActivityStreamsLeave returns true if the other provided type is the Leave type or extends from the Leave type.
func IsOrExtendsActivityStreamsLike ¶ added in v1.0.0
IsOrExtendsActivityStreamsLike returns true if the other provided type is the Like type or extends from the Like type.
func IsOrExtendsActivityStreamsLink ¶ added in v1.0.0
IsOrExtendsActivityStreamsLink returns true if the other provided type is the Link type or extends from the Link type.
func IsOrExtendsActivityStreamsListen ¶ added in v1.0.0
IsOrExtendsActivityStreamsListen returns true if the other provided type is the Listen type or extends from the Listen type.
func IsOrExtendsActivityStreamsMention ¶ added in v1.0.0
IsOrExtendsActivityStreamsMention returns true if the other provided type is the Mention type or extends from the Mention type.
func IsOrExtendsActivityStreamsMove ¶ added in v1.0.0
IsOrExtendsActivityStreamsMove returns true if the other provided type is the Move type or extends from the Move type.
func IsOrExtendsActivityStreamsNote ¶ added in v1.0.0
IsOrExtendsActivityStreamsNote returns true if the other provided type is the Note type or extends from the Note type.
func IsOrExtendsActivityStreamsObject ¶ added in v1.0.0
IsOrExtendsActivityStreamsObject returns true if the other provided type is the Object type or extends from the Object type.
func IsOrExtendsActivityStreamsOffer ¶ added in v1.0.0
IsOrExtendsActivityStreamsOffer returns true if the other provided type is the Offer type or extends from the Offer type.
func IsOrExtendsActivityStreamsOrderedCollection ¶ added in v1.0.0
IsOrExtendsActivityStreamsOrderedCollection returns true if the other provided type is the OrderedCollection type or extends from the OrderedCollection type.
func IsOrExtendsActivityStreamsOrderedCollectionPage ¶ added in v1.0.0
IsOrExtendsActivityStreamsOrderedCollectionPage returns true if the other provided type is the OrderedCollectionPage type or extends from the OrderedCollectionPage type.
func IsOrExtendsActivityStreamsOrganization ¶ added in v1.0.0
IsOrExtendsActivityStreamsOrganization returns true if the other provided type is the Organization type or extends from the Organization type.
func IsOrExtendsActivityStreamsPage ¶ added in v1.0.0
IsOrExtendsActivityStreamsPage returns true if the other provided type is the Page type or extends from the Page type.
func IsOrExtendsActivityStreamsPerson ¶ added in v1.0.0
IsOrExtendsActivityStreamsPerson returns true if the other provided type is the Person type or extends from the Person type.
func IsOrExtendsActivityStreamsPlace ¶ added in v1.0.0
IsOrExtendsActivityStreamsPlace returns true if the other provided type is the Place type or extends from the Place type.
func IsOrExtendsActivityStreamsProfile ¶ added in v1.0.0
IsOrExtendsActivityStreamsProfile returns true if the other provided type is the Profile type or extends from the Profile type.
func IsOrExtendsActivityStreamsQuestion ¶ added in v1.0.0
IsOrExtendsActivityStreamsQuestion returns true if the other provided type is the Question type or extends from the Question type.
func IsOrExtendsActivityStreamsRead ¶ added in v1.0.0
IsOrExtendsActivityStreamsRead returns true if the other provided type is the Read type or extends from the Read type.
func IsOrExtendsActivityStreamsReject ¶ added in v1.0.0
IsOrExtendsActivityStreamsReject returns true if the other provided type is the Reject type or extends from the Reject type.
func IsOrExtendsActivityStreamsRelationship ¶ added in v1.0.0
IsOrExtendsActivityStreamsRelationship returns true if the other provided type is the Relationship type or extends from the Relationship type.
func IsOrExtendsActivityStreamsRemove ¶ added in v1.0.0
IsOrExtendsActivityStreamsRemove returns true if the other provided type is the Remove type or extends from the Remove type.
func IsOrExtendsActivityStreamsService ¶ added in v1.0.0
IsOrExtendsActivityStreamsService returns true if the other provided type is the Service type or extends from the Service type.
func IsOrExtendsActivityStreamsTentativeAccept ¶ added in v1.0.0
IsOrExtendsActivityStreamsTentativeAccept returns true if the other provided type is the TentativeAccept type or extends from the TentativeAccept type.
func IsOrExtendsActivityStreamsTentativeReject ¶ added in v1.0.0
IsOrExtendsActivityStreamsTentativeReject returns true if the other provided type is the TentativeReject type or extends from the TentativeReject type.
func IsOrExtendsActivityStreamsTombstone ¶ added in v1.0.0
IsOrExtendsActivityStreamsTombstone returns true if the other provided type is the Tombstone type or extends from the Tombstone type.
func IsOrExtendsActivityStreamsTravel ¶ added in v1.0.0
IsOrExtendsActivityStreamsTravel returns true if the other provided type is the Travel type or extends from the Travel type.
func IsOrExtendsActivityStreamsUndo ¶ added in v1.0.0
IsOrExtendsActivityStreamsUndo returns true if the other provided type is the Undo type or extends from the Undo type.
func IsOrExtendsActivityStreamsUpdate ¶ added in v1.0.0
IsOrExtendsActivityStreamsUpdate returns true if the other provided type is the Update type or extends from the Update type.
func IsOrExtendsActivityStreamsVideo ¶ added in v1.0.0
IsOrExtendsActivityStreamsVideo returns true if the other provided type is the Video type or extends from the Video type.
func IsOrExtendsActivityStreamsView ¶ added in v1.0.0
IsOrExtendsActivityStreamsView returns true if the other provided type is the View type or extends from the View type.
func IsOrExtendsForgeFedBranch ¶ added in v1.0.0
IsOrExtendsForgeFedBranch returns true if the other provided type is the Branch type or extends from the Branch type.
func IsOrExtendsForgeFedCommit ¶ added in v1.0.0
IsOrExtendsForgeFedCommit returns true if the other provided type is the Commit type or extends from the Commit type.
func IsOrExtendsForgeFedPush ¶ added in v1.0.0
IsOrExtendsForgeFedPush returns true if the other provided type is the Push type or extends from the Push type.
func IsOrExtendsForgeFedRepository ¶ added in v1.0.0
IsOrExtendsForgeFedRepository returns true if the other provided type is the Repository type or extends from the Repository type.
func IsOrExtendsForgeFedTicket ¶ added in v1.0.0
IsOrExtendsForgeFedTicket returns true if the other provided type is the Ticket type or extends from the Ticket type.
func IsOrExtendsForgeFedTicketDependency ¶ added in v1.0.0
IsOrExtendsForgeFedTicketDependency returns true if the other provided type is the TicketDependency type or extends from the TicketDependency type.
func IsOrExtendsTootEmoji ¶ added in v1.0.0
IsOrExtendsTootEmoji returns true if the other provided type is the Emoji type or extends from the Emoji type.
func IsOrExtendsTootIdentityProof ¶ added in v1.0.0
IsOrExtendsTootIdentityProof returns true if the other provided type is the IdentityProof type or extends from the IdentityProof type.
func IsOrExtendsW3IDSecurityV1PublicKey ¶ added in v1.0.0
IsOrExtendsW3IDSecurityV1PublicKey returns true if the other provided type is the PublicKey type or extends from the PublicKey type.
func IsUnmatchedErr ¶ added in v1.0.0
IsUnmatchedErr is true when the error indicates that a Resolver was unsuccessful due to the ActivityStreams value not matching its callbacks or predicates.
func NewActivityStreamsAccept ¶ added in v1.0.0
func NewActivityStreamsAccept() vocab.ActivityStreamsAccept
NewActivityStreamsAccept creates a new ActivityStreamsAccept
func NewActivityStreamsAccuracyProperty ¶ added in v1.0.0
func NewActivityStreamsAccuracyProperty() vocab.ActivityStreamsAccuracyProperty
NewActivityStreamsActivityStreamsAccuracyProperty creates a new ActivityStreamsAccuracyProperty
func NewActivityStreamsActivity ¶ added in v1.0.0
func NewActivityStreamsActivity() vocab.ActivityStreamsActivity
NewActivityStreamsActivity creates a new ActivityStreamsActivity
func NewActivityStreamsActorProperty ¶ added in v1.0.0
func NewActivityStreamsActorProperty() vocab.ActivityStreamsActorProperty
NewActivityStreamsActivityStreamsActorProperty creates a new ActivityStreamsActorProperty
func NewActivityStreamsAdd ¶ added in v1.0.0
func NewActivityStreamsAdd() vocab.ActivityStreamsAdd
NewActivityStreamsAdd creates a new ActivityStreamsAdd
func NewActivityStreamsAltitudeProperty ¶ added in v1.0.0
func NewActivityStreamsAltitudeProperty() vocab.ActivityStreamsAltitudeProperty
NewActivityStreamsActivityStreamsAltitudeProperty creates a new ActivityStreamsAltitudeProperty
func NewActivityStreamsAnnounce ¶ added in v1.0.0
func NewActivityStreamsAnnounce() vocab.ActivityStreamsAnnounce
NewActivityStreamsAnnounce creates a new ActivityStreamsAnnounce
func NewActivityStreamsAnyOfProperty ¶ added in v1.0.0
func NewActivityStreamsAnyOfProperty() vocab.ActivityStreamsAnyOfProperty
NewActivityStreamsActivityStreamsAnyOfProperty creates a new ActivityStreamsAnyOfProperty
func NewActivityStreamsApplication ¶ added in v1.0.0
func NewActivityStreamsApplication() vocab.ActivityStreamsApplication
NewActivityStreamsApplication creates a new ActivityStreamsApplication
func NewActivityStreamsArrive ¶ added in v1.0.0
func NewActivityStreamsArrive() vocab.ActivityStreamsArrive
NewActivityStreamsArrive creates a new ActivityStreamsArrive
func NewActivityStreamsArticle ¶ added in v1.0.0
func NewActivityStreamsArticle() vocab.ActivityStreamsArticle
NewActivityStreamsArticle creates a new ActivityStreamsArticle
func NewActivityStreamsAttachmentProperty ¶ added in v1.0.0
func NewActivityStreamsAttachmentProperty() vocab.ActivityStreamsAttachmentProperty
NewActivityStreamsActivityStreamsAttachmentProperty creates a new ActivityStreamsAttachmentProperty
func NewActivityStreamsAttributedToProperty ¶ added in v1.0.0
func NewActivityStreamsAttributedToProperty() vocab.ActivityStreamsAttributedToProperty
NewActivityStreamsActivityStreamsAttributedToProperty creates a new ActivityStreamsAttributedToProperty
func NewActivityStreamsAudienceProperty ¶ added in v1.0.0
func NewActivityStreamsAudienceProperty() vocab.ActivityStreamsAudienceProperty
NewActivityStreamsActivityStreamsAudienceProperty creates a new ActivityStreamsAudienceProperty
func NewActivityStreamsAudio ¶ added in v1.0.0
func NewActivityStreamsAudio() vocab.ActivityStreamsAudio
NewActivityStreamsAudio creates a new ActivityStreamsAudio
func NewActivityStreamsBccProperty ¶ added in v1.0.0
func NewActivityStreamsBccProperty() vocab.ActivityStreamsBccProperty
NewActivityStreamsActivityStreamsBccProperty creates a new ActivityStreamsBccProperty
func NewActivityStreamsBlock ¶ added in v1.0.0
func NewActivityStreamsBlock() vocab.ActivityStreamsBlock
NewActivityStreamsBlock creates a new ActivityStreamsBlock
func NewActivityStreamsBtoProperty ¶ added in v1.0.0
func NewActivityStreamsBtoProperty() vocab.ActivityStreamsBtoProperty
NewActivityStreamsActivityStreamsBtoProperty creates a new ActivityStreamsBtoProperty
func NewActivityStreamsCcProperty ¶ added in v1.0.0
func NewActivityStreamsCcProperty() vocab.ActivityStreamsCcProperty
NewActivityStreamsActivityStreamsCcProperty creates a new ActivityStreamsCcProperty
func NewActivityStreamsClosedProperty ¶ added in v1.0.0
func NewActivityStreamsClosedProperty() vocab.ActivityStreamsClosedProperty
NewActivityStreamsActivityStreamsClosedProperty creates a new ActivityStreamsClosedProperty
func NewActivityStreamsCollection ¶ added in v1.0.0
func NewActivityStreamsCollection() vocab.ActivityStreamsCollection
NewActivityStreamsCollection creates a new ActivityStreamsCollection
func NewActivityStreamsCollectionPage ¶ added in v1.0.0
func NewActivityStreamsCollectionPage() vocab.ActivityStreamsCollectionPage
NewActivityStreamsCollectionPage creates a new ActivityStreamsCollectionPage
func NewActivityStreamsContentProperty ¶ added in v1.0.0
func NewActivityStreamsContentProperty() vocab.ActivityStreamsContentProperty
NewActivityStreamsActivityStreamsContentProperty creates a new ActivityStreamsContentProperty
func NewActivityStreamsContextProperty ¶ added in v1.0.0
func NewActivityStreamsContextProperty() vocab.ActivityStreamsContextProperty
NewActivityStreamsActivityStreamsContextProperty creates a new ActivityStreamsContextProperty
func NewActivityStreamsCreate ¶ added in v1.0.0
func NewActivityStreamsCreate() vocab.ActivityStreamsCreate
NewActivityStreamsCreate creates a new ActivityStreamsCreate
func NewActivityStreamsCurrentProperty ¶ added in v1.0.0
func NewActivityStreamsCurrentProperty() vocab.ActivityStreamsCurrentProperty
NewActivityStreamsActivityStreamsCurrentProperty creates a new ActivityStreamsCurrentProperty
func NewActivityStreamsDelete ¶ added in v1.0.0
func NewActivityStreamsDelete() vocab.ActivityStreamsDelete
NewActivityStreamsDelete creates a new ActivityStreamsDelete
func NewActivityStreamsDeletedProperty ¶ added in v1.0.0
func NewActivityStreamsDeletedProperty() vocab.ActivityStreamsDeletedProperty
NewActivityStreamsActivityStreamsDeletedProperty creates a new ActivityStreamsDeletedProperty
func NewActivityStreamsDescribesProperty ¶ added in v1.0.0
func NewActivityStreamsDescribesProperty() vocab.ActivityStreamsDescribesProperty
NewActivityStreamsActivityStreamsDescribesProperty creates a new ActivityStreamsDescribesProperty
func NewActivityStreamsDislike ¶ added in v1.0.0
func NewActivityStreamsDislike() vocab.ActivityStreamsDislike
NewActivityStreamsDislike creates a new ActivityStreamsDislike
func NewActivityStreamsDocument ¶ added in v1.0.0
func NewActivityStreamsDocument() vocab.ActivityStreamsDocument
NewActivityStreamsDocument creates a new ActivityStreamsDocument
func NewActivityStreamsDurationProperty ¶ added in v1.0.0
func NewActivityStreamsDurationProperty() vocab.ActivityStreamsDurationProperty
NewActivityStreamsActivityStreamsDurationProperty creates a new ActivityStreamsDurationProperty
func NewActivityStreamsEndTimeProperty ¶ added in v1.0.0
func NewActivityStreamsEndTimeProperty() vocab.ActivityStreamsEndTimeProperty
NewActivityStreamsActivityStreamsEndTimeProperty creates a new ActivityStreamsEndTimeProperty
func NewActivityStreamsEvent ¶ added in v1.0.0
func NewActivityStreamsEvent() vocab.ActivityStreamsEvent
NewActivityStreamsEvent creates a new ActivityStreamsEvent
func NewActivityStreamsFirstProperty ¶ added in v1.0.0
func NewActivityStreamsFirstProperty() vocab.ActivityStreamsFirstProperty
NewActivityStreamsActivityStreamsFirstProperty creates a new ActivityStreamsFirstProperty
func NewActivityStreamsFlag ¶ added in v1.0.0
func NewActivityStreamsFlag() vocab.ActivityStreamsFlag
NewActivityStreamsFlag creates a new ActivityStreamsFlag
func NewActivityStreamsFollow ¶ added in v1.0.0
func NewActivityStreamsFollow() vocab.ActivityStreamsFollow
NewActivityStreamsFollow creates a new ActivityStreamsFollow
func NewActivityStreamsFollowersProperty ¶ added in v1.0.0
func NewActivityStreamsFollowersProperty() vocab.ActivityStreamsFollowersProperty
NewActivityStreamsActivityStreamsFollowersProperty creates a new ActivityStreamsFollowersProperty
func NewActivityStreamsFollowingProperty ¶ added in v1.0.0
func NewActivityStreamsFollowingProperty() vocab.ActivityStreamsFollowingProperty
NewActivityStreamsActivityStreamsFollowingProperty creates a new ActivityStreamsFollowingProperty
func NewActivityStreamsFormerTypeProperty ¶ added in v1.0.0
func NewActivityStreamsFormerTypeProperty() vocab.ActivityStreamsFormerTypeProperty
NewActivityStreamsActivityStreamsFormerTypeProperty creates a new ActivityStreamsFormerTypeProperty
func NewActivityStreamsGeneratorProperty ¶ added in v1.0.0
func NewActivityStreamsGeneratorProperty() vocab.ActivityStreamsGeneratorProperty
NewActivityStreamsActivityStreamsGeneratorProperty creates a new ActivityStreamsGeneratorProperty
func NewActivityStreamsGroup ¶ added in v1.0.0
func NewActivityStreamsGroup() vocab.ActivityStreamsGroup
NewActivityStreamsGroup creates a new ActivityStreamsGroup
func NewActivityStreamsHeightProperty ¶ added in v1.0.0
func NewActivityStreamsHeightProperty() vocab.ActivityStreamsHeightProperty
NewActivityStreamsActivityStreamsHeightProperty creates a new ActivityStreamsHeightProperty
func NewActivityStreamsHrefProperty ¶ added in v1.0.0
func NewActivityStreamsHrefProperty() vocab.ActivityStreamsHrefProperty
NewActivityStreamsActivityStreamsHrefProperty creates a new ActivityStreamsHrefProperty
func NewActivityStreamsHreflangProperty ¶ added in v1.0.0
func NewActivityStreamsHreflangProperty() vocab.ActivityStreamsHreflangProperty
NewActivityStreamsActivityStreamsHreflangProperty creates a new ActivityStreamsHreflangProperty
func NewActivityStreamsIconProperty ¶ added in v1.0.0
func NewActivityStreamsIconProperty() vocab.ActivityStreamsIconProperty
NewActivityStreamsActivityStreamsIconProperty creates a new ActivityStreamsIconProperty
func NewActivityStreamsIgnore ¶ added in v1.0.0
func NewActivityStreamsIgnore() vocab.ActivityStreamsIgnore
NewActivityStreamsIgnore creates a new ActivityStreamsIgnore
func NewActivityStreamsImage ¶ added in v1.0.0
func NewActivityStreamsImage() vocab.ActivityStreamsImage
NewActivityStreamsImage creates a new ActivityStreamsImage
func NewActivityStreamsImageProperty ¶ added in v1.0.0
func NewActivityStreamsImageProperty() vocab.ActivityStreamsImageProperty
NewActivityStreamsActivityStreamsImageProperty creates a new ActivityStreamsImageProperty
func NewActivityStreamsInReplyToProperty ¶ added in v1.0.0
func NewActivityStreamsInReplyToProperty() vocab.ActivityStreamsInReplyToProperty
NewActivityStreamsActivityStreamsInReplyToProperty creates a new ActivityStreamsInReplyToProperty
func NewActivityStreamsInboxProperty ¶ added in v1.0.0
func NewActivityStreamsInboxProperty() vocab.ActivityStreamsInboxProperty
NewActivityStreamsActivityStreamsInboxProperty creates a new ActivityStreamsInboxProperty
func NewActivityStreamsInstrumentProperty ¶ added in v1.0.0
func NewActivityStreamsInstrumentProperty() vocab.ActivityStreamsInstrumentProperty
NewActivityStreamsActivityStreamsInstrumentProperty creates a new ActivityStreamsInstrumentProperty
func NewActivityStreamsIntransitiveActivity ¶ added in v1.0.0
func NewActivityStreamsIntransitiveActivity() vocab.ActivityStreamsIntransitiveActivity
NewActivityStreamsIntransitiveActivity creates a new ActivityStreamsIntransitiveActivity
func NewActivityStreamsInvite ¶ added in v1.0.0
func NewActivityStreamsInvite() vocab.ActivityStreamsInvite
NewActivityStreamsInvite creates a new ActivityStreamsInvite
func NewActivityStreamsItemsProperty ¶ added in v1.0.0
func NewActivityStreamsItemsProperty() vocab.ActivityStreamsItemsProperty
NewActivityStreamsActivityStreamsItemsProperty creates a new ActivityStreamsItemsProperty
func NewActivityStreamsJoin ¶ added in v1.0.0
func NewActivityStreamsJoin() vocab.ActivityStreamsJoin
NewActivityStreamsJoin creates a new ActivityStreamsJoin
func NewActivityStreamsLastProperty ¶ added in v1.0.0
func NewActivityStreamsLastProperty() vocab.ActivityStreamsLastProperty
NewActivityStreamsActivityStreamsLastProperty creates a new ActivityStreamsLastProperty
func NewActivityStreamsLatitudeProperty ¶ added in v1.0.0
func NewActivityStreamsLatitudeProperty() vocab.ActivityStreamsLatitudeProperty
NewActivityStreamsActivityStreamsLatitudeProperty creates a new ActivityStreamsLatitudeProperty
func NewActivityStreamsLeave ¶ added in v1.0.0
func NewActivityStreamsLeave() vocab.ActivityStreamsLeave
NewActivityStreamsLeave creates a new ActivityStreamsLeave
func NewActivityStreamsLike ¶ added in v1.0.0
func NewActivityStreamsLike() vocab.ActivityStreamsLike
NewActivityStreamsLike creates a new ActivityStreamsLike
func NewActivityStreamsLikedProperty ¶ added in v1.0.0
func NewActivityStreamsLikedProperty() vocab.ActivityStreamsLikedProperty
NewActivityStreamsActivityStreamsLikedProperty creates a new ActivityStreamsLikedProperty
func NewActivityStreamsLikesProperty ¶ added in v1.0.0
func NewActivityStreamsLikesProperty() vocab.ActivityStreamsLikesProperty
NewActivityStreamsActivityStreamsLikesProperty creates a new ActivityStreamsLikesProperty
func NewActivityStreamsLink ¶ added in v1.0.0
func NewActivityStreamsLink() vocab.ActivityStreamsLink
NewActivityStreamsLink creates a new ActivityStreamsLink
func NewActivityStreamsListen ¶ added in v1.0.0
func NewActivityStreamsListen() vocab.ActivityStreamsListen
NewActivityStreamsListen creates a new ActivityStreamsListen
func NewActivityStreamsLocationProperty ¶ added in v1.0.0
func NewActivityStreamsLocationProperty() vocab.ActivityStreamsLocationProperty
NewActivityStreamsActivityStreamsLocationProperty creates a new ActivityStreamsLocationProperty
func NewActivityStreamsLongitudeProperty ¶ added in v1.0.0
func NewActivityStreamsLongitudeProperty() vocab.ActivityStreamsLongitudeProperty
NewActivityStreamsActivityStreamsLongitudeProperty creates a new ActivityStreamsLongitudeProperty
func NewActivityStreamsMediaTypeProperty ¶ added in v1.0.0
func NewActivityStreamsMediaTypeProperty() vocab.ActivityStreamsMediaTypeProperty
NewActivityStreamsActivityStreamsMediaTypeProperty creates a new ActivityStreamsMediaTypeProperty
func NewActivityStreamsMention ¶ added in v1.0.0
func NewActivityStreamsMention() vocab.ActivityStreamsMention
NewActivityStreamsMention creates a new ActivityStreamsMention
func NewActivityStreamsMove ¶ added in v1.0.0
func NewActivityStreamsMove() vocab.ActivityStreamsMove
NewActivityStreamsMove creates a new ActivityStreamsMove
func NewActivityStreamsNameProperty ¶ added in v1.0.0
func NewActivityStreamsNameProperty() vocab.ActivityStreamsNameProperty
NewActivityStreamsActivityStreamsNameProperty creates a new ActivityStreamsNameProperty
func NewActivityStreamsNextProperty ¶ added in v1.0.0
func NewActivityStreamsNextProperty() vocab.ActivityStreamsNextProperty
NewActivityStreamsActivityStreamsNextProperty creates a new ActivityStreamsNextProperty
func NewActivityStreamsNote ¶ added in v1.0.0
func NewActivityStreamsNote() vocab.ActivityStreamsNote
NewActivityStreamsNote creates a new ActivityStreamsNote
func NewActivityStreamsObject ¶ added in v1.0.0
func NewActivityStreamsObject() vocab.ActivityStreamsObject
NewActivityStreamsObject creates a new ActivityStreamsObject
func NewActivityStreamsObjectProperty ¶ added in v1.0.0
func NewActivityStreamsObjectProperty() vocab.ActivityStreamsObjectProperty
NewActivityStreamsActivityStreamsObjectProperty creates a new ActivityStreamsObjectProperty
func NewActivityStreamsOffer ¶ added in v1.0.0
func NewActivityStreamsOffer() vocab.ActivityStreamsOffer
NewActivityStreamsOffer creates a new ActivityStreamsOffer
func NewActivityStreamsOneOfProperty ¶ added in v1.0.0
func NewActivityStreamsOneOfProperty() vocab.ActivityStreamsOneOfProperty
NewActivityStreamsActivityStreamsOneOfProperty creates a new ActivityStreamsOneOfProperty
func NewActivityStreamsOrderedCollection ¶ added in v1.0.0
func NewActivityStreamsOrderedCollection() vocab.ActivityStreamsOrderedCollection
NewActivityStreamsOrderedCollection creates a new ActivityStreamsOrderedCollection
func NewActivityStreamsOrderedCollectionPage ¶ added in v1.0.0
func NewActivityStreamsOrderedCollectionPage() vocab.ActivityStreamsOrderedCollectionPage
NewActivityStreamsOrderedCollectionPage creates a new ActivityStreamsOrderedCollectionPage
func NewActivityStreamsOrderedItemsProperty ¶ added in v1.0.0
func NewActivityStreamsOrderedItemsProperty() vocab.ActivityStreamsOrderedItemsProperty
NewActivityStreamsActivityStreamsOrderedItemsProperty creates a new ActivityStreamsOrderedItemsProperty
func NewActivityStreamsOrganization ¶ added in v1.0.0
func NewActivityStreamsOrganization() vocab.ActivityStreamsOrganization
NewActivityStreamsOrganization creates a new ActivityStreamsOrganization
func NewActivityStreamsOriginProperty ¶ added in v1.0.0
func NewActivityStreamsOriginProperty() vocab.ActivityStreamsOriginProperty
NewActivityStreamsActivityStreamsOriginProperty creates a new ActivityStreamsOriginProperty
func NewActivityStreamsOutboxProperty ¶ added in v1.0.0
func NewActivityStreamsOutboxProperty() vocab.ActivityStreamsOutboxProperty
NewActivityStreamsActivityStreamsOutboxProperty creates a new ActivityStreamsOutboxProperty
func NewActivityStreamsPage ¶ added in v1.0.0
func NewActivityStreamsPage() vocab.ActivityStreamsPage
NewActivityStreamsPage creates a new ActivityStreamsPage
func NewActivityStreamsPartOfProperty ¶ added in v1.0.0
func NewActivityStreamsPartOfProperty() vocab.ActivityStreamsPartOfProperty
NewActivityStreamsActivityStreamsPartOfProperty creates a new ActivityStreamsPartOfProperty
func NewActivityStreamsPerson ¶ added in v1.0.0
func NewActivityStreamsPerson() vocab.ActivityStreamsPerson
NewActivityStreamsPerson creates a new ActivityStreamsPerson
func NewActivityStreamsPlace ¶ added in v1.0.0
func NewActivityStreamsPlace() vocab.ActivityStreamsPlace
NewActivityStreamsPlace creates a new ActivityStreamsPlace
func NewActivityStreamsPreferredUsernameProperty ¶ added in v1.0.0
func NewActivityStreamsPreferredUsernameProperty() vocab.ActivityStreamsPreferredUsernameProperty
NewActivityStreamsActivityStreamsPreferredUsernameProperty creates a new ActivityStreamsPreferredUsernameProperty
func NewActivityStreamsPrevProperty ¶ added in v1.0.0
func NewActivityStreamsPrevProperty() vocab.ActivityStreamsPrevProperty
NewActivityStreamsActivityStreamsPrevProperty creates a new ActivityStreamsPrevProperty
func NewActivityStreamsPreviewProperty ¶ added in v1.0.0
func NewActivityStreamsPreviewProperty() vocab.ActivityStreamsPreviewProperty
NewActivityStreamsActivityStreamsPreviewProperty creates a new ActivityStreamsPreviewProperty
func NewActivityStreamsProfile ¶ added in v1.0.0
func NewActivityStreamsProfile() vocab.ActivityStreamsProfile
NewActivityStreamsProfile creates a new ActivityStreamsProfile
func NewActivityStreamsPublishedProperty ¶ added in v1.0.0
func NewActivityStreamsPublishedProperty() vocab.ActivityStreamsPublishedProperty
NewActivityStreamsActivityStreamsPublishedProperty creates a new ActivityStreamsPublishedProperty
func NewActivityStreamsQuestion ¶ added in v1.0.0
func NewActivityStreamsQuestion() vocab.ActivityStreamsQuestion
NewActivityStreamsQuestion creates a new ActivityStreamsQuestion
func NewActivityStreamsRadiusProperty ¶ added in v1.0.0
func NewActivityStreamsRadiusProperty() vocab.ActivityStreamsRadiusProperty
NewActivityStreamsActivityStreamsRadiusProperty creates a new ActivityStreamsRadiusProperty
func NewActivityStreamsRead ¶ added in v1.0.0
func NewActivityStreamsRead() vocab.ActivityStreamsRead
NewActivityStreamsRead creates a new ActivityStreamsRead
func NewActivityStreamsReject ¶ added in v1.0.0
func NewActivityStreamsReject() vocab.ActivityStreamsReject
NewActivityStreamsReject creates a new ActivityStreamsReject
func NewActivityStreamsRelProperty ¶ added in v1.0.0
func NewActivityStreamsRelProperty() vocab.ActivityStreamsRelProperty
NewActivityStreamsActivityStreamsRelProperty creates a new ActivityStreamsRelProperty
func NewActivityStreamsRelationship ¶ added in v1.0.0
func NewActivityStreamsRelationship() vocab.ActivityStreamsRelationship
NewActivityStreamsRelationship creates a new ActivityStreamsRelationship
func NewActivityStreamsRelationshipProperty ¶ added in v1.0.0
func NewActivityStreamsRelationshipProperty() vocab.ActivityStreamsRelationshipProperty
NewActivityStreamsActivityStreamsRelationshipProperty creates a new ActivityStreamsRelationshipProperty
func NewActivityStreamsRemove ¶ added in v1.0.0
func NewActivityStreamsRemove() vocab.ActivityStreamsRemove
NewActivityStreamsRemove creates a new ActivityStreamsRemove
func NewActivityStreamsRepliesProperty ¶ added in v1.0.0
func NewActivityStreamsRepliesProperty() vocab.ActivityStreamsRepliesProperty
NewActivityStreamsActivityStreamsRepliesProperty creates a new ActivityStreamsRepliesProperty
func NewActivityStreamsResultProperty ¶ added in v1.0.0
func NewActivityStreamsResultProperty() vocab.ActivityStreamsResultProperty
NewActivityStreamsActivityStreamsResultProperty creates a new ActivityStreamsResultProperty
func NewActivityStreamsService ¶ added in v1.0.0
func NewActivityStreamsService() vocab.ActivityStreamsService
NewActivityStreamsService creates a new ActivityStreamsService
func NewActivityStreamsSharesProperty ¶ added in v1.0.0
func NewActivityStreamsSharesProperty() vocab.ActivityStreamsSharesProperty
NewActivityStreamsActivityStreamsSharesProperty creates a new ActivityStreamsSharesProperty
func NewActivityStreamsSourceProperty ¶ added in v1.0.0
func NewActivityStreamsSourceProperty() vocab.ActivityStreamsSourceProperty
NewActivityStreamsActivityStreamsSourceProperty creates a new ActivityStreamsSourceProperty
func NewActivityStreamsStartIndexProperty ¶ added in v1.0.0
func NewActivityStreamsStartIndexProperty() vocab.ActivityStreamsStartIndexProperty
NewActivityStreamsActivityStreamsStartIndexProperty creates a new ActivityStreamsStartIndexProperty
func NewActivityStreamsStartTimeProperty ¶ added in v1.0.0
func NewActivityStreamsStartTimeProperty() vocab.ActivityStreamsStartTimeProperty
NewActivityStreamsActivityStreamsStartTimeProperty creates a new ActivityStreamsStartTimeProperty
func NewActivityStreamsStreamsProperty ¶ added in v1.0.0
func NewActivityStreamsStreamsProperty() vocab.ActivityStreamsStreamsProperty
NewActivityStreamsActivityStreamsStreamsProperty creates a new ActivityStreamsStreamsProperty
func NewActivityStreamsSubjectProperty ¶ added in v1.0.0
func NewActivityStreamsSubjectProperty() vocab.ActivityStreamsSubjectProperty
NewActivityStreamsActivityStreamsSubjectProperty creates a new ActivityStreamsSubjectProperty
func NewActivityStreamsSummaryProperty ¶ added in v1.0.0
func NewActivityStreamsSummaryProperty() vocab.ActivityStreamsSummaryProperty
NewActivityStreamsActivityStreamsSummaryProperty creates a new ActivityStreamsSummaryProperty
func NewActivityStreamsTagProperty ¶ added in v1.0.0
func NewActivityStreamsTagProperty() vocab.ActivityStreamsTagProperty
NewActivityStreamsActivityStreamsTagProperty creates a new ActivityStreamsTagProperty
func NewActivityStreamsTargetProperty ¶ added in v1.0.0
func NewActivityStreamsTargetProperty() vocab.ActivityStreamsTargetProperty
NewActivityStreamsActivityStreamsTargetProperty creates a new ActivityStreamsTargetProperty
func NewActivityStreamsTentativeAccept ¶ added in v1.0.0
func NewActivityStreamsTentativeAccept() vocab.ActivityStreamsTentativeAccept
NewActivityStreamsTentativeAccept creates a new ActivityStreamsTentativeAccept
func NewActivityStreamsTentativeReject ¶ added in v1.0.0
func NewActivityStreamsTentativeReject() vocab.ActivityStreamsTentativeReject
NewActivityStreamsTentativeReject creates a new ActivityStreamsTentativeReject
func NewActivityStreamsToProperty ¶ added in v1.0.0
func NewActivityStreamsToProperty() vocab.ActivityStreamsToProperty
NewActivityStreamsActivityStreamsToProperty creates a new ActivityStreamsToProperty
func NewActivityStreamsTombstone ¶ added in v1.0.0
func NewActivityStreamsTombstone() vocab.ActivityStreamsTombstone
NewActivityStreamsTombstone creates a new ActivityStreamsTombstone
func NewActivityStreamsTotalItemsProperty ¶ added in v1.0.0
func NewActivityStreamsTotalItemsProperty() vocab.ActivityStreamsTotalItemsProperty
NewActivityStreamsActivityStreamsTotalItemsProperty creates a new ActivityStreamsTotalItemsProperty
func NewActivityStreamsTravel ¶ added in v1.0.0
func NewActivityStreamsTravel() vocab.ActivityStreamsTravel
NewActivityStreamsTravel creates a new ActivityStreamsTravel
func NewActivityStreamsUndo ¶ added in v1.0.0
func NewActivityStreamsUndo() vocab.ActivityStreamsUndo
NewActivityStreamsUndo creates a new ActivityStreamsUndo
func NewActivityStreamsUnitsProperty ¶ added in v1.0.0
func NewActivityStreamsUnitsProperty() vocab.ActivityStreamsUnitsProperty
NewActivityStreamsActivityStreamsUnitsProperty creates a new ActivityStreamsUnitsProperty
func NewActivityStreamsUpdate ¶ added in v1.0.0
func NewActivityStreamsUpdate() vocab.ActivityStreamsUpdate
NewActivityStreamsUpdate creates a new ActivityStreamsUpdate
func NewActivityStreamsUpdatedProperty ¶ added in v1.0.0
func NewActivityStreamsUpdatedProperty() vocab.ActivityStreamsUpdatedProperty
NewActivityStreamsActivityStreamsUpdatedProperty creates a new ActivityStreamsUpdatedProperty
func NewActivityStreamsUrlProperty ¶ added in v1.0.0
func NewActivityStreamsUrlProperty() vocab.ActivityStreamsUrlProperty
NewActivityStreamsActivityStreamsUrlProperty creates a new ActivityStreamsUrlProperty
func NewActivityStreamsVideo ¶ added in v1.0.0
func NewActivityStreamsVideo() vocab.ActivityStreamsVideo
NewActivityStreamsVideo creates a new ActivityStreamsVideo
func NewActivityStreamsView ¶ added in v1.0.0
func NewActivityStreamsView() vocab.ActivityStreamsView
NewActivityStreamsView creates a new ActivityStreamsView
func NewActivityStreamsWidthProperty ¶ added in v1.0.0
func NewActivityStreamsWidthProperty() vocab.ActivityStreamsWidthProperty
NewActivityStreamsActivityStreamsWidthProperty creates a new ActivityStreamsWidthProperty
func NewForgeFedAssignedToProperty ¶ added in v1.0.0
func NewForgeFedAssignedToProperty() vocab.ForgeFedAssignedToProperty
NewForgeFedForgeFedAssignedToProperty creates a new ForgeFedAssignedToProperty
func NewForgeFedBranch ¶ added in v1.0.0
func NewForgeFedBranch() vocab.ForgeFedBranch
NewForgeFedBranch creates a new ForgeFedBranch
func NewForgeFedCommit ¶ added in v1.0.0
func NewForgeFedCommit() vocab.ForgeFedCommit
NewForgeFedCommit creates a new ForgeFedCommit
func NewForgeFedCommittedByProperty ¶ added in v1.0.0
func NewForgeFedCommittedByProperty() vocab.ForgeFedCommittedByProperty
NewForgeFedForgeFedCommittedByProperty creates a new ForgeFedCommittedByProperty
func NewForgeFedCommittedProperty ¶ added in v1.0.0
func NewForgeFedCommittedProperty() vocab.ForgeFedCommittedProperty
NewForgeFedForgeFedCommittedProperty creates a new ForgeFedCommittedProperty
func NewForgeFedDependantsProperty ¶ added in v1.0.0
func NewForgeFedDependantsProperty() vocab.ForgeFedDependantsProperty
NewForgeFedForgeFedDependantsProperty creates a new ForgeFedDependantsProperty
func NewForgeFedDependedByProperty ¶ added in v1.0.0
func NewForgeFedDependedByProperty() vocab.ForgeFedDependedByProperty
NewForgeFedForgeFedDependedByProperty creates a new ForgeFedDependedByProperty
func NewForgeFedDependenciesProperty ¶ added in v1.0.0
func NewForgeFedDependenciesProperty() vocab.ForgeFedDependenciesProperty
NewForgeFedForgeFedDependenciesProperty creates a new ForgeFedDependenciesProperty
func NewForgeFedDependsOnProperty ¶ added in v1.0.0
func NewForgeFedDependsOnProperty() vocab.ForgeFedDependsOnProperty
NewForgeFedForgeFedDependsOnProperty creates a new ForgeFedDependsOnProperty
func NewForgeFedDescriptionProperty ¶ added in v1.0.0
func NewForgeFedDescriptionProperty() vocab.ForgeFedDescriptionProperty
NewForgeFedForgeFedDescriptionProperty creates a new ForgeFedDescriptionProperty
func NewForgeFedEarlyItemsProperty ¶ added in v1.0.0
func NewForgeFedEarlyItemsProperty() vocab.ForgeFedEarlyItemsProperty
NewForgeFedForgeFedEarlyItemsProperty creates a new ForgeFedEarlyItemsProperty
func NewForgeFedFilesAddedProperty ¶ added in v1.0.0
func NewForgeFedFilesAddedProperty() vocab.ForgeFedFilesAddedProperty
NewForgeFedForgeFedFilesAddedProperty creates a new ForgeFedFilesAddedProperty
func NewForgeFedFilesModifiedProperty ¶ added in v1.0.0
func NewForgeFedFilesModifiedProperty() vocab.ForgeFedFilesModifiedProperty
NewForgeFedForgeFedFilesModifiedProperty creates a new ForgeFedFilesModifiedProperty
func NewForgeFedFilesRemovedProperty ¶ added in v1.0.0
func NewForgeFedFilesRemovedProperty() vocab.ForgeFedFilesRemovedProperty
NewForgeFedForgeFedFilesRemovedProperty creates a new ForgeFedFilesRemovedProperty
func NewForgeFedForksProperty ¶ added in v1.0.0
func NewForgeFedForksProperty() vocab.ForgeFedForksProperty
NewForgeFedForgeFedForksProperty creates a new ForgeFedForksProperty
func NewForgeFedHashProperty ¶ added in v1.0.0
func NewForgeFedHashProperty() vocab.ForgeFedHashProperty
NewForgeFedForgeFedHashProperty creates a new ForgeFedHashProperty
func NewForgeFedIsResolvedProperty ¶ added in v1.0.0
func NewForgeFedIsResolvedProperty() vocab.ForgeFedIsResolvedProperty
NewForgeFedForgeFedIsResolvedProperty creates a new ForgeFedIsResolvedProperty
func NewForgeFedPush ¶ added in v1.0.0
func NewForgeFedPush() vocab.ForgeFedPush
NewForgeFedPush creates a new ForgeFedPush
func NewForgeFedRefProperty ¶ added in v1.0.0
func NewForgeFedRefProperty() vocab.ForgeFedRefProperty
NewForgeFedForgeFedRefProperty creates a new ForgeFedRefProperty
func NewForgeFedRepository ¶ added in v1.0.0
func NewForgeFedRepository() vocab.ForgeFedRepository
NewForgeFedRepository creates a new ForgeFedRepository
func NewForgeFedTeamProperty ¶ added in v1.0.0
func NewForgeFedTeamProperty() vocab.ForgeFedTeamProperty
NewForgeFedForgeFedTeamProperty creates a new ForgeFedTeamProperty
func NewForgeFedTicket ¶ added in v1.0.0
func NewForgeFedTicket() vocab.ForgeFedTicket
NewForgeFedTicket creates a new ForgeFedTicket
func NewForgeFedTicketDependency ¶ added in v1.0.0
func NewForgeFedTicketDependency() vocab.ForgeFedTicketDependency
NewForgeFedTicketDependency creates a new ForgeFedTicketDependency
func NewForgeFedTicketsTrackedByProperty ¶ added in v1.0.0
func NewForgeFedTicketsTrackedByProperty() vocab.ForgeFedTicketsTrackedByProperty
NewForgeFedForgeFedTicketsTrackedByProperty creates a new ForgeFedTicketsTrackedByProperty
func NewForgeFedTracksTicketsForProperty ¶ added in v1.0.0
func NewForgeFedTracksTicketsForProperty() vocab.ForgeFedTracksTicketsForProperty
NewForgeFedForgeFedTracksTicketsForProperty creates a new ForgeFedTracksTicketsForProperty
func NewJSONLDIdProperty ¶ added in v1.0.0
func NewJSONLDIdProperty() vocab.JSONLDIdProperty
NewJSONLDJSONLDIdProperty creates a new JSONLDIdProperty
func NewJSONLDTypeProperty ¶ added in v1.0.0
func NewJSONLDTypeProperty() vocab.JSONLDTypeProperty
NewJSONLDJSONLDTypeProperty creates a new JSONLDTypeProperty
func NewTootBlurhashProperty ¶ added in v1.0.0
func NewTootBlurhashProperty() vocab.TootBlurhashProperty
NewTootTootBlurhashProperty creates a new TootBlurhashProperty
func NewTootDiscoverableProperty ¶ added in v1.0.0
func NewTootDiscoverableProperty() vocab.TootDiscoverableProperty
NewTootTootDiscoverableProperty creates a new TootDiscoverableProperty
func NewTootEmoji ¶ added in v1.0.0
NewTootEmoji creates a new TootEmoji
func NewTootFeaturedProperty ¶ added in v1.0.0
func NewTootFeaturedProperty() vocab.TootFeaturedProperty
NewTootTootFeaturedProperty creates a new TootFeaturedProperty
func NewTootIdentityProof ¶ added in v1.0.0
func NewTootIdentityProof() vocab.TootIdentityProof
NewTootIdentityProof creates a new TootIdentityProof
func NewTootSignatureAlgorithmProperty ¶ added in v1.0.0
func NewTootSignatureAlgorithmProperty() vocab.TootSignatureAlgorithmProperty
NewTootTootSignatureAlgorithmProperty creates a new TootSignatureAlgorithmProperty
func NewTootSignatureValueProperty ¶ added in v1.0.0
func NewTootSignatureValueProperty() vocab.TootSignatureValueProperty
NewTootTootSignatureValueProperty creates a new TootSignatureValueProperty
func NewTootVotersCountProperty ¶ added in v1.0.0
func NewTootVotersCountProperty() vocab.TootVotersCountProperty
NewTootTootVotersCountProperty creates a new TootVotersCountProperty
func NewW3IDSecurityV1OwnerProperty ¶ added in v1.0.0
func NewW3IDSecurityV1OwnerProperty() vocab.W3IDSecurityV1OwnerProperty
NewW3IDSecurityV1W3IDSecurityV1OwnerProperty creates a new W3IDSecurityV1OwnerProperty
func NewW3IDSecurityV1PublicKey ¶ added in v1.0.0
func NewW3IDSecurityV1PublicKey() vocab.W3IDSecurityV1PublicKey
NewW3IDSecurityV1PublicKey creates a new W3IDSecurityV1PublicKey
func NewW3IDSecurityV1PublicKeyPemProperty ¶ added in v1.0.0
func NewW3IDSecurityV1PublicKeyPemProperty() vocab.W3IDSecurityV1PublicKeyPemProperty
NewW3IDSecurityV1W3IDSecurityV1PublicKeyPemProperty creates a new W3IDSecurityV1PublicKeyPemProperty
func NewW3IDSecurityV1PublicKeyProperty ¶ added in v1.0.0
func NewW3IDSecurityV1PublicKeyProperty() vocab.W3IDSecurityV1PublicKeyProperty
NewW3IDSecurityV1W3IDSecurityV1PublicKeyProperty creates a new W3IDSecurityV1PublicKeyProperty
func Serialize ¶ added in v1.0.0
Serialize adds the context vocabularies contained within the type into the JSON-LD @context field, and aliases them appropriately.
func TootEmojiIsDisjointWith ¶ added in v1.0.0
TootEmojiIsDisjointWith returns true if Emoji is disjoint with the other's type.
func TootEmojiIsExtendedBy ¶ added in v1.0.0
TootEmojiIsExtendedBy returns true if the other's type extends from Emoji. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.
func TootIdentityProofIsDisjointWith ¶ added in v1.0.0
TootIdentityProofIsDisjointWith returns true if IdentityProof is disjoint with the other's type.
func TootIdentityProofIsExtendedBy ¶ added in v1.0.0
TootIdentityProofIsExtendedBy returns true if the other's type extends from IdentityProof. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.
func TootTootEmojiExtends ¶ added in v1.0.0
TootTootEmojiExtends returns true if Emoji extends from the other's type.
func TootTootIdentityProofExtends ¶ added in v1.0.0
TootTootIdentityProofExtends returns true if IdentityProof extends from the other's type.
func W3IDSecurityV1PublicKeyIsDisjointWith ¶ added in v1.0.0
W3IDSecurityV1PublicKeyIsDisjointWith returns true if PublicKey is disjoint with the other's type.
func W3IDSecurityV1PublicKeyIsExtendedBy ¶ added in v1.0.0
W3IDSecurityV1PublicKeyIsExtendedBy returns true if the other's type extends from PublicKey. Note that it returns false if the types are the same; see the "IsOrExtends" variant instead.
func W3IDSecurityV1W3IDSecurityV1PublicKeyExtends ¶ added in v1.0.0
W3IDSecurityV1W3IDSecurityV1PublicKeyExtends returns true if PublicKey extends from the other's type.
Types ¶
type ActivityStreamsInterface ¶ added in v1.0.0
type ActivityStreamsInterface interface { // GetTypeName returns the ActiivtyStreams value's type. GetTypeName() string // VocabularyURI returns the vocabulary's URI as a string. VocabularyURI() string }
ActivityStreamsInterface represents any ActivityStream value code-generated by go-fed or compatible with the generated interfaces.
type JSONResolver ¶ added in v1.0.0
type JSONResolver struct {
// contains filtered or unexported fields
}
JSONResolver resolves a JSON-deserialized map into its concrete ActivityStreams type
func NewJSONResolver ¶ added in v1.0.0
func NewJSONResolver(callbacks ...interface{}) (*JSONResolver, error)
NewJSONResolver creates a new Resolver that takes a JSON-deserialized generic map and determines the correct concrete Go type. The callback function is guaranteed to receive a value whose underlying ActivityStreams type matches the concrete interface name in its signature. The callback functions must be of the form:
func(context.Context, <TypeInterface>) error
where TypeInterface is the code-generated interface for an ActivityStream type. An error is returned if a callback function does not match this signature.
func (JSONResolver) Resolve ¶ added in v1.0.0
func (this JSONResolver) Resolve(ctx context.Context, m map[string]interface{}) error
Resolve determines the ActivityStreams type of the payload, then applies the first callback function whose signature accepts the ActivityStreams value's type. This strictly assures that the callback function will only be passed ActivityStream objects whose type matches its interface. Returns an error if the ActivityStreams type does not match callbackers or is not a type handled by the generated code. If multiple types are present, it will check each one in order and apply only the first one. It returns an unhandled error for a multi-typed object if none of the types were able to be handled.
type Manager ¶ added in v1.0.0
type Manager struct { }
Manager manages interface types and deserializations for use by generated code. Application code implicitly uses this manager at run-time to create concrete implementations of the interfaces.
func (Manager) DeserializeAcceptActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeAcceptActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsAccept, error)
DeserializeAcceptActivityStreams returns the deserialization method for the "ActivityStreamsAccept" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeAccuracyPropertyActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeAccuracyPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsAccuracyProperty, error)
DeserializeAccuracyPropertyActivityStreams returns the deserialization method for the "ActivityStreamsAccuracyProperty" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeActivityActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeActivityActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsActivity, error)
DeserializeActivityActivityStreams returns the deserialization method for the "ActivityStreamsActivity" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeActorPropertyActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeActorPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsActorProperty, error)
DeserializeActorPropertyActivityStreams returns the deserialization method for the "ActivityStreamsActorProperty" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeAddActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeAddActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsAdd, error)
DeserializeAddActivityStreams returns the deserialization method for the "ActivityStreamsAdd" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeAltitudePropertyActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeAltitudePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsAltitudeProperty, error)
DeserializeAltitudePropertyActivityStreams returns the deserialization method for the "ActivityStreamsAltitudeProperty" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeAnnounceActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeAnnounceActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsAnnounce, error)
DeserializeAnnounceActivityStreams returns the deserialization method for the "ActivityStreamsAnnounce" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeAnyOfPropertyActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeAnyOfPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsAnyOfProperty, error)
DeserializeAnyOfPropertyActivityStreams returns the deserialization method for the "ActivityStreamsAnyOfProperty" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeApplicationActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeApplicationActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsApplication, error)
DeserializeApplicationActivityStreams returns the deserialization method for the "ActivityStreamsApplication" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeArriveActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeArriveActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsArrive, error)
DeserializeArriveActivityStreams returns the deserialization method for the "ActivityStreamsArrive" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeArticleActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeArticleActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsArticle, error)
DeserializeArticleActivityStreams returns the deserialization method for the "ActivityStreamsArticle" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeAssignedToPropertyForgeFed ¶ added in v1.0.0
func (this Manager) DeserializeAssignedToPropertyForgeFed() func(map[string]interface{}, map[string]string) (vocab.ForgeFedAssignedToProperty, error)
DeserializeAssignedToPropertyForgeFed returns the deserialization method for the "ForgeFedAssignedToProperty" non-functional property in the vocabulary "ForgeFed"
func (Manager) DeserializeAttachmentPropertyActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeAttachmentPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsAttachmentProperty, error)
DeserializeAttachmentPropertyActivityStreams returns the deserialization method for the "ActivityStreamsAttachmentProperty" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeAttributedToPropertyActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeAttributedToPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsAttributedToProperty, error)
DeserializeAttributedToPropertyActivityStreams returns the deserialization method for the "ActivityStreamsAttributedToProperty" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeAudiencePropertyActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeAudiencePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsAudienceProperty, error)
DeserializeAudiencePropertyActivityStreams returns the deserialization method for the "ActivityStreamsAudienceProperty" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeAudioActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeAudioActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsAudio, error)
DeserializeAudioActivityStreams returns the deserialization method for the "ActivityStreamsAudio" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeBccPropertyActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeBccPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsBccProperty, error)
DeserializeBccPropertyActivityStreams returns the deserialization method for the "ActivityStreamsBccProperty" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeBlockActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeBlockActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsBlock, error)
DeserializeBlockActivityStreams returns the deserialization method for the "ActivityStreamsBlock" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeBlurhashPropertyToot ¶ added in v1.0.0
func (this Manager) DeserializeBlurhashPropertyToot() func(map[string]interface{}, map[string]string) (vocab.TootBlurhashProperty, error)
DeserializeBlurhashPropertyToot returns the deserialization method for the "TootBlurhashProperty" non-functional property in the vocabulary "Toot"
func (Manager) DeserializeBranchForgeFed ¶ added in v1.0.0
func (this Manager) DeserializeBranchForgeFed() func(map[string]interface{}, map[string]string) (vocab.ForgeFedBranch, error)
DeserializeBranchForgeFed returns the deserialization method for the "ForgeFedBranch" non-functional property in the vocabulary "ForgeFed"
func (Manager) DeserializeBtoPropertyActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeBtoPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsBtoProperty, error)
DeserializeBtoPropertyActivityStreams returns the deserialization method for the "ActivityStreamsBtoProperty" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeCcPropertyActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeCcPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsCcProperty, error)
DeserializeCcPropertyActivityStreams returns the deserialization method for the "ActivityStreamsCcProperty" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeClosedPropertyActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeClosedPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsClosedProperty, error)
DeserializeClosedPropertyActivityStreams returns the deserialization method for the "ActivityStreamsClosedProperty" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeCollectionActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeCollectionActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsCollection, error)
DeserializeCollectionActivityStreams returns the deserialization method for the "ActivityStreamsCollection" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeCollectionPageActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeCollectionPageActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsCollectionPage, error)
DeserializeCollectionPageActivityStreams returns the deserialization method for the "ActivityStreamsCollectionPage" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeCommitForgeFed ¶ added in v1.0.0
func (this Manager) DeserializeCommitForgeFed() func(map[string]interface{}, map[string]string) (vocab.ForgeFedCommit, error)
DeserializeCommitForgeFed returns the deserialization method for the "ForgeFedCommit" non-functional property in the vocabulary "ForgeFed"
func (Manager) DeserializeCommittedByPropertyForgeFed ¶ added in v1.0.0
func (this Manager) DeserializeCommittedByPropertyForgeFed() func(map[string]interface{}, map[string]string) (vocab.ForgeFedCommittedByProperty, error)
DeserializeCommittedByPropertyForgeFed returns the deserialization method for the "ForgeFedCommittedByProperty" non-functional property in the vocabulary "ForgeFed"
func (Manager) DeserializeCommittedPropertyForgeFed ¶ added in v1.0.0
func (this Manager) DeserializeCommittedPropertyForgeFed() func(map[string]interface{}, map[string]string) (vocab.ForgeFedCommittedProperty, error)
DeserializeCommittedPropertyForgeFed returns the deserialization method for the "ForgeFedCommittedProperty" non-functional property in the vocabulary "ForgeFed"
func (Manager) DeserializeContentPropertyActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeContentPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsContentProperty, error)
DeserializeContentPropertyActivityStreams returns the deserialization method for the "ActivityStreamsContentProperty" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeContextPropertyActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeContextPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsContextProperty, error)
DeserializeContextPropertyActivityStreams returns the deserialization method for the "ActivityStreamsContextProperty" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeCreateActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeCreateActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsCreate, error)
DeserializeCreateActivityStreams returns the deserialization method for the "ActivityStreamsCreate" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeCurrentPropertyActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeCurrentPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsCurrentProperty, error)
DeserializeCurrentPropertyActivityStreams returns the deserialization method for the "ActivityStreamsCurrentProperty" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeDeleteActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeDeleteActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsDelete, error)
DeserializeDeleteActivityStreams returns the deserialization method for the "ActivityStreamsDelete" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeDeletedPropertyActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeDeletedPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsDeletedProperty, error)
DeserializeDeletedPropertyActivityStreams returns the deserialization method for the "ActivityStreamsDeletedProperty" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeDependantsPropertyForgeFed ¶ added in v1.0.0
func (this Manager) DeserializeDependantsPropertyForgeFed() func(map[string]interface{}, map[string]string) (vocab.ForgeFedDependantsProperty, error)
DeserializeDependantsPropertyForgeFed returns the deserialization method for the "ForgeFedDependantsProperty" non-functional property in the vocabulary "ForgeFed"
func (Manager) DeserializeDependedByPropertyForgeFed ¶ added in v1.0.0
func (this Manager) DeserializeDependedByPropertyForgeFed() func(map[string]interface{}, map[string]string) (vocab.ForgeFedDependedByProperty, error)
DeserializeDependedByPropertyForgeFed returns the deserialization method for the "ForgeFedDependedByProperty" non-functional property in the vocabulary "ForgeFed"
func (Manager) DeserializeDependenciesPropertyForgeFed ¶ added in v1.0.0
func (this Manager) DeserializeDependenciesPropertyForgeFed() func(map[string]interface{}, map[string]string) (vocab.ForgeFedDependenciesProperty, error)
DeserializeDependenciesPropertyForgeFed returns the deserialization method for the "ForgeFedDependenciesProperty" non-functional property in the vocabulary "ForgeFed"
func (Manager) DeserializeDependsOnPropertyForgeFed ¶ added in v1.0.0
func (this Manager) DeserializeDependsOnPropertyForgeFed() func(map[string]interface{}, map[string]string) (vocab.ForgeFedDependsOnProperty, error)
DeserializeDependsOnPropertyForgeFed returns the deserialization method for the "ForgeFedDependsOnProperty" non-functional property in the vocabulary "ForgeFed"
func (Manager) DeserializeDescribesPropertyActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeDescribesPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsDescribesProperty, error)
DeserializeDescribesPropertyActivityStreams returns the deserialization method for the "ActivityStreamsDescribesProperty" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeDescriptionPropertyForgeFed ¶ added in v1.0.0
func (this Manager) DeserializeDescriptionPropertyForgeFed() func(map[string]interface{}, map[string]string) (vocab.ForgeFedDescriptionProperty, error)
DeserializeDescriptionPropertyForgeFed returns the deserialization method for the "ForgeFedDescriptionProperty" non-functional property in the vocabulary "ForgeFed"
func (Manager) DeserializeDiscoverablePropertyToot ¶ added in v1.0.0
func (this Manager) DeserializeDiscoverablePropertyToot() func(map[string]interface{}, map[string]string) (vocab.TootDiscoverableProperty, error)
DeserializeDiscoverablePropertyToot returns the deserialization method for the "TootDiscoverableProperty" non-functional property in the vocabulary "Toot"
func (Manager) DeserializeDislikeActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeDislikeActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsDislike, error)
DeserializeDislikeActivityStreams returns the deserialization method for the "ActivityStreamsDislike" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeDocumentActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeDocumentActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsDocument, error)
DeserializeDocumentActivityStreams returns the deserialization method for the "ActivityStreamsDocument" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeDurationPropertyActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeDurationPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsDurationProperty, error)
DeserializeDurationPropertyActivityStreams returns the deserialization method for the "ActivityStreamsDurationProperty" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeEarlyItemsPropertyForgeFed ¶ added in v1.0.0
func (this Manager) DeserializeEarlyItemsPropertyForgeFed() func(map[string]interface{}, map[string]string) (vocab.ForgeFedEarlyItemsProperty, error)
DeserializeEarlyItemsPropertyForgeFed returns the deserialization method for the "ForgeFedEarlyItemsProperty" non-functional property in the vocabulary "ForgeFed"
func (Manager) DeserializeEmojiToot ¶ added in v1.0.0
func (this Manager) DeserializeEmojiToot() func(map[string]interface{}, map[string]string) (vocab.TootEmoji, error)
DeserializeEmojiToot returns the deserialization method for the "TootEmoji" non-functional property in the vocabulary "Toot"
func (Manager) DeserializeEndTimePropertyActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeEndTimePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsEndTimeProperty, error)
DeserializeEndTimePropertyActivityStreams returns the deserialization method for the "ActivityStreamsEndTimeProperty" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeEventActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeEventActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsEvent, error)
DeserializeEventActivityStreams returns the deserialization method for the "ActivityStreamsEvent" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeFeaturedPropertyToot ¶ added in v1.0.0
func (this Manager) DeserializeFeaturedPropertyToot() func(map[string]interface{}, map[string]string) (vocab.TootFeaturedProperty, error)
DeserializeFeaturedPropertyToot returns the deserialization method for the "TootFeaturedProperty" non-functional property in the vocabulary "Toot"
func (Manager) DeserializeFilesAddedPropertyForgeFed ¶ added in v1.0.0
func (this Manager) DeserializeFilesAddedPropertyForgeFed() func(map[string]interface{}, map[string]string) (vocab.ForgeFedFilesAddedProperty, error)
DeserializeFilesAddedPropertyForgeFed returns the deserialization method for the "ForgeFedFilesAddedProperty" non-functional property in the vocabulary "ForgeFed"
func (Manager) DeserializeFilesModifiedPropertyForgeFed ¶ added in v1.0.0
func (this Manager) DeserializeFilesModifiedPropertyForgeFed() func(map[string]interface{}, map[string]string) (vocab.ForgeFedFilesModifiedProperty, error)
DeserializeFilesModifiedPropertyForgeFed returns the deserialization method for the "ForgeFedFilesModifiedProperty" non-functional property in the vocabulary "ForgeFed"
func (Manager) DeserializeFilesRemovedPropertyForgeFed ¶ added in v1.0.0
func (this Manager) DeserializeFilesRemovedPropertyForgeFed() func(map[string]interface{}, map[string]string) (vocab.ForgeFedFilesRemovedProperty, error)
DeserializeFilesRemovedPropertyForgeFed returns the deserialization method for the "ForgeFedFilesRemovedProperty" non-functional property in the vocabulary "ForgeFed"
func (Manager) DeserializeFirstPropertyActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeFirstPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsFirstProperty, error)
DeserializeFirstPropertyActivityStreams returns the deserialization method for the "ActivityStreamsFirstProperty" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeFlagActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeFlagActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsFlag, error)
DeserializeFlagActivityStreams returns the deserialization method for the "ActivityStreamsFlag" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeFollowActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeFollowActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsFollow, error)
DeserializeFollowActivityStreams returns the deserialization method for the "ActivityStreamsFollow" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeFollowersPropertyActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeFollowersPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsFollowersProperty, error)
DeserializeFollowersPropertyActivityStreams returns the deserialization method for the "ActivityStreamsFollowersProperty" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeFollowingPropertyActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeFollowingPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsFollowingProperty, error)
DeserializeFollowingPropertyActivityStreams returns the deserialization method for the "ActivityStreamsFollowingProperty" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeForksPropertyForgeFed ¶ added in v1.0.0
func (this Manager) DeserializeForksPropertyForgeFed() func(map[string]interface{}, map[string]string) (vocab.ForgeFedForksProperty, error)
DeserializeForksPropertyForgeFed returns the deserialization method for the "ForgeFedForksProperty" non-functional property in the vocabulary "ForgeFed"
func (Manager) DeserializeFormerTypePropertyActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeFormerTypePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsFormerTypeProperty, error)
DeserializeFormerTypePropertyActivityStreams returns the deserialization method for the "ActivityStreamsFormerTypeProperty" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeGeneratorPropertyActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeGeneratorPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsGeneratorProperty, error)
DeserializeGeneratorPropertyActivityStreams returns the deserialization method for the "ActivityStreamsGeneratorProperty" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeGroupActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeGroupActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsGroup, error)
DeserializeGroupActivityStreams returns the deserialization method for the "ActivityStreamsGroup" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeHashPropertyForgeFed ¶ added in v1.0.0
func (this Manager) DeserializeHashPropertyForgeFed() func(map[string]interface{}, map[string]string) (vocab.ForgeFedHashProperty, error)
DeserializeHashPropertyForgeFed returns the deserialization method for the "ForgeFedHashProperty" non-functional property in the vocabulary "ForgeFed"
func (Manager) DeserializeHeightPropertyActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeHeightPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsHeightProperty, error)
DeserializeHeightPropertyActivityStreams returns the deserialization method for the "ActivityStreamsHeightProperty" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeHrefPropertyActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeHrefPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsHrefProperty, error)
DeserializeHrefPropertyActivityStreams returns the deserialization method for the "ActivityStreamsHrefProperty" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeHreflangPropertyActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeHreflangPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsHreflangProperty, error)
DeserializeHreflangPropertyActivityStreams returns the deserialization method for the "ActivityStreamsHreflangProperty" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeIconPropertyActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeIconPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsIconProperty, error)
DeserializeIconPropertyActivityStreams returns the deserialization method for the "ActivityStreamsIconProperty" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeIdPropertyJSONLD ¶ added in v1.0.0
func (this Manager) DeserializeIdPropertyJSONLD() func(map[string]interface{}, map[string]string) (vocab.JSONLDIdProperty, error)
DeserializeIdPropertyJSONLD returns the deserialization method for the "JSONLDIdProperty" non-functional property in the vocabulary "JSONLD"
func (Manager) DeserializeIdentityProofToot ¶ added in v1.0.0
func (this Manager) DeserializeIdentityProofToot() func(map[string]interface{}, map[string]string) (vocab.TootIdentityProof, error)
DeserializeIdentityProofToot returns the deserialization method for the "TootIdentityProof" non-functional property in the vocabulary "Toot"
func (Manager) DeserializeIgnoreActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeIgnoreActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsIgnore, error)
DeserializeIgnoreActivityStreams returns the deserialization method for the "ActivityStreamsIgnore" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeImageActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeImageActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsImage, error)
DeserializeImageActivityStreams returns the deserialization method for the "ActivityStreamsImage" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeImagePropertyActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeImagePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsImageProperty, error)
DeserializeImagePropertyActivityStreams returns the deserialization method for the "ActivityStreamsImageProperty" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeInReplyToPropertyActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeInReplyToPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsInReplyToProperty, error)
DeserializeInReplyToPropertyActivityStreams returns the deserialization method for the "ActivityStreamsInReplyToProperty" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeInboxPropertyActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeInboxPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsInboxProperty, error)
DeserializeInboxPropertyActivityStreams returns the deserialization method for the "ActivityStreamsInboxProperty" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeInstrumentPropertyActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeInstrumentPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsInstrumentProperty, error)
DeserializeInstrumentPropertyActivityStreams returns the deserialization method for the "ActivityStreamsInstrumentProperty" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeIntransitiveActivityActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeIntransitiveActivityActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsIntransitiveActivity, error)
DeserializeIntransitiveActivityActivityStreams returns the deserialization method for the "ActivityStreamsIntransitiveActivity" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeInviteActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeInviteActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsInvite, error)
DeserializeInviteActivityStreams returns the deserialization method for the "ActivityStreamsInvite" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeIsResolvedPropertyForgeFed ¶ added in v1.0.0
func (this Manager) DeserializeIsResolvedPropertyForgeFed() func(map[string]interface{}, map[string]string) (vocab.ForgeFedIsResolvedProperty, error)
DeserializeIsResolvedPropertyForgeFed returns the deserialization method for the "ForgeFedIsResolvedProperty" non-functional property in the vocabulary "ForgeFed"
func (Manager) DeserializeItemsPropertyActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeItemsPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsItemsProperty, error)
DeserializeItemsPropertyActivityStreams returns the deserialization method for the "ActivityStreamsItemsProperty" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeJoinActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeJoinActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsJoin, error)
DeserializeJoinActivityStreams returns the deserialization method for the "ActivityStreamsJoin" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeLastPropertyActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeLastPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsLastProperty, error)
DeserializeLastPropertyActivityStreams returns the deserialization method for the "ActivityStreamsLastProperty" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeLatitudePropertyActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeLatitudePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsLatitudeProperty, error)
DeserializeLatitudePropertyActivityStreams returns the deserialization method for the "ActivityStreamsLatitudeProperty" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeLeaveActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeLeaveActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsLeave, error)
DeserializeLeaveActivityStreams returns the deserialization method for the "ActivityStreamsLeave" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeLikeActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeLikeActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsLike, error)
DeserializeLikeActivityStreams returns the deserialization method for the "ActivityStreamsLike" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeLikedPropertyActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeLikedPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsLikedProperty, error)
DeserializeLikedPropertyActivityStreams returns the deserialization method for the "ActivityStreamsLikedProperty" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeLikesPropertyActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeLikesPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsLikesProperty, error)
DeserializeLikesPropertyActivityStreams returns the deserialization method for the "ActivityStreamsLikesProperty" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeLinkActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeLinkActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsLink, error)
DeserializeLinkActivityStreams returns the deserialization method for the "ActivityStreamsLink" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeListenActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeListenActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsListen, error)
DeserializeListenActivityStreams returns the deserialization method for the "ActivityStreamsListen" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeLocationPropertyActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeLocationPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsLocationProperty, error)
DeserializeLocationPropertyActivityStreams returns the deserialization method for the "ActivityStreamsLocationProperty" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeLongitudePropertyActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeLongitudePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsLongitudeProperty, error)
DeserializeLongitudePropertyActivityStreams returns the deserialization method for the "ActivityStreamsLongitudeProperty" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeMediaTypePropertyActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeMediaTypePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsMediaTypeProperty, error)
DeserializeMediaTypePropertyActivityStreams returns the deserialization method for the "ActivityStreamsMediaTypeProperty" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeMentionActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeMentionActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsMention, error)
DeserializeMentionActivityStreams returns the deserialization method for the "ActivityStreamsMention" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeMoveActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeMoveActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsMove, error)
DeserializeMoveActivityStreams returns the deserialization method for the "ActivityStreamsMove" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeNamePropertyActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeNamePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsNameProperty, error)
DeserializeNamePropertyActivityStreams returns the deserialization method for the "ActivityStreamsNameProperty" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeNextPropertyActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeNextPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsNextProperty, error)
DeserializeNextPropertyActivityStreams returns the deserialization method for the "ActivityStreamsNextProperty" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeNoteActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeNoteActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsNote, error)
DeserializeNoteActivityStreams returns the deserialization method for the "ActivityStreamsNote" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeObjectActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeObjectActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsObject, error)
DeserializeObjectActivityStreams returns the deserialization method for the "ActivityStreamsObject" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeObjectPropertyActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeObjectPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsObjectProperty, error)
DeserializeObjectPropertyActivityStreams returns the deserialization method for the "ActivityStreamsObjectProperty" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeOfferActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeOfferActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsOffer, error)
DeserializeOfferActivityStreams returns the deserialization method for the "ActivityStreamsOffer" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeOneOfPropertyActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeOneOfPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsOneOfProperty, error)
DeserializeOneOfPropertyActivityStreams returns the deserialization method for the "ActivityStreamsOneOfProperty" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeOrderedCollectionActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeOrderedCollectionActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsOrderedCollection, error)
DeserializeOrderedCollectionActivityStreams returns the deserialization method for the "ActivityStreamsOrderedCollection" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeOrderedCollectionPageActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeOrderedCollectionPageActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsOrderedCollectionPage, error)
DeserializeOrderedCollectionPageActivityStreams returns the deserialization method for the "ActivityStreamsOrderedCollectionPage" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeOrderedItemsPropertyActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeOrderedItemsPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsOrderedItemsProperty, error)
DeserializeOrderedItemsPropertyActivityStreams returns the deserialization method for the "ActivityStreamsOrderedItemsProperty" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeOrganizationActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeOrganizationActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsOrganization, error)
DeserializeOrganizationActivityStreams returns the deserialization method for the "ActivityStreamsOrganization" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeOriginPropertyActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeOriginPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsOriginProperty, error)
DeserializeOriginPropertyActivityStreams returns the deserialization method for the "ActivityStreamsOriginProperty" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeOutboxPropertyActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeOutboxPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsOutboxProperty, error)
DeserializeOutboxPropertyActivityStreams returns the deserialization method for the "ActivityStreamsOutboxProperty" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeOwnerPropertyW3IDSecurityV1 ¶ added in v1.0.0
func (this Manager) DeserializeOwnerPropertyW3IDSecurityV1() func(map[string]interface{}, map[string]string) (vocab.W3IDSecurityV1OwnerProperty, error)
DeserializeOwnerPropertyW3IDSecurityV1 returns the deserialization method for the "W3IDSecurityV1OwnerProperty" non-functional property in the vocabulary "W3IDSecurityV1"
func (Manager) DeserializePageActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializePageActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsPage, error)
DeserializePageActivityStreams returns the deserialization method for the "ActivityStreamsPage" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializePartOfPropertyActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializePartOfPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsPartOfProperty, error)
DeserializePartOfPropertyActivityStreams returns the deserialization method for the "ActivityStreamsPartOfProperty" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializePersonActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializePersonActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsPerson, error)
DeserializePersonActivityStreams returns the deserialization method for the "ActivityStreamsPerson" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializePlaceActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializePlaceActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsPlace, error)
DeserializePlaceActivityStreams returns the deserialization method for the "ActivityStreamsPlace" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializePreferredUsernamePropertyActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializePreferredUsernamePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsPreferredUsernameProperty, error)
DeserializePreferredUsernamePropertyActivityStreams returns the deserialization method for the "ActivityStreamsPreferredUsernameProperty" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializePrevPropertyActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializePrevPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsPrevProperty, error)
DeserializePrevPropertyActivityStreams returns the deserialization method for the "ActivityStreamsPrevProperty" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializePreviewPropertyActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializePreviewPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsPreviewProperty, error)
DeserializePreviewPropertyActivityStreams returns the deserialization method for the "ActivityStreamsPreviewProperty" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeProfileActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeProfileActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsProfile, error)
DeserializeProfileActivityStreams returns the deserialization method for the "ActivityStreamsProfile" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializePublicKeyPemPropertyW3IDSecurityV1 ¶ added in v1.0.0
func (this Manager) DeserializePublicKeyPemPropertyW3IDSecurityV1() func(map[string]interface{}, map[string]string) (vocab.W3IDSecurityV1PublicKeyPemProperty, error)
DeserializePublicKeyPemPropertyW3IDSecurityV1 returns the deserialization method for the "W3IDSecurityV1PublicKeyPemProperty" non-functional property in the vocabulary "W3IDSecurityV1"
func (Manager) DeserializePublicKeyPropertyW3IDSecurityV1 ¶ added in v1.0.0
func (this Manager) DeserializePublicKeyPropertyW3IDSecurityV1() func(map[string]interface{}, map[string]string) (vocab.W3IDSecurityV1PublicKeyProperty, error)
DeserializePublicKeyPropertyW3IDSecurityV1 returns the deserialization method for the "W3IDSecurityV1PublicKeyProperty" non-functional property in the vocabulary "W3IDSecurityV1"
func (Manager) DeserializePublicKeyW3IDSecurityV1 ¶ added in v1.0.0
func (this Manager) DeserializePublicKeyW3IDSecurityV1() func(map[string]interface{}, map[string]string) (vocab.W3IDSecurityV1PublicKey, error)
DeserializePublicKeyW3IDSecurityV1 returns the deserialization method for the "W3IDSecurityV1PublicKey" non-functional property in the vocabulary "W3IDSecurityV1"
func (Manager) DeserializePublishedPropertyActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializePublishedPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsPublishedProperty, error)
DeserializePublishedPropertyActivityStreams returns the deserialization method for the "ActivityStreamsPublishedProperty" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializePushForgeFed ¶ added in v1.0.0
func (this Manager) DeserializePushForgeFed() func(map[string]interface{}, map[string]string) (vocab.ForgeFedPush, error)
DeserializePushForgeFed returns the deserialization method for the "ForgeFedPush" non-functional property in the vocabulary "ForgeFed"
func (Manager) DeserializeQuestionActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeQuestionActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsQuestion, error)
DeserializeQuestionActivityStreams returns the deserialization method for the "ActivityStreamsQuestion" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeRadiusPropertyActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeRadiusPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsRadiusProperty, error)
DeserializeRadiusPropertyActivityStreams returns the deserialization method for the "ActivityStreamsRadiusProperty" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeReadActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeReadActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsRead, error)
DeserializeReadActivityStreams returns the deserialization method for the "ActivityStreamsRead" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeRefPropertyForgeFed ¶ added in v1.0.0
func (this Manager) DeserializeRefPropertyForgeFed() func(map[string]interface{}, map[string]string) (vocab.ForgeFedRefProperty, error)
DeserializeRefPropertyForgeFed returns the deserialization method for the "ForgeFedRefProperty" non-functional property in the vocabulary "ForgeFed"
func (Manager) DeserializeRejectActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeRejectActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsReject, error)
DeserializeRejectActivityStreams returns the deserialization method for the "ActivityStreamsReject" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeRelPropertyActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeRelPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsRelProperty, error)
DeserializeRelPropertyActivityStreams returns the deserialization method for the "ActivityStreamsRelProperty" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeRelationshipActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeRelationshipActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsRelationship, error)
DeserializeRelationshipActivityStreams returns the deserialization method for the "ActivityStreamsRelationship" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeRelationshipPropertyActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeRelationshipPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsRelationshipProperty, error)
DeserializeRelationshipPropertyActivityStreams returns the deserialization method for the "ActivityStreamsRelationshipProperty" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeRemoveActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeRemoveActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsRemove, error)
DeserializeRemoveActivityStreams returns the deserialization method for the "ActivityStreamsRemove" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeRepliesPropertyActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeRepliesPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsRepliesProperty, error)
DeserializeRepliesPropertyActivityStreams returns the deserialization method for the "ActivityStreamsRepliesProperty" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeRepositoryForgeFed ¶ added in v1.0.0
func (this Manager) DeserializeRepositoryForgeFed() func(map[string]interface{}, map[string]string) (vocab.ForgeFedRepository, error)
DeserializeRepositoryForgeFed returns the deserialization method for the "ForgeFedRepository" non-functional property in the vocabulary "ForgeFed"
func (Manager) DeserializeResultPropertyActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeResultPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsResultProperty, error)
DeserializeResultPropertyActivityStreams returns the deserialization method for the "ActivityStreamsResultProperty" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeServiceActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeServiceActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsService, error)
DeserializeServiceActivityStreams returns the deserialization method for the "ActivityStreamsService" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeSharesPropertyActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeSharesPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSharesProperty, error)
DeserializeSharesPropertyActivityStreams returns the deserialization method for the "ActivityStreamsSharesProperty" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeSignatureAlgorithmPropertyToot ¶ added in v1.0.0
func (this Manager) DeserializeSignatureAlgorithmPropertyToot() func(map[string]interface{}, map[string]string) (vocab.TootSignatureAlgorithmProperty, error)
DeserializeSignatureAlgorithmPropertyToot returns the deserialization method for the "TootSignatureAlgorithmProperty" non-functional property in the vocabulary "Toot"
func (Manager) DeserializeSignatureValuePropertyToot ¶ added in v1.0.0
func (this Manager) DeserializeSignatureValuePropertyToot() func(map[string]interface{}, map[string]string) (vocab.TootSignatureValueProperty, error)
DeserializeSignatureValuePropertyToot returns the deserialization method for the "TootSignatureValueProperty" non-functional property in the vocabulary "Toot"
func (Manager) DeserializeSourcePropertyActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeSourcePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSourceProperty, error)
DeserializeSourcePropertyActivityStreams returns the deserialization method for the "ActivityStreamsSourceProperty" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeStartIndexPropertyActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeStartIndexPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsStartIndexProperty, error)
DeserializeStartIndexPropertyActivityStreams returns the deserialization method for the "ActivityStreamsStartIndexProperty" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeStartTimePropertyActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeStartTimePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsStartTimeProperty, error)
DeserializeStartTimePropertyActivityStreams returns the deserialization method for the "ActivityStreamsStartTimeProperty" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeStreamsPropertyActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeStreamsPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsStreamsProperty, error)
DeserializeStreamsPropertyActivityStreams returns the deserialization method for the "ActivityStreamsStreamsProperty" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeSubjectPropertyActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeSubjectPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSubjectProperty, error)
DeserializeSubjectPropertyActivityStreams returns the deserialization method for the "ActivityStreamsSubjectProperty" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeSummaryPropertyActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeSummaryPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSummaryProperty, error)
DeserializeSummaryPropertyActivityStreams returns the deserialization method for the "ActivityStreamsSummaryProperty" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeTagPropertyActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeTagPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsTagProperty, error)
DeserializeTagPropertyActivityStreams returns the deserialization method for the "ActivityStreamsTagProperty" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeTargetPropertyActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeTargetPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsTargetProperty, error)
DeserializeTargetPropertyActivityStreams returns the deserialization method for the "ActivityStreamsTargetProperty" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeTeamPropertyForgeFed ¶ added in v1.0.0
func (this Manager) DeserializeTeamPropertyForgeFed() func(map[string]interface{}, map[string]string) (vocab.ForgeFedTeamProperty, error)
DeserializeTeamPropertyForgeFed returns the deserialization method for the "ForgeFedTeamProperty" non-functional property in the vocabulary "ForgeFed"
func (Manager) DeserializeTentativeAcceptActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeTentativeAcceptActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsTentativeAccept, error)
DeserializeTentativeAcceptActivityStreams returns the deserialization method for the "ActivityStreamsTentativeAccept" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeTentativeRejectActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeTentativeRejectActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsTentativeReject, error)
DeserializeTentativeRejectActivityStreams returns the deserialization method for the "ActivityStreamsTentativeReject" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeTicketDependencyForgeFed ¶ added in v1.0.0
func (this Manager) DeserializeTicketDependencyForgeFed() func(map[string]interface{}, map[string]string) (vocab.ForgeFedTicketDependency, error)
DeserializeTicketDependencyForgeFed returns the deserialization method for the "ForgeFedTicketDependency" non-functional property in the vocabulary "ForgeFed"
func (Manager) DeserializeTicketForgeFed ¶ added in v1.0.0
func (this Manager) DeserializeTicketForgeFed() func(map[string]interface{}, map[string]string) (vocab.ForgeFedTicket, error)
DeserializeTicketForgeFed returns the deserialization method for the "ForgeFedTicket" non-functional property in the vocabulary "ForgeFed"
func (Manager) DeserializeTicketsTrackedByPropertyForgeFed ¶ added in v1.0.0
func (this Manager) DeserializeTicketsTrackedByPropertyForgeFed() func(map[string]interface{}, map[string]string) (vocab.ForgeFedTicketsTrackedByProperty, error)
DeserializeTicketsTrackedByPropertyForgeFed returns the deserialization method for the "ForgeFedTicketsTrackedByProperty" non-functional property in the vocabulary "ForgeFed"
func (Manager) DeserializeToPropertyActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeToPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsToProperty, error)
DeserializeToPropertyActivityStreams returns the deserialization method for the "ActivityStreamsToProperty" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeTombstoneActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeTombstoneActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsTombstone, error)
DeserializeTombstoneActivityStreams returns the deserialization method for the "ActivityStreamsTombstone" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeTotalItemsPropertyActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeTotalItemsPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsTotalItemsProperty, error)
DeserializeTotalItemsPropertyActivityStreams returns the deserialization method for the "ActivityStreamsTotalItemsProperty" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeTracksTicketsForPropertyForgeFed ¶ added in v1.0.0
func (this Manager) DeserializeTracksTicketsForPropertyForgeFed() func(map[string]interface{}, map[string]string) (vocab.ForgeFedTracksTicketsForProperty, error)
DeserializeTracksTicketsForPropertyForgeFed returns the deserialization method for the "ForgeFedTracksTicketsForProperty" non-functional property in the vocabulary "ForgeFed"
func (Manager) DeserializeTravelActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeTravelActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsTravel, error)
DeserializeTravelActivityStreams returns the deserialization method for the "ActivityStreamsTravel" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeTypePropertyJSONLD ¶ added in v1.0.0
func (this Manager) DeserializeTypePropertyJSONLD() func(map[string]interface{}, map[string]string) (vocab.JSONLDTypeProperty, error)
DeserializeTypePropertyJSONLD returns the deserialization method for the "JSONLDTypeProperty" non-functional property in the vocabulary "JSONLD"
func (Manager) DeserializeUndoActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeUndoActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsUndo, error)
DeserializeUndoActivityStreams returns the deserialization method for the "ActivityStreamsUndo" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeUnitsPropertyActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeUnitsPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsUnitsProperty, error)
DeserializeUnitsPropertyActivityStreams returns the deserialization method for the "ActivityStreamsUnitsProperty" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeUpdateActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeUpdateActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsUpdate, error)
DeserializeUpdateActivityStreams returns the deserialization method for the "ActivityStreamsUpdate" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeUpdatedPropertyActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeUpdatedPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsUpdatedProperty, error)
DeserializeUpdatedPropertyActivityStreams returns the deserialization method for the "ActivityStreamsUpdatedProperty" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeUrlPropertyActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeUrlPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsUrlProperty, error)
DeserializeUrlPropertyActivityStreams returns the deserialization method for the "ActivityStreamsUrlProperty" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeVideoActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeVideoActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsVideo, error)
DeserializeVideoActivityStreams returns the deserialization method for the "ActivityStreamsVideo" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeViewActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeViewActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsView, error)
DeserializeViewActivityStreams returns the deserialization method for the "ActivityStreamsView" non-functional property in the vocabulary "ActivityStreams"
func (Manager) DeserializeVotersCountPropertyToot ¶ added in v1.0.0
func (this Manager) DeserializeVotersCountPropertyToot() func(map[string]interface{}, map[string]string) (vocab.TootVotersCountProperty, error)
DeserializeVotersCountPropertyToot returns the deserialization method for the "TootVotersCountProperty" non-functional property in the vocabulary "Toot"
func (Manager) DeserializeWidthPropertyActivityStreams ¶ added in v1.0.0
func (this Manager) DeserializeWidthPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsWidthProperty, error)
DeserializeWidthPropertyActivityStreams returns the deserialization method for the "ActivityStreamsWidthProperty" non-functional property in the vocabulary "ActivityStreams"
type Resolver ¶
type Resolver interface { // Resolve will attempt to resolve an untyped ActivityStreams value into a // Go concrete type. Resolve(ctx context.Context, o ActivityStreamsInterface) error }
Resolver represents any TypeResolver.
type TypePredicatedResolver ¶ added in v1.0.0
type TypePredicatedResolver struct {
// contains filtered or unexported fields
}
TypePredicatedResolver resolves ActivityStreams values if the value satisfies a predicate condition based on its type.
func NewTypePredicatedResolver ¶ added in v1.0.0
func NewTypePredicatedResolver(delegate Resolver, predicate interface{}) (*TypePredicatedResolver, error)
NewTypePredicatedResolver creates a new Resolver that applies a predicate to an ActivityStreams value to determine whether to Resolve or not. The ActivityStreams value's type is examined to determine if the predicate can apply itself to the value. This guarantees the predicate will receive a concrete value whose underlying ActivityStreams type matches the concrete interface name. The predicate function must be of the form:
func(context.Context, <TypeInterface>) (bool, error)
where TypeInterface is the code-generated interface for an ActivityStreams type. An error is returned if the predicate does not match this signature.
func (TypePredicatedResolver) Apply ¶ added in v1.0.0
func (this TypePredicatedResolver) Apply(ctx context.Context, o ActivityStreamsInterface) (bool, error)
Apply uses a predicate to determine whether to resolve the ActivityStreams value. The predicate's signature is matched with the ActivityStreams value's type. This strictly assures that the predicate will only be passed ActivityStream objects whose type matches its interface. Returns an error if the ActivityStreams type does not match the predicate, is not a type handled by the generated code, or the resolver returns an error. Returns true if the predicate returned true.
type TypeResolver ¶ added in v1.0.0
type TypeResolver struct {
// contains filtered or unexported fields
}
TypeResolver resolves ActivityStreams values based on their type name.
func NewTypeResolver ¶ added in v1.0.0
func NewTypeResolver(callbacks ...interface{}) (*TypeResolver, error)
NewTypeResolver creates a new Resolver that examines the type of an ActivityStream value to determine what callback function to pass the concretely typed value. The callback is guaranteed to receive a value whose underlying ActivityStreams type matches the concrete interface name in its signature. The callback functions must be of the form:
func(context.Context, <TypeInterface>) error
where TypeInterface is the code-generated interface for an ActivityStream type. An error is returned if a callback function does not match this signature.
func (TypeResolver) Resolve ¶ added in v1.0.0
func (this TypeResolver) Resolve(ctx context.Context, o ActivityStreamsInterface) error
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.
Source Files ¶
- gen_consts.go
- gen_doc.go
- gen_init.go
- gen_json_resolver.go
- gen_manager.go
- gen_pkg_activitystreams_disjoint.go
- gen_pkg_activitystreams_extendedby.go
- gen_pkg_activitystreams_extends.go
- gen_pkg_activitystreams_isorextends.go
- gen_pkg_activitystreams_property_constructors.go
- gen_pkg_activitystreams_type_constructors.go
- gen_pkg_forgefed_disjoint.go
- gen_pkg_forgefed_extendedby.go
- gen_pkg_forgefed_extends.go
- gen_pkg_forgefed_isorextends.go
- gen_pkg_forgefed_property_constructors.go
- gen_pkg_forgefed_type_constructors.go
- gen_pkg_jsonld_property_constructors.go
- gen_pkg_toot_disjoint.go
- gen_pkg_toot_extendedby.go
- gen_pkg_toot_extends.go
- gen_pkg_toot_isorextends.go
- gen_pkg_toot_property_constructors.go
- gen_pkg_toot_type_constructors.go
- gen_pkg_w3idsecurityv1_disjoint.go
- gen_pkg_w3idsecurityv1_extendedby.go
- gen_pkg_w3idsecurityv1_extends.go
- gen_pkg_w3idsecurityv1_isorextends.go
- gen_pkg_w3idsecurityv1_property_constructors.go
- gen_pkg_w3idsecurityv1_type_constructors.go
- gen_resolver_utils.go
- gen_type_predicated_resolver.go
- gen_type_resolver.go
- util.go
Directories ¶
Path | Synopsis |
---|---|
impl
|
|
activitystreams/property_accuracy
Package propertyaccuracy contains the implementation for the accuracy property.
|
Package propertyaccuracy contains the implementation for the accuracy property. |
activitystreams/property_actor
Package propertyactor contains the implementation for the actor property.
|
Package propertyactor contains the implementation for the actor property. |
activitystreams/property_altitude
Package propertyaltitude contains the implementation for the altitude property.
|
Package propertyaltitude contains the implementation for the altitude property. |
activitystreams/property_anyof
Package propertyanyof contains the implementation for the anyOf property.
|
Package propertyanyof contains the implementation for the anyOf property. |
activitystreams/property_attachment
Package propertyattachment contains the implementation for the attachment property.
|
Package propertyattachment contains the implementation for the attachment property. |
activitystreams/property_attributedto
Package propertyattributedto contains the implementation for the attributedTo property.
|
Package propertyattributedto contains the implementation for the attributedTo property. |
activitystreams/property_audience
Package propertyaudience contains the implementation for the audience property.
|
Package propertyaudience contains the implementation for the audience property. |
activitystreams/property_bcc
Package propertybcc contains the implementation for the bcc property.
|
Package propertybcc contains the implementation for the bcc property. |
activitystreams/property_bto
Package propertybto contains the implementation for the bto property.
|
Package propertybto contains the implementation for the bto property. |
activitystreams/property_cc
Package propertycc contains the implementation for the cc property.
|
Package propertycc contains the implementation for the cc property. |
activitystreams/property_closed
Package propertyclosed contains the implementation for the closed property.
|
Package propertyclosed contains the implementation for the closed property. |
activitystreams/property_content
Package propertycontent contains the implementation for the content property.
|
Package propertycontent contains the implementation for the content property. |
activitystreams/property_context
Package propertycontext contains the implementation for the context property.
|
Package propertycontext contains the implementation for the context property. |
activitystreams/property_current
Package propertycurrent contains the implementation for the current property.
|
Package propertycurrent contains the implementation for the current property. |
activitystreams/property_deleted
Package propertydeleted contains the implementation for the deleted property.
|
Package propertydeleted contains the implementation for the deleted property. |
activitystreams/property_describes
Package propertydescribes contains the implementation for the describes property.
|
Package propertydescribes contains the implementation for the describes property. |
activitystreams/property_duration
Package propertyduration contains the implementation for the duration property.
|
Package propertyduration contains the implementation for the duration property. |
activitystreams/property_endtime
Package propertyendtime contains the implementation for the endTime property.
|
Package propertyendtime contains the implementation for the endTime property. |
activitystreams/property_first
Package propertyfirst contains the implementation for the first property.
|
Package propertyfirst contains the implementation for the first property. |
activitystreams/property_followers
Package propertyfollowers contains the implementation for the followers property.
|
Package propertyfollowers contains the implementation for the followers property. |
activitystreams/property_following
Package propertyfollowing contains the implementation for the following property.
|
Package propertyfollowing contains the implementation for the following property. |
activitystreams/property_formertype
Package propertyformertype contains the implementation for the formerType property.
|
Package propertyformertype contains the implementation for the formerType property. |
activitystreams/property_generator
Package propertygenerator contains the implementation for the generator property.
|
Package propertygenerator contains the implementation for the generator property. |
activitystreams/property_height
Package propertyheight contains the implementation for the height property.
|
Package propertyheight contains the implementation for the height property. |
activitystreams/property_href
Package propertyhref contains the implementation for the href property.
|
Package propertyhref contains the implementation for the href property. |
activitystreams/property_hreflang
Package propertyhreflang contains the implementation for the hreflang property.
|
Package propertyhreflang contains the implementation for the hreflang property. |
activitystreams/property_icon
Package propertyicon contains the implementation for the icon property.
|
Package propertyicon contains the implementation for the icon property. |
activitystreams/property_image
Package propertyimage contains the implementation for the image property.
|
Package propertyimage contains the implementation for the image property. |
activitystreams/property_inbox
Package propertyinbox contains the implementation for the inbox property.
|
Package propertyinbox contains the implementation for the inbox property. |
activitystreams/property_inreplyto
Package propertyinreplyto contains the implementation for the inReplyTo property.
|
Package propertyinreplyto contains the implementation for the inReplyTo property. |
activitystreams/property_instrument
Package propertyinstrument contains the implementation for the instrument property.
|
Package propertyinstrument contains the implementation for the instrument property. |
activitystreams/property_items
Package propertyitems contains the implementation for the items property.
|
Package propertyitems contains the implementation for the items property. |
activitystreams/property_last
Package propertylast contains the implementation for the last property.
|
Package propertylast contains the implementation for the last property. |
activitystreams/property_latitude
Package propertylatitude contains the implementation for the latitude property.
|
Package propertylatitude contains the implementation for the latitude property. |
activitystreams/property_liked
Package propertyliked contains the implementation for the liked property.
|
Package propertyliked contains the implementation for the liked property. |
activitystreams/property_likes
Package propertylikes contains the implementation for the likes property.
|
Package propertylikes contains the implementation for the likes property. |
activitystreams/property_location
Package propertylocation contains the implementation for the location property.
|
Package propertylocation contains the implementation for the location property. |
activitystreams/property_longitude
Package propertylongitude contains the implementation for the longitude property.
|
Package propertylongitude contains the implementation for the longitude property. |
activitystreams/property_mediatype
Package propertymediatype contains the implementation for the mediaType property.
|
Package propertymediatype contains the implementation for the mediaType property. |
activitystreams/property_name
Package propertyname contains the implementation for the name property.
|
Package propertyname contains the implementation for the name property. |
activitystreams/property_next
Package propertynext contains the implementation for the next property.
|
Package propertynext contains the implementation for the next property. |
activitystreams/property_object
Package propertyobject contains the implementation for the object property.
|
Package propertyobject contains the implementation for the object property. |
activitystreams/property_oneof
Package propertyoneof contains the implementation for the oneOf property.
|
Package propertyoneof contains the implementation for the oneOf property. |
activitystreams/property_ordereditems
Package propertyordereditems contains the implementation for the orderedItems property.
|
Package propertyordereditems contains the implementation for the orderedItems property. |
activitystreams/property_origin
Package propertyorigin contains the implementation for the origin property.
|
Package propertyorigin contains the implementation for the origin property. |
activitystreams/property_outbox
Package propertyoutbox contains the implementation for the outbox property.
|
Package propertyoutbox contains the implementation for the outbox property. |
activitystreams/property_partof
Package propertypartof contains the implementation for the partOf property.
|
Package propertypartof contains the implementation for the partOf property. |
activitystreams/property_preferredusername
Package propertypreferredusername contains the implementation for the preferredUsername property.
|
Package propertypreferredusername contains the implementation for the preferredUsername property. |
activitystreams/property_prev
Package propertyprev contains the implementation for the prev property.
|
Package propertyprev contains the implementation for the prev property. |
activitystreams/property_preview
Package propertypreview contains the implementation for the preview property.
|
Package propertypreview contains the implementation for the preview property. |
activitystreams/property_published
Package propertypublished contains the implementation for the published property.
|
Package propertypublished contains the implementation for the published property. |
activitystreams/property_radius
Package propertyradius contains the implementation for the radius property.
|
Package propertyradius contains the implementation for the radius property. |
activitystreams/property_rel
Package propertyrel contains the implementation for the rel property.
|
Package propertyrel contains the implementation for the rel property. |
activitystreams/property_relationship
Package propertyrelationship contains the implementation for the relationship property.
|
Package propertyrelationship contains the implementation for the relationship property. |
activitystreams/property_replies
Package propertyreplies contains the implementation for the replies property.
|
Package propertyreplies contains the implementation for the replies property. |
activitystreams/property_result
Package propertyresult contains the implementation for the result property.
|
Package propertyresult contains the implementation for the result property. |
activitystreams/property_shares
Package propertyshares contains the implementation for the shares property.
|
Package propertyshares contains the implementation for the shares property. |
activitystreams/property_source
Package propertysource contains the implementation for the source property.
|
Package propertysource contains the implementation for the source property. |
activitystreams/property_startindex
Package propertystartindex contains the implementation for the startIndex property.
|
Package propertystartindex contains the implementation for the startIndex property. |
activitystreams/property_starttime
Package propertystarttime contains the implementation for the startTime property.
|
Package propertystarttime contains the implementation for the startTime property. |
activitystreams/property_streams
Package propertystreams contains the implementation for the streams property.
|
Package propertystreams contains the implementation for the streams property. |
activitystreams/property_subject
Package propertysubject contains the implementation for the subject property.
|
Package propertysubject contains the implementation for the subject property. |
activitystreams/property_summary
Package propertysummary contains the implementation for the summary property.
|
Package propertysummary contains the implementation for the summary property. |
activitystreams/property_tag
Package propertytag contains the implementation for the tag property.
|
Package propertytag contains the implementation for the tag property. |
activitystreams/property_target
Package propertytarget contains the implementation for the target property.
|
Package propertytarget contains the implementation for the target property. |
activitystreams/property_to
Package propertyto contains the implementation for the to property.
|
Package propertyto contains the implementation for the to property. |
activitystreams/property_totalitems
Package propertytotalitems contains the implementation for the totalItems property.
|
Package propertytotalitems contains the implementation for the totalItems property. |
activitystreams/property_units
Package propertyunits contains the implementation for the units property.
|
Package propertyunits contains the implementation for the units property. |
activitystreams/property_updated
Package propertyupdated contains the implementation for the updated property.
|
Package propertyupdated contains the implementation for the updated property. |
activitystreams/property_url
Package propertyurl contains the implementation for the url property.
|
Package propertyurl contains the implementation for the url property. |
activitystreams/property_width
Package propertywidth contains the implementation for the width property.
|
Package propertywidth contains the implementation for the width property. |
activitystreams/type_accept
Package typeaccept contains the implementation for the Accept type.
|
Package typeaccept contains the implementation for the Accept type. |
activitystreams/type_activity
Package typeactivity contains the implementation for the Activity type.
|
Package typeactivity contains the implementation for the Activity type. |
activitystreams/type_add
Package typeadd contains the implementation for the Add type.
|
Package typeadd contains the implementation for the Add type. |
activitystreams/type_announce
Package typeannounce contains the implementation for the Announce type.
|
Package typeannounce contains the implementation for the Announce type. |
activitystreams/type_application
Package typeapplication contains the implementation for the Application type.
|
Package typeapplication contains the implementation for the Application type. |
activitystreams/type_arrive
Package typearrive contains the implementation for the Arrive type.
|
Package typearrive contains the implementation for the Arrive type. |
activitystreams/type_article
Package typearticle contains the implementation for the Article type.
|
Package typearticle contains the implementation for the Article type. |
activitystreams/type_audio
Package typeaudio contains the implementation for the Audio type.
|
Package typeaudio contains the implementation for the Audio type. |
activitystreams/type_block
Package typeblock contains the implementation for the Block type.
|
Package typeblock contains the implementation for the Block type. |
activitystreams/type_collection
Package typecollection contains the implementation for the Collection type.
|
Package typecollection contains the implementation for the Collection type. |
activitystreams/type_collectionpage
Package typecollectionpage contains the implementation for the CollectionPage type.
|
Package typecollectionpage contains the implementation for the CollectionPage type. |
activitystreams/type_create
Package typecreate contains the implementation for the Create type.
|
Package typecreate contains the implementation for the Create type. |
activitystreams/type_delete
Package typedelete contains the implementation for the Delete type.
|
Package typedelete contains the implementation for the Delete type. |
activitystreams/type_dislike
Package typedislike contains the implementation for the Dislike type.
|
Package typedislike contains the implementation for the Dislike type. |
activitystreams/type_document
Package typedocument contains the implementation for the Document type.
|
Package typedocument contains the implementation for the Document type. |
activitystreams/type_event
Package typeevent contains the implementation for the Event type.
|
Package typeevent contains the implementation for the Event type. |
activitystreams/type_flag
Package typeflag contains the implementation for the Flag type.
|
Package typeflag contains the implementation for the Flag type. |
activitystreams/type_follow
Package typefollow contains the implementation for the Follow type.
|
Package typefollow contains the implementation for the Follow type. |
activitystreams/type_group
Package typegroup contains the implementation for the Group type.
|
Package typegroup contains the implementation for the Group type. |
activitystreams/type_ignore
Package typeignore contains the implementation for the Ignore type.
|
Package typeignore contains the implementation for the Ignore type. |
activitystreams/type_image
Package typeimage contains the implementation for the Image type.
|
Package typeimage contains the implementation for the Image type. |
activitystreams/type_intransitiveactivity
Package typeintransitiveactivity contains the implementation for the IntransitiveActivity type.
|
Package typeintransitiveactivity contains the implementation for the IntransitiveActivity type. |
activitystreams/type_invite
Package typeinvite contains the implementation for the Invite type.
|
Package typeinvite contains the implementation for the Invite type. |
activitystreams/type_join
Package typejoin contains the implementation for the Join type.
|
Package typejoin contains the implementation for the Join type. |
activitystreams/type_leave
Package typeleave contains the implementation for the Leave type.
|
Package typeleave contains the implementation for the Leave type. |
activitystreams/type_like
Package typelike contains the implementation for the Like type.
|
Package typelike contains the implementation for the Like type. |
activitystreams/type_link
Package typelink contains the implementation for the Link type.
|
Package typelink contains the implementation for the Link type. |
activitystreams/type_listen
Package typelisten contains the implementation for the Listen type.
|
Package typelisten contains the implementation for the Listen type. |
activitystreams/type_mention
Package typemention contains the implementation for the Mention type.
|
Package typemention contains the implementation for the Mention type. |
activitystreams/type_move
Package typemove contains the implementation for the Move type.
|
Package typemove contains the implementation for the Move type. |
activitystreams/type_note
Package typenote contains the implementation for the Note type.
|
Package typenote contains the implementation for the Note type. |
activitystreams/type_object
Package typeobject contains the implementation for the Object type.
|
Package typeobject contains the implementation for the Object type. |
activitystreams/type_offer
Package typeoffer contains the implementation for the Offer type.
|
Package typeoffer contains the implementation for the Offer type. |
activitystreams/type_orderedcollection
Package typeorderedcollection contains the implementation for the OrderedCollection type.
|
Package typeorderedcollection contains the implementation for the OrderedCollection type. |
activitystreams/type_orderedcollectionpage
Package typeorderedcollectionpage contains the implementation for the OrderedCollectionPage type.
|
Package typeorderedcollectionpage contains the implementation for the OrderedCollectionPage type. |
activitystreams/type_organization
Package typeorganization contains the implementation for the Organization type.
|
Package typeorganization contains the implementation for the Organization type. |
activitystreams/type_page
Package typepage contains the implementation for the Page type.
|
Package typepage contains the implementation for the Page type. |
activitystreams/type_person
Package typeperson contains the implementation for the Person type.
|
Package typeperson contains the implementation for the Person type. |
activitystreams/type_place
Package typeplace contains the implementation for the Place type.
|
Package typeplace contains the implementation for the Place type. |
activitystreams/type_profile
Package typeprofile contains the implementation for the Profile type.
|
Package typeprofile contains the implementation for the Profile type. |
activitystreams/type_question
Package typequestion contains the implementation for the Question type.
|
Package typequestion contains the implementation for the Question type. |
activitystreams/type_read
Package typeread contains the implementation for the Read type.
|
Package typeread contains the implementation for the Read type. |
activitystreams/type_reject
Package typereject contains the implementation for the Reject type.
|
Package typereject contains the implementation for the Reject type. |
activitystreams/type_relationship
Package typerelationship contains the implementation for the Relationship type.
|
Package typerelationship contains the implementation for the Relationship type. |
activitystreams/type_remove
Package typeremove contains the implementation for the Remove type.
|
Package typeremove contains the implementation for the Remove type. |
activitystreams/type_service
Package typeservice contains the implementation for the Service type.
|
Package typeservice contains the implementation for the Service type. |
activitystreams/type_tentativeaccept
Package typetentativeaccept contains the implementation for the TentativeAccept type.
|
Package typetentativeaccept contains the implementation for the TentativeAccept type. |
activitystreams/type_tentativereject
Package typetentativereject contains the implementation for the TentativeReject type.
|
Package typetentativereject contains the implementation for the TentativeReject type. |
activitystreams/type_tombstone
Package typetombstone contains the implementation for the Tombstone type.
|
Package typetombstone contains the implementation for the Tombstone type. |
activitystreams/type_travel
Package typetravel contains the implementation for the Travel type.
|
Package typetravel contains the implementation for the Travel type. |
activitystreams/type_undo
Package typeundo contains the implementation for the Undo type.
|
Package typeundo contains the implementation for the Undo type. |
activitystreams/type_update
Package typeupdate contains the implementation for the Update type.
|
Package typeupdate contains the implementation for the Update type. |
activitystreams/type_video
Package typevideo contains the implementation for the Video type.
|
Package typevideo contains the implementation for the Video type. |
activitystreams/type_view
Package typeview contains the implementation for the View type.
|
Package typeview contains the implementation for the View type. |
forgefed/property_assignedto
Package propertyassignedto contains the implementation for the assignedTo property.
|
Package propertyassignedto contains the implementation for the assignedTo property. |
forgefed/property_committed
Package propertycommitted contains the implementation for the committed property.
|
Package propertycommitted contains the implementation for the committed property. |
forgefed/property_committedby
Package propertycommittedby contains the implementation for the committedBy property.
|
Package propertycommittedby contains the implementation for the committedBy property. |
forgefed/property_dependants
Package propertydependants contains the implementation for the dependants property.
|
Package propertydependants contains the implementation for the dependants property. |
forgefed/property_dependedby
Package propertydependedby contains the implementation for the dependedBy property.
|
Package propertydependedby contains the implementation for the dependedBy property. |
forgefed/property_dependencies
Package propertydependencies contains the implementation for the dependencies property.
|
Package propertydependencies contains the implementation for the dependencies property. |
forgefed/property_dependson
Package propertydependson contains the implementation for the dependsOn property.
|
Package propertydependson contains the implementation for the dependsOn property. |
forgefed/property_description
Package propertydescription contains the implementation for the description property.
|
Package propertydescription contains the implementation for the description property. |
forgefed/property_earlyitems
Package propertyearlyitems contains the implementation for the earlyItems property.
|
Package propertyearlyitems contains the implementation for the earlyItems property. |
forgefed/property_filesadded
Package propertyfilesadded contains the implementation for the filesAdded property.
|
Package propertyfilesadded contains the implementation for the filesAdded property. |
forgefed/property_filesmodified
Package propertyfilesmodified contains the implementation for the filesModified property.
|
Package propertyfilesmodified contains the implementation for the filesModified property. |
forgefed/property_filesremoved
Package propertyfilesremoved contains the implementation for the filesRemoved property.
|
Package propertyfilesremoved contains the implementation for the filesRemoved property. |
forgefed/property_forks
Package propertyforks contains the implementation for the forks property.
|
Package propertyforks contains the implementation for the forks property. |
forgefed/property_hash
Package propertyhash contains the implementation for the hash property.
|
Package propertyhash contains the implementation for the hash property. |
forgefed/property_isresolved
Package propertyisresolved contains the implementation for the isResolved property.
|
Package propertyisresolved contains the implementation for the isResolved property. |
forgefed/property_ref
Package propertyref contains the implementation for the ref property.
|
Package propertyref contains the implementation for the ref property. |
forgefed/property_team
Package propertyteam contains the implementation for the team property.
|
Package propertyteam contains the implementation for the team property. |
forgefed/property_ticketstrackedby
Package propertyticketstrackedby contains the implementation for the ticketsTrackedBy property.
|
Package propertyticketstrackedby contains the implementation for the ticketsTrackedBy property. |
forgefed/property_tracksticketsfor
Package propertytracksticketsfor contains the implementation for the tracksTicketsFor property.
|
Package propertytracksticketsfor contains the implementation for the tracksTicketsFor property. |
forgefed/type_branch
Package typebranch contains the implementation for the Branch type.
|
Package typebranch contains the implementation for the Branch type. |
forgefed/type_commit
Package typecommit contains the implementation for the Commit type.
|
Package typecommit contains the implementation for the Commit type. |
forgefed/type_push
Package typepush contains the implementation for the Push type.
|
Package typepush contains the implementation for the Push type. |
forgefed/type_repository
Package typerepository contains the implementation for the Repository type.
|
Package typerepository contains the implementation for the Repository type. |
forgefed/type_ticket
Package typeticket contains the implementation for the Ticket type.
|
Package typeticket contains the implementation for the Ticket type. |
forgefed/type_ticketdependency
Package typeticketdependency contains the implementation for the TicketDependency type.
|
Package typeticketdependency contains the implementation for the TicketDependency type. |
jsonld/property_id
Package propertyid contains the implementation for the id property.
|
Package propertyid contains the implementation for the id property. |
jsonld/property_type
Package propertytype contains the implementation for the type property.
|
Package propertytype contains the implementation for the type property. |
toot/property_blurhash
Package propertyblurhash contains the implementation for the blurhash property.
|
Package propertyblurhash contains the implementation for the blurhash property. |
toot/property_discoverable
Package propertydiscoverable contains the implementation for the discoverable property.
|
Package propertydiscoverable contains the implementation for the discoverable property. |
toot/property_featured
Package propertyfeatured contains the implementation for the featured property.
|
Package propertyfeatured contains the implementation for the featured property. |
toot/property_signaturealgorithm
Package propertysignaturealgorithm contains the implementation for the signatureAlgorithm property.
|
Package propertysignaturealgorithm contains the implementation for the signatureAlgorithm property. |
toot/property_signaturevalue
Package propertysignaturevalue contains the implementation for the signatureValue property.
|
Package propertysignaturevalue contains the implementation for the signatureValue property. |
toot/property_voterscount
Package propertyvoterscount contains the implementation for the votersCount property.
|
Package propertyvoterscount contains the implementation for the votersCount property. |
toot/type_emoji
Package typeemoji contains the implementation for the Emoji type.
|
Package typeemoji contains the implementation for the Emoji type. |
toot/type_identityproof
Package typeidentityproof contains the implementation for the IdentityProof type.
|
Package typeidentityproof contains the implementation for the IdentityProof type. |
w3idsecurityv1/property_owner
Package propertyowner contains the implementation for the owner property.
|
Package propertyowner contains the implementation for the owner property. |
w3idsecurityv1/property_publickey
Package propertypublickey contains the implementation for the publicKey property.
|
Package propertypublickey contains the implementation for the publicKey property. |
w3idsecurityv1/property_publickeypem
Package propertypublickeypem contains the implementation for the publicKeyPem property.
|
Package propertypublickeypem contains the implementation for the publicKeyPem property. |
w3idsecurityv1/type_publickey
Package typepublickey contains the implementation for the PublicKey type.
|
Package typepublickey contains the implementation for the PublicKey type. |
values
|
|
Package vocab contains the interfaces for the JSONLD vocabulary.
|
Package vocab contains the interfaces for the JSONLD vocabulary. |