@ -22,6 +22,8 @@ type ActivityStreamsSourceProperty struct {
funkwhaleAlbumMember vocab . FunkwhaleAlbum
activitystreamsAnnounceMember vocab . ActivityStreamsAnnounce
gotosocialAnnounceApprovalMember vocab . GoToSocialAnnounceApproval
gotosocialAnnounceAuthorizationMember vocab . GoToSocialAnnounceAuthorization
gotosocialAnnounceRequestMember vocab . GoToSocialAnnounceRequest
activitystreamsApplicationMember vocab . ActivityStreamsApplication
activitystreamsArriveMember vocab . ActivityStreamsArrive
activitystreamsArticleMember vocab . ActivityStreamsArticle
@ -50,6 +52,8 @@ type ActivityStreamsSourceProperty struct {
funkwhaleLibraryMember vocab . FunkwhaleLibrary
activitystreamsLikeMember vocab . ActivityStreamsLike
gotosocialLikeApprovalMember vocab . GoToSocialLikeApproval
gotosocialLikeAuthorizationMember vocab . GoToSocialLikeAuthorization
gotosocialLikeRequestMember vocab . GoToSocialLikeRequest
activitystreamsListenMember vocab . ActivityStreamsListen
activitystreamsMentionMember vocab . ActivityStreamsMention
activitystreamsMoveMember vocab . ActivityStreamsMove
@ -69,6 +73,8 @@ type ActivityStreamsSourceProperty struct {
activitystreamsRelationshipMember vocab . ActivityStreamsRelationship
activitystreamsRemoveMember vocab . ActivityStreamsRemove
gotosocialReplyApprovalMember vocab . GoToSocialReplyApproval
gotosocialReplyAuthorizationMember vocab . GoToSocialReplyAuthorization
gotosocialReplyRequestMember vocab . GoToSocialReplyRequest
activitystreamsServiceMember vocab . ActivityStreamsService
activitystreamsTentativeAcceptMember vocab . ActivityStreamsTentativeAccept
activitystreamsTentativeRejectMember vocab . ActivityStreamsTentativeReject
@ -160,6 +166,18 @@ func DeserializeSourceProperty(m map[string]interface{}, aliasMap map[string]str
gotosocialAnnounceApprovalMember : v ,
}
return this , nil
} else if v , err := mgr . DeserializeAnnounceAuthorizationGoToSocial ( ) ( m , aliasMap ) ; err == nil {
this := & ActivityStreamsSourceProperty {
alias : alias ,
gotosocialAnnounceAuthorizationMember : v ,
}
return this , nil
} else if v , err := mgr . DeserializeAnnounceRequestGoToSocial ( ) ( m , aliasMap ) ; err == nil {
this := & ActivityStreamsSourceProperty {
alias : alias ,
gotosocialAnnounceRequestMember : v ,
}
return this , nil
} else if v , err := mgr . DeserializeApplicationActivityStreams ( ) ( m , aliasMap ) ; err == nil {
this := & ActivityStreamsSourceProperty {
activitystreamsApplicationMember : v ,
@ -328,6 +346,18 @@ func DeserializeSourceProperty(m map[string]interface{}, aliasMap map[string]str
gotosocialLikeApprovalMember : v ,
}
return this , nil
} else if v , err := mgr . DeserializeLikeAuthorizationGoToSocial ( ) ( m , aliasMap ) ; err == nil {
this := & ActivityStreamsSourceProperty {
alias : alias ,
gotosocialLikeAuthorizationMember : v ,
}
return this , nil
} else if v , err := mgr . DeserializeLikeRequestGoToSocial ( ) ( m , aliasMap ) ; err == nil {
this := & ActivityStreamsSourceProperty {
alias : alias ,
gotosocialLikeRequestMember : v ,
}
return this , nil
} else if v , err := mgr . DeserializeListenActivityStreams ( ) ( m , aliasMap ) ; err == nil {
this := & ActivityStreamsSourceProperty {
activitystreamsListenMember : v ,
@ -442,6 +472,18 @@ func DeserializeSourceProperty(m map[string]interface{}, aliasMap map[string]str
gotosocialReplyApprovalMember : v ,
}
return this , nil
} else if v , err := mgr . DeserializeReplyAuthorizationGoToSocial ( ) ( m , aliasMap ) ; err == nil {
this := & ActivityStreamsSourceProperty {
alias : alias ,
gotosocialReplyAuthorizationMember : v ,
}
return this , nil
} else if v , err := mgr . DeserializeReplyRequestGoToSocial ( ) ( m , aliasMap ) ; err == nil {
this := & ActivityStreamsSourceProperty {
alias : alias ,
gotosocialReplyRequestMember : v ,
}
return this , nil
} else if v , err := mgr . DeserializeServiceActivityStreams ( ) ( m , aliasMap ) ; err == nil {
this := & ActivityStreamsSourceProperty {
activitystreamsServiceMember : v ,
@ -529,6 +571,8 @@ func (this *ActivityStreamsSourceProperty) Clear() {
this . funkwhaleAlbumMember = nil
this . activitystreamsAnnounceMember = nil
this . gotosocialAnnounceApprovalMember = nil
this . gotosocialAnnounceAuthorizationMember = nil
this . gotosocialAnnounceRequestMember = nil
this . activitystreamsApplicationMember = nil
this . activitystreamsArriveMember = nil
this . activitystreamsArticleMember = nil
@ -557,6 +601,8 @@ func (this *ActivityStreamsSourceProperty) Clear() {
this . funkwhaleLibraryMember = nil
this . activitystreamsLikeMember = nil
this . gotosocialLikeApprovalMember = nil
this . gotosocialLikeAuthorizationMember = nil
this . gotosocialLikeRequestMember = nil
this . activitystreamsListenMember = nil
this . activitystreamsMentionMember = nil
this . activitystreamsMoveMember = nil
@ -576,6 +622,8 @@ func (this *ActivityStreamsSourceProperty) Clear() {
this . activitystreamsRelationshipMember = nil
this . activitystreamsRemoveMember = nil
this . gotosocialReplyApprovalMember = nil
this . gotosocialReplyAuthorizationMember = nil
this . gotosocialReplyRequestMember = nil
this . activitystreamsServiceMember = nil
this . activitystreamsTentativeAcceptMember = nil
this . activitystreamsTentativeRejectMember = nil
@ -999,6 +1047,20 @@ func (this ActivityStreamsSourceProperty) GetGoToSocialAnnounceApproval() vocab.
return this . gotosocialAnnounceApprovalMember
}
// GetGoToSocialAnnounceAuthorization returns the value of this property. When
// IsGoToSocialAnnounceAuthorization returns false,
// GetGoToSocialAnnounceAuthorization will return an arbitrary value.
func ( this ActivityStreamsSourceProperty ) GetGoToSocialAnnounceAuthorization ( ) vocab . GoToSocialAnnounceAuthorization {
return this . gotosocialAnnounceAuthorizationMember
}
// GetGoToSocialAnnounceRequest returns the value of this property. When
// IsGoToSocialAnnounceRequest returns false, GetGoToSocialAnnounceRequest
// will return an arbitrary value.
func ( this ActivityStreamsSourceProperty ) GetGoToSocialAnnounceRequest ( ) vocab . GoToSocialAnnounceRequest {
return this . gotosocialAnnounceRequestMember
}
// GetGoToSocialLikeApproval returns the value of this property. When
// IsGoToSocialLikeApproval returns false, GetGoToSocialLikeApproval will
// return an arbitrary value.
@ -1006,6 +1068,20 @@ func (this ActivityStreamsSourceProperty) GetGoToSocialLikeApproval() vocab.GoTo
return this . gotosocialLikeApprovalMember
}
// GetGoToSocialLikeAuthorization returns the value of this property. When
// IsGoToSocialLikeAuthorization returns false, GetGoToSocialLikeAuthorization
// will return an arbitrary value.
func ( this ActivityStreamsSourceProperty ) GetGoToSocialLikeAuthorization ( ) vocab . GoToSocialLikeAuthorization {
return this . gotosocialLikeAuthorizationMember
}
// GetGoToSocialLikeRequest returns the value of this property. When
// IsGoToSocialLikeRequest returns false, GetGoToSocialLikeRequest will return
// an arbitrary value.
func ( this ActivityStreamsSourceProperty ) GetGoToSocialLikeRequest ( ) vocab . GoToSocialLikeRequest {
return this . gotosocialLikeRequestMember
}
// GetGoToSocialReplyApproval returns the value of this property. When
// IsGoToSocialReplyApproval returns false, GetGoToSocialReplyApproval will
// return an arbitrary value.
@ -1013,6 +1089,20 @@ func (this ActivityStreamsSourceProperty) GetGoToSocialReplyApproval() vocab.GoT
return this . gotosocialReplyApprovalMember
}
// GetGoToSocialReplyAuthorization returns the value of this property. When
// IsGoToSocialReplyAuthorization returns false,
// GetGoToSocialReplyAuthorization will return an arbitrary value.
func ( this ActivityStreamsSourceProperty ) GetGoToSocialReplyAuthorization ( ) vocab . GoToSocialReplyAuthorization {
return this . gotosocialReplyAuthorizationMember
}
// GetGoToSocialReplyRequest returns the value of this property. When
// IsGoToSocialReplyRequest returns false, GetGoToSocialReplyRequest will
// return an arbitrary value.
func ( this ActivityStreamsSourceProperty ) GetGoToSocialReplyRequest ( ) vocab . GoToSocialReplyRequest {
return this . gotosocialReplyRequestMember
}
// GetIRI returns the IRI of this property. When IsIRI returns false, GetIRI will
// return an arbitrary value.
func ( this ActivityStreamsSourceProperty ) GetIRI ( ) * url . URL {
@ -1072,6 +1162,12 @@ func (this ActivityStreamsSourceProperty) GetType() vocab.Type {
if this . IsGoToSocialAnnounceApproval ( ) {
return this . GetGoToSocialAnnounceApproval ( )
}
if this . IsGoToSocialAnnounceAuthorization ( ) {
return this . GetGoToSocialAnnounceAuthorization ( )
}
if this . IsGoToSocialAnnounceRequest ( ) {
return this . GetGoToSocialAnnounceRequest ( )
}
if this . IsActivityStreamsApplication ( ) {
return this . GetActivityStreamsApplication ( )
}
@ -1156,6 +1252,12 @@ func (this ActivityStreamsSourceProperty) GetType() vocab.Type {
if this . IsGoToSocialLikeApproval ( ) {
return this . GetGoToSocialLikeApproval ( )
}
if this . IsGoToSocialLikeAuthorization ( ) {
return this . GetGoToSocialLikeAuthorization ( )
}
if this . IsGoToSocialLikeRequest ( ) {
return this . GetGoToSocialLikeRequest ( )
}
if this . IsActivityStreamsListen ( ) {
return this . GetActivityStreamsListen ( )
}
@ -1213,6 +1315,12 @@ func (this ActivityStreamsSourceProperty) GetType() vocab.Type {
if this . IsGoToSocialReplyApproval ( ) {
return this . GetGoToSocialReplyApproval ( )
}
if this . IsGoToSocialReplyAuthorization ( ) {
return this . GetGoToSocialReplyAuthorization ( )
}
if this . IsGoToSocialReplyRequest ( ) {
return this . GetGoToSocialReplyRequest ( )
}
if this . IsActivityStreamsService ( ) {
return this . GetActivityStreamsService ( )
}
@ -1257,6 +1365,8 @@ func (this ActivityStreamsSourceProperty) HasAny() bool {
this . IsFunkwhaleAlbum ( ) ||
this . IsActivityStreamsAnnounce ( ) ||
this . IsGoToSocialAnnounceApproval ( ) ||
this . IsGoToSocialAnnounceAuthorization ( ) ||
this . IsGoToSocialAnnounceRequest ( ) ||
this . IsActivityStreamsApplication ( ) ||
this . IsActivityStreamsArrive ( ) ||
this . IsActivityStreamsArticle ( ) ||
@ -1285,6 +1395,8 @@ func (this ActivityStreamsSourceProperty) HasAny() bool {
this . IsFunkwhaleLibrary ( ) ||
this . IsActivityStreamsLike ( ) ||
this . IsGoToSocialLikeApproval ( ) ||
this . IsGoToSocialLikeAuthorization ( ) ||
this . IsGoToSocialLikeRequest ( ) ||
this . IsActivityStreamsListen ( ) ||
this . IsActivityStreamsMention ( ) ||
this . IsActivityStreamsMove ( ) ||
@ -1304,6 +1416,8 @@ func (this ActivityStreamsSourceProperty) HasAny() bool {
this . IsActivityStreamsRelationship ( ) ||
this . IsActivityStreamsRemove ( ) ||
this . IsGoToSocialReplyApproval ( ) ||
this . IsGoToSocialReplyAuthorization ( ) ||
this . IsGoToSocialReplyRequest ( ) ||
this . IsActivityStreamsService ( ) ||
this . IsActivityStreamsTentativeAccept ( ) ||
this . IsActivityStreamsTentativeReject ( ) ||
@ -1735,6 +1849,21 @@ func (this ActivityStreamsSourceProperty) IsGoToSocialAnnounceApproval() bool {
return this . gotosocialAnnounceApprovalMember != nil
}
// IsGoToSocialAnnounceAuthorization returns true if this property has a type of
// "AnnounceAuthorization". When true, use the
// GetGoToSocialAnnounceAuthorization and SetGoToSocialAnnounceAuthorization
// methods to access and set this property.
func ( this ActivityStreamsSourceProperty ) IsGoToSocialAnnounceAuthorization ( ) bool {
return this . gotosocialAnnounceAuthorizationMember != nil
}
// IsGoToSocialAnnounceRequest returns true if this property has a type of
// "AnnounceRequest". When true, use the GetGoToSocialAnnounceRequest and
// SetGoToSocialAnnounceRequest methods to access and set this property.
func ( this ActivityStreamsSourceProperty ) IsGoToSocialAnnounceRequest ( ) bool {
return this . gotosocialAnnounceRequestMember != nil
}
// IsGoToSocialLikeApproval returns true if this property has a type of
// "LikeApproval". When true, use the GetGoToSocialLikeApproval and
// SetGoToSocialLikeApproval methods to access and set this property.
@ -1742,6 +1871,20 @@ func (this ActivityStreamsSourceProperty) IsGoToSocialLikeApproval() bool {
return this . gotosocialLikeApprovalMember != nil
}
// IsGoToSocialLikeAuthorization returns true if this property has a type of
// "LikeAuthorization". When true, use the GetGoToSocialLikeAuthorization and
// SetGoToSocialLikeAuthorization methods to access and set this property.
func ( this ActivityStreamsSourceProperty ) IsGoToSocialLikeAuthorization ( ) bool {
return this . gotosocialLikeAuthorizationMember != nil
}
// IsGoToSocialLikeRequest returns true if this property has a type of
// "LikeRequest". When true, use the GetGoToSocialLikeRequest and
// SetGoToSocialLikeRequest methods to access and set this property.
func ( this ActivityStreamsSourceProperty ) IsGoToSocialLikeRequest ( ) bool {
return this . gotosocialLikeRequestMember != nil
}
// IsGoToSocialReplyApproval returns true if this property has a type of
// "ReplyApproval". When true, use the GetGoToSocialReplyApproval and
// SetGoToSocialReplyApproval methods to access and set this property.
@ -1749,6 +1892,20 @@ func (this ActivityStreamsSourceProperty) IsGoToSocialReplyApproval() bool {
return this . gotosocialReplyApprovalMember != nil
}
// IsGoToSocialReplyAuthorization returns true if this property has a type of
// "ReplyAuthorization". When true, use the GetGoToSocialReplyAuthorization
// and SetGoToSocialReplyAuthorization methods to access and set this property.
func ( this ActivityStreamsSourceProperty ) IsGoToSocialReplyAuthorization ( ) bool {
return this . gotosocialReplyAuthorizationMember != nil
}
// IsGoToSocialReplyRequest returns true if this property has a type of
// "ReplyRequest". When true, use the GetGoToSocialReplyRequest and
// SetGoToSocialReplyRequest methods to access and set this property.
func ( this ActivityStreamsSourceProperty ) IsGoToSocialReplyRequest ( ) bool {
return this . gotosocialReplyRequestMember != nil
}
// IsIRI returns true if this property is an IRI. When true, use GetIRI and SetIRI
// to access and set this property
func ( this ActivityStreamsSourceProperty ) IsIRI ( ) bool {
@ -1804,6 +1961,10 @@ func (this ActivityStreamsSourceProperty) JSONLDContext() map[string]string {
child = this . GetActivityStreamsAnnounce ( ) . JSONLDContext ( )
} else if this . IsGoToSocialAnnounceApproval ( ) {
child = this . GetGoToSocialAnnounceApproval ( ) . JSONLDContext ( )
} else if this . IsGoToSocialAnnounceAuthorization ( ) {
child = this . GetGoToSocialAnnounceAuthorization ( ) . JSONLDContext ( )
} else if this . IsGoToSocialAnnounceRequest ( ) {
child = this . GetGoToSocialAnnounceRequest ( ) . JSONLDContext ( )
} else if this . IsActivityStreamsApplication ( ) {
child = this . GetActivityStreamsApplication ( ) . JSONLDContext ( )
} else if this . IsActivityStreamsArrive ( ) {
@ -1860,6 +2021,10 @@ func (this ActivityStreamsSourceProperty) JSONLDContext() map[string]string {
child = this . GetActivityStreamsLike ( ) . JSONLDContext ( )
} else if this . IsGoToSocialLikeApproval ( ) {
child = this . GetGoToSocialLikeApproval ( ) . JSONLDContext ( )
} else if this . IsGoToSocialLikeAuthorization ( ) {
child = this . GetGoToSocialLikeAuthorization ( ) . JSONLDContext ( )
} else if this . IsGoToSocialLikeRequest ( ) {
child = this . GetGoToSocialLikeRequest ( ) . JSONLDContext ( )
} else if this . IsActivityStreamsListen ( ) {
child = this . GetActivityStreamsListen ( ) . JSONLDContext ( )
} else if this . IsActivityStreamsMention ( ) {
@ -1898,6 +2063,10 @@ func (this ActivityStreamsSourceProperty) JSONLDContext() map[string]string {
child = this . GetActivityStreamsRemove ( ) . JSONLDContext ( )
} else if this . IsGoToSocialReplyApproval ( ) {
child = this . GetGoToSocialReplyApproval ( ) . JSONLDContext ( )
} else if this . IsGoToSocialReplyAuthorization ( ) {
child = this . GetGoToSocialReplyAuthorization ( ) . JSONLDContext ( )
} else if this . IsGoToSocialReplyRequest ( ) {
child = this . GetGoToSocialReplyRequest ( ) . JSONLDContext ( )
} else if this . IsActivityStreamsService ( ) {
child = this . GetActivityStreamsService ( ) . JSONLDContext ( )
} else if this . IsActivityStreamsTentativeAccept ( ) {
@ -1958,177 +2127,195 @@ func (this ActivityStreamsSourceProperty) KindIndex() int {
if this . IsGoToSocialAnnounceApproval ( ) {
return 7
}
if this . IsActivityStreamsApplic ation ( ) {
if this . IsGoToSocialAnnounceAuthoriz ation ( ) {
return 8
}
if this . IsActivityStreamsArrive ( ) {
if this . IsGoToSocialAnnounceRequest ( ) {
return 9
}
if this . IsActivityStreamsArticle ( ) {
if this . IsActivityStreamsApplication ( ) {
return 10
}
if this . IsFunkwhaleArtist ( ) {
if this . IsActivityStreamsArrive ( ) {
return 11
}
if this . IsActivityStreamsAudio ( ) {
if this . IsActivityStreamsArticle ( ) {
return 12
}
if this . IsActivityStreamsBlock ( ) {
if this . IsFunkwhaleArtist ( ) {
return 13
}
if this . IsActivityStreamsCollection ( ) {
if this . IsActivityStreamsAudio ( ) {
return 14
}
if this . IsActivityStreamsCollectionPage ( ) {
if this . IsActivityStreamsBlock ( ) {
return 15
}
if this . IsActivityStreamsCreate ( ) {
if this . IsActivityStreamsCollection ( ) {
return 16
}
if this . IsActivityStreamsDelet e ( ) {
if this . IsActivityStreamsCollectionPag e ( ) {
return 17
}
if this . IsActivityStreamsDislik e ( ) {
if this . IsActivityStreamsCreat e ( ) {
return 18
}
if this . IsActivityStreamsDocument ( ) {
if this . IsActivityStreamsDelete ( ) {
return 19
}
if this . IsTootEmoji ( ) {
if this . IsActivityStreamsDislike ( ) {
return 20
}
if this . IsActivityStreamsEv ent ( ) {
if this . IsActivityStreamsDocum ent ( ) {
return 21
}
if this . IsActivityStreamsFlag ( ) {
if this . IsTootEmoji ( ) {
return 22
}
if this . IsActivityStreamsFollow ( ) {
if this . IsActivityStreamsEvent ( ) {
return 23
}
if this . IsActivityStreamsGroup ( ) {
if this . IsActivityStreamsFlag ( ) {
return 24
}
if this . IsTootHashtag ( ) {
if this . IsActivityStreamsFollow ( ) {
return 25
}
if this . IsTootIdentityProof ( ) {
if this . IsActivityStreamsGroup ( ) {
return 26
}
if this . IsActivityStreamsIgnore ( ) {
if this . IsTootHashtag ( ) {
return 27
}
if this . IsActivityStreamsImage ( ) {
if this . IsTootIdentityProof ( ) {
return 28
}
if this . IsActivityStreamsIntransitiveActivity ( ) {
if this . IsActivityStreamsIgnore ( ) {
return 29
}
if this . IsActivityStreamsInvit e ( ) {
if this . IsActivityStreamsImag e ( ) {
return 30
}
if this . IsActivityStreamsJoin ( ) {
if this . IsActivityStreamsIntransitiveActivity ( ) {
return 31
}
if this . IsActivityStreamsLeav e ( ) {
if this . IsActivityStreamsInvit e ( ) {
return 32
}
if this . IsFunkwhaleLibrary ( ) {
if this . IsActivityStreamsJoin ( ) {
return 33
}
if this . IsActivityStreamsLik e ( ) {
if this . IsActivityStreamsLeav e ( ) {
return 34
}
if this . IsGoToSocialLikeApproval ( ) {
if this . IsFunkwhaleLibrary ( ) {
return 35
}
if this . IsActivityStreamsListen ( ) {
if this . IsActivityStreamsLike ( ) {
return 36
}
if this . IsActivityStreamsMention ( ) {
if this . IsGoToSocialLikeApproval ( ) {
return 37
}
if this . IsActivityStreamsMove ( ) {
if this . IsGoToSocialLikeAuthorization ( ) {
return 38
}
if this . IsActivityStreamsNote ( ) {
if this . IsGoToSocialLikeRequest ( ) {
return 39
}
if this . IsActivityStreamsOffer ( ) {
if this . IsActivityStreamsListen ( ) {
return 40
}
if this . IsActivityStreamsOrderedCollec tion ( ) {
if this . IsActivityStreamsMen tion ( ) {
return 41
}
if this . IsActivityStreamsOrderedCollectionPag e ( ) {
if this . IsActivityStreamsMov e ( ) {
return 42
}
if this . IsActivityStreamsOrganization ( ) {
if this . IsActivityStreamsNote ( ) {
return 43
}
if this . IsActivityStreamsPage ( ) {
if this . IsActivityStreamsOffer ( ) {
return 44
}
if this . IsActivityStreamsPers on ( ) {
if this . IsActivityStreamsOrderedCollecti on ( ) {
return 45
}
if this . IsActivityStreamsPlac e ( ) {
if this . IsActivityStreamsOrderedCollectionPag e ( ) {
return 46
}
if this . IsActivityStreamsProfile ( ) {
if this . IsActivityStreamsOrganization ( ) {
return 47
}
if this . IsSchemaPropertyValu e ( ) {
if this . IsActivityStreamsPag e ( ) {
return 48
}
if this . IsActivityStreamsQuesti on ( ) {
if this . IsActivityStreamsPers on ( ) {
return 49
}
if this . IsActivityStreamsRead ( ) {
if this . IsActivityStreamsPlace ( ) {
return 50
}
if this . IsActivityStreamsReject ( ) {
if this . IsActivityStreamsProfile ( ) {
return 51
}
if this . IsActivityStreamsRelationship ( ) {
if this . IsSchemaPropertyValue ( ) {
return 52
}
if this . IsActivityStreamsRemove ( ) {
if this . IsActivityStreamsQuestion ( ) {
return 53
}
if this . IsGoToSocialReplyApproval ( ) {
if this . IsActivityStreamsRead ( ) {
return 54
}
if this . IsActivityStreamsService ( ) {
if this . IsActivityStreamsReject ( ) {
return 55
}
if this . IsActivityStreamsTentativeAccept ( ) {
if this . IsActivityStreamsRelationship ( ) {
return 56
}
if this . IsActivityStreamsTentativeReject ( ) {
if this . IsActivityStreamsRemove ( ) {
return 57
}
if this . IsActivityStreamsTombstone ( ) {
if this . IsGoToSocialReplyApproval ( ) {
return 58
}
if this . IsFunkwhaleTrack ( ) {
if this . IsGoToSocialReplyAuthorization ( ) {
return 59
}
if this . IsActivityStreamsTravel ( ) {
if this . IsGoToSocialReplyRequest ( ) {
return 60
}
if this . IsActivityStreamsUndo ( ) {
if this . IsActivityStreamsService ( ) {
return 61
}
if this . IsActivityStreamsUpdate ( ) {
if this . IsActivityStreamsTentativeAccept ( ) {
return 62
}
if this . IsActivityStreamsVideo ( ) {
if this . IsActivityStreamsTentativeReject ( ) {
return 63
}
if this . IsActivityStreamsView ( ) {
if this . IsActivityStreamsTombstone ( ) {
return 64
}
if this . IsFunkwhaleTrack ( ) {
return 65
}
if this . IsActivityStreamsTravel ( ) {
return 66
}
if this . IsActivityStreamsUndo ( ) {
return 67
}
if this . IsActivityStreamsUpdate ( ) {
return 68
}
if this . IsActivityStreamsVideo ( ) {
return 69
}
if this . IsActivityStreamsView ( ) {
return 70
}
if this . IsIRI ( ) {
return - 2
}
@ -2162,6 +2349,10 @@ func (this ActivityStreamsSourceProperty) LessThan(o vocab.ActivityStreamsSource
return this . GetActivityStreamsAnnounce ( ) . LessThan ( o . GetActivityStreamsAnnounce ( ) )
} else if this . IsGoToSocialAnnounceApproval ( ) {
return this . GetGoToSocialAnnounceApproval ( ) . LessThan ( o . GetGoToSocialAnnounceApproval ( ) )
} else if this . IsGoToSocialAnnounceAuthorization ( ) {
return this . GetGoToSocialAnnounceAuthorization ( ) . LessThan ( o . GetGoToSocialAnnounceAuthorization ( ) )
} else if this . IsGoToSocialAnnounceRequest ( ) {
return this . GetGoToSocialAnnounceRequest ( ) . LessThan ( o . GetGoToSocialAnnounceRequest ( ) )
} else if this . IsActivityStreamsApplication ( ) {
return this . GetActivityStreamsApplication ( ) . LessThan ( o . GetActivityStreamsApplication ( ) )
} else if this . IsActivityStreamsArrive ( ) {
@ -2218,6 +2409,10 @@ func (this ActivityStreamsSourceProperty) LessThan(o vocab.ActivityStreamsSource
return this . GetActivityStreamsLike ( ) . LessThan ( o . GetActivityStreamsLike ( ) )
} else if this . IsGoToSocialLikeApproval ( ) {
return this . GetGoToSocialLikeApproval ( ) . LessThan ( o . GetGoToSocialLikeApproval ( ) )
} else if this . IsGoToSocialLikeAuthorization ( ) {
return this . GetGoToSocialLikeAuthorization ( ) . LessThan ( o . GetGoToSocialLikeAuthorization ( ) )
} else if this . IsGoToSocialLikeRequest ( ) {
return this . GetGoToSocialLikeRequest ( ) . LessThan ( o . GetGoToSocialLikeRequest ( ) )
} else if this . IsActivityStreamsListen ( ) {
return this . GetActivityStreamsListen ( ) . LessThan ( o . GetActivityStreamsListen ( ) )
} else if this . IsActivityStreamsMention ( ) {
@ -2256,6 +2451,10 @@ func (this ActivityStreamsSourceProperty) LessThan(o vocab.ActivityStreamsSource
return this . GetActivityStreamsRemove ( ) . LessThan ( o . GetActivityStreamsRemove ( ) )
} else if this . IsGoToSocialReplyApproval ( ) {
return this . GetGoToSocialReplyApproval ( ) . LessThan ( o . GetGoToSocialReplyApproval ( ) )
} else if this . IsGoToSocialReplyAuthorization ( ) {
return this . GetGoToSocialReplyAuthorization ( ) . LessThan ( o . GetGoToSocialReplyAuthorization ( ) )
} else if this . IsGoToSocialReplyRequest ( ) {
return this . GetGoToSocialReplyRequest ( ) . LessThan ( o . GetGoToSocialReplyRequest ( ) )
} else if this . IsActivityStreamsService ( ) {
return this . GetActivityStreamsService ( ) . LessThan ( o . GetActivityStreamsService ( ) )
} else if this . IsActivityStreamsTentativeAccept ( ) {
@ -2312,6 +2511,10 @@ func (this ActivityStreamsSourceProperty) Serialize() (interface{}, error) {
return this . GetActivityStreamsAnnounce ( ) . Serialize ( )
} else if this . IsGoToSocialAnnounceApproval ( ) {
return this . GetGoToSocialAnnounceApproval ( ) . Serialize ( )
} else if this . IsGoToSocialAnnounceAuthorization ( ) {
return this . GetGoToSocialAnnounceAuthorization ( ) . Serialize ( )
} else if this . IsGoToSocialAnnounceRequest ( ) {
return this . GetGoToSocialAnnounceRequest ( ) . Serialize ( )
} else if this . IsActivityStreamsApplication ( ) {
return this . GetActivityStreamsApplication ( ) . Serialize ( )
} else if this . IsActivityStreamsArrive ( ) {
@ -2368,6 +2571,10 @@ func (this ActivityStreamsSourceProperty) Serialize() (interface{}, error) {
return this . GetActivityStreamsLike ( ) . Serialize ( )
} else if this . IsGoToSocialLikeApproval ( ) {
return this . GetGoToSocialLikeApproval ( ) . Serialize ( )
} else if this . IsGoToSocialLikeAuthorization ( ) {
return this . GetGoToSocialLikeAuthorization ( ) . Serialize ( )
} else if this . IsGoToSocialLikeRequest ( ) {
return this . GetGoToSocialLikeRequest ( ) . Serialize ( )
} else if this . IsActivityStreamsListen ( ) {
return this . GetActivityStreamsListen ( ) . Serialize ( )
} else if this . IsActivityStreamsMention ( ) {
@ -2406,6 +2613,10 @@ func (this ActivityStreamsSourceProperty) Serialize() (interface{}, error) {
return this . GetActivityStreamsRemove ( ) . Serialize ( )
} else if this . IsGoToSocialReplyApproval ( ) {
return this . GetGoToSocialReplyApproval ( ) . Serialize ( )
} else if this . IsGoToSocialReplyAuthorization ( ) {
return this . GetGoToSocialReplyAuthorization ( ) . Serialize ( )
} else if this . IsGoToSocialReplyRequest ( ) {
return this . GetGoToSocialReplyRequest ( ) . Serialize ( )
} else if this . IsActivityStreamsService ( ) {
return this . GetActivityStreamsService ( ) . Serialize ( )
} else if this . IsActivityStreamsTentativeAccept ( ) {
@ -2845,6 +3056,20 @@ func (this *ActivityStreamsSourceProperty) SetGoToSocialAnnounceApproval(v vocab
this . gotosocialAnnounceApprovalMember = v
}
// SetGoToSocialAnnounceAuthorization sets the value of this property. Calling
// IsGoToSocialAnnounceAuthorization afterwards returns true.
func ( this * ActivityStreamsSourceProperty ) SetGoToSocialAnnounceAuthorization ( v vocab . GoToSocialAnnounceAuthorization ) {
this . Clear ( )
this . gotosocialAnnounceAuthorizationMember = v
}
// SetGoToSocialAnnounceRequest sets the value of this property. Calling
// IsGoToSocialAnnounceRequest afterwards returns true.
func ( this * ActivityStreamsSourceProperty ) SetGoToSocialAnnounceRequest ( v vocab . GoToSocialAnnounceRequest ) {
this . Clear ( )
this . gotosocialAnnounceRequestMember = v
}
// SetGoToSocialLikeApproval sets the value of this property. Calling
// IsGoToSocialLikeApproval afterwards returns true.
func ( this * ActivityStreamsSourceProperty ) SetGoToSocialLikeApproval ( v vocab . GoToSocialLikeApproval ) {
@ -2852,6 +3077,20 @@ func (this *ActivityStreamsSourceProperty) SetGoToSocialLikeApproval(v vocab.GoT
this . gotosocialLikeApprovalMember = v
}
// SetGoToSocialLikeAuthorization sets the value of this property. Calling
// IsGoToSocialLikeAuthorization afterwards returns true.
func ( this * ActivityStreamsSourceProperty ) SetGoToSocialLikeAuthorization ( v vocab . GoToSocialLikeAuthorization ) {
this . Clear ( )
this . gotosocialLikeAuthorizationMember = v
}
// SetGoToSocialLikeRequest sets the value of this property. Calling
// IsGoToSocialLikeRequest afterwards returns true.
func ( this * ActivityStreamsSourceProperty ) SetGoToSocialLikeRequest ( v vocab . GoToSocialLikeRequest ) {
this . Clear ( )
this . gotosocialLikeRequestMember = v
}
// SetGoToSocialReplyApproval sets the value of this property. Calling
// IsGoToSocialReplyApproval afterwards returns true.
func ( this * ActivityStreamsSourceProperty ) SetGoToSocialReplyApproval ( v vocab . GoToSocialReplyApproval ) {
@ -2859,6 +3098,20 @@ func (this *ActivityStreamsSourceProperty) SetGoToSocialReplyApproval(v vocab.Go
this . gotosocialReplyApprovalMember = v
}
// SetGoToSocialReplyAuthorization sets the value of this property. Calling
// IsGoToSocialReplyAuthorization afterwards returns true.
func ( this * ActivityStreamsSourceProperty ) SetGoToSocialReplyAuthorization ( v vocab . GoToSocialReplyAuthorization ) {
this . Clear ( )
this . gotosocialReplyAuthorizationMember = v
}
// SetGoToSocialReplyRequest sets the value of this property. Calling
// IsGoToSocialReplyRequest afterwards returns true.
func ( this * ActivityStreamsSourceProperty ) SetGoToSocialReplyRequest ( v vocab . GoToSocialReplyRequest ) {
this . Clear ( )
this . gotosocialReplyRequestMember = v
}
// SetIRI sets the value of this property. Calling IsIRI afterwards returns true.
func ( this * ActivityStreamsSourceProperty ) SetIRI ( v * url . URL ) {
this . Clear ( )
@ -2928,6 +3181,14 @@ func (this *ActivityStreamsSourceProperty) SetType(t vocab.Type) error {
this . SetGoToSocialAnnounceApproval ( v )
return nil
}
if v , ok := t . ( vocab . GoToSocialAnnounceAuthorization ) ; ok {
this . SetGoToSocialAnnounceAuthorization ( v )
return nil
}
if v , ok := t . ( vocab . GoToSocialAnnounceRequest ) ; ok {
this . SetGoToSocialAnnounceRequest ( v )
return nil
}
if v , ok := t . ( vocab . ActivityStreamsApplication ) ; ok {
this . SetActivityStreamsApplication ( v )
return nil
@ -3040,6 +3301,14 @@ func (this *ActivityStreamsSourceProperty) SetType(t vocab.Type) error {
this . SetGoToSocialLikeApproval ( v )
return nil
}
if v , ok := t . ( vocab . GoToSocialLikeAuthorization ) ; ok {
this . SetGoToSocialLikeAuthorization ( v )
return nil
}
if v , ok := t . ( vocab . GoToSocialLikeRequest ) ; ok {
this . SetGoToSocialLikeRequest ( v )
return nil
}
if v , ok := t . ( vocab . ActivityStreamsListen ) ; ok {
this . SetActivityStreamsListen ( v )
return nil
@ -3116,6 +3385,14 @@ func (this *ActivityStreamsSourceProperty) SetType(t vocab.Type) error {
this . SetGoToSocialReplyApproval ( v )
return nil
}
if v , ok := t . ( vocab . GoToSocialReplyAuthorization ) ; ok {
this . SetGoToSocialReplyAuthorization ( v )
return nil
}
if v , ok := t . ( vocab . GoToSocialReplyRequest ) ; ok {
this . SetGoToSocialReplyRequest ( v )
return nil
}
if v , ok := t . ( vocab . ActivityStreamsService ) ; ok {
this . SetActivityStreamsService ( v )
return nil