mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-11-18 16:17:28 -06:00
[chore] Update activity dependency (#2031)
This commit is contained in:
parent
e747c14685
commit
cf4bd700fb
405 changed files with 7566 additions and 86024 deletions
|
|
@ -225,29 +225,6 @@ type ActivityStreamsActorPropertyIterator interface {
|
|||
// IsActivityStreamsView returns false, GetActivityStreamsView will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsView() ActivityStreamsView
|
||||
// GetForgeFedBranch returns the value of this property. When
|
||||
// IsForgeFedBranch returns false, GetForgeFedBranch will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedBranch() ForgeFedBranch
|
||||
// GetForgeFedCommit returns the value of this property. When
|
||||
// IsForgeFedCommit returns false, GetForgeFedCommit will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedCommit() ForgeFedCommit
|
||||
// GetForgeFedPush returns the value of this property. When IsForgeFedPush
|
||||
// returns false, GetForgeFedPush will return an arbitrary value.
|
||||
GetForgeFedPush() ForgeFedPush
|
||||
// GetForgeFedRepository returns the value of this property. When
|
||||
// IsForgeFedRepository returns false, GetForgeFedRepository will
|
||||
// return an arbitrary value.
|
||||
GetForgeFedRepository() ForgeFedRepository
|
||||
// GetForgeFedTicket returns the value of this property. When
|
||||
// IsForgeFedTicket returns false, GetForgeFedTicket will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedTicket() ForgeFedTicket
|
||||
// GetForgeFedTicketDependency returns the value of this property. When
|
||||
// IsForgeFedTicketDependency returns false,
|
||||
// GetForgeFedTicketDependency will return an arbitrary value.
|
||||
GetForgeFedTicketDependency() ForgeFedTicketDependency
|
||||
// GetIRI returns the IRI of this property. When IsIRI returns false,
|
||||
// GetIRI will return an arbitrary value.
|
||||
GetIRI() *url.URL
|
||||
|
|
@ -258,6 +235,9 @@ type ActivityStreamsActorPropertyIterator interface {
|
|||
// GetTootEmoji returns the value of this property. When IsTootEmoji
|
||||
// returns false, GetTootEmoji will return an arbitrary value.
|
||||
GetTootEmoji() TootEmoji
|
||||
// GetTootHashtag returns the value of this property. When IsTootHashtag
|
||||
// returns false, GetTootHashtag will return an arbitrary value.
|
||||
GetTootHashtag() TootHashtag
|
||||
// GetTootIdentityProof returns the value of this property. When
|
||||
// IsTootIdentityProof returns false, GetTootIdentityProof will return
|
||||
// an arbitrary value.
|
||||
|
|
@ -500,31 +480,6 @@ type ActivityStreamsActorPropertyIterator interface {
|
|||
// "View". When true, use the GetActivityStreamsView and
|
||||
// SetActivityStreamsView methods to access and set this property.
|
||||
IsActivityStreamsView() bool
|
||||
// IsForgeFedBranch returns true if this property has a type of "Branch".
|
||||
// When true, use the GetForgeFedBranch and SetForgeFedBranch methods
|
||||
// to access and set this property.
|
||||
IsForgeFedBranch() bool
|
||||
// IsForgeFedCommit returns true if this property has a type of "Commit".
|
||||
// When true, use the GetForgeFedCommit and SetForgeFedCommit methods
|
||||
// to access and set this property.
|
||||
IsForgeFedCommit() bool
|
||||
// IsForgeFedPush returns true if this property has a type of "Push". When
|
||||
// true, use the GetForgeFedPush and SetForgeFedPush methods to access
|
||||
// and set this property.
|
||||
IsForgeFedPush() bool
|
||||
// IsForgeFedRepository returns true if this property has a type of
|
||||
// "Repository". When true, use the GetForgeFedRepository and
|
||||
// SetForgeFedRepository methods to access and set this property.
|
||||
IsForgeFedRepository() bool
|
||||
// IsForgeFedTicket returns true if this property has a type of "Ticket".
|
||||
// When true, use the GetForgeFedTicket and SetForgeFedTicket methods
|
||||
// to access and set this property.
|
||||
IsForgeFedTicket() bool
|
||||
// IsForgeFedTicketDependency returns true if this property has a type of
|
||||
// "TicketDependency". When true, use the GetForgeFedTicketDependency
|
||||
// and SetForgeFedTicketDependency methods to access and set this
|
||||
// property.
|
||||
IsForgeFedTicketDependency() bool
|
||||
// IsIRI returns true if this property is an IRI. When true, use GetIRI
|
||||
// and SetIRI to access and set this property
|
||||
IsIRI() bool
|
||||
|
|
@ -536,6 +491,10 @@ type ActivityStreamsActorPropertyIterator interface {
|
|||
// true, use the GetTootEmoji and SetTootEmoji methods to access and
|
||||
// set this property.
|
||||
IsTootEmoji() bool
|
||||
// IsTootHashtag returns true if this property has a type of "Hashtag".
|
||||
// When true, use the GetTootHashtag and SetTootHashtag methods to
|
||||
// access and set this property.
|
||||
IsTootHashtag() bool
|
||||
// IsTootIdentityProof returns true if this property has a type of
|
||||
// "IdentityProof". When true, use the GetTootIdentityProof and
|
||||
// SetTootIdentityProof methods to access and set this property.
|
||||
|
|
@ -725,24 +684,6 @@ type ActivityStreamsActorPropertyIterator interface {
|
|||
// SetActivityStreamsView sets the value of this property. Calling
|
||||
// IsActivityStreamsView afterwards returns true.
|
||||
SetActivityStreamsView(v ActivityStreamsView)
|
||||
// SetForgeFedBranch sets the value of this property. Calling
|
||||
// IsForgeFedBranch afterwards returns true.
|
||||
SetForgeFedBranch(v ForgeFedBranch)
|
||||
// SetForgeFedCommit sets the value of this property. Calling
|
||||
// IsForgeFedCommit afterwards returns true.
|
||||
SetForgeFedCommit(v ForgeFedCommit)
|
||||
// SetForgeFedPush sets the value of this property. Calling IsForgeFedPush
|
||||
// afterwards returns true.
|
||||
SetForgeFedPush(v ForgeFedPush)
|
||||
// SetForgeFedRepository sets the value of this property. Calling
|
||||
// IsForgeFedRepository afterwards returns true.
|
||||
SetForgeFedRepository(v ForgeFedRepository)
|
||||
// SetForgeFedTicket sets the value of this property. Calling
|
||||
// IsForgeFedTicket afterwards returns true.
|
||||
SetForgeFedTicket(v ForgeFedTicket)
|
||||
// SetForgeFedTicketDependency sets the value of this property. Calling
|
||||
// IsForgeFedTicketDependency afterwards returns true.
|
||||
SetForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// SetIRI sets the value of this property. Calling IsIRI afterwards
|
||||
// returns true.
|
||||
SetIRI(v *url.URL)
|
||||
|
|
@ -752,6 +693,9 @@ type ActivityStreamsActorPropertyIterator interface {
|
|||
// SetTootEmoji sets the value of this property. Calling IsTootEmoji
|
||||
// afterwards returns true.
|
||||
SetTootEmoji(v TootEmoji)
|
||||
// SetTootHashtag sets the value of this property. Calling IsTootHashtag
|
||||
// afterwards returns true.
|
||||
SetTootHashtag(v TootHashtag)
|
||||
// SetTootIdentityProof sets the value of this property. Calling
|
||||
// IsTootIdentityProof afterwards returns true.
|
||||
SetTootIdentityProof(v TootIdentityProof)
|
||||
|
|
@ -1015,30 +959,6 @@ type ActivityStreamsActorProperty interface {
|
|||
// the property "actor". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendActivityStreamsView(v ActivityStreamsView)
|
||||
// AppendForgeFedBranch appends a Branch value to the back of a list of
|
||||
// the property "actor". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendForgeFedBranch(v ForgeFedBranch)
|
||||
// AppendForgeFedCommit appends a Commit value to the back of a list of
|
||||
// the property "actor". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendForgeFedCommit(v ForgeFedCommit)
|
||||
// AppendForgeFedPush appends a Push value to the back of a list of the
|
||||
// property "actor". Invalidates iterators that are traversing using
|
||||
// Prev.
|
||||
AppendForgeFedPush(v ForgeFedPush)
|
||||
// AppendForgeFedRepository appends a Repository value to the back of a
|
||||
// list of the property "actor". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
AppendForgeFedRepository(v ForgeFedRepository)
|
||||
// AppendForgeFedTicket appends a Ticket value to the back of a list of
|
||||
// the property "actor". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendForgeFedTicket(v ForgeFedTicket)
|
||||
// AppendForgeFedTicketDependency appends a TicketDependency value to the
|
||||
// back of a list of the property "actor". Invalidates iterators that
|
||||
// are traversing using Prev.
|
||||
AppendForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// AppendIRI appends an IRI value to the back of a list of the property
|
||||
// "actor"
|
||||
AppendIRI(v *url.URL)
|
||||
|
|
@ -1050,6 +970,10 @@ type ActivityStreamsActorProperty interface {
|
|||
// property "actor". Invalidates iterators that are traversing using
|
||||
// Prev.
|
||||
AppendTootEmoji(v TootEmoji)
|
||||
// AppendTootHashtag appends a Hashtag value to the back of a list of the
|
||||
// property "actor". Invalidates iterators that are traversing using
|
||||
// Prev.
|
||||
AppendTootHashtag(v TootHashtag)
|
||||
// AppendTootIdentityProof appends a IdentityProof value to the back of a
|
||||
// list of the property "actor". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
|
|
@ -1294,30 +1218,6 @@ type ActivityStreamsActorProperty interface {
|
|||
// for a property "actor". Existing elements at that index and higher
|
||||
// are shifted back once. Invalidates all iterators.
|
||||
InsertActivityStreamsView(idx int, v ActivityStreamsView)
|
||||
// InsertForgeFedBranch inserts a Branch value at the specified index for
|
||||
// a property "actor". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedBranch(idx int, v ForgeFedBranch)
|
||||
// InsertForgeFedCommit inserts a Commit value at the specified index for
|
||||
// a property "actor". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedCommit(idx int, v ForgeFedCommit)
|
||||
// InsertForgeFedPush inserts a Push value at the specified index for a
|
||||
// property "actor". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedPush(idx int, v ForgeFedPush)
|
||||
// InsertForgeFedRepository inserts a Repository value at the specified
|
||||
// index for a property "actor". Existing elements at that index and
|
||||
// higher are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedRepository(idx int, v ForgeFedRepository)
|
||||
// InsertForgeFedTicket inserts a Ticket value at the specified index for
|
||||
// a property "actor". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedTicket(idx int, v ForgeFedTicket)
|
||||
// InsertForgeFedTicketDependency inserts a TicketDependency value at the
|
||||
// specified index for a property "actor". Existing elements at that
|
||||
// index and higher are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
|
||||
// Insert inserts an IRI value at the specified index for a property
|
||||
// "actor". Existing elements at that index and higher are shifted
|
||||
// back once. Invalidates all iterators.
|
||||
|
|
@ -1330,6 +1230,10 @@ type ActivityStreamsActorProperty interface {
|
|||
// property "actor". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertTootEmoji(idx int, v TootEmoji)
|
||||
// InsertTootHashtag inserts a Hashtag value at the specified index for a
|
||||
// property "actor". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertTootHashtag(idx int, v TootHashtag)
|
||||
// InsertTootIdentityProof inserts a IdentityProof value at the specified
|
||||
// index for a property "actor". Existing elements at that index and
|
||||
// higher are shifted back once. Invalidates all iterators.
|
||||
|
|
@ -1528,25 +1432,6 @@ type ActivityStreamsActorProperty interface {
|
|||
// PrependActivityStreamsView prepends a View value to the front of a list
|
||||
// of the property "actor". Invalidates all iterators.
|
||||
PrependActivityStreamsView(v ActivityStreamsView)
|
||||
// PrependForgeFedBranch prepends a Branch value to the front of a list of
|
||||
// the property "actor". Invalidates all iterators.
|
||||
PrependForgeFedBranch(v ForgeFedBranch)
|
||||
// PrependForgeFedCommit prepends a Commit value to the front of a list of
|
||||
// the property "actor". Invalidates all iterators.
|
||||
PrependForgeFedCommit(v ForgeFedCommit)
|
||||
// PrependForgeFedPush prepends a Push value to the front of a list of the
|
||||
// property "actor". Invalidates all iterators.
|
||||
PrependForgeFedPush(v ForgeFedPush)
|
||||
// PrependForgeFedRepository prepends a Repository value to the front of a
|
||||
// list of the property "actor". Invalidates all iterators.
|
||||
PrependForgeFedRepository(v ForgeFedRepository)
|
||||
// PrependForgeFedTicket prepends a Ticket value to the front of a list of
|
||||
// the property "actor". Invalidates all iterators.
|
||||
PrependForgeFedTicket(v ForgeFedTicket)
|
||||
// PrependForgeFedTicketDependency prepends a TicketDependency value to
|
||||
// the front of a list of the property "actor". Invalidates all
|
||||
// iterators.
|
||||
PrependForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// PrependIRI prepends an IRI value to the front of a list of the property
|
||||
// "actor".
|
||||
PrependIRI(v *url.URL)
|
||||
|
|
@ -1556,6 +1441,9 @@ type ActivityStreamsActorProperty interface {
|
|||
// PrependTootEmoji prepends a Emoji value to the front of a list of the
|
||||
// property "actor". Invalidates all iterators.
|
||||
PrependTootEmoji(v TootEmoji)
|
||||
// PrependTootHashtag prepends a Hashtag value to the front of a list of
|
||||
// the property "actor". Invalidates all iterators.
|
||||
PrependTootHashtag(v TootHashtag)
|
||||
// PrependTootIdentityProof prepends a IdentityProof value to the front of
|
||||
// a list of the property "actor". Invalidates all iterators.
|
||||
PrependTootIdentityProof(v TootIdentityProof)
|
||||
|
|
@ -1789,30 +1677,6 @@ type ActivityStreamsActorProperty interface {
|
|||
// for the property "actor". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetActivityStreamsView(idx int, v ActivityStreamsView)
|
||||
// SetForgeFedBranch sets a Branch value to be at the specified index for
|
||||
// the property "actor". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedBranch(idx int, v ForgeFedBranch)
|
||||
// SetForgeFedCommit sets a Commit value to be at the specified index for
|
||||
// the property "actor". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedCommit(idx int, v ForgeFedCommit)
|
||||
// SetForgeFedPush sets a Push value to be at the specified index for the
|
||||
// property "actor". Panics if the index is out of bounds. Invalidates
|
||||
// all iterators.
|
||||
SetForgeFedPush(idx int, v ForgeFedPush)
|
||||
// SetForgeFedRepository sets a Repository value to be at the specified
|
||||
// index for the property "actor". Panics if the index is out of
|
||||
// bounds. Invalidates all iterators.
|
||||
SetForgeFedRepository(idx int, v ForgeFedRepository)
|
||||
// SetForgeFedTicket sets a Ticket value to be at the specified index for
|
||||
// the property "actor". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedTicket(idx int, v ForgeFedTicket)
|
||||
// SetForgeFedTicketDependency sets a TicketDependency value to be at the
|
||||
// specified index for the property "actor". Panics if the index is
|
||||
// out of bounds. Invalidates all iterators.
|
||||
SetForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
|
||||
// SetIRI sets an IRI value to be at the specified index for the property
|
||||
// "actor". Panics if the index is out of bounds.
|
||||
SetIRI(idx int, v *url.URL)
|
||||
|
|
@ -1824,6 +1688,10 @@ type ActivityStreamsActorProperty interface {
|
|||
// property "actor". Panics if the index is out of bounds. Invalidates
|
||||
// all iterators.
|
||||
SetTootEmoji(idx int, v TootEmoji)
|
||||
// SetTootHashtag sets a Hashtag value to be at the specified index for
|
||||
// the property "actor". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetTootHashtag(idx int, v TootHashtag)
|
||||
// SetTootIdentityProof sets a IdentityProof value to be at the specified
|
||||
// index for the property "actor". Panics if the index is out of
|
||||
// bounds. Invalidates all iterators.
|
||||
|
|
|
|||
|
|
@ -225,29 +225,6 @@ type ActivityStreamsAnyOfPropertyIterator interface {
|
|||
// IsActivityStreamsView returns false, GetActivityStreamsView will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsView() ActivityStreamsView
|
||||
// GetForgeFedBranch returns the value of this property. When
|
||||
// IsForgeFedBranch returns false, GetForgeFedBranch will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedBranch() ForgeFedBranch
|
||||
// GetForgeFedCommit returns the value of this property. When
|
||||
// IsForgeFedCommit returns false, GetForgeFedCommit will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedCommit() ForgeFedCommit
|
||||
// GetForgeFedPush returns the value of this property. When IsForgeFedPush
|
||||
// returns false, GetForgeFedPush will return an arbitrary value.
|
||||
GetForgeFedPush() ForgeFedPush
|
||||
// GetForgeFedRepository returns the value of this property. When
|
||||
// IsForgeFedRepository returns false, GetForgeFedRepository will
|
||||
// return an arbitrary value.
|
||||
GetForgeFedRepository() ForgeFedRepository
|
||||
// GetForgeFedTicket returns the value of this property. When
|
||||
// IsForgeFedTicket returns false, GetForgeFedTicket will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedTicket() ForgeFedTicket
|
||||
// GetForgeFedTicketDependency returns the value of this property. When
|
||||
// IsForgeFedTicketDependency returns false,
|
||||
// GetForgeFedTicketDependency will return an arbitrary value.
|
||||
GetForgeFedTicketDependency() ForgeFedTicketDependency
|
||||
// GetIRI returns the IRI of this property. When IsIRI returns false,
|
||||
// GetIRI will return an arbitrary value.
|
||||
GetIRI() *url.URL
|
||||
|
|
@ -258,6 +235,9 @@ type ActivityStreamsAnyOfPropertyIterator interface {
|
|||
// GetTootEmoji returns the value of this property. When IsTootEmoji
|
||||
// returns false, GetTootEmoji will return an arbitrary value.
|
||||
GetTootEmoji() TootEmoji
|
||||
// GetTootHashtag returns the value of this property. When IsTootHashtag
|
||||
// returns false, GetTootHashtag will return an arbitrary value.
|
||||
GetTootHashtag() TootHashtag
|
||||
// GetTootIdentityProof returns the value of this property. When
|
||||
// IsTootIdentityProof returns false, GetTootIdentityProof will return
|
||||
// an arbitrary value.
|
||||
|
|
@ -500,31 +480,6 @@ type ActivityStreamsAnyOfPropertyIterator interface {
|
|||
// "View". When true, use the GetActivityStreamsView and
|
||||
// SetActivityStreamsView methods to access and set this property.
|
||||
IsActivityStreamsView() bool
|
||||
// IsForgeFedBranch returns true if this property has a type of "Branch".
|
||||
// When true, use the GetForgeFedBranch and SetForgeFedBranch methods
|
||||
// to access and set this property.
|
||||
IsForgeFedBranch() bool
|
||||
// IsForgeFedCommit returns true if this property has a type of "Commit".
|
||||
// When true, use the GetForgeFedCommit and SetForgeFedCommit methods
|
||||
// to access and set this property.
|
||||
IsForgeFedCommit() bool
|
||||
// IsForgeFedPush returns true if this property has a type of "Push". When
|
||||
// true, use the GetForgeFedPush and SetForgeFedPush methods to access
|
||||
// and set this property.
|
||||
IsForgeFedPush() bool
|
||||
// IsForgeFedRepository returns true if this property has a type of
|
||||
// "Repository". When true, use the GetForgeFedRepository and
|
||||
// SetForgeFedRepository methods to access and set this property.
|
||||
IsForgeFedRepository() bool
|
||||
// IsForgeFedTicket returns true if this property has a type of "Ticket".
|
||||
// When true, use the GetForgeFedTicket and SetForgeFedTicket methods
|
||||
// to access and set this property.
|
||||
IsForgeFedTicket() bool
|
||||
// IsForgeFedTicketDependency returns true if this property has a type of
|
||||
// "TicketDependency". When true, use the GetForgeFedTicketDependency
|
||||
// and SetForgeFedTicketDependency methods to access and set this
|
||||
// property.
|
||||
IsForgeFedTicketDependency() bool
|
||||
// IsIRI returns true if this property is an IRI. When true, use GetIRI
|
||||
// and SetIRI to access and set this property
|
||||
IsIRI() bool
|
||||
|
|
@ -536,6 +491,10 @@ type ActivityStreamsAnyOfPropertyIterator interface {
|
|||
// true, use the GetTootEmoji and SetTootEmoji methods to access and
|
||||
// set this property.
|
||||
IsTootEmoji() bool
|
||||
// IsTootHashtag returns true if this property has a type of "Hashtag".
|
||||
// When true, use the GetTootHashtag and SetTootHashtag methods to
|
||||
// access and set this property.
|
||||
IsTootHashtag() bool
|
||||
// IsTootIdentityProof returns true if this property has a type of
|
||||
// "IdentityProof". When true, use the GetTootIdentityProof and
|
||||
// SetTootIdentityProof methods to access and set this property.
|
||||
|
|
@ -725,24 +684,6 @@ type ActivityStreamsAnyOfPropertyIterator interface {
|
|||
// SetActivityStreamsView sets the value of this property. Calling
|
||||
// IsActivityStreamsView afterwards returns true.
|
||||
SetActivityStreamsView(v ActivityStreamsView)
|
||||
// SetForgeFedBranch sets the value of this property. Calling
|
||||
// IsForgeFedBranch afterwards returns true.
|
||||
SetForgeFedBranch(v ForgeFedBranch)
|
||||
// SetForgeFedCommit sets the value of this property. Calling
|
||||
// IsForgeFedCommit afterwards returns true.
|
||||
SetForgeFedCommit(v ForgeFedCommit)
|
||||
// SetForgeFedPush sets the value of this property. Calling IsForgeFedPush
|
||||
// afterwards returns true.
|
||||
SetForgeFedPush(v ForgeFedPush)
|
||||
// SetForgeFedRepository sets the value of this property. Calling
|
||||
// IsForgeFedRepository afterwards returns true.
|
||||
SetForgeFedRepository(v ForgeFedRepository)
|
||||
// SetForgeFedTicket sets the value of this property. Calling
|
||||
// IsForgeFedTicket afterwards returns true.
|
||||
SetForgeFedTicket(v ForgeFedTicket)
|
||||
// SetForgeFedTicketDependency sets the value of this property. Calling
|
||||
// IsForgeFedTicketDependency afterwards returns true.
|
||||
SetForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// SetIRI sets the value of this property. Calling IsIRI afterwards
|
||||
// returns true.
|
||||
SetIRI(v *url.URL)
|
||||
|
|
@ -752,6 +693,9 @@ type ActivityStreamsAnyOfPropertyIterator interface {
|
|||
// SetTootEmoji sets the value of this property. Calling IsTootEmoji
|
||||
// afterwards returns true.
|
||||
SetTootEmoji(v TootEmoji)
|
||||
// SetTootHashtag sets the value of this property. Calling IsTootHashtag
|
||||
// afterwards returns true.
|
||||
SetTootHashtag(v TootHashtag)
|
||||
// SetTootIdentityProof sets the value of this property. Calling
|
||||
// IsTootIdentityProof afterwards returns true.
|
||||
SetTootIdentityProof(v TootIdentityProof)
|
||||
|
|
@ -996,30 +940,6 @@ type ActivityStreamsAnyOfProperty interface {
|
|||
// the property "anyOf". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendActivityStreamsView(v ActivityStreamsView)
|
||||
// AppendForgeFedBranch appends a Branch value to the back of a list of
|
||||
// the property "anyOf". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendForgeFedBranch(v ForgeFedBranch)
|
||||
// AppendForgeFedCommit appends a Commit value to the back of a list of
|
||||
// the property "anyOf". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendForgeFedCommit(v ForgeFedCommit)
|
||||
// AppendForgeFedPush appends a Push value to the back of a list of the
|
||||
// property "anyOf". Invalidates iterators that are traversing using
|
||||
// Prev.
|
||||
AppendForgeFedPush(v ForgeFedPush)
|
||||
// AppendForgeFedRepository appends a Repository value to the back of a
|
||||
// list of the property "anyOf". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
AppendForgeFedRepository(v ForgeFedRepository)
|
||||
// AppendForgeFedTicket appends a Ticket value to the back of a list of
|
||||
// the property "anyOf". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendForgeFedTicket(v ForgeFedTicket)
|
||||
// AppendForgeFedTicketDependency appends a TicketDependency value to the
|
||||
// back of a list of the property "anyOf". Invalidates iterators that
|
||||
// are traversing using Prev.
|
||||
AppendForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// AppendIRI appends an IRI value to the back of a list of the property
|
||||
// "anyOf"
|
||||
AppendIRI(v *url.URL)
|
||||
|
|
@ -1031,6 +951,10 @@ type ActivityStreamsAnyOfProperty interface {
|
|||
// property "anyOf". Invalidates iterators that are traversing using
|
||||
// Prev.
|
||||
AppendTootEmoji(v TootEmoji)
|
||||
// AppendTootHashtag appends a Hashtag value to the back of a list of the
|
||||
// property "anyOf". Invalidates iterators that are traversing using
|
||||
// Prev.
|
||||
AppendTootHashtag(v TootHashtag)
|
||||
// AppendTootIdentityProof appends a IdentityProof value to the back of a
|
||||
// list of the property "anyOf". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
|
|
@ -1275,30 +1199,6 @@ type ActivityStreamsAnyOfProperty interface {
|
|||
// for a property "anyOf". Existing elements at that index and higher
|
||||
// are shifted back once. Invalidates all iterators.
|
||||
InsertActivityStreamsView(idx int, v ActivityStreamsView)
|
||||
// InsertForgeFedBranch inserts a Branch value at the specified index for
|
||||
// a property "anyOf". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedBranch(idx int, v ForgeFedBranch)
|
||||
// InsertForgeFedCommit inserts a Commit value at the specified index for
|
||||
// a property "anyOf". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedCommit(idx int, v ForgeFedCommit)
|
||||
// InsertForgeFedPush inserts a Push value at the specified index for a
|
||||
// property "anyOf". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedPush(idx int, v ForgeFedPush)
|
||||
// InsertForgeFedRepository inserts a Repository value at the specified
|
||||
// index for a property "anyOf". Existing elements at that index and
|
||||
// higher are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedRepository(idx int, v ForgeFedRepository)
|
||||
// InsertForgeFedTicket inserts a Ticket value at the specified index for
|
||||
// a property "anyOf". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedTicket(idx int, v ForgeFedTicket)
|
||||
// InsertForgeFedTicketDependency inserts a TicketDependency value at the
|
||||
// specified index for a property "anyOf". Existing elements at that
|
||||
// index and higher are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
|
||||
// Insert inserts an IRI value at the specified index for a property
|
||||
// "anyOf". Existing elements at that index and higher are shifted
|
||||
// back once. Invalidates all iterators.
|
||||
|
|
@ -1311,6 +1211,10 @@ type ActivityStreamsAnyOfProperty interface {
|
|||
// property "anyOf". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertTootEmoji(idx int, v TootEmoji)
|
||||
// InsertTootHashtag inserts a Hashtag value at the specified index for a
|
||||
// property "anyOf". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertTootHashtag(idx int, v TootHashtag)
|
||||
// InsertTootIdentityProof inserts a IdentityProof value at the specified
|
||||
// index for a property "anyOf". Existing elements at that index and
|
||||
// higher are shifted back once. Invalidates all iterators.
|
||||
|
|
@ -1509,25 +1413,6 @@ type ActivityStreamsAnyOfProperty interface {
|
|||
// PrependActivityStreamsView prepends a View value to the front of a list
|
||||
// of the property "anyOf". Invalidates all iterators.
|
||||
PrependActivityStreamsView(v ActivityStreamsView)
|
||||
// PrependForgeFedBranch prepends a Branch value to the front of a list of
|
||||
// the property "anyOf". Invalidates all iterators.
|
||||
PrependForgeFedBranch(v ForgeFedBranch)
|
||||
// PrependForgeFedCommit prepends a Commit value to the front of a list of
|
||||
// the property "anyOf". Invalidates all iterators.
|
||||
PrependForgeFedCommit(v ForgeFedCommit)
|
||||
// PrependForgeFedPush prepends a Push value to the front of a list of the
|
||||
// property "anyOf". Invalidates all iterators.
|
||||
PrependForgeFedPush(v ForgeFedPush)
|
||||
// PrependForgeFedRepository prepends a Repository value to the front of a
|
||||
// list of the property "anyOf". Invalidates all iterators.
|
||||
PrependForgeFedRepository(v ForgeFedRepository)
|
||||
// PrependForgeFedTicket prepends a Ticket value to the front of a list of
|
||||
// the property "anyOf". Invalidates all iterators.
|
||||
PrependForgeFedTicket(v ForgeFedTicket)
|
||||
// PrependForgeFedTicketDependency prepends a TicketDependency value to
|
||||
// the front of a list of the property "anyOf". Invalidates all
|
||||
// iterators.
|
||||
PrependForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// PrependIRI prepends an IRI value to the front of a list of the property
|
||||
// "anyOf".
|
||||
PrependIRI(v *url.URL)
|
||||
|
|
@ -1537,6 +1422,9 @@ type ActivityStreamsAnyOfProperty interface {
|
|||
// PrependTootEmoji prepends a Emoji value to the front of a list of the
|
||||
// property "anyOf". Invalidates all iterators.
|
||||
PrependTootEmoji(v TootEmoji)
|
||||
// PrependTootHashtag prepends a Hashtag value to the front of a list of
|
||||
// the property "anyOf". Invalidates all iterators.
|
||||
PrependTootHashtag(v TootHashtag)
|
||||
// PrependTootIdentityProof prepends a IdentityProof value to the front of
|
||||
// a list of the property "anyOf". Invalidates all iterators.
|
||||
PrependTootIdentityProof(v TootIdentityProof)
|
||||
|
|
@ -1770,30 +1658,6 @@ type ActivityStreamsAnyOfProperty interface {
|
|||
// for the property "anyOf". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetActivityStreamsView(idx int, v ActivityStreamsView)
|
||||
// SetForgeFedBranch sets a Branch value to be at the specified index for
|
||||
// the property "anyOf". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedBranch(idx int, v ForgeFedBranch)
|
||||
// SetForgeFedCommit sets a Commit value to be at the specified index for
|
||||
// the property "anyOf". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedCommit(idx int, v ForgeFedCommit)
|
||||
// SetForgeFedPush sets a Push value to be at the specified index for the
|
||||
// property "anyOf". Panics if the index is out of bounds. Invalidates
|
||||
// all iterators.
|
||||
SetForgeFedPush(idx int, v ForgeFedPush)
|
||||
// SetForgeFedRepository sets a Repository value to be at the specified
|
||||
// index for the property "anyOf". Panics if the index is out of
|
||||
// bounds. Invalidates all iterators.
|
||||
SetForgeFedRepository(idx int, v ForgeFedRepository)
|
||||
// SetForgeFedTicket sets a Ticket value to be at the specified index for
|
||||
// the property "anyOf". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedTicket(idx int, v ForgeFedTicket)
|
||||
// SetForgeFedTicketDependency sets a TicketDependency value to be at the
|
||||
// specified index for the property "anyOf". Panics if the index is
|
||||
// out of bounds. Invalidates all iterators.
|
||||
SetForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
|
||||
// SetIRI sets an IRI value to be at the specified index for the property
|
||||
// "anyOf". Panics if the index is out of bounds.
|
||||
SetIRI(idx int, v *url.URL)
|
||||
|
|
@ -1805,6 +1669,10 @@ type ActivityStreamsAnyOfProperty interface {
|
|||
// property "anyOf". Panics if the index is out of bounds. Invalidates
|
||||
// all iterators.
|
||||
SetTootEmoji(idx int, v TootEmoji)
|
||||
// SetTootHashtag sets a Hashtag value to be at the specified index for
|
||||
// the property "anyOf". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetTootHashtag(idx int, v TootHashtag)
|
||||
// SetTootIdentityProof sets a IdentityProof value to be at the specified
|
||||
// index for the property "anyOf". Panics if the index is out of
|
||||
// bounds. Invalidates all iterators.
|
||||
|
|
|
|||
|
|
@ -225,29 +225,6 @@ type ActivityStreamsAttachmentPropertyIterator interface {
|
|||
// IsActivityStreamsView returns false, GetActivityStreamsView will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsView() ActivityStreamsView
|
||||
// GetForgeFedBranch returns the value of this property. When
|
||||
// IsForgeFedBranch returns false, GetForgeFedBranch will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedBranch() ForgeFedBranch
|
||||
// GetForgeFedCommit returns the value of this property. When
|
||||
// IsForgeFedCommit returns false, GetForgeFedCommit will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedCommit() ForgeFedCommit
|
||||
// GetForgeFedPush returns the value of this property. When IsForgeFedPush
|
||||
// returns false, GetForgeFedPush will return an arbitrary value.
|
||||
GetForgeFedPush() ForgeFedPush
|
||||
// GetForgeFedRepository returns the value of this property. When
|
||||
// IsForgeFedRepository returns false, GetForgeFedRepository will
|
||||
// return an arbitrary value.
|
||||
GetForgeFedRepository() ForgeFedRepository
|
||||
// GetForgeFedTicket returns the value of this property. When
|
||||
// IsForgeFedTicket returns false, GetForgeFedTicket will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedTicket() ForgeFedTicket
|
||||
// GetForgeFedTicketDependency returns the value of this property. When
|
||||
// IsForgeFedTicketDependency returns false,
|
||||
// GetForgeFedTicketDependency will return an arbitrary value.
|
||||
GetForgeFedTicketDependency() ForgeFedTicketDependency
|
||||
// GetIRI returns the IRI of this property. When IsIRI returns false,
|
||||
// GetIRI will return an arbitrary value.
|
||||
GetIRI() *url.URL
|
||||
|
|
@ -258,6 +235,9 @@ type ActivityStreamsAttachmentPropertyIterator interface {
|
|||
// GetTootEmoji returns the value of this property. When IsTootEmoji
|
||||
// returns false, GetTootEmoji will return an arbitrary value.
|
||||
GetTootEmoji() TootEmoji
|
||||
// GetTootHashtag returns the value of this property. When IsTootHashtag
|
||||
// returns false, GetTootHashtag will return an arbitrary value.
|
||||
GetTootHashtag() TootHashtag
|
||||
// GetTootIdentityProof returns the value of this property. When
|
||||
// IsTootIdentityProof returns false, GetTootIdentityProof will return
|
||||
// an arbitrary value.
|
||||
|
|
@ -500,31 +480,6 @@ type ActivityStreamsAttachmentPropertyIterator interface {
|
|||
// "View". When true, use the GetActivityStreamsView and
|
||||
// SetActivityStreamsView methods to access and set this property.
|
||||
IsActivityStreamsView() bool
|
||||
// IsForgeFedBranch returns true if this property has a type of "Branch".
|
||||
// When true, use the GetForgeFedBranch and SetForgeFedBranch methods
|
||||
// to access and set this property.
|
||||
IsForgeFedBranch() bool
|
||||
// IsForgeFedCommit returns true if this property has a type of "Commit".
|
||||
// When true, use the GetForgeFedCommit and SetForgeFedCommit methods
|
||||
// to access and set this property.
|
||||
IsForgeFedCommit() bool
|
||||
// IsForgeFedPush returns true if this property has a type of "Push". When
|
||||
// true, use the GetForgeFedPush and SetForgeFedPush methods to access
|
||||
// and set this property.
|
||||
IsForgeFedPush() bool
|
||||
// IsForgeFedRepository returns true if this property has a type of
|
||||
// "Repository". When true, use the GetForgeFedRepository and
|
||||
// SetForgeFedRepository methods to access and set this property.
|
||||
IsForgeFedRepository() bool
|
||||
// IsForgeFedTicket returns true if this property has a type of "Ticket".
|
||||
// When true, use the GetForgeFedTicket and SetForgeFedTicket methods
|
||||
// to access and set this property.
|
||||
IsForgeFedTicket() bool
|
||||
// IsForgeFedTicketDependency returns true if this property has a type of
|
||||
// "TicketDependency". When true, use the GetForgeFedTicketDependency
|
||||
// and SetForgeFedTicketDependency methods to access and set this
|
||||
// property.
|
||||
IsForgeFedTicketDependency() bool
|
||||
// IsIRI returns true if this property is an IRI. When true, use GetIRI
|
||||
// and SetIRI to access and set this property
|
||||
IsIRI() bool
|
||||
|
|
@ -536,6 +491,10 @@ type ActivityStreamsAttachmentPropertyIterator interface {
|
|||
// true, use the GetTootEmoji and SetTootEmoji methods to access and
|
||||
// set this property.
|
||||
IsTootEmoji() bool
|
||||
// IsTootHashtag returns true if this property has a type of "Hashtag".
|
||||
// When true, use the GetTootHashtag and SetTootHashtag methods to
|
||||
// access and set this property.
|
||||
IsTootHashtag() bool
|
||||
// IsTootIdentityProof returns true if this property has a type of
|
||||
// "IdentityProof". When true, use the GetTootIdentityProof and
|
||||
// SetTootIdentityProof methods to access and set this property.
|
||||
|
|
@ -725,24 +684,6 @@ type ActivityStreamsAttachmentPropertyIterator interface {
|
|||
// SetActivityStreamsView sets the value of this property. Calling
|
||||
// IsActivityStreamsView afterwards returns true.
|
||||
SetActivityStreamsView(v ActivityStreamsView)
|
||||
// SetForgeFedBranch sets the value of this property. Calling
|
||||
// IsForgeFedBranch afterwards returns true.
|
||||
SetForgeFedBranch(v ForgeFedBranch)
|
||||
// SetForgeFedCommit sets the value of this property. Calling
|
||||
// IsForgeFedCommit afterwards returns true.
|
||||
SetForgeFedCommit(v ForgeFedCommit)
|
||||
// SetForgeFedPush sets the value of this property. Calling IsForgeFedPush
|
||||
// afterwards returns true.
|
||||
SetForgeFedPush(v ForgeFedPush)
|
||||
// SetForgeFedRepository sets the value of this property. Calling
|
||||
// IsForgeFedRepository afterwards returns true.
|
||||
SetForgeFedRepository(v ForgeFedRepository)
|
||||
// SetForgeFedTicket sets the value of this property. Calling
|
||||
// IsForgeFedTicket afterwards returns true.
|
||||
SetForgeFedTicket(v ForgeFedTicket)
|
||||
// SetForgeFedTicketDependency sets the value of this property. Calling
|
||||
// IsForgeFedTicketDependency afterwards returns true.
|
||||
SetForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// SetIRI sets the value of this property. Calling IsIRI afterwards
|
||||
// returns true.
|
||||
SetIRI(v *url.URL)
|
||||
|
|
@ -752,6 +693,9 @@ type ActivityStreamsAttachmentPropertyIterator interface {
|
|||
// SetTootEmoji sets the value of this property. Calling IsTootEmoji
|
||||
// afterwards returns true.
|
||||
SetTootEmoji(v TootEmoji)
|
||||
// SetTootHashtag sets the value of this property. Calling IsTootHashtag
|
||||
// afterwards returns true.
|
||||
SetTootHashtag(v TootHashtag)
|
||||
// SetTootIdentityProof sets the value of this property. Calling
|
||||
// IsTootIdentityProof afterwards returns true.
|
||||
SetTootIdentityProof(v TootIdentityProof)
|
||||
|
|
@ -991,30 +935,6 @@ type ActivityStreamsAttachmentProperty interface {
|
|||
// the property "attachment". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
AppendActivityStreamsView(v ActivityStreamsView)
|
||||
// AppendForgeFedBranch appends a Branch value to the back of a list of
|
||||
// the property "attachment". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
AppendForgeFedBranch(v ForgeFedBranch)
|
||||
// AppendForgeFedCommit appends a Commit value to the back of a list of
|
||||
// the property "attachment". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
AppendForgeFedCommit(v ForgeFedCommit)
|
||||
// AppendForgeFedPush appends a Push value to the back of a list of the
|
||||
// property "attachment". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendForgeFedPush(v ForgeFedPush)
|
||||
// AppendForgeFedRepository appends a Repository value to the back of a
|
||||
// list of the property "attachment". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
AppendForgeFedRepository(v ForgeFedRepository)
|
||||
// AppendForgeFedTicket appends a Ticket value to the back of a list of
|
||||
// the property "attachment". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
AppendForgeFedTicket(v ForgeFedTicket)
|
||||
// AppendForgeFedTicketDependency appends a TicketDependency value to the
|
||||
// back of a list of the property "attachment". Invalidates iterators
|
||||
// that are traversing using Prev.
|
||||
AppendForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// AppendIRI appends an IRI value to the back of a list of the property
|
||||
// "attachment"
|
||||
AppendIRI(v *url.URL)
|
||||
|
|
@ -1026,6 +946,10 @@ type ActivityStreamsAttachmentProperty interface {
|
|||
// property "attachment". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendTootEmoji(v TootEmoji)
|
||||
// AppendTootHashtag appends a Hashtag value to the back of a list of the
|
||||
// property "attachment". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendTootHashtag(v TootHashtag)
|
||||
// AppendTootIdentityProof appends a IdentityProof value to the back of a
|
||||
// list of the property "attachment". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
|
|
@ -1275,31 +1199,6 @@ type ActivityStreamsAttachmentProperty interface {
|
|||
// for a property "attachment". Existing elements at that index and
|
||||
// higher are shifted back once. Invalidates all iterators.
|
||||
InsertActivityStreamsView(idx int, v ActivityStreamsView)
|
||||
// InsertForgeFedBranch inserts a Branch value at the specified index for
|
||||
// a property "attachment". Existing elements at that index and higher
|
||||
// are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedBranch(idx int, v ForgeFedBranch)
|
||||
// InsertForgeFedCommit inserts a Commit value at the specified index for
|
||||
// a property "attachment". Existing elements at that index and higher
|
||||
// are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedCommit(idx int, v ForgeFedCommit)
|
||||
// InsertForgeFedPush inserts a Push value at the specified index for a
|
||||
// property "attachment". Existing elements at that index and higher
|
||||
// are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedPush(idx int, v ForgeFedPush)
|
||||
// InsertForgeFedRepository inserts a Repository value at the specified
|
||||
// index for a property "attachment". Existing elements at that index
|
||||
// and higher are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedRepository(idx int, v ForgeFedRepository)
|
||||
// InsertForgeFedTicket inserts a Ticket value at the specified index for
|
||||
// a property "attachment". Existing elements at that index and higher
|
||||
// are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedTicket(idx int, v ForgeFedTicket)
|
||||
// InsertForgeFedTicketDependency inserts a TicketDependency value at the
|
||||
// specified index for a property "attachment". Existing elements at
|
||||
// that index and higher are shifted back once. Invalidates all
|
||||
// iterators.
|
||||
InsertForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
|
||||
// Insert inserts an IRI value at the specified index for a property
|
||||
// "attachment". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
|
|
@ -1313,6 +1212,10 @@ type ActivityStreamsAttachmentProperty interface {
|
|||
// property "attachment". Existing elements at that index and higher
|
||||
// are shifted back once. Invalidates all iterators.
|
||||
InsertTootEmoji(idx int, v TootEmoji)
|
||||
// InsertTootHashtag inserts a Hashtag value at the specified index for a
|
||||
// property "attachment". Existing elements at that index and higher
|
||||
// are shifted back once. Invalidates all iterators.
|
||||
InsertTootHashtag(idx int, v TootHashtag)
|
||||
// InsertTootIdentityProof inserts a IdentityProof value at the specified
|
||||
// index for a property "attachment". Existing elements at that index
|
||||
// and higher are shifted back once. Invalidates all iterators.
|
||||
|
|
@ -1516,25 +1419,6 @@ type ActivityStreamsAttachmentProperty interface {
|
|||
// PrependActivityStreamsView prepends a View value to the front of a list
|
||||
// of the property "attachment". Invalidates all iterators.
|
||||
PrependActivityStreamsView(v ActivityStreamsView)
|
||||
// PrependForgeFedBranch prepends a Branch value to the front of a list of
|
||||
// the property "attachment". Invalidates all iterators.
|
||||
PrependForgeFedBranch(v ForgeFedBranch)
|
||||
// PrependForgeFedCommit prepends a Commit value to the front of a list of
|
||||
// the property "attachment". Invalidates all iterators.
|
||||
PrependForgeFedCommit(v ForgeFedCommit)
|
||||
// PrependForgeFedPush prepends a Push value to the front of a list of the
|
||||
// property "attachment". Invalidates all iterators.
|
||||
PrependForgeFedPush(v ForgeFedPush)
|
||||
// PrependForgeFedRepository prepends a Repository value to the front of a
|
||||
// list of the property "attachment". Invalidates all iterators.
|
||||
PrependForgeFedRepository(v ForgeFedRepository)
|
||||
// PrependForgeFedTicket prepends a Ticket value to the front of a list of
|
||||
// the property "attachment". Invalidates all iterators.
|
||||
PrependForgeFedTicket(v ForgeFedTicket)
|
||||
// PrependForgeFedTicketDependency prepends a TicketDependency value to
|
||||
// the front of a list of the property "attachment". Invalidates all
|
||||
// iterators.
|
||||
PrependForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// PrependIRI prepends an IRI value to the front of a list of the property
|
||||
// "attachment".
|
||||
PrependIRI(v *url.URL)
|
||||
|
|
@ -1544,6 +1428,9 @@ type ActivityStreamsAttachmentProperty interface {
|
|||
// PrependTootEmoji prepends a Emoji value to the front of a list of the
|
||||
// property "attachment". Invalidates all iterators.
|
||||
PrependTootEmoji(v TootEmoji)
|
||||
// PrependTootHashtag prepends a Hashtag value to the front of a list of
|
||||
// the property "attachment". Invalidates all iterators.
|
||||
PrependTootHashtag(v TootHashtag)
|
||||
// PrependTootIdentityProof prepends a IdentityProof value to the front of
|
||||
// a list of the property "attachment". Invalidates all iterators.
|
||||
PrependTootIdentityProof(v TootIdentityProof)
|
||||
|
|
@ -1777,30 +1664,6 @@ type ActivityStreamsAttachmentProperty interface {
|
|||
// for the property "attachment". Panics if the index is out of
|
||||
// bounds. Invalidates all iterators.
|
||||
SetActivityStreamsView(idx int, v ActivityStreamsView)
|
||||
// SetForgeFedBranch sets a Branch value to be at the specified index for
|
||||
// the property "attachment". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedBranch(idx int, v ForgeFedBranch)
|
||||
// SetForgeFedCommit sets a Commit value to be at the specified index for
|
||||
// the property "attachment". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedCommit(idx int, v ForgeFedCommit)
|
||||
// SetForgeFedPush sets a Push value to be at the specified index for the
|
||||
// property "attachment". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedPush(idx int, v ForgeFedPush)
|
||||
// SetForgeFedRepository sets a Repository value to be at the specified
|
||||
// index for the property "attachment". Panics if the index is out of
|
||||
// bounds. Invalidates all iterators.
|
||||
SetForgeFedRepository(idx int, v ForgeFedRepository)
|
||||
// SetForgeFedTicket sets a Ticket value to be at the specified index for
|
||||
// the property "attachment". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedTicket(idx int, v ForgeFedTicket)
|
||||
// SetForgeFedTicketDependency sets a TicketDependency value to be at the
|
||||
// specified index for the property "attachment". Panics if the index
|
||||
// is out of bounds. Invalidates all iterators.
|
||||
SetForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
|
||||
// SetIRI sets an IRI value to be at the specified index for the property
|
||||
// "attachment". Panics if the index is out of bounds.
|
||||
SetIRI(idx int, v *url.URL)
|
||||
|
|
@ -1812,6 +1675,10 @@ type ActivityStreamsAttachmentProperty interface {
|
|||
// property "attachment". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetTootEmoji(idx int, v TootEmoji)
|
||||
// SetTootHashtag sets a Hashtag value to be at the specified index for
|
||||
// the property "attachment". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetTootHashtag(idx int, v TootHashtag)
|
||||
// SetTootIdentityProof sets a IdentityProof value to be at the specified
|
||||
// index for the property "attachment". Panics if the index is out of
|
||||
// bounds. Invalidates all iterators.
|
||||
|
|
|
|||
|
|
@ -225,29 +225,6 @@ type ActivityStreamsAttributedToPropertyIterator interface {
|
|||
// IsActivityStreamsView returns false, GetActivityStreamsView will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsView() ActivityStreamsView
|
||||
// GetForgeFedBranch returns the value of this property. When
|
||||
// IsForgeFedBranch returns false, GetForgeFedBranch will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedBranch() ForgeFedBranch
|
||||
// GetForgeFedCommit returns the value of this property. When
|
||||
// IsForgeFedCommit returns false, GetForgeFedCommit will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedCommit() ForgeFedCommit
|
||||
// GetForgeFedPush returns the value of this property. When IsForgeFedPush
|
||||
// returns false, GetForgeFedPush will return an arbitrary value.
|
||||
GetForgeFedPush() ForgeFedPush
|
||||
// GetForgeFedRepository returns the value of this property. When
|
||||
// IsForgeFedRepository returns false, GetForgeFedRepository will
|
||||
// return an arbitrary value.
|
||||
GetForgeFedRepository() ForgeFedRepository
|
||||
// GetForgeFedTicket returns the value of this property. When
|
||||
// IsForgeFedTicket returns false, GetForgeFedTicket will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedTicket() ForgeFedTicket
|
||||
// GetForgeFedTicketDependency returns the value of this property. When
|
||||
// IsForgeFedTicketDependency returns false,
|
||||
// GetForgeFedTicketDependency will return an arbitrary value.
|
||||
GetForgeFedTicketDependency() ForgeFedTicketDependency
|
||||
// GetIRI returns the IRI of this property. When IsIRI returns false,
|
||||
// GetIRI will return an arbitrary value.
|
||||
GetIRI() *url.URL
|
||||
|
|
@ -258,6 +235,9 @@ type ActivityStreamsAttributedToPropertyIterator interface {
|
|||
// GetTootEmoji returns the value of this property. When IsTootEmoji
|
||||
// returns false, GetTootEmoji will return an arbitrary value.
|
||||
GetTootEmoji() TootEmoji
|
||||
// GetTootHashtag returns the value of this property. When IsTootHashtag
|
||||
// returns false, GetTootHashtag will return an arbitrary value.
|
||||
GetTootHashtag() TootHashtag
|
||||
// GetTootIdentityProof returns the value of this property. When
|
||||
// IsTootIdentityProof returns false, GetTootIdentityProof will return
|
||||
// an arbitrary value.
|
||||
|
|
@ -500,31 +480,6 @@ type ActivityStreamsAttributedToPropertyIterator interface {
|
|||
// "View". When true, use the GetActivityStreamsView and
|
||||
// SetActivityStreamsView methods to access and set this property.
|
||||
IsActivityStreamsView() bool
|
||||
// IsForgeFedBranch returns true if this property has a type of "Branch".
|
||||
// When true, use the GetForgeFedBranch and SetForgeFedBranch methods
|
||||
// to access and set this property.
|
||||
IsForgeFedBranch() bool
|
||||
// IsForgeFedCommit returns true if this property has a type of "Commit".
|
||||
// When true, use the GetForgeFedCommit and SetForgeFedCommit methods
|
||||
// to access and set this property.
|
||||
IsForgeFedCommit() bool
|
||||
// IsForgeFedPush returns true if this property has a type of "Push". When
|
||||
// true, use the GetForgeFedPush and SetForgeFedPush methods to access
|
||||
// and set this property.
|
||||
IsForgeFedPush() bool
|
||||
// IsForgeFedRepository returns true if this property has a type of
|
||||
// "Repository". When true, use the GetForgeFedRepository and
|
||||
// SetForgeFedRepository methods to access and set this property.
|
||||
IsForgeFedRepository() bool
|
||||
// IsForgeFedTicket returns true if this property has a type of "Ticket".
|
||||
// When true, use the GetForgeFedTicket and SetForgeFedTicket methods
|
||||
// to access and set this property.
|
||||
IsForgeFedTicket() bool
|
||||
// IsForgeFedTicketDependency returns true if this property has a type of
|
||||
// "TicketDependency". When true, use the GetForgeFedTicketDependency
|
||||
// and SetForgeFedTicketDependency methods to access and set this
|
||||
// property.
|
||||
IsForgeFedTicketDependency() bool
|
||||
// IsIRI returns true if this property is an IRI. When true, use GetIRI
|
||||
// and SetIRI to access and set this property
|
||||
IsIRI() bool
|
||||
|
|
@ -536,6 +491,10 @@ type ActivityStreamsAttributedToPropertyIterator interface {
|
|||
// true, use the GetTootEmoji and SetTootEmoji methods to access and
|
||||
// set this property.
|
||||
IsTootEmoji() bool
|
||||
// IsTootHashtag returns true if this property has a type of "Hashtag".
|
||||
// When true, use the GetTootHashtag and SetTootHashtag methods to
|
||||
// access and set this property.
|
||||
IsTootHashtag() bool
|
||||
// IsTootIdentityProof returns true if this property has a type of
|
||||
// "IdentityProof". When true, use the GetTootIdentityProof and
|
||||
// SetTootIdentityProof methods to access and set this property.
|
||||
|
|
@ -725,24 +684,6 @@ type ActivityStreamsAttributedToPropertyIterator interface {
|
|||
// SetActivityStreamsView sets the value of this property. Calling
|
||||
// IsActivityStreamsView afterwards returns true.
|
||||
SetActivityStreamsView(v ActivityStreamsView)
|
||||
// SetForgeFedBranch sets the value of this property. Calling
|
||||
// IsForgeFedBranch afterwards returns true.
|
||||
SetForgeFedBranch(v ForgeFedBranch)
|
||||
// SetForgeFedCommit sets the value of this property. Calling
|
||||
// IsForgeFedCommit afterwards returns true.
|
||||
SetForgeFedCommit(v ForgeFedCommit)
|
||||
// SetForgeFedPush sets the value of this property. Calling IsForgeFedPush
|
||||
// afterwards returns true.
|
||||
SetForgeFedPush(v ForgeFedPush)
|
||||
// SetForgeFedRepository sets the value of this property. Calling
|
||||
// IsForgeFedRepository afterwards returns true.
|
||||
SetForgeFedRepository(v ForgeFedRepository)
|
||||
// SetForgeFedTicket sets the value of this property. Calling
|
||||
// IsForgeFedTicket afterwards returns true.
|
||||
SetForgeFedTicket(v ForgeFedTicket)
|
||||
// SetForgeFedTicketDependency sets the value of this property. Calling
|
||||
// IsForgeFedTicketDependency afterwards returns true.
|
||||
SetForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// SetIRI sets the value of this property. Calling IsIRI afterwards
|
||||
// returns true.
|
||||
SetIRI(v *url.URL)
|
||||
|
|
@ -752,6 +693,9 @@ type ActivityStreamsAttributedToPropertyIterator interface {
|
|||
// SetTootEmoji sets the value of this property. Calling IsTootEmoji
|
||||
// afterwards returns true.
|
||||
SetTootEmoji(v TootEmoji)
|
||||
// SetTootHashtag sets the value of this property. Calling IsTootHashtag
|
||||
// afterwards returns true.
|
||||
SetTootHashtag(v TootHashtag)
|
||||
// SetTootIdentityProof sets the value of this property. Calling
|
||||
// IsTootIdentityProof afterwards returns true.
|
||||
SetTootIdentityProof(v TootIdentityProof)
|
||||
|
|
@ -1007,30 +951,6 @@ type ActivityStreamsAttributedToProperty interface {
|
|||
// the property "attributedTo". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
AppendActivityStreamsView(v ActivityStreamsView)
|
||||
// AppendForgeFedBranch appends a Branch value to the back of a list of
|
||||
// the property "attributedTo". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
AppendForgeFedBranch(v ForgeFedBranch)
|
||||
// AppendForgeFedCommit appends a Commit value to the back of a list of
|
||||
// the property "attributedTo". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
AppendForgeFedCommit(v ForgeFedCommit)
|
||||
// AppendForgeFedPush appends a Push value to the back of a list of the
|
||||
// property "attributedTo". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendForgeFedPush(v ForgeFedPush)
|
||||
// AppendForgeFedRepository appends a Repository value to the back of a
|
||||
// list of the property "attributedTo". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
AppendForgeFedRepository(v ForgeFedRepository)
|
||||
// AppendForgeFedTicket appends a Ticket value to the back of a list of
|
||||
// the property "attributedTo". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
AppendForgeFedTicket(v ForgeFedTicket)
|
||||
// AppendForgeFedTicketDependency appends a TicketDependency value to the
|
||||
// back of a list of the property "attributedTo". Invalidates
|
||||
// iterators that are traversing using Prev.
|
||||
AppendForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// AppendIRI appends an IRI value to the back of a list of the property
|
||||
// "attributedTo"
|
||||
AppendIRI(v *url.URL)
|
||||
|
|
@ -1042,6 +962,10 @@ type ActivityStreamsAttributedToProperty interface {
|
|||
// property "attributedTo". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendTootEmoji(v TootEmoji)
|
||||
// AppendTootHashtag appends a Hashtag value to the back of a list of the
|
||||
// property "attributedTo". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendTootHashtag(v TootHashtag)
|
||||
// AppendTootIdentityProof appends a IdentityProof value to the back of a
|
||||
// list of the property "attributedTo". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
|
|
@ -1291,31 +1215,6 @@ type ActivityStreamsAttributedToProperty interface {
|
|||
// for a property "attributedTo". Existing elements at that index and
|
||||
// higher are shifted back once. Invalidates all iterators.
|
||||
InsertActivityStreamsView(idx int, v ActivityStreamsView)
|
||||
// InsertForgeFedBranch inserts a Branch value at the specified index for
|
||||
// a property "attributedTo". Existing elements at that index and
|
||||
// higher are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedBranch(idx int, v ForgeFedBranch)
|
||||
// InsertForgeFedCommit inserts a Commit value at the specified index for
|
||||
// a property "attributedTo". Existing elements at that index and
|
||||
// higher are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedCommit(idx int, v ForgeFedCommit)
|
||||
// InsertForgeFedPush inserts a Push value at the specified index for a
|
||||
// property "attributedTo". Existing elements at that index and higher
|
||||
// are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedPush(idx int, v ForgeFedPush)
|
||||
// InsertForgeFedRepository inserts a Repository value at the specified
|
||||
// index for a property "attributedTo". Existing elements at that
|
||||
// index and higher are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedRepository(idx int, v ForgeFedRepository)
|
||||
// InsertForgeFedTicket inserts a Ticket value at the specified index for
|
||||
// a property "attributedTo". Existing elements at that index and
|
||||
// higher are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedTicket(idx int, v ForgeFedTicket)
|
||||
// InsertForgeFedTicketDependency inserts a TicketDependency value at the
|
||||
// specified index for a property "attributedTo". Existing elements at
|
||||
// that index and higher are shifted back once. Invalidates all
|
||||
// iterators.
|
||||
InsertForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
|
||||
// Insert inserts an IRI value at the specified index for a property
|
||||
// "attributedTo". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
|
|
@ -1329,6 +1228,10 @@ type ActivityStreamsAttributedToProperty interface {
|
|||
// property "attributedTo". Existing elements at that index and higher
|
||||
// are shifted back once. Invalidates all iterators.
|
||||
InsertTootEmoji(idx int, v TootEmoji)
|
||||
// InsertTootHashtag inserts a Hashtag value at the specified index for a
|
||||
// property "attributedTo". Existing elements at that index and higher
|
||||
// are shifted back once. Invalidates all iterators.
|
||||
InsertTootHashtag(idx int, v TootHashtag)
|
||||
// InsertTootIdentityProof inserts a IdentityProof value at the specified
|
||||
// index for a property "attributedTo". Existing elements at that
|
||||
// index and higher are shifted back once. Invalidates all iterators.
|
||||
|
|
@ -1532,25 +1435,6 @@ type ActivityStreamsAttributedToProperty interface {
|
|||
// PrependActivityStreamsView prepends a View value to the front of a list
|
||||
// of the property "attributedTo". Invalidates all iterators.
|
||||
PrependActivityStreamsView(v ActivityStreamsView)
|
||||
// PrependForgeFedBranch prepends a Branch value to the front of a list of
|
||||
// the property "attributedTo". Invalidates all iterators.
|
||||
PrependForgeFedBranch(v ForgeFedBranch)
|
||||
// PrependForgeFedCommit prepends a Commit value to the front of a list of
|
||||
// the property "attributedTo". Invalidates all iterators.
|
||||
PrependForgeFedCommit(v ForgeFedCommit)
|
||||
// PrependForgeFedPush prepends a Push value to the front of a list of the
|
||||
// property "attributedTo". Invalidates all iterators.
|
||||
PrependForgeFedPush(v ForgeFedPush)
|
||||
// PrependForgeFedRepository prepends a Repository value to the front of a
|
||||
// list of the property "attributedTo". Invalidates all iterators.
|
||||
PrependForgeFedRepository(v ForgeFedRepository)
|
||||
// PrependForgeFedTicket prepends a Ticket value to the front of a list of
|
||||
// the property "attributedTo". Invalidates all iterators.
|
||||
PrependForgeFedTicket(v ForgeFedTicket)
|
||||
// PrependForgeFedTicketDependency prepends a TicketDependency value to
|
||||
// the front of a list of the property "attributedTo". Invalidates all
|
||||
// iterators.
|
||||
PrependForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// PrependIRI prepends an IRI value to the front of a list of the property
|
||||
// "attributedTo".
|
||||
PrependIRI(v *url.URL)
|
||||
|
|
@ -1560,6 +1444,9 @@ type ActivityStreamsAttributedToProperty interface {
|
|||
// PrependTootEmoji prepends a Emoji value to the front of a list of the
|
||||
// property "attributedTo". Invalidates all iterators.
|
||||
PrependTootEmoji(v TootEmoji)
|
||||
// PrependTootHashtag prepends a Hashtag value to the front of a list of
|
||||
// the property "attributedTo". Invalidates all iterators.
|
||||
PrependTootHashtag(v TootHashtag)
|
||||
// PrependTootIdentityProof prepends a IdentityProof value to the front of
|
||||
// a list of the property "attributedTo". Invalidates all iterators.
|
||||
PrependTootIdentityProof(v TootIdentityProof)
|
||||
|
|
@ -1793,30 +1680,6 @@ type ActivityStreamsAttributedToProperty interface {
|
|||
// for the property "attributedTo". Panics if the index is out of
|
||||
// bounds. Invalidates all iterators.
|
||||
SetActivityStreamsView(idx int, v ActivityStreamsView)
|
||||
// SetForgeFedBranch sets a Branch value to be at the specified index for
|
||||
// the property "attributedTo". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedBranch(idx int, v ForgeFedBranch)
|
||||
// SetForgeFedCommit sets a Commit value to be at the specified index for
|
||||
// the property "attributedTo". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedCommit(idx int, v ForgeFedCommit)
|
||||
// SetForgeFedPush sets a Push value to be at the specified index for the
|
||||
// property "attributedTo". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedPush(idx int, v ForgeFedPush)
|
||||
// SetForgeFedRepository sets a Repository value to be at the specified
|
||||
// index for the property "attributedTo". Panics if the index is out
|
||||
// of bounds. Invalidates all iterators.
|
||||
SetForgeFedRepository(idx int, v ForgeFedRepository)
|
||||
// SetForgeFedTicket sets a Ticket value to be at the specified index for
|
||||
// the property "attributedTo". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedTicket(idx int, v ForgeFedTicket)
|
||||
// SetForgeFedTicketDependency sets a TicketDependency value to be at the
|
||||
// specified index for the property "attributedTo". Panics if the
|
||||
// index is out of bounds. Invalidates all iterators.
|
||||
SetForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
|
||||
// SetIRI sets an IRI value to be at the specified index for the property
|
||||
// "attributedTo". Panics if the index is out of bounds.
|
||||
SetIRI(idx int, v *url.URL)
|
||||
|
|
@ -1828,6 +1691,10 @@ type ActivityStreamsAttributedToProperty interface {
|
|||
// property "attributedTo". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetTootEmoji(idx int, v TootEmoji)
|
||||
// SetTootHashtag sets a Hashtag value to be at the specified index for
|
||||
// the property "attributedTo". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetTootHashtag(idx int, v TootHashtag)
|
||||
// SetTootIdentityProof sets a IdentityProof value to be at the specified
|
||||
// index for the property "attributedTo". Panics if the index is out
|
||||
// of bounds. Invalidates all iterators.
|
||||
|
|
|
|||
|
|
@ -225,29 +225,6 @@ type ActivityStreamsAudiencePropertyIterator interface {
|
|||
// IsActivityStreamsView returns false, GetActivityStreamsView will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsView() ActivityStreamsView
|
||||
// GetForgeFedBranch returns the value of this property. When
|
||||
// IsForgeFedBranch returns false, GetForgeFedBranch will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedBranch() ForgeFedBranch
|
||||
// GetForgeFedCommit returns the value of this property. When
|
||||
// IsForgeFedCommit returns false, GetForgeFedCommit will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedCommit() ForgeFedCommit
|
||||
// GetForgeFedPush returns the value of this property. When IsForgeFedPush
|
||||
// returns false, GetForgeFedPush will return an arbitrary value.
|
||||
GetForgeFedPush() ForgeFedPush
|
||||
// GetForgeFedRepository returns the value of this property. When
|
||||
// IsForgeFedRepository returns false, GetForgeFedRepository will
|
||||
// return an arbitrary value.
|
||||
GetForgeFedRepository() ForgeFedRepository
|
||||
// GetForgeFedTicket returns the value of this property. When
|
||||
// IsForgeFedTicket returns false, GetForgeFedTicket will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedTicket() ForgeFedTicket
|
||||
// GetForgeFedTicketDependency returns the value of this property. When
|
||||
// IsForgeFedTicketDependency returns false,
|
||||
// GetForgeFedTicketDependency will return an arbitrary value.
|
||||
GetForgeFedTicketDependency() ForgeFedTicketDependency
|
||||
// GetIRI returns the IRI of this property. When IsIRI returns false,
|
||||
// GetIRI will return an arbitrary value.
|
||||
GetIRI() *url.URL
|
||||
|
|
@ -258,6 +235,9 @@ type ActivityStreamsAudiencePropertyIterator interface {
|
|||
// GetTootEmoji returns the value of this property. When IsTootEmoji
|
||||
// returns false, GetTootEmoji will return an arbitrary value.
|
||||
GetTootEmoji() TootEmoji
|
||||
// GetTootHashtag returns the value of this property. When IsTootHashtag
|
||||
// returns false, GetTootHashtag will return an arbitrary value.
|
||||
GetTootHashtag() TootHashtag
|
||||
// GetTootIdentityProof returns the value of this property. When
|
||||
// IsTootIdentityProof returns false, GetTootIdentityProof will return
|
||||
// an arbitrary value.
|
||||
|
|
@ -500,31 +480,6 @@ type ActivityStreamsAudiencePropertyIterator interface {
|
|||
// "View". When true, use the GetActivityStreamsView and
|
||||
// SetActivityStreamsView methods to access and set this property.
|
||||
IsActivityStreamsView() bool
|
||||
// IsForgeFedBranch returns true if this property has a type of "Branch".
|
||||
// When true, use the GetForgeFedBranch and SetForgeFedBranch methods
|
||||
// to access and set this property.
|
||||
IsForgeFedBranch() bool
|
||||
// IsForgeFedCommit returns true if this property has a type of "Commit".
|
||||
// When true, use the GetForgeFedCommit and SetForgeFedCommit methods
|
||||
// to access and set this property.
|
||||
IsForgeFedCommit() bool
|
||||
// IsForgeFedPush returns true if this property has a type of "Push". When
|
||||
// true, use the GetForgeFedPush and SetForgeFedPush methods to access
|
||||
// and set this property.
|
||||
IsForgeFedPush() bool
|
||||
// IsForgeFedRepository returns true if this property has a type of
|
||||
// "Repository". When true, use the GetForgeFedRepository and
|
||||
// SetForgeFedRepository methods to access and set this property.
|
||||
IsForgeFedRepository() bool
|
||||
// IsForgeFedTicket returns true if this property has a type of "Ticket".
|
||||
// When true, use the GetForgeFedTicket and SetForgeFedTicket methods
|
||||
// to access and set this property.
|
||||
IsForgeFedTicket() bool
|
||||
// IsForgeFedTicketDependency returns true if this property has a type of
|
||||
// "TicketDependency". When true, use the GetForgeFedTicketDependency
|
||||
// and SetForgeFedTicketDependency methods to access and set this
|
||||
// property.
|
||||
IsForgeFedTicketDependency() bool
|
||||
// IsIRI returns true if this property is an IRI. When true, use GetIRI
|
||||
// and SetIRI to access and set this property
|
||||
IsIRI() bool
|
||||
|
|
@ -536,6 +491,10 @@ type ActivityStreamsAudiencePropertyIterator interface {
|
|||
// true, use the GetTootEmoji and SetTootEmoji methods to access and
|
||||
// set this property.
|
||||
IsTootEmoji() bool
|
||||
// IsTootHashtag returns true if this property has a type of "Hashtag".
|
||||
// When true, use the GetTootHashtag and SetTootHashtag methods to
|
||||
// access and set this property.
|
||||
IsTootHashtag() bool
|
||||
// IsTootIdentityProof returns true if this property has a type of
|
||||
// "IdentityProof". When true, use the GetTootIdentityProof and
|
||||
// SetTootIdentityProof methods to access and set this property.
|
||||
|
|
@ -725,24 +684,6 @@ type ActivityStreamsAudiencePropertyIterator interface {
|
|||
// SetActivityStreamsView sets the value of this property. Calling
|
||||
// IsActivityStreamsView afterwards returns true.
|
||||
SetActivityStreamsView(v ActivityStreamsView)
|
||||
// SetForgeFedBranch sets the value of this property. Calling
|
||||
// IsForgeFedBranch afterwards returns true.
|
||||
SetForgeFedBranch(v ForgeFedBranch)
|
||||
// SetForgeFedCommit sets the value of this property. Calling
|
||||
// IsForgeFedCommit afterwards returns true.
|
||||
SetForgeFedCommit(v ForgeFedCommit)
|
||||
// SetForgeFedPush sets the value of this property. Calling IsForgeFedPush
|
||||
// afterwards returns true.
|
||||
SetForgeFedPush(v ForgeFedPush)
|
||||
// SetForgeFedRepository sets the value of this property. Calling
|
||||
// IsForgeFedRepository afterwards returns true.
|
||||
SetForgeFedRepository(v ForgeFedRepository)
|
||||
// SetForgeFedTicket sets the value of this property. Calling
|
||||
// IsForgeFedTicket afterwards returns true.
|
||||
SetForgeFedTicket(v ForgeFedTicket)
|
||||
// SetForgeFedTicketDependency sets the value of this property. Calling
|
||||
// IsForgeFedTicketDependency afterwards returns true.
|
||||
SetForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// SetIRI sets the value of this property. Calling IsIRI afterwards
|
||||
// returns true.
|
||||
SetIRI(v *url.URL)
|
||||
|
|
@ -752,6 +693,9 @@ type ActivityStreamsAudiencePropertyIterator interface {
|
|||
// SetTootEmoji sets the value of this property. Calling IsTootEmoji
|
||||
// afterwards returns true.
|
||||
SetTootEmoji(v TootEmoji)
|
||||
// SetTootHashtag sets the value of this property. Calling IsTootHashtag
|
||||
// afterwards returns true.
|
||||
SetTootHashtag(v TootHashtag)
|
||||
// SetTootIdentityProof sets the value of this property. Calling
|
||||
// IsTootIdentityProof afterwards returns true.
|
||||
SetTootIdentityProof(v TootIdentityProof)
|
||||
|
|
@ -991,30 +935,6 @@ type ActivityStreamsAudienceProperty interface {
|
|||
// the property "audience". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendActivityStreamsView(v ActivityStreamsView)
|
||||
// AppendForgeFedBranch appends a Branch value to the back of a list of
|
||||
// the property "audience". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendForgeFedBranch(v ForgeFedBranch)
|
||||
// AppendForgeFedCommit appends a Commit value to the back of a list of
|
||||
// the property "audience". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendForgeFedCommit(v ForgeFedCommit)
|
||||
// AppendForgeFedPush appends a Push value to the back of a list of the
|
||||
// property "audience". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendForgeFedPush(v ForgeFedPush)
|
||||
// AppendForgeFedRepository appends a Repository value to the back of a
|
||||
// list of the property "audience". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
AppendForgeFedRepository(v ForgeFedRepository)
|
||||
// AppendForgeFedTicket appends a Ticket value to the back of a list of
|
||||
// the property "audience". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendForgeFedTicket(v ForgeFedTicket)
|
||||
// AppendForgeFedTicketDependency appends a TicketDependency value to the
|
||||
// back of a list of the property "audience". Invalidates iterators
|
||||
// that are traversing using Prev.
|
||||
AppendForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// AppendIRI appends an IRI value to the back of a list of the property
|
||||
// "audience"
|
||||
AppendIRI(v *url.URL)
|
||||
|
|
@ -1026,6 +946,10 @@ type ActivityStreamsAudienceProperty interface {
|
|||
// property "audience". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendTootEmoji(v TootEmoji)
|
||||
// AppendTootHashtag appends a Hashtag value to the back of a list of the
|
||||
// property "audience". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendTootHashtag(v TootHashtag)
|
||||
// AppendTootIdentityProof appends a IdentityProof value to the back of a
|
||||
// list of the property "audience". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
|
|
@ -1275,31 +1199,6 @@ type ActivityStreamsAudienceProperty interface {
|
|||
// for a property "audience". Existing elements at that index and
|
||||
// higher are shifted back once. Invalidates all iterators.
|
||||
InsertActivityStreamsView(idx int, v ActivityStreamsView)
|
||||
// InsertForgeFedBranch inserts a Branch value at the specified index for
|
||||
// a property "audience". Existing elements at that index and higher
|
||||
// are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedBranch(idx int, v ForgeFedBranch)
|
||||
// InsertForgeFedCommit inserts a Commit value at the specified index for
|
||||
// a property "audience". Existing elements at that index and higher
|
||||
// are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedCommit(idx int, v ForgeFedCommit)
|
||||
// InsertForgeFedPush inserts a Push value at the specified index for a
|
||||
// property "audience". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedPush(idx int, v ForgeFedPush)
|
||||
// InsertForgeFedRepository inserts a Repository value at the specified
|
||||
// index for a property "audience". Existing elements at that index
|
||||
// and higher are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedRepository(idx int, v ForgeFedRepository)
|
||||
// InsertForgeFedTicket inserts a Ticket value at the specified index for
|
||||
// a property "audience". Existing elements at that index and higher
|
||||
// are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedTicket(idx int, v ForgeFedTicket)
|
||||
// InsertForgeFedTicketDependency inserts a TicketDependency value at the
|
||||
// specified index for a property "audience". Existing elements at
|
||||
// that index and higher are shifted back once. Invalidates all
|
||||
// iterators.
|
||||
InsertForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
|
||||
// Insert inserts an IRI value at the specified index for a property
|
||||
// "audience". Existing elements at that index and higher are shifted
|
||||
// back once. Invalidates all iterators.
|
||||
|
|
@ -1313,6 +1212,10 @@ type ActivityStreamsAudienceProperty interface {
|
|||
// property "audience". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertTootEmoji(idx int, v TootEmoji)
|
||||
// InsertTootHashtag inserts a Hashtag value at the specified index for a
|
||||
// property "audience". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertTootHashtag(idx int, v TootHashtag)
|
||||
// InsertTootIdentityProof inserts a IdentityProof value at the specified
|
||||
// index for a property "audience". Existing elements at that index
|
||||
// and higher are shifted back once. Invalidates all iterators.
|
||||
|
|
@ -1515,25 +1418,6 @@ type ActivityStreamsAudienceProperty interface {
|
|||
// PrependActivityStreamsView prepends a View value to the front of a list
|
||||
// of the property "audience". Invalidates all iterators.
|
||||
PrependActivityStreamsView(v ActivityStreamsView)
|
||||
// PrependForgeFedBranch prepends a Branch value to the front of a list of
|
||||
// the property "audience". Invalidates all iterators.
|
||||
PrependForgeFedBranch(v ForgeFedBranch)
|
||||
// PrependForgeFedCommit prepends a Commit value to the front of a list of
|
||||
// the property "audience". Invalidates all iterators.
|
||||
PrependForgeFedCommit(v ForgeFedCommit)
|
||||
// PrependForgeFedPush prepends a Push value to the front of a list of the
|
||||
// property "audience". Invalidates all iterators.
|
||||
PrependForgeFedPush(v ForgeFedPush)
|
||||
// PrependForgeFedRepository prepends a Repository value to the front of a
|
||||
// list of the property "audience". Invalidates all iterators.
|
||||
PrependForgeFedRepository(v ForgeFedRepository)
|
||||
// PrependForgeFedTicket prepends a Ticket value to the front of a list of
|
||||
// the property "audience". Invalidates all iterators.
|
||||
PrependForgeFedTicket(v ForgeFedTicket)
|
||||
// PrependForgeFedTicketDependency prepends a TicketDependency value to
|
||||
// the front of a list of the property "audience". Invalidates all
|
||||
// iterators.
|
||||
PrependForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// PrependIRI prepends an IRI value to the front of a list of the property
|
||||
// "audience".
|
||||
PrependIRI(v *url.URL)
|
||||
|
|
@ -1543,6 +1427,9 @@ type ActivityStreamsAudienceProperty interface {
|
|||
// PrependTootEmoji prepends a Emoji value to the front of a list of the
|
||||
// property "audience". Invalidates all iterators.
|
||||
PrependTootEmoji(v TootEmoji)
|
||||
// PrependTootHashtag prepends a Hashtag value to the front of a list of
|
||||
// the property "audience". Invalidates all iterators.
|
||||
PrependTootHashtag(v TootHashtag)
|
||||
// PrependTootIdentityProof prepends a IdentityProof value to the front of
|
||||
// a list of the property "audience". Invalidates all iterators.
|
||||
PrependTootIdentityProof(v TootIdentityProof)
|
||||
|
|
@ -1776,30 +1663,6 @@ type ActivityStreamsAudienceProperty interface {
|
|||
// for the property "audience". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetActivityStreamsView(idx int, v ActivityStreamsView)
|
||||
// SetForgeFedBranch sets a Branch value to be at the specified index for
|
||||
// the property "audience". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedBranch(idx int, v ForgeFedBranch)
|
||||
// SetForgeFedCommit sets a Commit value to be at the specified index for
|
||||
// the property "audience". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedCommit(idx int, v ForgeFedCommit)
|
||||
// SetForgeFedPush sets a Push value to be at the specified index for the
|
||||
// property "audience". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedPush(idx int, v ForgeFedPush)
|
||||
// SetForgeFedRepository sets a Repository value to be at the specified
|
||||
// index for the property "audience". Panics if the index is out of
|
||||
// bounds. Invalidates all iterators.
|
||||
SetForgeFedRepository(idx int, v ForgeFedRepository)
|
||||
// SetForgeFedTicket sets a Ticket value to be at the specified index for
|
||||
// the property "audience". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedTicket(idx int, v ForgeFedTicket)
|
||||
// SetForgeFedTicketDependency sets a TicketDependency value to be at the
|
||||
// specified index for the property "audience". Panics if the index is
|
||||
// out of bounds. Invalidates all iterators.
|
||||
SetForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
|
||||
// SetIRI sets an IRI value to be at the specified index for the property
|
||||
// "audience". Panics if the index is out of bounds.
|
||||
SetIRI(idx int, v *url.URL)
|
||||
|
|
@ -1811,6 +1674,10 @@ type ActivityStreamsAudienceProperty interface {
|
|||
// property "audience". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetTootEmoji(idx int, v TootEmoji)
|
||||
// SetTootHashtag sets a Hashtag value to be at the specified index for
|
||||
// the property "audience". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetTootHashtag(idx int, v TootHashtag)
|
||||
// SetTootIdentityProof sets a IdentityProof value to be at the specified
|
||||
// index for the property "audience". Panics if the index is out of
|
||||
// bounds. Invalidates all iterators.
|
||||
|
|
|
|||
|
|
@ -225,29 +225,6 @@ type ActivityStreamsBccPropertyIterator interface {
|
|||
// IsActivityStreamsView returns false, GetActivityStreamsView will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsView() ActivityStreamsView
|
||||
// GetForgeFedBranch returns the value of this property. When
|
||||
// IsForgeFedBranch returns false, GetForgeFedBranch will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedBranch() ForgeFedBranch
|
||||
// GetForgeFedCommit returns the value of this property. When
|
||||
// IsForgeFedCommit returns false, GetForgeFedCommit will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedCommit() ForgeFedCommit
|
||||
// GetForgeFedPush returns the value of this property. When IsForgeFedPush
|
||||
// returns false, GetForgeFedPush will return an arbitrary value.
|
||||
GetForgeFedPush() ForgeFedPush
|
||||
// GetForgeFedRepository returns the value of this property. When
|
||||
// IsForgeFedRepository returns false, GetForgeFedRepository will
|
||||
// return an arbitrary value.
|
||||
GetForgeFedRepository() ForgeFedRepository
|
||||
// GetForgeFedTicket returns the value of this property. When
|
||||
// IsForgeFedTicket returns false, GetForgeFedTicket will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedTicket() ForgeFedTicket
|
||||
// GetForgeFedTicketDependency returns the value of this property. When
|
||||
// IsForgeFedTicketDependency returns false,
|
||||
// GetForgeFedTicketDependency will return an arbitrary value.
|
||||
GetForgeFedTicketDependency() ForgeFedTicketDependency
|
||||
// GetIRI returns the IRI of this property. When IsIRI returns false,
|
||||
// GetIRI will return an arbitrary value.
|
||||
GetIRI() *url.URL
|
||||
|
|
@ -258,6 +235,9 @@ type ActivityStreamsBccPropertyIterator interface {
|
|||
// GetTootEmoji returns the value of this property. When IsTootEmoji
|
||||
// returns false, GetTootEmoji will return an arbitrary value.
|
||||
GetTootEmoji() TootEmoji
|
||||
// GetTootHashtag returns the value of this property. When IsTootHashtag
|
||||
// returns false, GetTootHashtag will return an arbitrary value.
|
||||
GetTootHashtag() TootHashtag
|
||||
// GetTootIdentityProof returns the value of this property. When
|
||||
// IsTootIdentityProof returns false, GetTootIdentityProof will return
|
||||
// an arbitrary value.
|
||||
|
|
@ -500,31 +480,6 @@ type ActivityStreamsBccPropertyIterator interface {
|
|||
// "View". When true, use the GetActivityStreamsView and
|
||||
// SetActivityStreamsView methods to access and set this property.
|
||||
IsActivityStreamsView() bool
|
||||
// IsForgeFedBranch returns true if this property has a type of "Branch".
|
||||
// When true, use the GetForgeFedBranch and SetForgeFedBranch methods
|
||||
// to access and set this property.
|
||||
IsForgeFedBranch() bool
|
||||
// IsForgeFedCommit returns true if this property has a type of "Commit".
|
||||
// When true, use the GetForgeFedCommit and SetForgeFedCommit methods
|
||||
// to access and set this property.
|
||||
IsForgeFedCommit() bool
|
||||
// IsForgeFedPush returns true if this property has a type of "Push". When
|
||||
// true, use the GetForgeFedPush and SetForgeFedPush methods to access
|
||||
// and set this property.
|
||||
IsForgeFedPush() bool
|
||||
// IsForgeFedRepository returns true if this property has a type of
|
||||
// "Repository". When true, use the GetForgeFedRepository and
|
||||
// SetForgeFedRepository methods to access and set this property.
|
||||
IsForgeFedRepository() bool
|
||||
// IsForgeFedTicket returns true if this property has a type of "Ticket".
|
||||
// When true, use the GetForgeFedTicket and SetForgeFedTicket methods
|
||||
// to access and set this property.
|
||||
IsForgeFedTicket() bool
|
||||
// IsForgeFedTicketDependency returns true if this property has a type of
|
||||
// "TicketDependency". When true, use the GetForgeFedTicketDependency
|
||||
// and SetForgeFedTicketDependency methods to access and set this
|
||||
// property.
|
||||
IsForgeFedTicketDependency() bool
|
||||
// IsIRI returns true if this property is an IRI. When true, use GetIRI
|
||||
// and SetIRI to access and set this property
|
||||
IsIRI() bool
|
||||
|
|
@ -536,6 +491,10 @@ type ActivityStreamsBccPropertyIterator interface {
|
|||
// true, use the GetTootEmoji and SetTootEmoji methods to access and
|
||||
// set this property.
|
||||
IsTootEmoji() bool
|
||||
// IsTootHashtag returns true if this property has a type of "Hashtag".
|
||||
// When true, use the GetTootHashtag and SetTootHashtag methods to
|
||||
// access and set this property.
|
||||
IsTootHashtag() bool
|
||||
// IsTootIdentityProof returns true if this property has a type of
|
||||
// "IdentityProof". When true, use the GetTootIdentityProof and
|
||||
// SetTootIdentityProof methods to access and set this property.
|
||||
|
|
@ -725,24 +684,6 @@ type ActivityStreamsBccPropertyIterator interface {
|
|||
// SetActivityStreamsView sets the value of this property. Calling
|
||||
// IsActivityStreamsView afterwards returns true.
|
||||
SetActivityStreamsView(v ActivityStreamsView)
|
||||
// SetForgeFedBranch sets the value of this property. Calling
|
||||
// IsForgeFedBranch afterwards returns true.
|
||||
SetForgeFedBranch(v ForgeFedBranch)
|
||||
// SetForgeFedCommit sets the value of this property. Calling
|
||||
// IsForgeFedCommit afterwards returns true.
|
||||
SetForgeFedCommit(v ForgeFedCommit)
|
||||
// SetForgeFedPush sets the value of this property. Calling IsForgeFedPush
|
||||
// afterwards returns true.
|
||||
SetForgeFedPush(v ForgeFedPush)
|
||||
// SetForgeFedRepository sets the value of this property. Calling
|
||||
// IsForgeFedRepository afterwards returns true.
|
||||
SetForgeFedRepository(v ForgeFedRepository)
|
||||
// SetForgeFedTicket sets the value of this property. Calling
|
||||
// IsForgeFedTicket afterwards returns true.
|
||||
SetForgeFedTicket(v ForgeFedTicket)
|
||||
// SetForgeFedTicketDependency sets the value of this property. Calling
|
||||
// IsForgeFedTicketDependency afterwards returns true.
|
||||
SetForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// SetIRI sets the value of this property. Calling IsIRI afterwards
|
||||
// returns true.
|
||||
SetIRI(v *url.URL)
|
||||
|
|
@ -752,6 +693,9 @@ type ActivityStreamsBccPropertyIterator interface {
|
|||
// SetTootEmoji sets the value of this property. Calling IsTootEmoji
|
||||
// afterwards returns true.
|
||||
SetTootEmoji(v TootEmoji)
|
||||
// SetTootHashtag sets the value of this property. Calling IsTootHashtag
|
||||
// afterwards returns true.
|
||||
SetTootHashtag(v TootHashtag)
|
||||
// SetTootIdentityProof sets the value of this property. Calling
|
||||
// IsTootIdentityProof afterwards returns true.
|
||||
SetTootIdentityProof(v TootIdentityProof)
|
||||
|
|
@ -989,30 +933,6 @@ type ActivityStreamsBccProperty interface {
|
|||
// the property "bcc". Invalidates iterators that are traversing using
|
||||
// Prev.
|
||||
AppendActivityStreamsView(v ActivityStreamsView)
|
||||
// AppendForgeFedBranch appends a Branch value to the back of a list of
|
||||
// the property "bcc". Invalidates iterators that are traversing using
|
||||
// Prev.
|
||||
AppendForgeFedBranch(v ForgeFedBranch)
|
||||
// AppendForgeFedCommit appends a Commit value to the back of a list of
|
||||
// the property "bcc". Invalidates iterators that are traversing using
|
||||
// Prev.
|
||||
AppendForgeFedCommit(v ForgeFedCommit)
|
||||
// AppendForgeFedPush appends a Push value to the back of a list of the
|
||||
// property "bcc". Invalidates iterators that are traversing using
|
||||
// Prev.
|
||||
AppendForgeFedPush(v ForgeFedPush)
|
||||
// AppendForgeFedRepository appends a Repository value to the back of a
|
||||
// list of the property "bcc". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
AppendForgeFedRepository(v ForgeFedRepository)
|
||||
// AppendForgeFedTicket appends a Ticket value to the back of a list of
|
||||
// the property "bcc". Invalidates iterators that are traversing using
|
||||
// Prev.
|
||||
AppendForgeFedTicket(v ForgeFedTicket)
|
||||
// AppendForgeFedTicketDependency appends a TicketDependency value to the
|
||||
// back of a list of the property "bcc". Invalidates iterators that
|
||||
// are traversing using Prev.
|
||||
AppendForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// AppendIRI appends an IRI value to the back of a list of the property
|
||||
// "bcc"
|
||||
AppendIRI(v *url.URL)
|
||||
|
|
@ -1024,6 +944,10 @@ type ActivityStreamsBccProperty interface {
|
|||
// property "bcc". Invalidates iterators that are traversing using
|
||||
// Prev.
|
||||
AppendTootEmoji(v TootEmoji)
|
||||
// AppendTootHashtag appends a Hashtag value to the back of a list of the
|
||||
// property "bcc". Invalidates iterators that are traversing using
|
||||
// Prev.
|
||||
AppendTootHashtag(v TootHashtag)
|
||||
// AppendTootIdentityProof appends a IdentityProof value to the back of a
|
||||
// list of the property "bcc". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
|
|
@ -1265,30 +1189,6 @@ type ActivityStreamsBccProperty interface {
|
|||
// for a property "bcc". Existing elements at that index and higher
|
||||
// are shifted back once. Invalidates all iterators.
|
||||
InsertActivityStreamsView(idx int, v ActivityStreamsView)
|
||||
// InsertForgeFedBranch inserts a Branch value at the specified index for
|
||||
// a property "bcc". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedBranch(idx int, v ForgeFedBranch)
|
||||
// InsertForgeFedCommit inserts a Commit value at the specified index for
|
||||
// a property "bcc". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedCommit(idx int, v ForgeFedCommit)
|
||||
// InsertForgeFedPush inserts a Push value at the specified index for a
|
||||
// property "bcc". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedPush(idx int, v ForgeFedPush)
|
||||
// InsertForgeFedRepository inserts a Repository value at the specified
|
||||
// index for a property "bcc". Existing elements at that index and
|
||||
// higher are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedRepository(idx int, v ForgeFedRepository)
|
||||
// InsertForgeFedTicket inserts a Ticket value at the specified index for
|
||||
// a property "bcc". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedTicket(idx int, v ForgeFedTicket)
|
||||
// InsertForgeFedTicketDependency inserts a TicketDependency value at the
|
||||
// specified index for a property "bcc". Existing elements at that
|
||||
// index and higher are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
|
||||
// Insert inserts an IRI value at the specified index for a property
|
||||
// "bcc". Existing elements at that index and higher are shifted back
|
||||
// once. Invalidates all iterators.
|
||||
|
|
@ -1301,6 +1201,10 @@ type ActivityStreamsBccProperty interface {
|
|||
// property "bcc". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertTootEmoji(idx int, v TootEmoji)
|
||||
// InsertTootHashtag inserts a Hashtag value at the specified index for a
|
||||
// property "bcc". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertTootHashtag(idx int, v TootHashtag)
|
||||
// InsertTootIdentityProof inserts a IdentityProof value at the specified
|
||||
// index for a property "bcc". Existing elements at that index and
|
||||
// higher are shifted back once. Invalidates all iterators.
|
||||
|
|
@ -1499,25 +1403,6 @@ type ActivityStreamsBccProperty interface {
|
|||
// PrependActivityStreamsView prepends a View value to the front of a list
|
||||
// of the property "bcc". Invalidates all iterators.
|
||||
PrependActivityStreamsView(v ActivityStreamsView)
|
||||
// PrependForgeFedBranch prepends a Branch value to the front of a list of
|
||||
// the property "bcc". Invalidates all iterators.
|
||||
PrependForgeFedBranch(v ForgeFedBranch)
|
||||
// PrependForgeFedCommit prepends a Commit value to the front of a list of
|
||||
// the property "bcc". Invalidates all iterators.
|
||||
PrependForgeFedCommit(v ForgeFedCommit)
|
||||
// PrependForgeFedPush prepends a Push value to the front of a list of the
|
||||
// property "bcc". Invalidates all iterators.
|
||||
PrependForgeFedPush(v ForgeFedPush)
|
||||
// PrependForgeFedRepository prepends a Repository value to the front of a
|
||||
// list of the property "bcc". Invalidates all iterators.
|
||||
PrependForgeFedRepository(v ForgeFedRepository)
|
||||
// PrependForgeFedTicket prepends a Ticket value to the front of a list of
|
||||
// the property "bcc". Invalidates all iterators.
|
||||
PrependForgeFedTicket(v ForgeFedTicket)
|
||||
// PrependForgeFedTicketDependency prepends a TicketDependency value to
|
||||
// the front of a list of the property "bcc". Invalidates all
|
||||
// iterators.
|
||||
PrependForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// PrependIRI prepends an IRI value to the front of a list of the property
|
||||
// "bcc".
|
||||
PrependIRI(v *url.URL)
|
||||
|
|
@ -1527,6 +1412,9 @@ type ActivityStreamsBccProperty interface {
|
|||
// PrependTootEmoji prepends a Emoji value to the front of a list of the
|
||||
// property "bcc". Invalidates all iterators.
|
||||
PrependTootEmoji(v TootEmoji)
|
||||
// PrependTootHashtag prepends a Hashtag value to the front of a list of
|
||||
// the property "bcc". Invalidates all iterators.
|
||||
PrependTootHashtag(v TootHashtag)
|
||||
// PrependTootIdentityProof prepends a IdentityProof value to the front of
|
||||
// a list of the property "bcc". Invalidates all iterators.
|
||||
PrependTootIdentityProof(v TootIdentityProof)
|
||||
|
|
@ -1760,30 +1648,6 @@ type ActivityStreamsBccProperty interface {
|
|||
// for the property "bcc". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetActivityStreamsView(idx int, v ActivityStreamsView)
|
||||
// SetForgeFedBranch sets a Branch value to be at the specified index for
|
||||
// the property "bcc". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedBranch(idx int, v ForgeFedBranch)
|
||||
// SetForgeFedCommit sets a Commit value to be at the specified index for
|
||||
// the property "bcc". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedCommit(idx int, v ForgeFedCommit)
|
||||
// SetForgeFedPush sets a Push value to be at the specified index for the
|
||||
// property "bcc". Panics if the index is out of bounds. Invalidates
|
||||
// all iterators.
|
||||
SetForgeFedPush(idx int, v ForgeFedPush)
|
||||
// SetForgeFedRepository sets a Repository value to be at the specified
|
||||
// index for the property "bcc". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedRepository(idx int, v ForgeFedRepository)
|
||||
// SetForgeFedTicket sets a Ticket value to be at the specified index for
|
||||
// the property "bcc". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedTicket(idx int, v ForgeFedTicket)
|
||||
// SetForgeFedTicketDependency sets a TicketDependency value to be at the
|
||||
// specified index for the property "bcc". Panics if the index is out
|
||||
// of bounds. Invalidates all iterators.
|
||||
SetForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
|
||||
// SetIRI sets an IRI value to be at the specified index for the property
|
||||
// "bcc". Panics if the index is out of bounds.
|
||||
SetIRI(idx int, v *url.URL)
|
||||
|
|
@ -1795,6 +1659,10 @@ type ActivityStreamsBccProperty interface {
|
|||
// property "bcc". Panics if the index is out of bounds. Invalidates
|
||||
// all iterators.
|
||||
SetTootEmoji(idx int, v TootEmoji)
|
||||
// SetTootHashtag sets a Hashtag value to be at the specified index for
|
||||
// the property "bcc". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetTootHashtag(idx int, v TootHashtag)
|
||||
// SetTootIdentityProof sets a IdentityProof value to be at the specified
|
||||
// index for the property "bcc". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
|
|
|
|||
|
|
@ -225,29 +225,6 @@ type ActivityStreamsBtoPropertyIterator interface {
|
|||
// IsActivityStreamsView returns false, GetActivityStreamsView will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsView() ActivityStreamsView
|
||||
// GetForgeFedBranch returns the value of this property. When
|
||||
// IsForgeFedBranch returns false, GetForgeFedBranch will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedBranch() ForgeFedBranch
|
||||
// GetForgeFedCommit returns the value of this property. When
|
||||
// IsForgeFedCommit returns false, GetForgeFedCommit will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedCommit() ForgeFedCommit
|
||||
// GetForgeFedPush returns the value of this property. When IsForgeFedPush
|
||||
// returns false, GetForgeFedPush will return an arbitrary value.
|
||||
GetForgeFedPush() ForgeFedPush
|
||||
// GetForgeFedRepository returns the value of this property. When
|
||||
// IsForgeFedRepository returns false, GetForgeFedRepository will
|
||||
// return an arbitrary value.
|
||||
GetForgeFedRepository() ForgeFedRepository
|
||||
// GetForgeFedTicket returns the value of this property. When
|
||||
// IsForgeFedTicket returns false, GetForgeFedTicket will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedTicket() ForgeFedTicket
|
||||
// GetForgeFedTicketDependency returns the value of this property. When
|
||||
// IsForgeFedTicketDependency returns false,
|
||||
// GetForgeFedTicketDependency will return an arbitrary value.
|
||||
GetForgeFedTicketDependency() ForgeFedTicketDependency
|
||||
// GetIRI returns the IRI of this property. When IsIRI returns false,
|
||||
// GetIRI will return an arbitrary value.
|
||||
GetIRI() *url.URL
|
||||
|
|
@ -258,6 +235,9 @@ type ActivityStreamsBtoPropertyIterator interface {
|
|||
// GetTootEmoji returns the value of this property. When IsTootEmoji
|
||||
// returns false, GetTootEmoji will return an arbitrary value.
|
||||
GetTootEmoji() TootEmoji
|
||||
// GetTootHashtag returns the value of this property. When IsTootHashtag
|
||||
// returns false, GetTootHashtag will return an arbitrary value.
|
||||
GetTootHashtag() TootHashtag
|
||||
// GetTootIdentityProof returns the value of this property. When
|
||||
// IsTootIdentityProof returns false, GetTootIdentityProof will return
|
||||
// an arbitrary value.
|
||||
|
|
@ -500,31 +480,6 @@ type ActivityStreamsBtoPropertyIterator interface {
|
|||
// "View". When true, use the GetActivityStreamsView and
|
||||
// SetActivityStreamsView methods to access and set this property.
|
||||
IsActivityStreamsView() bool
|
||||
// IsForgeFedBranch returns true if this property has a type of "Branch".
|
||||
// When true, use the GetForgeFedBranch and SetForgeFedBranch methods
|
||||
// to access and set this property.
|
||||
IsForgeFedBranch() bool
|
||||
// IsForgeFedCommit returns true if this property has a type of "Commit".
|
||||
// When true, use the GetForgeFedCommit and SetForgeFedCommit methods
|
||||
// to access and set this property.
|
||||
IsForgeFedCommit() bool
|
||||
// IsForgeFedPush returns true if this property has a type of "Push". When
|
||||
// true, use the GetForgeFedPush and SetForgeFedPush methods to access
|
||||
// and set this property.
|
||||
IsForgeFedPush() bool
|
||||
// IsForgeFedRepository returns true if this property has a type of
|
||||
// "Repository". When true, use the GetForgeFedRepository and
|
||||
// SetForgeFedRepository methods to access and set this property.
|
||||
IsForgeFedRepository() bool
|
||||
// IsForgeFedTicket returns true if this property has a type of "Ticket".
|
||||
// When true, use the GetForgeFedTicket and SetForgeFedTicket methods
|
||||
// to access and set this property.
|
||||
IsForgeFedTicket() bool
|
||||
// IsForgeFedTicketDependency returns true if this property has a type of
|
||||
// "TicketDependency". When true, use the GetForgeFedTicketDependency
|
||||
// and SetForgeFedTicketDependency methods to access and set this
|
||||
// property.
|
||||
IsForgeFedTicketDependency() bool
|
||||
// IsIRI returns true if this property is an IRI. When true, use GetIRI
|
||||
// and SetIRI to access and set this property
|
||||
IsIRI() bool
|
||||
|
|
@ -536,6 +491,10 @@ type ActivityStreamsBtoPropertyIterator interface {
|
|||
// true, use the GetTootEmoji and SetTootEmoji methods to access and
|
||||
// set this property.
|
||||
IsTootEmoji() bool
|
||||
// IsTootHashtag returns true if this property has a type of "Hashtag".
|
||||
// When true, use the GetTootHashtag and SetTootHashtag methods to
|
||||
// access and set this property.
|
||||
IsTootHashtag() bool
|
||||
// IsTootIdentityProof returns true if this property has a type of
|
||||
// "IdentityProof". When true, use the GetTootIdentityProof and
|
||||
// SetTootIdentityProof methods to access and set this property.
|
||||
|
|
@ -725,24 +684,6 @@ type ActivityStreamsBtoPropertyIterator interface {
|
|||
// SetActivityStreamsView sets the value of this property. Calling
|
||||
// IsActivityStreamsView afterwards returns true.
|
||||
SetActivityStreamsView(v ActivityStreamsView)
|
||||
// SetForgeFedBranch sets the value of this property. Calling
|
||||
// IsForgeFedBranch afterwards returns true.
|
||||
SetForgeFedBranch(v ForgeFedBranch)
|
||||
// SetForgeFedCommit sets the value of this property. Calling
|
||||
// IsForgeFedCommit afterwards returns true.
|
||||
SetForgeFedCommit(v ForgeFedCommit)
|
||||
// SetForgeFedPush sets the value of this property. Calling IsForgeFedPush
|
||||
// afterwards returns true.
|
||||
SetForgeFedPush(v ForgeFedPush)
|
||||
// SetForgeFedRepository sets the value of this property. Calling
|
||||
// IsForgeFedRepository afterwards returns true.
|
||||
SetForgeFedRepository(v ForgeFedRepository)
|
||||
// SetForgeFedTicket sets the value of this property. Calling
|
||||
// IsForgeFedTicket afterwards returns true.
|
||||
SetForgeFedTicket(v ForgeFedTicket)
|
||||
// SetForgeFedTicketDependency sets the value of this property. Calling
|
||||
// IsForgeFedTicketDependency afterwards returns true.
|
||||
SetForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// SetIRI sets the value of this property. Calling IsIRI afterwards
|
||||
// returns true.
|
||||
SetIRI(v *url.URL)
|
||||
|
|
@ -752,6 +693,9 @@ type ActivityStreamsBtoPropertyIterator interface {
|
|||
// SetTootEmoji sets the value of this property. Calling IsTootEmoji
|
||||
// afterwards returns true.
|
||||
SetTootEmoji(v TootEmoji)
|
||||
// SetTootHashtag sets the value of this property. Calling IsTootHashtag
|
||||
// afterwards returns true.
|
||||
SetTootHashtag(v TootHashtag)
|
||||
// SetTootIdentityProof sets the value of this property. Calling
|
||||
// IsTootIdentityProof afterwards returns true.
|
||||
SetTootIdentityProof(v TootIdentityProof)
|
||||
|
|
@ -989,30 +933,6 @@ type ActivityStreamsBtoProperty interface {
|
|||
// the property "bto". Invalidates iterators that are traversing using
|
||||
// Prev.
|
||||
AppendActivityStreamsView(v ActivityStreamsView)
|
||||
// AppendForgeFedBranch appends a Branch value to the back of a list of
|
||||
// the property "bto". Invalidates iterators that are traversing using
|
||||
// Prev.
|
||||
AppendForgeFedBranch(v ForgeFedBranch)
|
||||
// AppendForgeFedCommit appends a Commit value to the back of a list of
|
||||
// the property "bto". Invalidates iterators that are traversing using
|
||||
// Prev.
|
||||
AppendForgeFedCommit(v ForgeFedCommit)
|
||||
// AppendForgeFedPush appends a Push value to the back of a list of the
|
||||
// property "bto". Invalidates iterators that are traversing using
|
||||
// Prev.
|
||||
AppendForgeFedPush(v ForgeFedPush)
|
||||
// AppendForgeFedRepository appends a Repository value to the back of a
|
||||
// list of the property "bto". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
AppendForgeFedRepository(v ForgeFedRepository)
|
||||
// AppendForgeFedTicket appends a Ticket value to the back of a list of
|
||||
// the property "bto". Invalidates iterators that are traversing using
|
||||
// Prev.
|
||||
AppendForgeFedTicket(v ForgeFedTicket)
|
||||
// AppendForgeFedTicketDependency appends a TicketDependency value to the
|
||||
// back of a list of the property "bto". Invalidates iterators that
|
||||
// are traversing using Prev.
|
||||
AppendForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// AppendIRI appends an IRI value to the back of a list of the property
|
||||
// "bto"
|
||||
AppendIRI(v *url.URL)
|
||||
|
|
@ -1024,6 +944,10 @@ type ActivityStreamsBtoProperty interface {
|
|||
// property "bto". Invalidates iterators that are traversing using
|
||||
// Prev.
|
||||
AppendTootEmoji(v TootEmoji)
|
||||
// AppendTootHashtag appends a Hashtag value to the back of a list of the
|
||||
// property "bto". Invalidates iterators that are traversing using
|
||||
// Prev.
|
||||
AppendTootHashtag(v TootHashtag)
|
||||
// AppendTootIdentityProof appends a IdentityProof value to the back of a
|
||||
// list of the property "bto". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
|
|
@ -1265,30 +1189,6 @@ type ActivityStreamsBtoProperty interface {
|
|||
// for a property "bto". Existing elements at that index and higher
|
||||
// are shifted back once. Invalidates all iterators.
|
||||
InsertActivityStreamsView(idx int, v ActivityStreamsView)
|
||||
// InsertForgeFedBranch inserts a Branch value at the specified index for
|
||||
// a property "bto". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedBranch(idx int, v ForgeFedBranch)
|
||||
// InsertForgeFedCommit inserts a Commit value at the specified index for
|
||||
// a property "bto". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedCommit(idx int, v ForgeFedCommit)
|
||||
// InsertForgeFedPush inserts a Push value at the specified index for a
|
||||
// property "bto". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedPush(idx int, v ForgeFedPush)
|
||||
// InsertForgeFedRepository inserts a Repository value at the specified
|
||||
// index for a property "bto". Existing elements at that index and
|
||||
// higher are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedRepository(idx int, v ForgeFedRepository)
|
||||
// InsertForgeFedTicket inserts a Ticket value at the specified index for
|
||||
// a property "bto". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedTicket(idx int, v ForgeFedTicket)
|
||||
// InsertForgeFedTicketDependency inserts a TicketDependency value at the
|
||||
// specified index for a property "bto". Existing elements at that
|
||||
// index and higher are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
|
||||
// Insert inserts an IRI value at the specified index for a property
|
||||
// "bto". Existing elements at that index and higher are shifted back
|
||||
// once. Invalidates all iterators.
|
||||
|
|
@ -1301,6 +1201,10 @@ type ActivityStreamsBtoProperty interface {
|
|||
// property "bto". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertTootEmoji(idx int, v TootEmoji)
|
||||
// InsertTootHashtag inserts a Hashtag value at the specified index for a
|
||||
// property "bto". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertTootHashtag(idx int, v TootHashtag)
|
||||
// InsertTootIdentityProof inserts a IdentityProof value at the specified
|
||||
// index for a property "bto". Existing elements at that index and
|
||||
// higher are shifted back once. Invalidates all iterators.
|
||||
|
|
@ -1499,25 +1403,6 @@ type ActivityStreamsBtoProperty interface {
|
|||
// PrependActivityStreamsView prepends a View value to the front of a list
|
||||
// of the property "bto". Invalidates all iterators.
|
||||
PrependActivityStreamsView(v ActivityStreamsView)
|
||||
// PrependForgeFedBranch prepends a Branch value to the front of a list of
|
||||
// the property "bto". Invalidates all iterators.
|
||||
PrependForgeFedBranch(v ForgeFedBranch)
|
||||
// PrependForgeFedCommit prepends a Commit value to the front of a list of
|
||||
// the property "bto". Invalidates all iterators.
|
||||
PrependForgeFedCommit(v ForgeFedCommit)
|
||||
// PrependForgeFedPush prepends a Push value to the front of a list of the
|
||||
// property "bto". Invalidates all iterators.
|
||||
PrependForgeFedPush(v ForgeFedPush)
|
||||
// PrependForgeFedRepository prepends a Repository value to the front of a
|
||||
// list of the property "bto". Invalidates all iterators.
|
||||
PrependForgeFedRepository(v ForgeFedRepository)
|
||||
// PrependForgeFedTicket prepends a Ticket value to the front of a list of
|
||||
// the property "bto". Invalidates all iterators.
|
||||
PrependForgeFedTicket(v ForgeFedTicket)
|
||||
// PrependForgeFedTicketDependency prepends a TicketDependency value to
|
||||
// the front of a list of the property "bto". Invalidates all
|
||||
// iterators.
|
||||
PrependForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// PrependIRI prepends an IRI value to the front of a list of the property
|
||||
// "bto".
|
||||
PrependIRI(v *url.URL)
|
||||
|
|
@ -1527,6 +1412,9 @@ type ActivityStreamsBtoProperty interface {
|
|||
// PrependTootEmoji prepends a Emoji value to the front of a list of the
|
||||
// property "bto". Invalidates all iterators.
|
||||
PrependTootEmoji(v TootEmoji)
|
||||
// PrependTootHashtag prepends a Hashtag value to the front of a list of
|
||||
// the property "bto". Invalidates all iterators.
|
||||
PrependTootHashtag(v TootHashtag)
|
||||
// PrependTootIdentityProof prepends a IdentityProof value to the front of
|
||||
// a list of the property "bto". Invalidates all iterators.
|
||||
PrependTootIdentityProof(v TootIdentityProof)
|
||||
|
|
@ -1760,30 +1648,6 @@ type ActivityStreamsBtoProperty interface {
|
|||
// for the property "bto". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetActivityStreamsView(idx int, v ActivityStreamsView)
|
||||
// SetForgeFedBranch sets a Branch value to be at the specified index for
|
||||
// the property "bto". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedBranch(idx int, v ForgeFedBranch)
|
||||
// SetForgeFedCommit sets a Commit value to be at the specified index for
|
||||
// the property "bto". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedCommit(idx int, v ForgeFedCommit)
|
||||
// SetForgeFedPush sets a Push value to be at the specified index for the
|
||||
// property "bto". Panics if the index is out of bounds. Invalidates
|
||||
// all iterators.
|
||||
SetForgeFedPush(idx int, v ForgeFedPush)
|
||||
// SetForgeFedRepository sets a Repository value to be at the specified
|
||||
// index for the property "bto". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedRepository(idx int, v ForgeFedRepository)
|
||||
// SetForgeFedTicket sets a Ticket value to be at the specified index for
|
||||
// the property "bto". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedTicket(idx int, v ForgeFedTicket)
|
||||
// SetForgeFedTicketDependency sets a TicketDependency value to be at the
|
||||
// specified index for the property "bto". Panics if the index is out
|
||||
// of bounds. Invalidates all iterators.
|
||||
SetForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
|
||||
// SetIRI sets an IRI value to be at the specified index for the property
|
||||
// "bto". Panics if the index is out of bounds.
|
||||
SetIRI(idx int, v *url.URL)
|
||||
|
|
@ -1795,6 +1659,10 @@ type ActivityStreamsBtoProperty interface {
|
|||
// property "bto". Panics if the index is out of bounds. Invalidates
|
||||
// all iterators.
|
||||
SetTootEmoji(idx int, v TootEmoji)
|
||||
// SetTootHashtag sets a Hashtag value to be at the specified index for
|
||||
// the property "bto". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetTootHashtag(idx int, v TootHashtag)
|
||||
// SetTootIdentityProof sets a IdentityProof value to be at the specified
|
||||
// index for the property "bto". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
|
|
|
|||
|
|
@ -225,29 +225,6 @@ type ActivityStreamsCcPropertyIterator interface {
|
|||
// IsActivityStreamsView returns false, GetActivityStreamsView will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsView() ActivityStreamsView
|
||||
// GetForgeFedBranch returns the value of this property. When
|
||||
// IsForgeFedBranch returns false, GetForgeFedBranch will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedBranch() ForgeFedBranch
|
||||
// GetForgeFedCommit returns the value of this property. When
|
||||
// IsForgeFedCommit returns false, GetForgeFedCommit will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedCommit() ForgeFedCommit
|
||||
// GetForgeFedPush returns the value of this property. When IsForgeFedPush
|
||||
// returns false, GetForgeFedPush will return an arbitrary value.
|
||||
GetForgeFedPush() ForgeFedPush
|
||||
// GetForgeFedRepository returns the value of this property. When
|
||||
// IsForgeFedRepository returns false, GetForgeFedRepository will
|
||||
// return an arbitrary value.
|
||||
GetForgeFedRepository() ForgeFedRepository
|
||||
// GetForgeFedTicket returns the value of this property. When
|
||||
// IsForgeFedTicket returns false, GetForgeFedTicket will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedTicket() ForgeFedTicket
|
||||
// GetForgeFedTicketDependency returns the value of this property. When
|
||||
// IsForgeFedTicketDependency returns false,
|
||||
// GetForgeFedTicketDependency will return an arbitrary value.
|
||||
GetForgeFedTicketDependency() ForgeFedTicketDependency
|
||||
// GetIRI returns the IRI of this property. When IsIRI returns false,
|
||||
// GetIRI will return an arbitrary value.
|
||||
GetIRI() *url.URL
|
||||
|
|
@ -258,6 +235,9 @@ type ActivityStreamsCcPropertyIterator interface {
|
|||
// GetTootEmoji returns the value of this property. When IsTootEmoji
|
||||
// returns false, GetTootEmoji will return an arbitrary value.
|
||||
GetTootEmoji() TootEmoji
|
||||
// GetTootHashtag returns the value of this property. When IsTootHashtag
|
||||
// returns false, GetTootHashtag will return an arbitrary value.
|
||||
GetTootHashtag() TootHashtag
|
||||
// GetTootIdentityProof returns the value of this property. When
|
||||
// IsTootIdentityProof returns false, GetTootIdentityProof will return
|
||||
// an arbitrary value.
|
||||
|
|
@ -500,31 +480,6 @@ type ActivityStreamsCcPropertyIterator interface {
|
|||
// "View". When true, use the GetActivityStreamsView and
|
||||
// SetActivityStreamsView methods to access and set this property.
|
||||
IsActivityStreamsView() bool
|
||||
// IsForgeFedBranch returns true if this property has a type of "Branch".
|
||||
// When true, use the GetForgeFedBranch and SetForgeFedBranch methods
|
||||
// to access and set this property.
|
||||
IsForgeFedBranch() bool
|
||||
// IsForgeFedCommit returns true if this property has a type of "Commit".
|
||||
// When true, use the GetForgeFedCommit and SetForgeFedCommit methods
|
||||
// to access and set this property.
|
||||
IsForgeFedCommit() bool
|
||||
// IsForgeFedPush returns true if this property has a type of "Push". When
|
||||
// true, use the GetForgeFedPush and SetForgeFedPush methods to access
|
||||
// and set this property.
|
||||
IsForgeFedPush() bool
|
||||
// IsForgeFedRepository returns true if this property has a type of
|
||||
// "Repository". When true, use the GetForgeFedRepository and
|
||||
// SetForgeFedRepository methods to access and set this property.
|
||||
IsForgeFedRepository() bool
|
||||
// IsForgeFedTicket returns true if this property has a type of "Ticket".
|
||||
// When true, use the GetForgeFedTicket and SetForgeFedTicket methods
|
||||
// to access and set this property.
|
||||
IsForgeFedTicket() bool
|
||||
// IsForgeFedTicketDependency returns true if this property has a type of
|
||||
// "TicketDependency". When true, use the GetForgeFedTicketDependency
|
||||
// and SetForgeFedTicketDependency methods to access and set this
|
||||
// property.
|
||||
IsForgeFedTicketDependency() bool
|
||||
// IsIRI returns true if this property is an IRI. When true, use GetIRI
|
||||
// and SetIRI to access and set this property
|
||||
IsIRI() bool
|
||||
|
|
@ -536,6 +491,10 @@ type ActivityStreamsCcPropertyIterator interface {
|
|||
// true, use the GetTootEmoji and SetTootEmoji methods to access and
|
||||
// set this property.
|
||||
IsTootEmoji() bool
|
||||
// IsTootHashtag returns true if this property has a type of "Hashtag".
|
||||
// When true, use the GetTootHashtag and SetTootHashtag methods to
|
||||
// access and set this property.
|
||||
IsTootHashtag() bool
|
||||
// IsTootIdentityProof returns true if this property has a type of
|
||||
// "IdentityProof". When true, use the GetTootIdentityProof and
|
||||
// SetTootIdentityProof methods to access and set this property.
|
||||
|
|
@ -725,24 +684,6 @@ type ActivityStreamsCcPropertyIterator interface {
|
|||
// SetActivityStreamsView sets the value of this property. Calling
|
||||
// IsActivityStreamsView afterwards returns true.
|
||||
SetActivityStreamsView(v ActivityStreamsView)
|
||||
// SetForgeFedBranch sets the value of this property. Calling
|
||||
// IsForgeFedBranch afterwards returns true.
|
||||
SetForgeFedBranch(v ForgeFedBranch)
|
||||
// SetForgeFedCommit sets the value of this property. Calling
|
||||
// IsForgeFedCommit afterwards returns true.
|
||||
SetForgeFedCommit(v ForgeFedCommit)
|
||||
// SetForgeFedPush sets the value of this property. Calling IsForgeFedPush
|
||||
// afterwards returns true.
|
||||
SetForgeFedPush(v ForgeFedPush)
|
||||
// SetForgeFedRepository sets the value of this property. Calling
|
||||
// IsForgeFedRepository afterwards returns true.
|
||||
SetForgeFedRepository(v ForgeFedRepository)
|
||||
// SetForgeFedTicket sets the value of this property. Calling
|
||||
// IsForgeFedTicket afterwards returns true.
|
||||
SetForgeFedTicket(v ForgeFedTicket)
|
||||
// SetForgeFedTicketDependency sets the value of this property. Calling
|
||||
// IsForgeFedTicketDependency afterwards returns true.
|
||||
SetForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// SetIRI sets the value of this property. Calling IsIRI afterwards
|
||||
// returns true.
|
||||
SetIRI(v *url.URL)
|
||||
|
|
@ -752,6 +693,9 @@ type ActivityStreamsCcPropertyIterator interface {
|
|||
// SetTootEmoji sets the value of this property. Calling IsTootEmoji
|
||||
// afterwards returns true.
|
||||
SetTootEmoji(v TootEmoji)
|
||||
// SetTootHashtag sets the value of this property. Calling IsTootHashtag
|
||||
// afterwards returns true.
|
||||
SetTootHashtag(v TootHashtag)
|
||||
// SetTootIdentityProof sets the value of this property. Calling
|
||||
// IsTootIdentityProof afterwards returns true.
|
||||
SetTootIdentityProof(v TootIdentityProof)
|
||||
|
|
@ -989,29 +933,6 @@ type ActivityStreamsCcProperty interface {
|
|||
// the property "cc". Invalidates iterators that are traversing using
|
||||
// Prev.
|
||||
AppendActivityStreamsView(v ActivityStreamsView)
|
||||
// AppendForgeFedBranch appends a Branch value to the back of a list of
|
||||
// the property "cc". Invalidates iterators that are traversing using
|
||||
// Prev.
|
||||
AppendForgeFedBranch(v ForgeFedBranch)
|
||||
// AppendForgeFedCommit appends a Commit value to the back of a list of
|
||||
// the property "cc". Invalidates iterators that are traversing using
|
||||
// Prev.
|
||||
AppendForgeFedCommit(v ForgeFedCommit)
|
||||
// AppendForgeFedPush appends a Push value to the back of a list of the
|
||||
// property "cc". Invalidates iterators that are traversing using Prev.
|
||||
AppendForgeFedPush(v ForgeFedPush)
|
||||
// AppendForgeFedRepository appends a Repository value to the back of a
|
||||
// list of the property "cc". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
AppendForgeFedRepository(v ForgeFedRepository)
|
||||
// AppendForgeFedTicket appends a Ticket value to the back of a list of
|
||||
// the property "cc". Invalidates iterators that are traversing using
|
||||
// Prev.
|
||||
AppendForgeFedTicket(v ForgeFedTicket)
|
||||
// AppendForgeFedTicketDependency appends a TicketDependency value to the
|
||||
// back of a list of the property "cc". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
AppendForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// AppendIRI appends an IRI value to the back of a list of the property
|
||||
// "cc"
|
||||
AppendIRI(v *url.URL)
|
||||
|
|
@ -1022,6 +943,9 @@ type ActivityStreamsCcProperty interface {
|
|||
// AppendTootEmoji appends a Emoji value to the back of a list of the
|
||||
// property "cc". Invalidates iterators that are traversing using Prev.
|
||||
AppendTootEmoji(v TootEmoji)
|
||||
// AppendTootHashtag appends a Hashtag value to the back of a list of the
|
||||
// property "cc". Invalidates iterators that are traversing using Prev.
|
||||
AppendTootHashtag(v TootHashtag)
|
||||
// AppendTootIdentityProof appends a IdentityProof value to the back of a
|
||||
// list of the property "cc". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
|
|
@ -1263,30 +1187,6 @@ type ActivityStreamsCcProperty interface {
|
|||
// for a property "cc". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertActivityStreamsView(idx int, v ActivityStreamsView)
|
||||
// InsertForgeFedBranch inserts a Branch value at the specified index for
|
||||
// a property "cc". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedBranch(idx int, v ForgeFedBranch)
|
||||
// InsertForgeFedCommit inserts a Commit value at the specified index for
|
||||
// a property "cc". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedCommit(idx int, v ForgeFedCommit)
|
||||
// InsertForgeFedPush inserts a Push value at the specified index for a
|
||||
// property "cc". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedPush(idx int, v ForgeFedPush)
|
||||
// InsertForgeFedRepository inserts a Repository value at the specified
|
||||
// index for a property "cc". Existing elements at that index and
|
||||
// higher are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedRepository(idx int, v ForgeFedRepository)
|
||||
// InsertForgeFedTicket inserts a Ticket value at the specified index for
|
||||
// a property "cc". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedTicket(idx int, v ForgeFedTicket)
|
||||
// InsertForgeFedTicketDependency inserts a TicketDependency value at the
|
||||
// specified index for a property "cc". Existing elements at that
|
||||
// index and higher are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
|
||||
// Insert inserts an IRI value at the specified index for a property "cc".
|
||||
// Existing elements at that index and higher are shifted back once.
|
||||
// Invalidates all iterators.
|
||||
|
|
@ -1299,6 +1199,10 @@ type ActivityStreamsCcProperty interface {
|
|||
// property "cc". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertTootEmoji(idx int, v TootEmoji)
|
||||
// InsertTootHashtag inserts a Hashtag value at the specified index for a
|
||||
// property "cc". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertTootHashtag(idx int, v TootHashtag)
|
||||
// InsertTootIdentityProof inserts a IdentityProof value at the specified
|
||||
// index for a property "cc". Existing elements at that index and
|
||||
// higher are shifted back once. Invalidates all iterators.
|
||||
|
|
@ -1496,24 +1400,6 @@ type ActivityStreamsCcProperty interface {
|
|||
// PrependActivityStreamsView prepends a View value to the front of a list
|
||||
// of the property "cc". Invalidates all iterators.
|
||||
PrependActivityStreamsView(v ActivityStreamsView)
|
||||
// PrependForgeFedBranch prepends a Branch value to the front of a list of
|
||||
// the property "cc". Invalidates all iterators.
|
||||
PrependForgeFedBranch(v ForgeFedBranch)
|
||||
// PrependForgeFedCommit prepends a Commit value to the front of a list of
|
||||
// the property "cc". Invalidates all iterators.
|
||||
PrependForgeFedCommit(v ForgeFedCommit)
|
||||
// PrependForgeFedPush prepends a Push value to the front of a list of the
|
||||
// property "cc". Invalidates all iterators.
|
||||
PrependForgeFedPush(v ForgeFedPush)
|
||||
// PrependForgeFedRepository prepends a Repository value to the front of a
|
||||
// list of the property "cc". Invalidates all iterators.
|
||||
PrependForgeFedRepository(v ForgeFedRepository)
|
||||
// PrependForgeFedTicket prepends a Ticket value to the front of a list of
|
||||
// the property "cc". Invalidates all iterators.
|
||||
PrependForgeFedTicket(v ForgeFedTicket)
|
||||
// PrependForgeFedTicketDependency prepends a TicketDependency value to
|
||||
// the front of a list of the property "cc". Invalidates all iterators.
|
||||
PrependForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// PrependIRI prepends an IRI value to the front of a list of the property
|
||||
// "cc".
|
||||
PrependIRI(v *url.URL)
|
||||
|
|
@ -1523,6 +1409,9 @@ type ActivityStreamsCcProperty interface {
|
|||
// PrependTootEmoji prepends a Emoji value to the front of a list of the
|
||||
// property "cc". Invalidates all iterators.
|
||||
PrependTootEmoji(v TootEmoji)
|
||||
// PrependTootHashtag prepends a Hashtag value to the front of a list of
|
||||
// the property "cc". Invalidates all iterators.
|
||||
PrependTootHashtag(v TootHashtag)
|
||||
// PrependTootIdentityProof prepends a IdentityProof value to the front of
|
||||
// a list of the property "cc". Invalidates all iterators.
|
||||
PrependTootIdentityProof(v TootIdentityProof)
|
||||
|
|
@ -1756,30 +1645,6 @@ type ActivityStreamsCcProperty interface {
|
|||
// for the property "cc". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetActivityStreamsView(idx int, v ActivityStreamsView)
|
||||
// SetForgeFedBranch sets a Branch value to be at the specified index for
|
||||
// the property "cc". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedBranch(idx int, v ForgeFedBranch)
|
||||
// SetForgeFedCommit sets a Commit value to be at the specified index for
|
||||
// the property "cc". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedCommit(idx int, v ForgeFedCommit)
|
||||
// SetForgeFedPush sets a Push value to be at the specified index for the
|
||||
// property "cc". Panics if the index is out of bounds. Invalidates
|
||||
// all iterators.
|
||||
SetForgeFedPush(idx int, v ForgeFedPush)
|
||||
// SetForgeFedRepository sets a Repository value to be at the specified
|
||||
// index for the property "cc". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedRepository(idx int, v ForgeFedRepository)
|
||||
// SetForgeFedTicket sets a Ticket value to be at the specified index for
|
||||
// the property "cc". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedTicket(idx int, v ForgeFedTicket)
|
||||
// SetForgeFedTicketDependency sets a TicketDependency value to be at the
|
||||
// specified index for the property "cc". Panics if the index is out
|
||||
// of bounds. Invalidates all iterators.
|
||||
SetForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
|
||||
// SetIRI sets an IRI value to be at the specified index for the property
|
||||
// "cc". Panics if the index is out of bounds.
|
||||
SetIRI(idx int, v *url.URL)
|
||||
|
|
@ -1791,6 +1656,10 @@ type ActivityStreamsCcProperty interface {
|
|||
// property "cc". Panics if the index is out of bounds. Invalidates
|
||||
// all iterators.
|
||||
SetTootEmoji(idx int, v TootEmoji)
|
||||
// SetTootHashtag sets a Hashtag value to be at the specified index for
|
||||
// the property "cc". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetTootHashtag(idx int, v TootHashtag)
|
||||
// SetTootIdentityProof sets a IdentityProof value to be at the specified
|
||||
// index for the property "cc". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
|
|
|
|||
|
|
@ -228,29 +228,6 @@ type ActivityStreamsClosedPropertyIterator interface {
|
|||
// IsActivityStreamsView returns false, GetActivityStreamsView will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsView() ActivityStreamsView
|
||||
// GetForgeFedBranch returns the value of this property. When
|
||||
// IsForgeFedBranch returns false, GetForgeFedBranch will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedBranch() ForgeFedBranch
|
||||
// GetForgeFedCommit returns the value of this property. When
|
||||
// IsForgeFedCommit returns false, GetForgeFedCommit will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedCommit() ForgeFedCommit
|
||||
// GetForgeFedPush returns the value of this property. When IsForgeFedPush
|
||||
// returns false, GetForgeFedPush will return an arbitrary value.
|
||||
GetForgeFedPush() ForgeFedPush
|
||||
// GetForgeFedRepository returns the value of this property. When
|
||||
// IsForgeFedRepository returns false, GetForgeFedRepository will
|
||||
// return an arbitrary value.
|
||||
GetForgeFedRepository() ForgeFedRepository
|
||||
// GetForgeFedTicket returns the value of this property. When
|
||||
// IsForgeFedTicket returns false, GetForgeFedTicket will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedTicket() ForgeFedTicket
|
||||
// GetForgeFedTicketDependency returns the value of this property. When
|
||||
// IsForgeFedTicketDependency returns false,
|
||||
// GetForgeFedTicketDependency will return an arbitrary value.
|
||||
GetForgeFedTicketDependency() ForgeFedTicketDependency
|
||||
// GetIRI returns the IRI of this property. When IsIRI returns false,
|
||||
// GetIRI will return an arbitrary value.
|
||||
GetIRI() *url.URL
|
||||
|
|
@ -261,6 +238,9 @@ type ActivityStreamsClosedPropertyIterator interface {
|
|||
// GetTootEmoji returns the value of this property. When IsTootEmoji
|
||||
// returns false, GetTootEmoji will return an arbitrary value.
|
||||
GetTootEmoji() TootEmoji
|
||||
// GetTootHashtag returns the value of this property. When IsTootHashtag
|
||||
// returns false, GetTootHashtag will return an arbitrary value.
|
||||
GetTootHashtag() TootHashtag
|
||||
// GetTootIdentityProof returns the value of this property. When
|
||||
// IsTootIdentityProof returns false, GetTootIdentityProof will return
|
||||
// an arbitrary value.
|
||||
|
|
@ -511,31 +491,6 @@ type ActivityStreamsClosedPropertyIterator interface {
|
|||
// "View". When true, use the GetActivityStreamsView and
|
||||
// SetActivityStreamsView methods to access and set this property.
|
||||
IsActivityStreamsView() bool
|
||||
// IsForgeFedBranch returns true if this property has a type of "Branch".
|
||||
// When true, use the GetForgeFedBranch and SetForgeFedBranch methods
|
||||
// to access and set this property.
|
||||
IsForgeFedBranch() bool
|
||||
// IsForgeFedCommit returns true if this property has a type of "Commit".
|
||||
// When true, use the GetForgeFedCommit and SetForgeFedCommit methods
|
||||
// to access and set this property.
|
||||
IsForgeFedCommit() bool
|
||||
// IsForgeFedPush returns true if this property has a type of "Push". When
|
||||
// true, use the GetForgeFedPush and SetForgeFedPush methods to access
|
||||
// and set this property.
|
||||
IsForgeFedPush() bool
|
||||
// IsForgeFedRepository returns true if this property has a type of
|
||||
// "Repository". When true, use the GetForgeFedRepository and
|
||||
// SetForgeFedRepository methods to access and set this property.
|
||||
IsForgeFedRepository() bool
|
||||
// IsForgeFedTicket returns true if this property has a type of "Ticket".
|
||||
// When true, use the GetForgeFedTicket and SetForgeFedTicket methods
|
||||
// to access and set this property.
|
||||
IsForgeFedTicket() bool
|
||||
// IsForgeFedTicketDependency returns true if this property has a type of
|
||||
// "TicketDependency". When true, use the GetForgeFedTicketDependency
|
||||
// and SetForgeFedTicketDependency methods to access and set this
|
||||
// property.
|
||||
IsForgeFedTicketDependency() bool
|
||||
// IsIRI returns true if this property is an IRI. When true, use GetIRI
|
||||
// and SetIRI to access and set this property
|
||||
IsIRI() bool
|
||||
|
|
@ -547,6 +502,10 @@ type ActivityStreamsClosedPropertyIterator interface {
|
|||
// true, use the GetTootEmoji and SetTootEmoji methods to access and
|
||||
// set this property.
|
||||
IsTootEmoji() bool
|
||||
// IsTootHashtag returns true if this property has a type of "Hashtag".
|
||||
// When true, use the GetTootHashtag and SetTootHashtag methods to
|
||||
// access and set this property.
|
||||
IsTootHashtag() bool
|
||||
// IsTootIdentityProof returns true if this property has a type of
|
||||
// "IdentityProof". When true, use the GetTootIdentityProof and
|
||||
// SetTootIdentityProof methods to access and set this property.
|
||||
|
|
@ -744,24 +703,6 @@ type ActivityStreamsClosedPropertyIterator interface {
|
|||
// SetActivityStreamsView sets the value of this property. Calling
|
||||
// IsActivityStreamsView afterwards returns true.
|
||||
SetActivityStreamsView(v ActivityStreamsView)
|
||||
// SetForgeFedBranch sets the value of this property. Calling
|
||||
// IsForgeFedBranch afterwards returns true.
|
||||
SetForgeFedBranch(v ForgeFedBranch)
|
||||
// SetForgeFedCommit sets the value of this property. Calling
|
||||
// IsForgeFedCommit afterwards returns true.
|
||||
SetForgeFedCommit(v ForgeFedCommit)
|
||||
// SetForgeFedPush sets the value of this property. Calling IsForgeFedPush
|
||||
// afterwards returns true.
|
||||
SetForgeFedPush(v ForgeFedPush)
|
||||
// SetForgeFedRepository sets the value of this property. Calling
|
||||
// IsForgeFedRepository afterwards returns true.
|
||||
SetForgeFedRepository(v ForgeFedRepository)
|
||||
// SetForgeFedTicket sets the value of this property. Calling
|
||||
// IsForgeFedTicket afterwards returns true.
|
||||
SetForgeFedTicket(v ForgeFedTicket)
|
||||
// SetForgeFedTicketDependency sets the value of this property. Calling
|
||||
// IsForgeFedTicketDependency afterwards returns true.
|
||||
SetForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// SetIRI sets the value of this property. Calling IsIRI afterwards
|
||||
// returns true.
|
||||
SetIRI(v *url.URL)
|
||||
|
|
@ -771,6 +712,9 @@ type ActivityStreamsClosedPropertyIterator interface {
|
|||
// SetTootEmoji sets the value of this property. Calling IsTootEmoji
|
||||
// afterwards returns true.
|
||||
SetTootEmoji(v TootEmoji)
|
||||
// SetTootHashtag sets the value of this property. Calling IsTootHashtag
|
||||
// afterwards returns true.
|
||||
SetTootHashtag(v TootHashtag)
|
||||
// SetTootIdentityProof sets the value of this property. Calling
|
||||
// IsTootIdentityProof afterwards returns true.
|
||||
SetTootIdentityProof(v TootIdentityProof)
|
||||
|
|
@ -1010,30 +954,6 @@ type ActivityStreamsClosedProperty interface {
|
|||
// the property "closed". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendActivityStreamsView(v ActivityStreamsView)
|
||||
// AppendForgeFedBranch appends a Branch value to the back of a list of
|
||||
// the property "closed". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendForgeFedBranch(v ForgeFedBranch)
|
||||
// AppendForgeFedCommit appends a Commit value to the back of a list of
|
||||
// the property "closed". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendForgeFedCommit(v ForgeFedCommit)
|
||||
// AppendForgeFedPush appends a Push value to the back of a list of the
|
||||
// property "closed". Invalidates iterators that are traversing using
|
||||
// Prev.
|
||||
AppendForgeFedPush(v ForgeFedPush)
|
||||
// AppendForgeFedRepository appends a Repository value to the back of a
|
||||
// list of the property "closed". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
AppendForgeFedRepository(v ForgeFedRepository)
|
||||
// AppendForgeFedTicket appends a Ticket value to the back of a list of
|
||||
// the property "closed". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendForgeFedTicket(v ForgeFedTicket)
|
||||
// AppendForgeFedTicketDependency appends a TicketDependency value to the
|
||||
// back of a list of the property "closed". Invalidates iterators that
|
||||
// are traversing using Prev.
|
||||
AppendForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// AppendIRI appends an IRI value to the back of a list of the property
|
||||
// "closed"
|
||||
AppendIRI(v *url.URL)
|
||||
|
|
@ -1045,6 +965,10 @@ type ActivityStreamsClosedProperty interface {
|
|||
// property "closed". Invalidates iterators that are traversing using
|
||||
// Prev.
|
||||
AppendTootEmoji(v TootEmoji)
|
||||
// AppendTootHashtag appends a Hashtag value to the back of a list of the
|
||||
// property "closed". Invalidates iterators that are traversing using
|
||||
// Prev.
|
||||
AppendTootHashtag(v TootHashtag)
|
||||
// AppendTootIdentityProof appends a IdentityProof value to the back of a
|
||||
// list of the property "closed". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
|
|
@ -1297,30 +1221,6 @@ type ActivityStreamsClosedProperty interface {
|
|||
// for a property "closed". Existing elements at that index and higher
|
||||
// are shifted back once. Invalidates all iterators.
|
||||
InsertActivityStreamsView(idx int, v ActivityStreamsView)
|
||||
// InsertForgeFedBranch inserts a Branch value at the specified index for
|
||||
// a property "closed". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedBranch(idx int, v ForgeFedBranch)
|
||||
// InsertForgeFedCommit inserts a Commit value at the specified index for
|
||||
// a property "closed". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedCommit(idx int, v ForgeFedCommit)
|
||||
// InsertForgeFedPush inserts a Push value at the specified index for a
|
||||
// property "closed". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedPush(idx int, v ForgeFedPush)
|
||||
// InsertForgeFedRepository inserts a Repository value at the specified
|
||||
// index for a property "closed". Existing elements at that index and
|
||||
// higher are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedRepository(idx int, v ForgeFedRepository)
|
||||
// InsertForgeFedTicket inserts a Ticket value at the specified index for
|
||||
// a property "closed". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedTicket(idx int, v ForgeFedTicket)
|
||||
// InsertForgeFedTicketDependency inserts a TicketDependency value at the
|
||||
// specified index for a property "closed". Existing elements at that
|
||||
// index and higher are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
|
||||
// Insert inserts an IRI value at the specified index for a property
|
||||
// "closed". Existing elements at that index and higher are shifted
|
||||
// back once. Invalidates all iterators.
|
||||
|
|
@ -1333,6 +1233,10 @@ type ActivityStreamsClosedProperty interface {
|
|||
// property "closed". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertTootEmoji(idx int, v TootEmoji)
|
||||
// InsertTootHashtag inserts a Hashtag value at the specified index for a
|
||||
// property "closed". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertTootHashtag(idx int, v TootHashtag)
|
||||
// InsertTootIdentityProof inserts a IdentityProof value at the specified
|
||||
// index for a property "closed". Existing elements at that index and
|
||||
// higher are shifted back once. Invalidates all iterators.
|
||||
|
|
@ -1539,25 +1443,6 @@ type ActivityStreamsClosedProperty interface {
|
|||
// PrependActivityStreamsView prepends a View value to the front of a list
|
||||
// of the property "closed". Invalidates all iterators.
|
||||
PrependActivityStreamsView(v ActivityStreamsView)
|
||||
// PrependForgeFedBranch prepends a Branch value to the front of a list of
|
||||
// the property "closed". Invalidates all iterators.
|
||||
PrependForgeFedBranch(v ForgeFedBranch)
|
||||
// PrependForgeFedCommit prepends a Commit value to the front of a list of
|
||||
// the property "closed". Invalidates all iterators.
|
||||
PrependForgeFedCommit(v ForgeFedCommit)
|
||||
// PrependForgeFedPush prepends a Push value to the front of a list of the
|
||||
// property "closed". Invalidates all iterators.
|
||||
PrependForgeFedPush(v ForgeFedPush)
|
||||
// PrependForgeFedRepository prepends a Repository value to the front of a
|
||||
// list of the property "closed". Invalidates all iterators.
|
||||
PrependForgeFedRepository(v ForgeFedRepository)
|
||||
// PrependForgeFedTicket prepends a Ticket value to the front of a list of
|
||||
// the property "closed". Invalidates all iterators.
|
||||
PrependForgeFedTicket(v ForgeFedTicket)
|
||||
// PrependForgeFedTicketDependency prepends a TicketDependency value to
|
||||
// the front of a list of the property "closed". Invalidates all
|
||||
// iterators.
|
||||
PrependForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// PrependIRI prepends an IRI value to the front of a list of the property
|
||||
// "closed".
|
||||
PrependIRI(v *url.URL)
|
||||
|
|
@ -1567,6 +1452,9 @@ type ActivityStreamsClosedProperty interface {
|
|||
// PrependTootEmoji prepends a Emoji value to the front of a list of the
|
||||
// property "closed". Invalidates all iterators.
|
||||
PrependTootEmoji(v TootEmoji)
|
||||
// PrependTootHashtag prepends a Hashtag value to the front of a list of
|
||||
// the property "closed". Invalidates all iterators.
|
||||
PrependTootHashtag(v TootHashtag)
|
||||
// PrependTootIdentityProof prepends a IdentityProof value to the front of
|
||||
// a list of the property "closed". Invalidates all iterators.
|
||||
PrependTootIdentityProof(v TootIdentityProof)
|
||||
|
|
@ -1806,30 +1694,6 @@ type ActivityStreamsClosedProperty interface {
|
|||
// for the property "closed". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetActivityStreamsView(idx int, v ActivityStreamsView)
|
||||
// SetForgeFedBranch sets a Branch value to be at the specified index for
|
||||
// the property "closed". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedBranch(idx int, v ForgeFedBranch)
|
||||
// SetForgeFedCommit sets a Commit value to be at the specified index for
|
||||
// the property "closed". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedCommit(idx int, v ForgeFedCommit)
|
||||
// SetForgeFedPush sets a Push value to be at the specified index for the
|
||||
// property "closed". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedPush(idx int, v ForgeFedPush)
|
||||
// SetForgeFedRepository sets a Repository value to be at the specified
|
||||
// index for the property "closed". Panics if the index is out of
|
||||
// bounds. Invalidates all iterators.
|
||||
SetForgeFedRepository(idx int, v ForgeFedRepository)
|
||||
// SetForgeFedTicket sets a Ticket value to be at the specified index for
|
||||
// the property "closed". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedTicket(idx int, v ForgeFedTicket)
|
||||
// SetForgeFedTicketDependency sets a TicketDependency value to be at the
|
||||
// specified index for the property "closed". Panics if the index is
|
||||
// out of bounds. Invalidates all iterators.
|
||||
SetForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
|
||||
// SetIRI sets an IRI value to be at the specified index for the property
|
||||
// "closed". Panics if the index is out of bounds.
|
||||
SetIRI(idx int, v *url.URL)
|
||||
|
|
@ -1841,6 +1705,10 @@ type ActivityStreamsClosedProperty interface {
|
|||
// property "closed". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetTootEmoji(idx int, v TootEmoji)
|
||||
// SetTootHashtag sets a Hashtag value to be at the specified index for
|
||||
// the property "closed". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetTootHashtag(idx int, v TootHashtag)
|
||||
// SetTootIdentityProof sets a IdentityProof value to be at the specified
|
||||
// index for the property "closed". Panics if the index is out of
|
||||
// bounds. Invalidates all iterators.
|
||||
|
|
|
|||
|
|
@ -225,29 +225,6 @@ type ActivityStreamsContextPropertyIterator interface {
|
|||
// IsActivityStreamsView returns false, GetActivityStreamsView will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsView() ActivityStreamsView
|
||||
// GetForgeFedBranch returns the value of this property. When
|
||||
// IsForgeFedBranch returns false, GetForgeFedBranch will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedBranch() ForgeFedBranch
|
||||
// GetForgeFedCommit returns the value of this property. When
|
||||
// IsForgeFedCommit returns false, GetForgeFedCommit will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedCommit() ForgeFedCommit
|
||||
// GetForgeFedPush returns the value of this property. When IsForgeFedPush
|
||||
// returns false, GetForgeFedPush will return an arbitrary value.
|
||||
GetForgeFedPush() ForgeFedPush
|
||||
// GetForgeFedRepository returns the value of this property. When
|
||||
// IsForgeFedRepository returns false, GetForgeFedRepository will
|
||||
// return an arbitrary value.
|
||||
GetForgeFedRepository() ForgeFedRepository
|
||||
// GetForgeFedTicket returns the value of this property. When
|
||||
// IsForgeFedTicket returns false, GetForgeFedTicket will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedTicket() ForgeFedTicket
|
||||
// GetForgeFedTicketDependency returns the value of this property. When
|
||||
// IsForgeFedTicketDependency returns false,
|
||||
// GetForgeFedTicketDependency will return an arbitrary value.
|
||||
GetForgeFedTicketDependency() ForgeFedTicketDependency
|
||||
// GetIRI returns the IRI of this property. When IsIRI returns false,
|
||||
// GetIRI will return an arbitrary value.
|
||||
GetIRI() *url.URL
|
||||
|
|
@ -258,6 +235,9 @@ type ActivityStreamsContextPropertyIterator interface {
|
|||
// GetTootEmoji returns the value of this property. When IsTootEmoji
|
||||
// returns false, GetTootEmoji will return an arbitrary value.
|
||||
GetTootEmoji() TootEmoji
|
||||
// GetTootHashtag returns the value of this property. When IsTootHashtag
|
||||
// returns false, GetTootHashtag will return an arbitrary value.
|
||||
GetTootHashtag() TootHashtag
|
||||
// GetTootIdentityProof returns the value of this property. When
|
||||
// IsTootIdentityProof returns false, GetTootIdentityProof will return
|
||||
// an arbitrary value.
|
||||
|
|
@ -500,31 +480,6 @@ type ActivityStreamsContextPropertyIterator interface {
|
|||
// "View". When true, use the GetActivityStreamsView and
|
||||
// SetActivityStreamsView methods to access and set this property.
|
||||
IsActivityStreamsView() bool
|
||||
// IsForgeFedBranch returns true if this property has a type of "Branch".
|
||||
// When true, use the GetForgeFedBranch and SetForgeFedBranch methods
|
||||
// to access and set this property.
|
||||
IsForgeFedBranch() bool
|
||||
// IsForgeFedCommit returns true if this property has a type of "Commit".
|
||||
// When true, use the GetForgeFedCommit and SetForgeFedCommit methods
|
||||
// to access and set this property.
|
||||
IsForgeFedCommit() bool
|
||||
// IsForgeFedPush returns true if this property has a type of "Push". When
|
||||
// true, use the GetForgeFedPush and SetForgeFedPush methods to access
|
||||
// and set this property.
|
||||
IsForgeFedPush() bool
|
||||
// IsForgeFedRepository returns true if this property has a type of
|
||||
// "Repository". When true, use the GetForgeFedRepository and
|
||||
// SetForgeFedRepository methods to access and set this property.
|
||||
IsForgeFedRepository() bool
|
||||
// IsForgeFedTicket returns true if this property has a type of "Ticket".
|
||||
// When true, use the GetForgeFedTicket and SetForgeFedTicket methods
|
||||
// to access and set this property.
|
||||
IsForgeFedTicket() bool
|
||||
// IsForgeFedTicketDependency returns true if this property has a type of
|
||||
// "TicketDependency". When true, use the GetForgeFedTicketDependency
|
||||
// and SetForgeFedTicketDependency methods to access and set this
|
||||
// property.
|
||||
IsForgeFedTicketDependency() bool
|
||||
// IsIRI returns true if this property is an IRI. When true, use GetIRI
|
||||
// and SetIRI to access and set this property
|
||||
IsIRI() bool
|
||||
|
|
@ -536,6 +491,10 @@ type ActivityStreamsContextPropertyIterator interface {
|
|||
// true, use the GetTootEmoji and SetTootEmoji methods to access and
|
||||
// set this property.
|
||||
IsTootEmoji() bool
|
||||
// IsTootHashtag returns true if this property has a type of "Hashtag".
|
||||
// When true, use the GetTootHashtag and SetTootHashtag methods to
|
||||
// access and set this property.
|
||||
IsTootHashtag() bool
|
||||
// IsTootIdentityProof returns true if this property has a type of
|
||||
// "IdentityProof". When true, use the GetTootIdentityProof and
|
||||
// SetTootIdentityProof methods to access and set this property.
|
||||
|
|
@ -725,24 +684,6 @@ type ActivityStreamsContextPropertyIterator interface {
|
|||
// SetActivityStreamsView sets the value of this property. Calling
|
||||
// IsActivityStreamsView afterwards returns true.
|
||||
SetActivityStreamsView(v ActivityStreamsView)
|
||||
// SetForgeFedBranch sets the value of this property. Calling
|
||||
// IsForgeFedBranch afterwards returns true.
|
||||
SetForgeFedBranch(v ForgeFedBranch)
|
||||
// SetForgeFedCommit sets the value of this property. Calling
|
||||
// IsForgeFedCommit afterwards returns true.
|
||||
SetForgeFedCommit(v ForgeFedCommit)
|
||||
// SetForgeFedPush sets the value of this property. Calling IsForgeFedPush
|
||||
// afterwards returns true.
|
||||
SetForgeFedPush(v ForgeFedPush)
|
||||
// SetForgeFedRepository sets the value of this property. Calling
|
||||
// IsForgeFedRepository afterwards returns true.
|
||||
SetForgeFedRepository(v ForgeFedRepository)
|
||||
// SetForgeFedTicket sets the value of this property. Calling
|
||||
// IsForgeFedTicket afterwards returns true.
|
||||
SetForgeFedTicket(v ForgeFedTicket)
|
||||
// SetForgeFedTicketDependency sets the value of this property. Calling
|
||||
// IsForgeFedTicketDependency afterwards returns true.
|
||||
SetForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// SetIRI sets the value of this property. Calling IsIRI afterwards
|
||||
// returns true.
|
||||
SetIRI(v *url.URL)
|
||||
|
|
@ -752,6 +693,9 @@ type ActivityStreamsContextPropertyIterator interface {
|
|||
// SetTootEmoji sets the value of this property. Calling IsTootEmoji
|
||||
// afterwards returns true.
|
||||
SetTootEmoji(v TootEmoji)
|
||||
// SetTootHashtag sets the value of this property. Calling IsTootHashtag
|
||||
// afterwards returns true.
|
||||
SetTootHashtag(v TootHashtag)
|
||||
// SetTootIdentityProof sets the value of this property. Calling
|
||||
// IsTootIdentityProof afterwards returns true.
|
||||
SetTootIdentityProof(v TootIdentityProof)
|
||||
|
|
@ -1003,30 +947,6 @@ type ActivityStreamsContextProperty interface {
|
|||
// the property "context". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendActivityStreamsView(v ActivityStreamsView)
|
||||
// AppendForgeFedBranch appends a Branch value to the back of a list of
|
||||
// the property "context". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendForgeFedBranch(v ForgeFedBranch)
|
||||
// AppendForgeFedCommit appends a Commit value to the back of a list of
|
||||
// the property "context". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendForgeFedCommit(v ForgeFedCommit)
|
||||
// AppendForgeFedPush appends a Push value to the back of a list of the
|
||||
// property "context". Invalidates iterators that are traversing using
|
||||
// Prev.
|
||||
AppendForgeFedPush(v ForgeFedPush)
|
||||
// AppendForgeFedRepository appends a Repository value to the back of a
|
||||
// list of the property "context". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
AppendForgeFedRepository(v ForgeFedRepository)
|
||||
// AppendForgeFedTicket appends a Ticket value to the back of a list of
|
||||
// the property "context". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendForgeFedTicket(v ForgeFedTicket)
|
||||
// AppendForgeFedTicketDependency appends a TicketDependency value to the
|
||||
// back of a list of the property "context". Invalidates iterators
|
||||
// that are traversing using Prev.
|
||||
AppendForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// AppendIRI appends an IRI value to the back of a list of the property
|
||||
// "context"
|
||||
AppendIRI(v *url.URL)
|
||||
|
|
@ -1038,6 +958,10 @@ type ActivityStreamsContextProperty interface {
|
|||
// property "context". Invalidates iterators that are traversing using
|
||||
// Prev.
|
||||
AppendTootEmoji(v TootEmoji)
|
||||
// AppendTootHashtag appends a Hashtag value to the back of a list of the
|
||||
// property "context". Invalidates iterators that are traversing using
|
||||
// Prev.
|
||||
AppendTootHashtag(v TootHashtag)
|
||||
// AppendTootIdentityProof appends a IdentityProof value to the back of a
|
||||
// list of the property "context". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
|
|
@ -1282,30 +1206,6 @@ type ActivityStreamsContextProperty interface {
|
|||
// for a property "context". Existing elements at that index and
|
||||
// higher are shifted back once. Invalidates all iterators.
|
||||
InsertActivityStreamsView(idx int, v ActivityStreamsView)
|
||||
// InsertForgeFedBranch inserts a Branch value at the specified index for
|
||||
// a property "context". Existing elements at that index and higher
|
||||
// are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedBranch(idx int, v ForgeFedBranch)
|
||||
// InsertForgeFedCommit inserts a Commit value at the specified index for
|
||||
// a property "context". Existing elements at that index and higher
|
||||
// are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedCommit(idx int, v ForgeFedCommit)
|
||||
// InsertForgeFedPush inserts a Push value at the specified index for a
|
||||
// property "context". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedPush(idx int, v ForgeFedPush)
|
||||
// InsertForgeFedRepository inserts a Repository value at the specified
|
||||
// index for a property "context". Existing elements at that index and
|
||||
// higher are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedRepository(idx int, v ForgeFedRepository)
|
||||
// InsertForgeFedTicket inserts a Ticket value at the specified index for
|
||||
// a property "context". Existing elements at that index and higher
|
||||
// are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedTicket(idx int, v ForgeFedTicket)
|
||||
// InsertForgeFedTicketDependency inserts a TicketDependency value at the
|
||||
// specified index for a property "context". Existing elements at that
|
||||
// index and higher are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
|
||||
// Insert inserts an IRI value at the specified index for a property
|
||||
// "context". Existing elements at that index and higher are shifted
|
||||
// back once. Invalidates all iterators.
|
||||
|
|
@ -1318,6 +1218,10 @@ type ActivityStreamsContextProperty interface {
|
|||
// property "context". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertTootEmoji(idx int, v TootEmoji)
|
||||
// InsertTootHashtag inserts a Hashtag value at the specified index for a
|
||||
// property "context". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertTootHashtag(idx int, v TootHashtag)
|
||||
// InsertTootIdentityProof inserts a IdentityProof value at the specified
|
||||
// index for a property "context". Existing elements at that index and
|
||||
// higher are shifted back once. Invalidates all iterators.
|
||||
|
|
@ -1520,25 +1424,6 @@ type ActivityStreamsContextProperty interface {
|
|||
// PrependActivityStreamsView prepends a View value to the front of a list
|
||||
// of the property "context". Invalidates all iterators.
|
||||
PrependActivityStreamsView(v ActivityStreamsView)
|
||||
// PrependForgeFedBranch prepends a Branch value to the front of a list of
|
||||
// the property "context". Invalidates all iterators.
|
||||
PrependForgeFedBranch(v ForgeFedBranch)
|
||||
// PrependForgeFedCommit prepends a Commit value to the front of a list of
|
||||
// the property "context". Invalidates all iterators.
|
||||
PrependForgeFedCommit(v ForgeFedCommit)
|
||||
// PrependForgeFedPush prepends a Push value to the front of a list of the
|
||||
// property "context". Invalidates all iterators.
|
||||
PrependForgeFedPush(v ForgeFedPush)
|
||||
// PrependForgeFedRepository prepends a Repository value to the front of a
|
||||
// list of the property "context". Invalidates all iterators.
|
||||
PrependForgeFedRepository(v ForgeFedRepository)
|
||||
// PrependForgeFedTicket prepends a Ticket value to the front of a list of
|
||||
// the property "context". Invalidates all iterators.
|
||||
PrependForgeFedTicket(v ForgeFedTicket)
|
||||
// PrependForgeFedTicketDependency prepends a TicketDependency value to
|
||||
// the front of a list of the property "context". Invalidates all
|
||||
// iterators.
|
||||
PrependForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// PrependIRI prepends an IRI value to the front of a list of the property
|
||||
// "context".
|
||||
PrependIRI(v *url.URL)
|
||||
|
|
@ -1548,6 +1433,9 @@ type ActivityStreamsContextProperty interface {
|
|||
// PrependTootEmoji prepends a Emoji value to the front of a list of the
|
||||
// property "context". Invalidates all iterators.
|
||||
PrependTootEmoji(v TootEmoji)
|
||||
// PrependTootHashtag prepends a Hashtag value to the front of a list of
|
||||
// the property "context". Invalidates all iterators.
|
||||
PrependTootHashtag(v TootHashtag)
|
||||
// PrependTootIdentityProof prepends a IdentityProof value to the front of
|
||||
// a list of the property "context". Invalidates all iterators.
|
||||
PrependTootIdentityProof(v TootIdentityProof)
|
||||
|
|
@ -1781,30 +1669,6 @@ type ActivityStreamsContextProperty interface {
|
|||
// for the property "context". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetActivityStreamsView(idx int, v ActivityStreamsView)
|
||||
// SetForgeFedBranch sets a Branch value to be at the specified index for
|
||||
// the property "context". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedBranch(idx int, v ForgeFedBranch)
|
||||
// SetForgeFedCommit sets a Commit value to be at the specified index for
|
||||
// the property "context". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedCommit(idx int, v ForgeFedCommit)
|
||||
// SetForgeFedPush sets a Push value to be at the specified index for the
|
||||
// property "context". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedPush(idx int, v ForgeFedPush)
|
||||
// SetForgeFedRepository sets a Repository value to be at the specified
|
||||
// index for the property "context". Panics if the index is out of
|
||||
// bounds. Invalidates all iterators.
|
||||
SetForgeFedRepository(idx int, v ForgeFedRepository)
|
||||
// SetForgeFedTicket sets a Ticket value to be at the specified index for
|
||||
// the property "context". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedTicket(idx int, v ForgeFedTicket)
|
||||
// SetForgeFedTicketDependency sets a TicketDependency value to be at the
|
||||
// specified index for the property "context". Panics if the index is
|
||||
// out of bounds. Invalidates all iterators.
|
||||
SetForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
|
||||
// SetIRI sets an IRI value to be at the specified index for the property
|
||||
// "context". Panics if the index is out of bounds.
|
||||
SetIRI(idx int, v *url.URL)
|
||||
|
|
@ -1816,6 +1680,10 @@ type ActivityStreamsContextProperty interface {
|
|||
// property "context". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetTootEmoji(idx int, v TootEmoji)
|
||||
// SetTootHashtag sets a Hashtag value to be at the specified index for
|
||||
// the property "context". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetTootHashtag(idx int, v TootHashtag)
|
||||
// SetTootIdentityProof sets a IdentityProof value to be at the specified
|
||||
// index for the property "context". Panics if the index is out of
|
||||
// bounds. Invalidates all iterators.
|
||||
|
|
|
|||
|
|
@ -60,6 +60,9 @@ type ActivityStreamsCurrentProperty interface {
|
|||
// GetIRI returns the IRI of this property. When IsIRI returns false,
|
||||
// GetIRI will return an arbitrary value.
|
||||
GetIRI() *url.URL
|
||||
// GetTootHashtag returns the value of this property. When IsTootHashtag
|
||||
// returns false, GetTootHashtag will return an arbitrary value.
|
||||
GetTootHashtag() TootHashtag
|
||||
// GetType returns the value in this property as a Type. Returns nil if
|
||||
// the value is not an ActivityStreams type, such as an IRI or another
|
||||
// value.
|
||||
|
|
@ -89,6 +92,10 @@ type ActivityStreamsCurrentProperty interface {
|
|||
// IsIRI returns true if this property is an IRI. When true, use GetIRI
|
||||
// and SetIRI to access and set this property
|
||||
IsIRI() bool
|
||||
// IsTootHashtag returns true if this property has a type of "Hashtag".
|
||||
// When true, use the GetTootHashtag and SetTootHashtag methods to
|
||||
// access and set this property.
|
||||
IsTootHashtag() bool
|
||||
// JSONLDContext returns the JSONLD URIs required in the context string
|
||||
// for this property and the specific values that are set. The value
|
||||
// in the map is the alias used to import the property's value or
|
||||
|
|
@ -127,6 +134,9 @@ type ActivityStreamsCurrentProperty interface {
|
|||
// SetIRI sets the value of this property. Calling IsIRI afterwards
|
||||
// returns true.
|
||||
SetIRI(v *url.URL)
|
||||
// SetTootHashtag sets the value of this property. Calling IsTootHashtag
|
||||
// afterwards returns true.
|
||||
SetTootHashtag(v TootHashtag)
|
||||
// SetType attempts to set the property for the arbitrary type. Returns an
|
||||
// error if it is not a valid type to set on this property.
|
||||
SetType(t Type) error
|
||||
|
|
|
|||
|
|
@ -231,29 +231,6 @@ type ActivityStreamsDescribesProperty interface {
|
|||
// IsActivityStreamsView returns false, GetActivityStreamsView will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsView() ActivityStreamsView
|
||||
// GetForgeFedBranch returns the value of this property. When
|
||||
// IsForgeFedBranch returns false, GetForgeFedBranch will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedBranch() ForgeFedBranch
|
||||
// GetForgeFedCommit returns the value of this property. When
|
||||
// IsForgeFedCommit returns false, GetForgeFedCommit will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedCommit() ForgeFedCommit
|
||||
// GetForgeFedPush returns the value of this property. When IsForgeFedPush
|
||||
// returns false, GetForgeFedPush will return an arbitrary value.
|
||||
GetForgeFedPush() ForgeFedPush
|
||||
// GetForgeFedRepository returns the value of this property. When
|
||||
// IsForgeFedRepository returns false, GetForgeFedRepository will
|
||||
// return an arbitrary value.
|
||||
GetForgeFedRepository() ForgeFedRepository
|
||||
// GetForgeFedTicket returns the value of this property. When
|
||||
// IsForgeFedTicket returns false, GetForgeFedTicket will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedTicket() ForgeFedTicket
|
||||
// GetForgeFedTicketDependency returns the value of this property. When
|
||||
// IsForgeFedTicketDependency returns false,
|
||||
// GetForgeFedTicketDependency will return an arbitrary value.
|
||||
GetForgeFedTicketDependency() ForgeFedTicketDependency
|
||||
// GetIRI returns the IRI of this property. When IsIRI returns false,
|
||||
// GetIRI will return an arbitrary value.
|
||||
GetIRI() *url.URL
|
||||
|
|
@ -498,31 +475,6 @@ type ActivityStreamsDescribesProperty interface {
|
|||
// "View". When true, use the GetActivityStreamsView and
|
||||
// SetActivityStreamsView methods to access and set this property.
|
||||
IsActivityStreamsView() bool
|
||||
// IsForgeFedBranch returns true if this property has a type of "Branch".
|
||||
// When true, use the GetForgeFedBranch and SetForgeFedBranch methods
|
||||
// to access and set this property.
|
||||
IsForgeFedBranch() bool
|
||||
// IsForgeFedCommit returns true if this property has a type of "Commit".
|
||||
// When true, use the GetForgeFedCommit and SetForgeFedCommit methods
|
||||
// to access and set this property.
|
||||
IsForgeFedCommit() bool
|
||||
// IsForgeFedPush returns true if this property has a type of "Push". When
|
||||
// true, use the GetForgeFedPush and SetForgeFedPush methods to access
|
||||
// and set this property.
|
||||
IsForgeFedPush() bool
|
||||
// IsForgeFedRepository returns true if this property has a type of
|
||||
// "Repository". When true, use the GetForgeFedRepository and
|
||||
// SetForgeFedRepository methods to access and set this property.
|
||||
IsForgeFedRepository() bool
|
||||
// IsForgeFedTicket returns true if this property has a type of "Ticket".
|
||||
// When true, use the GetForgeFedTicket and SetForgeFedTicket methods
|
||||
// to access and set this property.
|
||||
IsForgeFedTicket() bool
|
||||
// IsForgeFedTicketDependency returns true if this property has a type of
|
||||
// "TicketDependency". When true, use the GetForgeFedTicketDependency
|
||||
// and SetForgeFedTicketDependency methods to access and set this
|
||||
// property.
|
||||
IsForgeFedTicketDependency() bool
|
||||
// IsIRI returns true if this property is an IRI. When true, use GetIRI
|
||||
// and SetIRI to access and set this property
|
||||
IsIRI() bool
|
||||
|
|
@ -718,24 +670,6 @@ type ActivityStreamsDescribesProperty interface {
|
|||
// SetActivityStreamsView sets the value of this property. Calling
|
||||
// IsActivityStreamsView afterwards returns true.
|
||||
SetActivityStreamsView(v ActivityStreamsView)
|
||||
// SetForgeFedBranch sets the value of this property. Calling
|
||||
// IsForgeFedBranch afterwards returns true.
|
||||
SetForgeFedBranch(v ForgeFedBranch)
|
||||
// SetForgeFedCommit sets the value of this property. Calling
|
||||
// IsForgeFedCommit afterwards returns true.
|
||||
SetForgeFedCommit(v ForgeFedCommit)
|
||||
// SetForgeFedPush sets the value of this property. Calling IsForgeFedPush
|
||||
// afterwards returns true.
|
||||
SetForgeFedPush(v ForgeFedPush)
|
||||
// SetForgeFedRepository sets the value of this property. Calling
|
||||
// IsForgeFedRepository afterwards returns true.
|
||||
SetForgeFedRepository(v ForgeFedRepository)
|
||||
// SetForgeFedTicket sets the value of this property. Calling
|
||||
// IsForgeFedTicket afterwards returns true.
|
||||
SetForgeFedTicket(v ForgeFedTicket)
|
||||
// SetForgeFedTicketDependency sets the value of this property. Calling
|
||||
// IsForgeFedTicketDependency afterwards returns true.
|
||||
SetForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// SetIRI sets the value of this property. Calling IsIRI afterwards
|
||||
// returns true.
|
||||
SetIRI(v *url.URL)
|
||||
|
|
|
|||
|
|
@ -50,6 +50,9 @@ type ActivityStreamsFirstProperty interface {
|
|||
// GetIRI returns the IRI of this property. When IsIRI returns false,
|
||||
// GetIRI will return an arbitrary value.
|
||||
GetIRI() *url.URL
|
||||
// GetTootHashtag returns the value of this property. When IsTootHashtag
|
||||
// returns false, GetTootHashtag will return an arbitrary value.
|
||||
GetTootHashtag() TootHashtag
|
||||
// GetType returns the value in this property as a Type. Returns nil if
|
||||
// the value is not an ActivityStreams type, such as an IRI or another
|
||||
// value.
|
||||
|
|
@ -79,6 +82,10 @@ type ActivityStreamsFirstProperty interface {
|
|||
// IsIRI returns true if this property is an IRI. When true, use GetIRI
|
||||
// and SetIRI to access and set this property
|
||||
IsIRI() bool
|
||||
// IsTootHashtag returns true if this property has a type of "Hashtag".
|
||||
// When true, use the GetTootHashtag and SetTootHashtag methods to
|
||||
// access and set this property.
|
||||
IsTootHashtag() bool
|
||||
// JSONLDContext returns the JSONLD URIs required in the context string
|
||||
// for this property and the specific values that are set. The value
|
||||
// in the map is the alias used to import the property's value or
|
||||
|
|
@ -117,6 +124,9 @@ type ActivityStreamsFirstProperty interface {
|
|||
// SetIRI sets the value of this property. Calling IsIRI afterwards
|
||||
// returns true.
|
||||
SetIRI(v *url.URL)
|
||||
// SetTootHashtag sets the value of this property. Calling IsTootHashtag
|
||||
// afterwards returns true.
|
||||
SetTootHashtag(v TootHashtag)
|
||||
// SetType attempts to set the property for the arbitrary type. Returns an
|
||||
// error if it is not a valid type to set on this property.
|
||||
SetType(t Type) error
|
||||
|
|
|
|||
|
|
@ -217,29 +217,6 @@ type ActivityStreamsFormerTypePropertyIterator interface {
|
|||
// IsActivityStreamsView returns false, GetActivityStreamsView will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsView() ActivityStreamsView
|
||||
// GetForgeFedBranch returns the value of this property. When
|
||||
// IsForgeFedBranch returns false, GetForgeFedBranch will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedBranch() ForgeFedBranch
|
||||
// GetForgeFedCommit returns the value of this property. When
|
||||
// IsForgeFedCommit returns false, GetForgeFedCommit will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedCommit() ForgeFedCommit
|
||||
// GetForgeFedPush returns the value of this property. When IsForgeFedPush
|
||||
// returns false, GetForgeFedPush will return an arbitrary value.
|
||||
GetForgeFedPush() ForgeFedPush
|
||||
// GetForgeFedRepository returns the value of this property. When
|
||||
// IsForgeFedRepository returns false, GetForgeFedRepository will
|
||||
// return an arbitrary value.
|
||||
GetForgeFedRepository() ForgeFedRepository
|
||||
// GetForgeFedTicket returns the value of this property. When
|
||||
// IsForgeFedTicket returns false, GetForgeFedTicket will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedTicket() ForgeFedTicket
|
||||
// GetForgeFedTicketDependency returns the value of this property. When
|
||||
// IsForgeFedTicketDependency returns false,
|
||||
// GetForgeFedTicketDependency will return an arbitrary value.
|
||||
GetForgeFedTicketDependency() ForgeFedTicketDependency
|
||||
// GetIRI returns the IRI of this property. When IsIRI returns false,
|
||||
// GetIRI will return an arbitrary value.
|
||||
GetIRI() *url.URL
|
||||
|
|
@ -488,31 +465,6 @@ type ActivityStreamsFormerTypePropertyIterator interface {
|
|||
// "View". When true, use the GetActivityStreamsView and
|
||||
// SetActivityStreamsView methods to access and set this property.
|
||||
IsActivityStreamsView() bool
|
||||
// IsForgeFedBranch returns true if this property has a type of "Branch".
|
||||
// When true, use the GetForgeFedBranch and SetForgeFedBranch methods
|
||||
// to access and set this property.
|
||||
IsForgeFedBranch() bool
|
||||
// IsForgeFedCommit returns true if this property has a type of "Commit".
|
||||
// When true, use the GetForgeFedCommit and SetForgeFedCommit methods
|
||||
// to access and set this property.
|
||||
IsForgeFedCommit() bool
|
||||
// IsForgeFedPush returns true if this property has a type of "Push". When
|
||||
// true, use the GetForgeFedPush and SetForgeFedPush methods to access
|
||||
// and set this property.
|
||||
IsForgeFedPush() bool
|
||||
// IsForgeFedRepository returns true if this property has a type of
|
||||
// "Repository". When true, use the GetForgeFedRepository and
|
||||
// SetForgeFedRepository methods to access and set this property.
|
||||
IsForgeFedRepository() bool
|
||||
// IsForgeFedTicket returns true if this property has a type of "Ticket".
|
||||
// When true, use the GetForgeFedTicket and SetForgeFedTicket methods
|
||||
// to access and set this property.
|
||||
IsForgeFedTicket() bool
|
||||
// IsForgeFedTicketDependency returns true if this property has a type of
|
||||
// "TicketDependency". When true, use the GetForgeFedTicketDependency
|
||||
// and SetForgeFedTicketDependency methods to access and set this
|
||||
// property.
|
||||
IsForgeFedTicketDependency() bool
|
||||
// IsIRI returns true if this property is an IRI. When true, use GetIRI
|
||||
// and SetIRI to access and set this property
|
||||
IsIRI() bool
|
||||
|
|
@ -711,24 +663,6 @@ type ActivityStreamsFormerTypePropertyIterator interface {
|
|||
// SetActivityStreamsView sets the value of this property. Calling
|
||||
// IsActivityStreamsView afterwards returns true.
|
||||
SetActivityStreamsView(v ActivityStreamsView)
|
||||
// SetForgeFedBranch sets the value of this property. Calling
|
||||
// IsForgeFedBranch afterwards returns true.
|
||||
SetForgeFedBranch(v ForgeFedBranch)
|
||||
// SetForgeFedCommit sets the value of this property. Calling
|
||||
// IsForgeFedCommit afterwards returns true.
|
||||
SetForgeFedCommit(v ForgeFedCommit)
|
||||
// SetForgeFedPush sets the value of this property. Calling IsForgeFedPush
|
||||
// afterwards returns true.
|
||||
SetForgeFedPush(v ForgeFedPush)
|
||||
// SetForgeFedRepository sets the value of this property. Calling
|
||||
// IsForgeFedRepository afterwards returns true.
|
||||
SetForgeFedRepository(v ForgeFedRepository)
|
||||
// SetForgeFedTicket sets the value of this property. Calling
|
||||
// IsForgeFedTicket afterwards returns true.
|
||||
SetForgeFedTicket(v ForgeFedTicket)
|
||||
// SetForgeFedTicketDependency sets the value of this property. Calling
|
||||
// IsForgeFedTicketDependency afterwards returns true.
|
||||
SetForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// SetIRI sets the value of this property. Calling IsIRI afterwards
|
||||
// returns true.
|
||||
SetIRI(v *url.URL)
|
||||
|
|
@ -968,30 +902,6 @@ type ActivityStreamsFormerTypeProperty interface {
|
|||
// the property "formerType". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
AppendActivityStreamsView(v ActivityStreamsView)
|
||||
// AppendForgeFedBranch appends a Branch value to the back of a list of
|
||||
// the property "formerType". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
AppendForgeFedBranch(v ForgeFedBranch)
|
||||
// AppendForgeFedCommit appends a Commit value to the back of a list of
|
||||
// the property "formerType". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
AppendForgeFedCommit(v ForgeFedCommit)
|
||||
// AppendForgeFedPush appends a Push value to the back of a list of the
|
||||
// property "formerType". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendForgeFedPush(v ForgeFedPush)
|
||||
// AppendForgeFedRepository appends a Repository value to the back of a
|
||||
// list of the property "formerType". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
AppendForgeFedRepository(v ForgeFedRepository)
|
||||
// AppendForgeFedTicket appends a Ticket value to the back of a list of
|
||||
// the property "formerType". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
AppendForgeFedTicket(v ForgeFedTicket)
|
||||
// AppendForgeFedTicketDependency appends a TicketDependency value to the
|
||||
// back of a list of the property "formerType". Invalidates iterators
|
||||
// that are traversing using Prev.
|
||||
AppendForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// AppendIRI appends an IRI value to the back of a list of the property
|
||||
// "formerType"
|
||||
AppendIRI(v *url.URL)
|
||||
|
|
@ -1248,31 +1158,6 @@ type ActivityStreamsFormerTypeProperty interface {
|
|||
// for a property "formerType". Existing elements at that index and
|
||||
// higher are shifted back once. Invalidates all iterators.
|
||||
InsertActivityStreamsView(idx int, v ActivityStreamsView)
|
||||
// InsertForgeFedBranch inserts a Branch value at the specified index for
|
||||
// a property "formerType". Existing elements at that index and higher
|
||||
// are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedBranch(idx int, v ForgeFedBranch)
|
||||
// InsertForgeFedCommit inserts a Commit value at the specified index for
|
||||
// a property "formerType". Existing elements at that index and higher
|
||||
// are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedCommit(idx int, v ForgeFedCommit)
|
||||
// InsertForgeFedPush inserts a Push value at the specified index for a
|
||||
// property "formerType". Existing elements at that index and higher
|
||||
// are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedPush(idx int, v ForgeFedPush)
|
||||
// InsertForgeFedRepository inserts a Repository value at the specified
|
||||
// index for a property "formerType". Existing elements at that index
|
||||
// and higher are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedRepository(idx int, v ForgeFedRepository)
|
||||
// InsertForgeFedTicket inserts a Ticket value at the specified index for
|
||||
// a property "formerType". Existing elements at that index and higher
|
||||
// are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedTicket(idx int, v ForgeFedTicket)
|
||||
// InsertForgeFedTicketDependency inserts a TicketDependency value at the
|
||||
// specified index for a property "formerType". Existing elements at
|
||||
// that index and higher are shifted back once. Invalidates all
|
||||
// iterators.
|
||||
InsertForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
|
||||
// Insert inserts an IRI value at the specified index for a property
|
||||
// "formerType". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
|
|
@ -1487,25 +1372,6 @@ type ActivityStreamsFormerTypeProperty interface {
|
|||
// PrependActivityStreamsView prepends a View value to the front of a list
|
||||
// of the property "formerType". Invalidates all iterators.
|
||||
PrependActivityStreamsView(v ActivityStreamsView)
|
||||
// PrependForgeFedBranch prepends a Branch value to the front of a list of
|
||||
// the property "formerType". Invalidates all iterators.
|
||||
PrependForgeFedBranch(v ForgeFedBranch)
|
||||
// PrependForgeFedCommit prepends a Commit value to the front of a list of
|
||||
// the property "formerType". Invalidates all iterators.
|
||||
PrependForgeFedCommit(v ForgeFedCommit)
|
||||
// PrependForgeFedPush prepends a Push value to the front of a list of the
|
||||
// property "formerType". Invalidates all iterators.
|
||||
PrependForgeFedPush(v ForgeFedPush)
|
||||
// PrependForgeFedRepository prepends a Repository value to the front of a
|
||||
// list of the property "formerType". Invalidates all iterators.
|
||||
PrependForgeFedRepository(v ForgeFedRepository)
|
||||
// PrependForgeFedTicket prepends a Ticket value to the front of a list of
|
||||
// the property "formerType". Invalidates all iterators.
|
||||
PrependForgeFedTicket(v ForgeFedTicket)
|
||||
// PrependForgeFedTicketDependency prepends a TicketDependency value to
|
||||
// the front of a list of the property "formerType". Invalidates all
|
||||
// iterators.
|
||||
PrependForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// PrependIRI prepends an IRI value to the front of a list of the property
|
||||
// "formerType".
|
||||
PrependIRI(v *url.URL)
|
||||
|
|
@ -1743,30 +1609,6 @@ type ActivityStreamsFormerTypeProperty interface {
|
|||
// for the property "formerType". Panics if the index is out of
|
||||
// bounds. Invalidates all iterators.
|
||||
SetActivityStreamsView(idx int, v ActivityStreamsView)
|
||||
// SetForgeFedBranch sets a Branch value to be at the specified index for
|
||||
// the property "formerType". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedBranch(idx int, v ForgeFedBranch)
|
||||
// SetForgeFedCommit sets a Commit value to be at the specified index for
|
||||
// the property "formerType". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedCommit(idx int, v ForgeFedCommit)
|
||||
// SetForgeFedPush sets a Push value to be at the specified index for the
|
||||
// property "formerType". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedPush(idx int, v ForgeFedPush)
|
||||
// SetForgeFedRepository sets a Repository value to be at the specified
|
||||
// index for the property "formerType". Panics if the index is out of
|
||||
// bounds. Invalidates all iterators.
|
||||
SetForgeFedRepository(idx int, v ForgeFedRepository)
|
||||
// SetForgeFedTicket sets a Ticket value to be at the specified index for
|
||||
// the property "formerType". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedTicket(idx int, v ForgeFedTicket)
|
||||
// SetForgeFedTicketDependency sets a TicketDependency value to be at the
|
||||
// specified index for the property "formerType". Panics if the index
|
||||
// is out of bounds. Invalidates all iterators.
|
||||
SetForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
|
||||
// SetIRI sets an IRI value to be at the specified index for the property
|
||||
// "formerType". Panics if the index is out of bounds.
|
||||
SetIRI(idx int, v *url.URL)
|
||||
|
|
|
|||
|
|
@ -225,29 +225,6 @@ type ActivityStreamsGeneratorPropertyIterator interface {
|
|||
// IsActivityStreamsView returns false, GetActivityStreamsView will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsView() ActivityStreamsView
|
||||
// GetForgeFedBranch returns the value of this property. When
|
||||
// IsForgeFedBranch returns false, GetForgeFedBranch will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedBranch() ForgeFedBranch
|
||||
// GetForgeFedCommit returns the value of this property. When
|
||||
// IsForgeFedCommit returns false, GetForgeFedCommit will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedCommit() ForgeFedCommit
|
||||
// GetForgeFedPush returns the value of this property. When IsForgeFedPush
|
||||
// returns false, GetForgeFedPush will return an arbitrary value.
|
||||
GetForgeFedPush() ForgeFedPush
|
||||
// GetForgeFedRepository returns the value of this property. When
|
||||
// IsForgeFedRepository returns false, GetForgeFedRepository will
|
||||
// return an arbitrary value.
|
||||
GetForgeFedRepository() ForgeFedRepository
|
||||
// GetForgeFedTicket returns the value of this property. When
|
||||
// IsForgeFedTicket returns false, GetForgeFedTicket will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedTicket() ForgeFedTicket
|
||||
// GetForgeFedTicketDependency returns the value of this property. When
|
||||
// IsForgeFedTicketDependency returns false,
|
||||
// GetForgeFedTicketDependency will return an arbitrary value.
|
||||
GetForgeFedTicketDependency() ForgeFedTicketDependency
|
||||
// GetIRI returns the IRI of this property. When IsIRI returns false,
|
||||
// GetIRI will return an arbitrary value.
|
||||
GetIRI() *url.URL
|
||||
|
|
@ -258,6 +235,9 @@ type ActivityStreamsGeneratorPropertyIterator interface {
|
|||
// GetTootEmoji returns the value of this property. When IsTootEmoji
|
||||
// returns false, GetTootEmoji will return an arbitrary value.
|
||||
GetTootEmoji() TootEmoji
|
||||
// GetTootHashtag returns the value of this property. When IsTootHashtag
|
||||
// returns false, GetTootHashtag will return an arbitrary value.
|
||||
GetTootHashtag() TootHashtag
|
||||
// GetTootIdentityProof returns the value of this property. When
|
||||
// IsTootIdentityProof returns false, GetTootIdentityProof will return
|
||||
// an arbitrary value.
|
||||
|
|
@ -500,31 +480,6 @@ type ActivityStreamsGeneratorPropertyIterator interface {
|
|||
// "View". When true, use the GetActivityStreamsView and
|
||||
// SetActivityStreamsView methods to access and set this property.
|
||||
IsActivityStreamsView() bool
|
||||
// IsForgeFedBranch returns true if this property has a type of "Branch".
|
||||
// When true, use the GetForgeFedBranch and SetForgeFedBranch methods
|
||||
// to access and set this property.
|
||||
IsForgeFedBranch() bool
|
||||
// IsForgeFedCommit returns true if this property has a type of "Commit".
|
||||
// When true, use the GetForgeFedCommit and SetForgeFedCommit methods
|
||||
// to access and set this property.
|
||||
IsForgeFedCommit() bool
|
||||
// IsForgeFedPush returns true if this property has a type of "Push". When
|
||||
// true, use the GetForgeFedPush and SetForgeFedPush methods to access
|
||||
// and set this property.
|
||||
IsForgeFedPush() bool
|
||||
// IsForgeFedRepository returns true if this property has a type of
|
||||
// "Repository". When true, use the GetForgeFedRepository and
|
||||
// SetForgeFedRepository methods to access and set this property.
|
||||
IsForgeFedRepository() bool
|
||||
// IsForgeFedTicket returns true if this property has a type of "Ticket".
|
||||
// When true, use the GetForgeFedTicket and SetForgeFedTicket methods
|
||||
// to access and set this property.
|
||||
IsForgeFedTicket() bool
|
||||
// IsForgeFedTicketDependency returns true if this property has a type of
|
||||
// "TicketDependency". When true, use the GetForgeFedTicketDependency
|
||||
// and SetForgeFedTicketDependency methods to access and set this
|
||||
// property.
|
||||
IsForgeFedTicketDependency() bool
|
||||
// IsIRI returns true if this property is an IRI. When true, use GetIRI
|
||||
// and SetIRI to access and set this property
|
||||
IsIRI() bool
|
||||
|
|
@ -536,6 +491,10 @@ type ActivityStreamsGeneratorPropertyIterator interface {
|
|||
// true, use the GetTootEmoji and SetTootEmoji methods to access and
|
||||
// set this property.
|
||||
IsTootEmoji() bool
|
||||
// IsTootHashtag returns true if this property has a type of "Hashtag".
|
||||
// When true, use the GetTootHashtag and SetTootHashtag methods to
|
||||
// access and set this property.
|
||||
IsTootHashtag() bool
|
||||
// IsTootIdentityProof returns true if this property has a type of
|
||||
// "IdentityProof". When true, use the GetTootIdentityProof and
|
||||
// SetTootIdentityProof methods to access and set this property.
|
||||
|
|
@ -725,24 +684,6 @@ type ActivityStreamsGeneratorPropertyIterator interface {
|
|||
// SetActivityStreamsView sets the value of this property. Calling
|
||||
// IsActivityStreamsView afterwards returns true.
|
||||
SetActivityStreamsView(v ActivityStreamsView)
|
||||
// SetForgeFedBranch sets the value of this property. Calling
|
||||
// IsForgeFedBranch afterwards returns true.
|
||||
SetForgeFedBranch(v ForgeFedBranch)
|
||||
// SetForgeFedCommit sets the value of this property. Calling
|
||||
// IsForgeFedCommit afterwards returns true.
|
||||
SetForgeFedCommit(v ForgeFedCommit)
|
||||
// SetForgeFedPush sets the value of this property. Calling IsForgeFedPush
|
||||
// afterwards returns true.
|
||||
SetForgeFedPush(v ForgeFedPush)
|
||||
// SetForgeFedRepository sets the value of this property. Calling
|
||||
// IsForgeFedRepository afterwards returns true.
|
||||
SetForgeFedRepository(v ForgeFedRepository)
|
||||
// SetForgeFedTicket sets the value of this property. Calling
|
||||
// IsForgeFedTicket afterwards returns true.
|
||||
SetForgeFedTicket(v ForgeFedTicket)
|
||||
// SetForgeFedTicketDependency sets the value of this property. Calling
|
||||
// IsForgeFedTicketDependency afterwards returns true.
|
||||
SetForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// SetIRI sets the value of this property. Calling IsIRI afterwards
|
||||
// returns true.
|
||||
SetIRI(v *url.URL)
|
||||
|
|
@ -752,6 +693,9 @@ type ActivityStreamsGeneratorPropertyIterator interface {
|
|||
// SetTootEmoji sets the value of this property. Calling IsTootEmoji
|
||||
// afterwards returns true.
|
||||
SetTootEmoji(v TootEmoji)
|
||||
// SetTootHashtag sets the value of this property. Calling IsTootHashtag
|
||||
// afterwards returns true.
|
||||
SetTootHashtag(v TootHashtag)
|
||||
// SetTootIdentityProof sets the value of this property. Calling
|
||||
// IsTootIdentityProof afterwards returns true.
|
||||
SetTootIdentityProof(v TootIdentityProof)
|
||||
|
|
@ -989,30 +933,6 @@ type ActivityStreamsGeneratorProperty interface {
|
|||
// the property "generator". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendActivityStreamsView(v ActivityStreamsView)
|
||||
// AppendForgeFedBranch appends a Branch value to the back of a list of
|
||||
// the property "generator". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendForgeFedBranch(v ForgeFedBranch)
|
||||
// AppendForgeFedCommit appends a Commit value to the back of a list of
|
||||
// the property "generator". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendForgeFedCommit(v ForgeFedCommit)
|
||||
// AppendForgeFedPush appends a Push value to the back of a list of the
|
||||
// property "generator". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendForgeFedPush(v ForgeFedPush)
|
||||
// AppendForgeFedRepository appends a Repository value to the back of a
|
||||
// list of the property "generator". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
AppendForgeFedRepository(v ForgeFedRepository)
|
||||
// AppendForgeFedTicket appends a Ticket value to the back of a list of
|
||||
// the property "generator". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendForgeFedTicket(v ForgeFedTicket)
|
||||
// AppendForgeFedTicketDependency appends a TicketDependency value to the
|
||||
// back of a list of the property "generator". Invalidates iterators
|
||||
// that are traversing using Prev.
|
||||
AppendForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// AppendIRI appends an IRI value to the back of a list of the property
|
||||
// "generator"
|
||||
AppendIRI(v *url.URL)
|
||||
|
|
@ -1024,6 +944,10 @@ type ActivityStreamsGeneratorProperty interface {
|
|||
// property "generator". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendTootEmoji(v TootEmoji)
|
||||
// AppendTootHashtag appends a Hashtag value to the back of a list of the
|
||||
// property "generator". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendTootHashtag(v TootHashtag)
|
||||
// AppendTootIdentityProof appends a IdentityProof value to the back of a
|
||||
// list of the property "generator". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
|
|
@ -1273,31 +1197,6 @@ type ActivityStreamsGeneratorProperty interface {
|
|||
// for a property "generator". Existing elements at that index and
|
||||
// higher are shifted back once. Invalidates all iterators.
|
||||
InsertActivityStreamsView(idx int, v ActivityStreamsView)
|
||||
// InsertForgeFedBranch inserts a Branch value at the specified index for
|
||||
// a property "generator". Existing elements at that index and higher
|
||||
// are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedBranch(idx int, v ForgeFedBranch)
|
||||
// InsertForgeFedCommit inserts a Commit value at the specified index for
|
||||
// a property "generator". Existing elements at that index and higher
|
||||
// are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedCommit(idx int, v ForgeFedCommit)
|
||||
// InsertForgeFedPush inserts a Push value at the specified index for a
|
||||
// property "generator". Existing elements at that index and higher
|
||||
// are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedPush(idx int, v ForgeFedPush)
|
||||
// InsertForgeFedRepository inserts a Repository value at the specified
|
||||
// index for a property "generator". Existing elements at that index
|
||||
// and higher are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedRepository(idx int, v ForgeFedRepository)
|
||||
// InsertForgeFedTicket inserts a Ticket value at the specified index for
|
||||
// a property "generator". Existing elements at that index and higher
|
||||
// are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedTicket(idx int, v ForgeFedTicket)
|
||||
// InsertForgeFedTicketDependency inserts a TicketDependency value at the
|
||||
// specified index for a property "generator". Existing elements at
|
||||
// that index and higher are shifted back once. Invalidates all
|
||||
// iterators.
|
||||
InsertForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
|
||||
// Insert inserts an IRI value at the specified index for a property
|
||||
// "generator". Existing elements at that index and higher are shifted
|
||||
// back once. Invalidates all iterators.
|
||||
|
|
@ -1311,6 +1210,10 @@ type ActivityStreamsGeneratorProperty interface {
|
|||
// property "generator". Existing elements at that index and higher
|
||||
// are shifted back once. Invalidates all iterators.
|
||||
InsertTootEmoji(idx int, v TootEmoji)
|
||||
// InsertTootHashtag inserts a Hashtag value at the specified index for a
|
||||
// property "generator". Existing elements at that index and higher
|
||||
// are shifted back once. Invalidates all iterators.
|
||||
InsertTootHashtag(idx int, v TootHashtag)
|
||||
// InsertTootIdentityProof inserts a IdentityProof value at the specified
|
||||
// index for a property "generator". Existing elements at that index
|
||||
// and higher are shifted back once. Invalidates all iterators.
|
||||
|
|
@ -1514,25 +1417,6 @@ type ActivityStreamsGeneratorProperty interface {
|
|||
// PrependActivityStreamsView prepends a View value to the front of a list
|
||||
// of the property "generator". Invalidates all iterators.
|
||||
PrependActivityStreamsView(v ActivityStreamsView)
|
||||
// PrependForgeFedBranch prepends a Branch value to the front of a list of
|
||||
// the property "generator". Invalidates all iterators.
|
||||
PrependForgeFedBranch(v ForgeFedBranch)
|
||||
// PrependForgeFedCommit prepends a Commit value to the front of a list of
|
||||
// the property "generator". Invalidates all iterators.
|
||||
PrependForgeFedCommit(v ForgeFedCommit)
|
||||
// PrependForgeFedPush prepends a Push value to the front of a list of the
|
||||
// property "generator". Invalidates all iterators.
|
||||
PrependForgeFedPush(v ForgeFedPush)
|
||||
// PrependForgeFedRepository prepends a Repository value to the front of a
|
||||
// list of the property "generator". Invalidates all iterators.
|
||||
PrependForgeFedRepository(v ForgeFedRepository)
|
||||
// PrependForgeFedTicket prepends a Ticket value to the front of a list of
|
||||
// the property "generator". Invalidates all iterators.
|
||||
PrependForgeFedTicket(v ForgeFedTicket)
|
||||
// PrependForgeFedTicketDependency prepends a TicketDependency value to
|
||||
// the front of a list of the property "generator". Invalidates all
|
||||
// iterators.
|
||||
PrependForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// PrependIRI prepends an IRI value to the front of a list of the property
|
||||
// "generator".
|
||||
PrependIRI(v *url.URL)
|
||||
|
|
@ -1542,6 +1426,9 @@ type ActivityStreamsGeneratorProperty interface {
|
|||
// PrependTootEmoji prepends a Emoji value to the front of a list of the
|
||||
// property "generator". Invalidates all iterators.
|
||||
PrependTootEmoji(v TootEmoji)
|
||||
// PrependTootHashtag prepends a Hashtag value to the front of a list of
|
||||
// the property "generator". Invalidates all iterators.
|
||||
PrependTootHashtag(v TootHashtag)
|
||||
// PrependTootIdentityProof prepends a IdentityProof value to the front of
|
||||
// a list of the property "generator". Invalidates all iterators.
|
||||
PrependTootIdentityProof(v TootIdentityProof)
|
||||
|
|
@ -1775,30 +1662,6 @@ type ActivityStreamsGeneratorProperty interface {
|
|||
// for the property "generator". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetActivityStreamsView(idx int, v ActivityStreamsView)
|
||||
// SetForgeFedBranch sets a Branch value to be at the specified index for
|
||||
// the property "generator". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedBranch(idx int, v ForgeFedBranch)
|
||||
// SetForgeFedCommit sets a Commit value to be at the specified index for
|
||||
// the property "generator". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedCommit(idx int, v ForgeFedCommit)
|
||||
// SetForgeFedPush sets a Push value to be at the specified index for the
|
||||
// property "generator". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedPush(idx int, v ForgeFedPush)
|
||||
// SetForgeFedRepository sets a Repository value to be at the specified
|
||||
// index for the property "generator". Panics if the index is out of
|
||||
// bounds. Invalidates all iterators.
|
||||
SetForgeFedRepository(idx int, v ForgeFedRepository)
|
||||
// SetForgeFedTicket sets a Ticket value to be at the specified index for
|
||||
// the property "generator". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedTicket(idx int, v ForgeFedTicket)
|
||||
// SetForgeFedTicketDependency sets a TicketDependency value to be at the
|
||||
// specified index for the property "generator". Panics if the index
|
||||
// is out of bounds. Invalidates all iterators.
|
||||
SetForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
|
||||
// SetIRI sets an IRI value to be at the specified index for the property
|
||||
// "generator". Panics if the index is out of bounds.
|
||||
SetIRI(idx int, v *url.URL)
|
||||
|
|
@ -1810,6 +1673,10 @@ type ActivityStreamsGeneratorProperty interface {
|
|||
// property "generator". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetTootEmoji(idx int, v TootEmoji)
|
||||
// SetTootHashtag sets a Hashtag value to be at the specified index for
|
||||
// the property "generator". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetTootHashtag(idx int, v TootHashtag)
|
||||
// SetTootIdentityProof sets a IdentityProof value to be at the specified
|
||||
// index for the property "generator". Panics if the index is out of
|
||||
// bounds. Invalidates all iterators.
|
||||
|
|
|
|||
|
|
@ -22,6 +22,9 @@ type ActivityStreamsIconPropertyIterator interface {
|
|||
// GetIRI returns the IRI of this property. When IsIRI returns false,
|
||||
// GetIRI will return an arbitrary value.
|
||||
GetIRI() *url.URL
|
||||
// GetTootHashtag returns the value of this property. When IsTootHashtag
|
||||
// returns false, GetTootHashtag will return an arbitrary value.
|
||||
GetTootHashtag() TootHashtag
|
||||
// GetType returns the value in this property as a Type. Returns nil if
|
||||
// the value is not an ActivityStreams type, such as an IRI or another
|
||||
// value.
|
||||
|
|
@ -43,6 +46,10 @@ type ActivityStreamsIconPropertyIterator interface {
|
|||
// IsIRI returns true if this property is an IRI. When true, use GetIRI
|
||||
// and SetIRI to access and set this property
|
||||
IsIRI() bool
|
||||
// IsTootHashtag returns true if this property has a type of "Hashtag".
|
||||
// When true, use the GetTootHashtag and SetTootHashtag methods to
|
||||
// access and set this property.
|
||||
IsTootHashtag() bool
|
||||
// JSONLDContext returns the JSONLD URIs required in the context string
|
||||
// for this property and the specific values that are set. The value
|
||||
// in the map is the alias used to import the property's value or
|
||||
|
|
@ -76,6 +83,9 @@ type ActivityStreamsIconPropertyIterator interface {
|
|||
// SetIRI sets the value of this property. Calling IsIRI afterwards
|
||||
// returns true.
|
||||
SetIRI(v *url.URL)
|
||||
// SetTootHashtag sets the value of this property. Calling IsTootHashtag
|
||||
// afterwards returns true.
|
||||
SetTootHashtag(v TootHashtag)
|
||||
// SetType attempts to set the property for the arbitrary type. Returns an
|
||||
// error if it is not a valid type to set on this property.
|
||||
SetType(t Type) error
|
||||
|
|
@ -137,6 +147,10 @@ type ActivityStreamsIconProperty interface {
|
|||
// AppendIRI appends an IRI value to the back of a list of the property
|
||||
// "icon"
|
||||
AppendIRI(v *url.URL)
|
||||
// AppendTootHashtag appends a Hashtag value to the back of a list of the
|
||||
// property "icon". Invalidates iterators that are traversing using
|
||||
// Prev.
|
||||
AppendTootHashtag(v TootHashtag)
|
||||
// PrependType prepends an arbitrary type value to the front of a list of
|
||||
// the property "icon". Invalidates iterators that are traversing
|
||||
// using Prev. Returns an error if the type is not a valid one to set
|
||||
|
|
@ -171,6 +185,10 @@ type ActivityStreamsIconProperty interface {
|
|||
// "icon". Existing elements at that index and higher are shifted back
|
||||
// once. Invalidates all iterators.
|
||||
InsertIRI(idx int, v *url.URL)
|
||||
// InsertTootHashtag inserts a Hashtag value at the specified index for a
|
||||
// property "icon". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertTootHashtag(idx int, v TootHashtag)
|
||||
// PrependType prepends an arbitrary type value to the front of a list of
|
||||
// the property "icon". Invalidates all iterators. Returns an error if
|
||||
// the type is not a valid one to set for this property.
|
||||
|
|
@ -209,6 +227,9 @@ type ActivityStreamsIconProperty interface {
|
|||
// PrependIRI prepends an IRI value to the front of a list of the property
|
||||
// "icon".
|
||||
PrependIRI(v *url.URL)
|
||||
// PrependTootHashtag prepends a Hashtag value to the front of a list of
|
||||
// the property "icon". Invalidates all iterators.
|
||||
PrependTootHashtag(v TootHashtag)
|
||||
// PrependType prepends an arbitrary type value to the front of a list of
|
||||
// the property "icon". Invalidates all iterators. Returns an error if
|
||||
// the type is not a valid one to set for this property.
|
||||
|
|
@ -238,6 +259,10 @@ type ActivityStreamsIconProperty interface {
|
|||
// SetIRI sets an IRI value to be at the specified index for the property
|
||||
// "icon". Panics if the index is out of bounds.
|
||||
SetIRI(idx int, v *url.URL)
|
||||
// SetTootHashtag sets a Hashtag value to be at the specified index for
|
||||
// the property "icon". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetTootHashtag(idx int, v TootHashtag)
|
||||
// SetType sets an arbitrary type value to the specified index of the
|
||||
// property "icon". Invalidates all iterators. Returns an error if the
|
||||
// type is not a valid one to set for this property. Panics if the
|
||||
|
|
|
|||
|
|
@ -22,6 +22,9 @@ type ActivityStreamsImagePropertyIterator interface {
|
|||
// GetIRI returns the IRI of this property. When IsIRI returns false,
|
||||
// GetIRI will return an arbitrary value.
|
||||
GetIRI() *url.URL
|
||||
// GetTootHashtag returns the value of this property. When IsTootHashtag
|
||||
// returns false, GetTootHashtag will return an arbitrary value.
|
||||
GetTootHashtag() TootHashtag
|
||||
// GetType returns the value in this property as a Type. Returns nil if
|
||||
// the value is not an ActivityStreams type, such as an IRI or another
|
||||
// value.
|
||||
|
|
@ -43,6 +46,10 @@ type ActivityStreamsImagePropertyIterator interface {
|
|||
// IsIRI returns true if this property is an IRI. When true, use GetIRI
|
||||
// and SetIRI to access and set this property
|
||||
IsIRI() bool
|
||||
// IsTootHashtag returns true if this property has a type of "Hashtag".
|
||||
// When true, use the GetTootHashtag and SetTootHashtag methods to
|
||||
// access and set this property.
|
||||
IsTootHashtag() bool
|
||||
// JSONLDContext returns the JSONLD URIs required in the context string
|
||||
// for this property and the specific values that are set. The value
|
||||
// in the map is the alias used to import the property's value or
|
||||
|
|
@ -76,6 +83,9 @@ type ActivityStreamsImagePropertyIterator interface {
|
|||
// SetIRI sets the value of this property. Calling IsIRI afterwards
|
||||
// returns true.
|
||||
SetIRI(v *url.URL)
|
||||
// SetTootHashtag sets the value of this property. Calling IsTootHashtag
|
||||
// afterwards returns true.
|
||||
SetTootHashtag(v TootHashtag)
|
||||
// SetType attempts to set the property for the arbitrary type. Returns an
|
||||
// error if it is not a valid type to set on this property.
|
||||
SetType(t Type) error
|
||||
|
|
@ -130,6 +140,10 @@ type ActivityStreamsImageProperty interface {
|
|||
// AppendIRI appends an IRI value to the back of a list of the property
|
||||
// "image"
|
||||
AppendIRI(v *url.URL)
|
||||
// AppendTootHashtag appends a Hashtag value to the back of a list of the
|
||||
// property "image". Invalidates iterators that are traversing using
|
||||
// Prev.
|
||||
AppendTootHashtag(v TootHashtag)
|
||||
// PrependType prepends an arbitrary type value to the front of a list of
|
||||
// the property "image". Invalidates iterators that are traversing
|
||||
// using Prev. Returns an error if the type is not a valid one to set
|
||||
|
|
@ -164,6 +178,10 @@ type ActivityStreamsImageProperty interface {
|
|||
// "image". Existing elements at that index and higher are shifted
|
||||
// back once. Invalidates all iterators.
|
||||
InsertIRI(idx int, v *url.URL)
|
||||
// InsertTootHashtag inserts a Hashtag value at the specified index for a
|
||||
// property "image". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertTootHashtag(idx int, v TootHashtag)
|
||||
// PrependType prepends an arbitrary type value to the front of a list of
|
||||
// the property "image". Invalidates all iterators. Returns an error
|
||||
// if the type is not a valid one to set for this property.
|
||||
|
|
@ -202,6 +220,9 @@ type ActivityStreamsImageProperty interface {
|
|||
// PrependIRI prepends an IRI value to the front of a list of the property
|
||||
// "image".
|
||||
PrependIRI(v *url.URL)
|
||||
// PrependTootHashtag prepends a Hashtag value to the front of a list of
|
||||
// the property "image". Invalidates all iterators.
|
||||
PrependTootHashtag(v TootHashtag)
|
||||
// PrependType prepends an arbitrary type value to the front of a list of
|
||||
// the property "image". Invalidates all iterators. Returns an error
|
||||
// if the type is not a valid one to set for this property.
|
||||
|
|
@ -231,6 +252,10 @@ type ActivityStreamsImageProperty interface {
|
|||
// SetIRI sets an IRI value to be at the specified index for the property
|
||||
// "image". Panics if the index is out of bounds.
|
||||
SetIRI(idx int, v *url.URL)
|
||||
// SetTootHashtag sets a Hashtag value to be at the specified index for
|
||||
// the property "image". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetTootHashtag(idx int, v TootHashtag)
|
||||
// SetType sets an arbitrary type value to the specified index of the
|
||||
// property "image". Invalidates all iterators. Returns an error if
|
||||
// the type is not a valid one to set for this property. Panics if the
|
||||
|
|
|
|||
|
|
@ -225,29 +225,6 @@ type ActivityStreamsInReplyToPropertyIterator interface {
|
|||
// IsActivityStreamsView returns false, GetActivityStreamsView will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsView() ActivityStreamsView
|
||||
// GetForgeFedBranch returns the value of this property. When
|
||||
// IsForgeFedBranch returns false, GetForgeFedBranch will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedBranch() ForgeFedBranch
|
||||
// GetForgeFedCommit returns the value of this property. When
|
||||
// IsForgeFedCommit returns false, GetForgeFedCommit will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedCommit() ForgeFedCommit
|
||||
// GetForgeFedPush returns the value of this property. When IsForgeFedPush
|
||||
// returns false, GetForgeFedPush will return an arbitrary value.
|
||||
GetForgeFedPush() ForgeFedPush
|
||||
// GetForgeFedRepository returns the value of this property. When
|
||||
// IsForgeFedRepository returns false, GetForgeFedRepository will
|
||||
// return an arbitrary value.
|
||||
GetForgeFedRepository() ForgeFedRepository
|
||||
// GetForgeFedTicket returns the value of this property. When
|
||||
// IsForgeFedTicket returns false, GetForgeFedTicket will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedTicket() ForgeFedTicket
|
||||
// GetForgeFedTicketDependency returns the value of this property. When
|
||||
// IsForgeFedTicketDependency returns false,
|
||||
// GetForgeFedTicketDependency will return an arbitrary value.
|
||||
GetForgeFedTicketDependency() ForgeFedTicketDependency
|
||||
// GetIRI returns the IRI of this property. When IsIRI returns false,
|
||||
// GetIRI will return an arbitrary value.
|
||||
GetIRI() *url.URL
|
||||
|
|
@ -258,6 +235,9 @@ type ActivityStreamsInReplyToPropertyIterator interface {
|
|||
// GetTootEmoji returns the value of this property. When IsTootEmoji
|
||||
// returns false, GetTootEmoji will return an arbitrary value.
|
||||
GetTootEmoji() TootEmoji
|
||||
// GetTootHashtag returns the value of this property. When IsTootHashtag
|
||||
// returns false, GetTootHashtag will return an arbitrary value.
|
||||
GetTootHashtag() TootHashtag
|
||||
// GetTootIdentityProof returns the value of this property. When
|
||||
// IsTootIdentityProof returns false, GetTootIdentityProof will return
|
||||
// an arbitrary value.
|
||||
|
|
@ -500,31 +480,6 @@ type ActivityStreamsInReplyToPropertyIterator interface {
|
|||
// "View". When true, use the GetActivityStreamsView and
|
||||
// SetActivityStreamsView methods to access and set this property.
|
||||
IsActivityStreamsView() bool
|
||||
// IsForgeFedBranch returns true if this property has a type of "Branch".
|
||||
// When true, use the GetForgeFedBranch and SetForgeFedBranch methods
|
||||
// to access and set this property.
|
||||
IsForgeFedBranch() bool
|
||||
// IsForgeFedCommit returns true if this property has a type of "Commit".
|
||||
// When true, use the GetForgeFedCommit and SetForgeFedCommit methods
|
||||
// to access and set this property.
|
||||
IsForgeFedCommit() bool
|
||||
// IsForgeFedPush returns true if this property has a type of "Push". When
|
||||
// true, use the GetForgeFedPush and SetForgeFedPush methods to access
|
||||
// and set this property.
|
||||
IsForgeFedPush() bool
|
||||
// IsForgeFedRepository returns true if this property has a type of
|
||||
// "Repository". When true, use the GetForgeFedRepository and
|
||||
// SetForgeFedRepository methods to access and set this property.
|
||||
IsForgeFedRepository() bool
|
||||
// IsForgeFedTicket returns true if this property has a type of "Ticket".
|
||||
// When true, use the GetForgeFedTicket and SetForgeFedTicket methods
|
||||
// to access and set this property.
|
||||
IsForgeFedTicket() bool
|
||||
// IsForgeFedTicketDependency returns true if this property has a type of
|
||||
// "TicketDependency". When true, use the GetForgeFedTicketDependency
|
||||
// and SetForgeFedTicketDependency methods to access and set this
|
||||
// property.
|
||||
IsForgeFedTicketDependency() bool
|
||||
// IsIRI returns true if this property is an IRI. When true, use GetIRI
|
||||
// and SetIRI to access and set this property
|
||||
IsIRI() bool
|
||||
|
|
@ -536,6 +491,10 @@ type ActivityStreamsInReplyToPropertyIterator interface {
|
|||
// true, use the GetTootEmoji and SetTootEmoji methods to access and
|
||||
// set this property.
|
||||
IsTootEmoji() bool
|
||||
// IsTootHashtag returns true if this property has a type of "Hashtag".
|
||||
// When true, use the GetTootHashtag and SetTootHashtag methods to
|
||||
// access and set this property.
|
||||
IsTootHashtag() bool
|
||||
// IsTootIdentityProof returns true if this property has a type of
|
||||
// "IdentityProof". When true, use the GetTootIdentityProof and
|
||||
// SetTootIdentityProof methods to access and set this property.
|
||||
|
|
@ -725,24 +684,6 @@ type ActivityStreamsInReplyToPropertyIterator interface {
|
|||
// SetActivityStreamsView sets the value of this property. Calling
|
||||
// IsActivityStreamsView afterwards returns true.
|
||||
SetActivityStreamsView(v ActivityStreamsView)
|
||||
// SetForgeFedBranch sets the value of this property. Calling
|
||||
// IsForgeFedBranch afterwards returns true.
|
||||
SetForgeFedBranch(v ForgeFedBranch)
|
||||
// SetForgeFedCommit sets the value of this property. Calling
|
||||
// IsForgeFedCommit afterwards returns true.
|
||||
SetForgeFedCommit(v ForgeFedCommit)
|
||||
// SetForgeFedPush sets the value of this property. Calling IsForgeFedPush
|
||||
// afterwards returns true.
|
||||
SetForgeFedPush(v ForgeFedPush)
|
||||
// SetForgeFedRepository sets the value of this property. Calling
|
||||
// IsForgeFedRepository afterwards returns true.
|
||||
SetForgeFedRepository(v ForgeFedRepository)
|
||||
// SetForgeFedTicket sets the value of this property. Calling
|
||||
// IsForgeFedTicket afterwards returns true.
|
||||
SetForgeFedTicket(v ForgeFedTicket)
|
||||
// SetForgeFedTicketDependency sets the value of this property. Calling
|
||||
// IsForgeFedTicketDependency afterwards returns true.
|
||||
SetForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// SetIRI sets the value of this property. Calling IsIRI afterwards
|
||||
// returns true.
|
||||
SetIRI(v *url.URL)
|
||||
|
|
@ -752,6 +693,9 @@ type ActivityStreamsInReplyToPropertyIterator interface {
|
|||
// SetTootEmoji sets the value of this property. Calling IsTootEmoji
|
||||
// afterwards returns true.
|
||||
SetTootEmoji(v TootEmoji)
|
||||
// SetTootHashtag sets the value of this property. Calling IsTootHashtag
|
||||
// afterwards returns true.
|
||||
SetTootHashtag(v TootHashtag)
|
||||
// SetTootIdentityProof sets the value of this property. Calling
|
||||
// IsTootIdentityProof afterwards returns true.
|
||||
SetTootIdentityProof(v TootIdentityProof)
|
||||
|
|
@ -998,30 +942,6 @@ type ActivityStreamsInReplyToProperty interface {
|
|||
// the property "inReplyTo". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendActivityStreamsView(v ActivityStreamsView)
|
||||
// AppendForgeFedBranch appends a Branch value to the back of a list of
|
||||
// the property "inReplyTo". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendForgeFedBranch(v ForgeFedBranch)
|
||||
// AppendForgeFedCommit appends a Commit value to the back of a list of
|
||||
// the property "inReplyTo". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendForgeFedCommit(v ForgeFedCommit)
|
||||
// AppendForgeFedPush appends a Push value to the back of a list of the
|
||||
// property "inReplyTo". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendForgeFedPush(v ForgeFedPush)
|
||||
// AppendForgeFedRepository appends a Repository value to the back of a
|
||||
// list of the property "inReplyTo". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
AppendForgeFedRepository(v ForgeFedRepository)
|
||||
// AppendForgeFedTicket appends a Ticket value to the back of a list of
|
||||
// the property "inReplyTo". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendForgeFedTicket(v ForgeFedTicket)
|
||||
// AppendForgeFedTicketDependency appends a TicketDependency value to the
|
||||
// back of a list of the property "inReplyTo". Invalidates iterators
|
||||
// that are traversing using Prev.
|
||||
AppendForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// AppendIRI appends an IRI value to the back of a list of the property
|
||||
// "inReplyTo"
|
||||
AppendIRI(v *url.URL)
|
||||
|
|
@ -1033,6 +953,10 @@ type ActivityStreamsInReplyToProperty interface {
|
|||
// property "inReplyTo". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendTootEmoji(v TootEmoji)
|
||||
// AppendTootHashtag appends a Hashtag value to the back of a list of the
|
||||
// property "inReplyTo". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendTootHashtag(v TootHashtag)
|
||||
// AppendTootIdentityProof appends a IdentityProof value to the back of a
|
||||
// list of the property "inReplyTo". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
|
|
@ -1282,31 +1206,6 @@ type ActivityStreamsInReplyToProperty interface {
|
|||
// for a property "inReplyTo". Existing elements at that index and
|
||||
// higher are shifted back once. Invalidates all iterators.
|
||||
InsertActivityStreamsView(idx int, v ActivityStreamsView)
|
||||
// InsertForgeFedBranch inserts a Branch value at the specified index for
|
||||
// a property "inReplyTo". Existing elements at that index and higher
|
||||
// are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedBranch(idx int, v ForgeFedBranch)
|
||||
// InsertForgeFedCommit inserts a Commit value at the specified index for
|
||||
// a property "inReplyTo". Existing elements at that index and higher
|
||||
// are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedCommit(idx int, v ForgeFedCommit)
|
||||
// InsertForgeFedPush inserts a Push value at the specified index for a
|
||||
// property "inReplyTo". Existing elements at that index and higher
|
||||
// are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedPush(idx int, v ForgeFedPush)
|
||||
// InsertForgeFedRepository inserts a Repository value at the specified
|
||||
// index for a property "inReplyTo". Existing elements at that index
|
||||
// and higher are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedRepository(idx int, v ForgeFedRepository)
|
||||
// InsertForgeFedTicket inserts a Ticket value at the specified index for
|
||||
// a property "inReplyTo". Existing elements at that index and higher
|
||||
// are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedTicket(idx int, v ForgeFedTicket)
|
||||
// InsertForgeFedTicketDependency inserts a TicketDependency value at the
|
||||
// specified index for a property "inReplyTo". Existing elements at
|
||||
// that index and higher are shifted back once. Invalidates all
|
||||
// iterators.
|
||||
InsertForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
|
||||
// Insert inserts an IRI value at the specified index for a property
|
||||
// "inReplyTo". Existing elements at that index and higher are shifted
|
||||
// back once. Invalidates all iterators.
|
||||
|
|
@ -1320,6 +1219,10 @@ type ActivityStreamsInReplyToProperty interface {
|
|||
// property "inReplyTo". Existing elements at that index and higher
|
||||
// are shifted back once. Invalidates all iterators.
|
||||
InsertTootEmoji(idx int, v TootEmoji)
|
||||
// InsertTootHashtag inserts a Hashtag value at the specified index for a
|
||||
// property "inReplyTo". Existing elements at that index and higher
|
||||
// are shifted back once. Invalidates all iterators.
|
||||
InsertTootHashtag(idx int, v TootHashtag)
|
||||
// InsertTootIdentityProof inserts a IdentityProof value at the specified
|
||||
// index for a property "inReplyTo". Existing elements at that index
|
||||
// and higher are shifted back once. Invalidates all iterators.
|
||||
|
|
@ -1523,25 +1426,6 @@ type ActivityStreamsInReplyToProperty interface {
|
|||
// PrependActivityStreamsView prepends a View value to the front of a list
|
||||
// of the property "inReplyTo". Invalidates all iterators.
|
||||
PrependActivityStreamsView(v ActivityStreamsView)
|
||||
// PrependForgeFedBranch prepends a Branch value to the front of a list of
|
||||
// the property "inReplyTo". Invalidates all iterators.
|
||||
PrependForgeFedBranch(v ForgeFedBranch)
|
||||
// PrependForgeFedCommit prepends a Commit value to the front of a list of
|
||||
// the property "inReplyTo". Invalidates all iterators.
|
||||
PrependForgeFedCommit(v ForgeFedCommit)
|
||||
// PrependForgeFedPush prepends a Push value to the front of a list of the
|
||||
// property "inReplyTo". Invalidates all iterators.
|
||||
PrependForgeFedPush(v ForgeFedPush)
|
||||
// PrependForgeFedRepository prepends a Repository value to the front of a
|
||||
// list of the property "inReplyTo". Invalidates all iterators.
|
||||
PrependForgeFedRepository(v ForgeFedRepository)
|
||||
// PrependForgeFedTicket prepends a Ticket value to the front of a list of
|
||||
// the property "inReplyTo". Invalidates all iterators.
|
||||
PrependForgeFedTicket(v ForgeFedTicket)
|
||||
// PrependForgeFedTicketDependency prepends a TicketDependency value to
|
||||
// the front of a list of the property "inReplyTo". Invalidates all
|
||||
// iterators.
|
||||
PrependForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// PrependIRI prepends an IRI value to the front of a list of the property
|
||||
// "inReplyTo".
|
||||
PrependIRI(v *url.URL)
|
||||
|
|
@ -1551,6 +1435,9 @@ type ActivityStreamsInReplyToProperty interface {
|
|||
// PrependTootEmoji prepends a Emoji value to the front of a list of the
|
||||
// property "inReplyTo". Invalidates all iterators.
|
||||
PrependTootEmoji(v TootEmoji)
|
||||
// PrependTootHashtag prepends a Hashtag value to the front of a list of
|
||||
// the property "inReplyTo". Invalidates all iterators.
|
||||
PrependTootHashtag(v TootHashtag)
|
||||
// PrependTootIdentityProof prepends a IdentityProof value to the front of
|
||||
// a list of the property "inReplyTo". Invalidates all iterators.
|
||||
PrependTootIdentityProof(v TootIdentityProof)
|
||||
|
|
@ -1784,30 +1671,6 @@ type ActivityStreamsInReplyToProperty interface {
|
|||
// for the property "inReplyTo". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetActivityStreamsView(idx int, v ActivityStreamsView)
|
||||
// SetForgeFedBranch sets a Branch value to be at the specified index for
|
||||
// the property "inReplyTo". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedBranch(idx int, v ForgeFedBranch)
|
||||
// SetForgeFedCommit sets a Commit value to be at the specified index for
|
||||
// the property "inReplyTo". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedCommit(idx int, v ForgeFedCommit)
|
||||
// SetForgeFedPush sets a Push value to be at the specified index for the
|
||||
// property "inReplyTo". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedPush(idx int, v ForgeFedPush)
|
||||
// SetForgeFedRepository sets a Repository value to be at the specified
|
||||
// index for the property "inReplyTo". Panics if the index is out of
|
||||
// bounds. Invalidates all iterators.
|
||||
SetForgeFedRepository(idx int, v ForgeFedRepository)
|
||||
// SetForgeFedTicket sets a Ticket value to be at the specified index for
|
||||
// the property "inReplyTo". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedTicket(idx int, v ForgeFedTicket)
|
||||
// SetForgeFedTicketDependency sets a TicketDependency value to be at the
|
||||
// specified index for the property "inReplyTo". Panics if the index
|
||||
// is out of bounds. Invalidates all iterators.
|
||||
SetForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
|
||||
// SetIRI sets an IRI value to be at the specified index for the property
|
||||
// "inReplyTo". Panics if the index is out of bounds.
|
||||
SetIRI(idx int, v *url.URL)
|
||||
|
|
@ -1819,6 +1682,10 @@ type ActivityStreamsInReplyToProperty interface {
|
|||
// property "inReplyTo". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetTootEmoji(idx int, v TootEmoji)
|
||||
// SetTootHashtag sets a Hashtag value to be at the specified index for
|
||||
// the property "inReplyTo". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetTootHashtag(idx int, v TootHashtag)
|
||||
// SetTootIdentityProof sets a IdentityProof value to be at the specified
|
||||
// index for the property "inReplyTo". Panics if the index is out of
|
||||
// bounds. Invalidates all iterators.
|
||||
|
|
|
|||
|
|
@ -225,29 +225,6 @@ type ActivityStreamsInstrumentPropertyIterator interface {
|
|||
// IsActivityStreamsView returns false, GetActivityStreamsView will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsView() ActivityStreamsView
|
||||
// GetForgeFedBranch returns the value of this property. When
|
||||
// IsForgeFedBranch returns false, GetForgeFedBranch will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedBranch() ForgeFedBranch
|
||||
// GetForgeFedCommit returns the value of this property. When
|
||||
// IsForgeFedCommit returns false, GetForgeFedCommit will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedCommit() ForgeFedCommit
|
||||
// GetForgeFedPush returns the value of this property. When IsForgeFedPush
|
||||
// returns false, GetForgeFedPush will return an arbitrary value.
|
||||
GetForgeFedPush() ForgeFedPush
|
||||
// GetForgeFedRepository returns the value of this property. When
|
||||
// IsForgeFedRepository returns false, GetForgeFedRepository will
|
||||
// return an arbitrary value.
|
||||
GetForgeFedRepository() ForgeFedRepository
|
||||
// GetForgeFedTicket returns the value of this property. When
|
||||
// IsForgeFedTicket returns false, GetForgeFedTicket will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedTicket() ForgeFedTicket
|
||||
// GetForgeFedTicketDependency returns the value of this property. When
|
||||
// IsForgeFedTicketDependency returns false,
|
||||
// GetForgeFedTicketDependency will return an arbitrary value.
|
||||
GetForgeFedTicketDependency() ForgeFedTicketDependency
|
||||
// GetIRI returns the IRI of this property. When IsIRI returns false,
|
||||
// GetIRI will return an arbitrary value.
|
||||
GetIRI() *url.URL
|
||||
|
|
@ -258,6 +235,9 @@ type ActivityStreamsInstrumentPropertyIterator interface {
|
|||
// GetTootEmoji returns the value of this property. When IsTootEmoji
|
||||
// returns false, GetTootEmoji will return an arbitrary value.
|
||||
GetTootEmoji() TootEmoji
|
||||
// GetTootHashtag returns the value of this property. When IsTootHashtag
|
||||
// returns false, GetTootHashtag will return an arbitrary value.
|
||||
GetTootHashtag() TootHashtag
|
||||
// GetTootIdentityProof returns the value of this property. When
|
||||
// IsTootIdentityProof returns false, GetTootIdentityProof will return
|
||||
// an arbitrary value.
|
||||
|
|
@ -500,31 +480,6 @@ type ActivityStreamsInstrumentPropertyIterator interface {
|
|||
// "View". When true, use the GetActivityStreamsView and
|
||||
// SetActivityStreamsView methods to access and set this property.
|
||||
IsActivityStreamsView() bool
|
||||
// IsForgeFedBranch returns true if this property has a type of "Branch".
|
||||
// When true, use the GetForgeFedBranch and SetForgeFedBranch methods
|
||||
// to access and set this property.
|
||||
IsForgeFedBranch() bool
|
||||
// IsForgeFedCommit returns true if this property has a type of "Commit".
|
||||
// When true, use the GetForgeFedCommit and SetForgeFedCommit methods
|
||||
// to access and set this property.
|
||||
IsForgeFedCommit() bool
|
||||
// IsForgeFedPush returns true if this property has a type of "Push". When
|
||||
// true, use the GetForgeFedPush and SetForgeFedPush methods to access
|
||||
// and set this property.
|
||||
IsForgeFedPush() bool
|
||||
// IsForgeFedRepository returns true if this property has a type of
|
||||
// "Repository". When true, use the GetForgeFedRepository and
|
||||
// SetForgeFedRepository methods to access and set this property.
|
||||
IsForgeFedRepository() bool
|
||||
// IsForgeFedTicket returns true if this property has a type of "Ticket".
|
||||
// When true, use the GetForgeFedTicket and SetForgeFedTicket methods
|
||||
// to access and set this property.
|
||||
IsForgeFedTicket() bool
|
||||
// IsForgeFedTicketDependency returns true if this property has a type of
|
||||
// "TicketDependency". When true, use the GetForgeFedTicketDependency
|
||||
// and SetForgeFedTicketDependency methods to access and set this
|
||||
// property.
|
||||
IsForgeFedTicketDependency() bool
|
||||
// IsIRI returns true if this property is an IRI. When true, use GetIRI
|
||||
// and SetIRI to access and set this property
|
||||
IsIRI() bool
|
||||
|
|
@ -536,6 +491,10 @@ type ActivityStreamsInstrumentPropertyIterator interface {
|
|||
// true, use the GetTootEmoji and SetTootEmoji methods to access and
|
||||
// set this property.
|
||||
IsTootEmoji() bool
|
||||
// IsTootHashtag returns true if this property has a type of "Hashtag".
|
||||
// When true, use the GetTootHashtag and SetTootHashtag methods to
|
||||
// access and set this property.
|
||||
IsTootHashtag() bool
|
||||
// IsTootIdentityProof returns true if this property has a type of
|
||||
// "IdentityProof". When true, use the GetTootIdentityProof and
|
||||
// SetTootIdentityProof methods to access and set this property.
|
||||
|
|
@ -725,24 +684,6 @@ type ActivityStreamsInstrumentPropertyIterator interface {
|
|||
// SetActivityStreamsView sets the value of this property. Calling
|
||||
// IsActivityStreamsView afterwards returns true.
|
||||
SetActivityStreamsView(v ActivityStreamsView)
|
||||
// SetForgeFedBranch sets the value of this property. Calling
|
||||
// IsForgeFedBranch afterwards returns true.
|
||||
SetForgeFedBranch(v ForgeFedBranch)
|
||||
// SetForgeFedCommit sets the value of this property. Calling
|
||||
// IsForgeFedCommit afterwards returns true.
|
||||
SetForgeFedCommit(v ForgeFedCommit)
|
||||
// SetForgeFedPush sets the value of this property. Calling IsForgeFedPush
|
||||
// afterwards returns true.
|
||||
SetForgeFedPush(v ForgeFedPush)
|
||||
// SetForgeFedRepository sets the value of this property. Calling
|
||||
// IsForgeFedRepository afterwards returns true.
|
||||
SetForgeFedRepository(v ForgeFedRepository)
|
||||
// SetForgeFedTicket sets the value of this property. Calling
|
||||
// IsForgeFedTicket afterwards returns true.
|
||||
SetForgeFedTicket(v ForgeFedTicket)
|
||||
// SetForgeFedTicketDependency sets the value of this property. Calling
|
||||
// IsForgeFedTicketDependency afterwards returns true.
|
||||
SetForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// SetIRI sets the value of this property. Calling IsIRI afterwards
|
||||
// returns true.
|
||||
SetIRI(v *url.URL)
|
||||
|
|
@ -752,6 +693,9 @@ type ActivityStreamsInstrumentPropertyIterator interface {
|
|||
// SetTootEmoji sets the value of this property. Calling IsTootEmoji
|
||||
// afterwards returns true.
|
||||
SetTootEmoji(v TootEmoji)
|
||||
// SetTootHashtag sets the value of this property. Calling IsTootHashtag
|
||||
// afterwards returns true.
|
||||
SetTootHashtag(v TootHashtag)
|
||||
// SetTootIdentityProof sets the value of this property. Calling
|
||||
// IsTootIdentityProof afterwards returns true.
|
||||
SetTootIdentityProof(v TootIdentityProof)
|
||||
|
|
@ -995,30 +939,6 @@ type ActivityStreamsInstrumentProperty interface {
|
|||
// the property "instrument". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
AppendActivityStreamsView(v ActivityStreamsView)
|
||||
// AppendForgeFedBranch appends a Branch value to the back of a list of
|
||||
// the property "instrument". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
AppendForgeFedBranch(v ForgeFedBranch)
|
||||
// AppendForgeFedCommit appends a Commit value to the back of a list of
|
||||
// the property "instrument". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
AppendForgeFedCommit(v ForgeFedCommit)
|
||||
// AppendForgeFedPush appends a Push value to the back of a list of the
|
||||
// property "instrument". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendForgeFedPush(v ForgeFedPush)
|
||||
// AppendForgeFedRepository appends a Repository value to the back of a
|
||||
// list of the property "instrument". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
AppendForgeFedRepository(v ForgeFedRepository)
|
||||
// AppendForgeFedTicket appends a Ticket value to the back of a list of
|
||||
// the property "instrument". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
AppendForgeFedTicket(v ForgeFedTicket)
|
||||
// AppendForgeFedTicketDependency appends a TicketDependency value to the
|
||||
// back of a list of the property "instrument". Invalidates iterators
|
||||
// that are traversing using Prev.
|
||||
AppendForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// AppendIRI appends an IRI value to the back of a list of the property
|
||||
// "instrument"
|
||||
AppendIRI(v *url.URL)
|
||||
|
|
@ -1030,6 +950,10 @@ type ActivityStreamsInstrumentProperty interface {
|
|||
// property "instrument". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendTootEmoji(v TootEmoji)
|
||||
// AppendTootHashtag appends a Hashtag value to the back of a list of the
|
||||
// property "instrument". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendTootHashtag(v TootHashtag)
|
||||
// AppendTootIdentityProof appends a IdentityProof value to the back of a
|
||||
// list of the property "instrument". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
|
|
@ -1279,31 +1203,6 @@ type ActivityStreamsInstrumentProperty interface {
|
|||
// for a property "instrument". Existing elements at that index and
|
||||
// higher are shifted back once. Invalidates all iterators.
|
||||
InsertActivityStreamsView(idx int, v ActivityStreamsView)
|
||||
// InsertForgeFedBranch inserts a Branch value at the specified index for
|
||||
// a property "instrument". Existing elements at that index and higher
|
||||
// are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedBranch(idx int, v ForgeFedBranch)
|
||||
// InsertForgeFedCommit inserts a Commit value at the specified index for
|
||||
// a property "instrument". Existing elements at that index and higher
|
||||
// are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedCommit(idx int, v ForgeFedCommit)
|
||||
// InsertForgeFedPush inserts a Push value at the specified index for a
|
||||
// property "instrument". Existing elements at that index and higher
|
||||
// are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedPush(idx int, v ForgeFedPush)
|
||||
// InsertForgeFedRepository inserts a Repository value at the specified
|
||||
// index for a property "instrument". Existing elements at that index
|
||||
// and higher are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedRepository(idx int, v ForgeFedRepository)
|
||||
// InsertForgeFedTicket inserts a Ticket value at the specified index for
|
||||
// a property "instrument". Existing elements at that index and higher
|
||||
// are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedTicket(idx int, v ForgeFedTicket)
|
||||
// InsertForgeFedTicketDependency inserts a TicketDependency value at the
|
||||
// specified index for a property "instrument". Existing elements at
|
||||
// that index and higher are shifted back once. Invalidates all
|
||||
// iterators.
|
||||
InsertForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
|
||||
// Insert inserts an IRI value at the specified index for a property
|
||||
// "instrument". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
|
|
@ -1317,6 +1216,10 @@ type ActivityStreamsInstrumentProperty interface {
|
|||
// property "instrument". Existing elements at that index and higher
|
||||
// are shifted back once. Invalidates all iterators.
|
||||
InsertTootEmoji(idx int, v TootEmoji)
|
||||
// InsertTootHashtag inserts a Hashtag value at the specified index for a
|
||||
// property "instrument". Existing elements at that index and higher
|
||||
// are shifted back once. Invalidates all iterators.
|
||||
InsertTootHashtag(idx int, v TootHashtag)
|
||||
// InsertTootIdentityProof inserts a IdentityProof value at the specified
|
||||
// index for a property "instrument". Existing elements at that index
|
||||
// and higher are shifted back once. Invalidates all iterators.
|
||||
|
|
@ -1520,25 +1423,6 @@ type ActivityStreamsInstrumentProperty interface {
|
|||
// PrependActivityStreamsView prepends a View value to the front of a list
|
||||
// of the property "instrument". Invalidates all iterators.
|
||||
PrependActivityStreamsView(v ActivityStreamsView)
|
||||
// PrependForgeFedBranch prepends a Branch value to the front of a list of
|
||||
// the property "instrument". Invalidates all iterators.
|
||||
PrependForgeFedBranch(v ForgeFedBranch)
|
||||
// PrependForgeFedCommit prepends a Commit value to the front of a list of
|
||||
// the property "instrument". Invalidates all iterators.
|
||||
PrependForgeFedCommit(v ForgeFedCommit)
|
||||
// PrependForgeFedPush prepends a Push value to the front of a list of the
|
||||
// property "instrument". Invalidates all iterators.
|
||||
PrependForgeFedPush(v ForgeFedPush)
|
||||
// PrependForgeFedRepository prepends a Repository value to the front of a
|
||||
// list of the property "instrument". Invalidates all iterators.
|
||||
PrependForgeFedRepository(v ForgeFedRepository)
|
||||
// PrependForgeFedTicket prepends a Ticket value to the front of a list of
|
||||
// the property "instrument". Invalidates all iterators.
|
||||
PrependForgeFedTicket(v ForgeFedTicket)
|
||||
// PrependForgeFedTicketDependency prepends a TicketDependency value to
|
||||
// the front of a list of the property "instrument". Invalidates all
|
||||
// iterators.
|
||||
PrependForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// PrependIRI prepends an IRI value to the front of a list of the property
|
||||
// "instrument".
|
||||
PrependIRI(v *url.URL)
|
||||
|
|
@ -1548,6 +1432,9 @@ type ActivityStreamsInstrumentProperty interface {
|
|||
// PrependTootEmoji prepends a Emoji value to the front of a list of the
|
||||
// property "instrument". Invalidates all iterators.
|
||||
PrependTootEmoji(v TootEmoji)
|
||||
// PrependTootHashtag prepends a Hashtag value to the front of a list of
|
||||
// the property "instrument". Invalidates all iterators.
|
||||
PrependTootHashtag(v TootHashtag)
|
||||
// PrependTootIdentityProof prepends a IdentityProof value to the front of
|
||||
// a list of the property "instrument". Invalidates all iterators.
|
||||
PrependTootIdentityProof(v TootIdentityProof)
|
||||
|
|
@ -1781,30 +1668,6 @@ type ActivityStreamsInstrumentProperty interface {
|
|||
// for the property "instrument". Panics if the index is out of
|
||||
// bounds. Invalidates all iterators.
|
||||
SetActivityStreamsView(idx int, v ActivityStreamsView)
|
||||
// SetForgeFedBranch sets a Branch value to be at the specified index for
|
||||
// the property "instrument". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedBranch(idx int, v ForgeFedBranch)
|
||||
// SetForgeFedCommit sets a Commit value to be at the specified index for
|
||||
// the property "instrument". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedCommit(idx int, v ForgeFedCommit)
|
||||
// SetForgeFedPush sets a Push value to be at the specified index for the
|
||||
// property "instrument". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedPush(idx int, v ForgeFedPush)
|
||||
// SetForgeFedRepository sets a Repository value to be at the specified
|
||||
// index for the property "instrument". Panics if the index is out of
|
||||
// bounds. Invalidates all iterators.
|
||||
SetForgeFedRepository(idx int, v ForgeFedRepository)
|
||||
// SetForgeFedTicket sets a Ticket value to be at the specified index for
|
||||
// the property "instrument". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedTicket(idx int, v ForgeFedTicket)
|
||||
// SetForgeFedTicketDependency sets a TicketDependency value to be at the
|
||||
// specified index for the property "instrument". Panics if the index
|
||||
// is out of bounds. Invalidates all iterators.
|
||||
SetForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
|
||||
// SetIRI sets an IRI value to be at the specified index for the property
|
||||
// "instrument". Panics if the index is out of bounds.
|
||||
SetIRI(idx int, v *url.URL)
|
||||
|
|
@ -1816,6 +1679,10 @@ type ActivityStreamsInstrumentProperty interface {
|
|||
// property "instrument". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetTootEmoji(idx int, v TootEmoji)
|
||||
// SetTootHashtag sets a Hashtag value to be at the specified index for
|
||||
// the property "instrument". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetTootHashtag(idx int, v TootHashtag)
|
||||
// SetTootIdentityProof sets a IdentityProof value to be at the specified
|
||||
// index for the property "instrument". Panics if the index is out of
|
||||
// bounds. Invalidates all iterators.
|
||||
|
|
|
|||
|
|
@ -225,29 +225,6 @@ type ActivityStreamsItemsPropertyIterator interface {
|
|||
// IsActivityStreamsView returns false, GetActivityStreamsView will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsView() ActivityStreamsView
|
||||
// GetForgeFedBranch returns the value of this property. When
|
||||
// IsForgeFedBranch returns false, GetForgeFedBranch will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedBranch() ForgeFedBranch
|
||||
// GetForgeFedCommit returns the value of this property. When
|
||||
// IsForgeFedCommit returns false, GetForgeFedCommit will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedCommit() ForgeFedCommit
|
||||
// GetForgeFedPush returns the value of this property. When IsForgeFedPush
|
||||
// returns false, GetForgeFedPush will return an arbitrary value.
|
||||
GetForgeFedPush() ForgeFedPush
|
||||
// GetForgeFedRepository returns the value of this property. When
|
||||
// IsForgeFedRepository returns false, GetForgeFedRepository will
|
||||
// return an arbitrary value.
|
||||
GetForgeFedRepository() ForgeFedRepository
|
||||
// GetForgeFedTicket returns the value of this property. When
|
||||
// IsForgeFedTicket returns false, GetForgeFedTicket will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedTicket() ForgeFedTicket
|
||||
// GetForgeFedTicketDependency returns the value of this property. When
|
||||
// IsForgeFedTicketDependency returns false,
|
||||
// GetForgeFedTicketDependency will return an arbitrary value.
|
||||
GetForgeFedTicketDependency() ForgeFedTicketDependency
|
||||
// GetIRI returns the IRI of this property. When IsIRI returns false,
|
||||
// GetIRI will return an arbitrary value.
|
||||
GetIRI() *url.URL
|
||||
|
|
@ -258,6 +235,9 @@ type ActivityStreamsItemsPropertyIterator interface {
|
|||
// GetTootEmoji returns the value of this property. When IsTootEmoji
|
||||
// returns false, GetTootEmoji will return an arbitrary value.
|
||||
GetTootEmoji() TootEmoji
|
||||
// GetTootHashtag returns the value of this property. When IsTootHashtag
|
||||
// returns false, GetTootHashtag will return an arbitrary value.
|
||||
GetTootHashtag() TootHashtag
|
||||
// GetTootIdentityProof returns the value of this property. When
|
||||
// IsTootIdentityProof returns false, GetTootIdentityProof will return
|
||||
// an arbitrary value.
|
||||
|
|
@ -500,31 +480,6 @@ type ActivityStreamsItemsPropertyIterator interface {
|
|||
// "View". When true, use the GetActivityStreamsView and
|
||||
// SetActivityStreamsView methods to access and set this property.
|
||||
IsActivityStreamsView() bool
|
||||
// IsForgeFedBranch returns true if this property has a type of "Branch".
|
||||
// When true, use the GetForgeFedBranch and SetForgeFedBranch methods
|
||||
// to access and set this property.
|
||||
IsForgeFedBranch() bool
|
||||
// IsForgeFedCommit returns true if this property has a type of "Commit".
|
||||
// When true, use the GetForgeFedCommit and SetForgeFedCommit methods
|
||||
// to access and set this property.
|
||||
IsForgeFedCommit() bool
|
||||
// IsForgeFedPush returns true if this property has a type of "Push". When
|
||||
// true, use the GetForgeFedPush and SetForgeFedPush methods to access
|
||||
// and set this property.
|
||||
IsForgeFedPush() bool
|
||||
// IsForgeFedRepository returns true if this property has a type of
|
||||
// "Repository". When true, use the GetForgeFedRepository and
|
||||
// SetForgeFedRepository methods to access and set this property.
|
||||
IsForgeFedRepository() bool
|
||||
// IsForgeFedTicket returns true if this property has a type of "Ticket".
|
||||
// When true, use the GetForgeFedTicket and SetForgeFedTicket methods
|
||||
// to access and set this property.
|
||||
IsForgeFedTicket() bool
|
||||
// IsForgeFedTicketDependency returns true if this property has a type of
|
||||
// "TicketDependency". When true, use the GetForgeFedTicketDependency
|
||||
// and SetForgeFedTicketDependency methods to access and set this
|
||||
// property.
|
||||
IsForgeFedTicketDependency() bool
|
||||
// IsIRI returns true if this property is an IRI. When true, use GetIRI
|
||||
// and SetIRI to access and set this property
|
||||
IsIRI() bool
|
||||
|
|
@ -536,6 +491,10 @@ type ActivityStreamsItemsPropertyIterator interface {
|
|||
// true, use the GetTootEmoji and SetTootEmoji methods to access and
|
||||
// set this property.
|
||||
IsTootEmoji() bool
|
||||
// IsTootHashtag returns true if this property has a type of "Hashtag".
|
||||
// When true, use the GetTootHashtag and SetTootHashtag methods to
|
||||
// access and set this property.
|
||||
IsTootHashtag() bool
|
||||
// IsTootIdentityProof returns true if this property has a type of
|
||||
// "IdentityProof". When true, use the GetTootIdentityProof and
|
||||
// SetTootIdentityProof methods to access and set this property.
|
||||
|
|
@ -725,24 +684,6 @@ type ActivityStreamsItemsPropertyIterator interface {
|
|||
// SetActivityStreamsView sets the value of this property. Calling
|
||||
// IsActivityStreamsView afterwards returns true.
|
||||
SetActivityStreamsView(v ActivityStreamsView)
|
||||
// SetForgeFedBranch sets the value of this property. Calling
|
||||
// IsForgeFedBranch afterwards returns true.
|
||||
SetForgeFedBranch(v ForgeFedBranch)
|
||||
// SetForgeFedCommit sets the value of this property. Calling
|
||||
// IsForgeFedCommit afterwards returns true.
|
||||
SetForgeFedCommit(v ForgeFedCommit)
|
||||
// SetForgeFedPush sets the value of this property. Calling IsForgeFedPush
|
||||
// afterwards returns true.
|
||||
SetForgeFedPush(v ForgeFedPush)
|
||||
// SetForgeFedRepository sets the value of this property. Calling
|
||||
// IsForgeFedRepository afterwards returns true.
|
||||
SetForgeFedRepository(v ForgeFedRepository)
|
||||
// SetForgeFedTicket sets the value of this property. Calling
|
||||
// IsForgeFedTicket afterwards returns true.
|
||||
SetForgeFedTicket(v ForgeFedTicket)
|
||||
// SetForgeFedTicketDependency sets the value of this property. Calling
|
||||
// IsForgeFedTicketDependency afterwards returns true.
|
||||
SetForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// SetIRI sets the value of this property. Calling IsIRI afterwards
|
||||
// returns true.
|
||||
SetIRI(v *url.URL)
|
||||
|
|
@ -752,6 +693,9 @@ type ActivityStreamsItemsPropertyIterator interface {
|
|||
// SetTootEmoji sets the value of this property. Calling IsTootEmoji
|
||||
// afterwards returns true.
|
||||
SetTootEmoji(v TootEmoji)
|
||||
// SetTootHashtag sets the value of this property. Calling IsTootHashtag
|
||||
// afterwards returns true.
|
||||
SetTootHashtag(v TootHashtag)
|
||||
// SetTootIdentityProof sets the value of this property. Calling
|
||||
// IsTootIdentityProof afterwards returns true.
|
||||
SetTootIdentityProof(v TootIdentityProof)
|
||||
|
|
@ -996,30 +940,6 @@ type ActivityStreamsItemsProperty interface {
|
|||
// the property "items". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendActivityStreamsView(v ActivityStreamsView)
|
||||
// AppendForgeFedBranch appends a Branch value to the back of a list of
|
||||
// the property "items". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendForgeFedBranch(v ForgeFedBranch)
|
||||
// AppendForgeFedCommit appends a Commit value to the back of a list of
|
||||
// the property "items". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendForgeFedCommit(v ForgeFedCommit)
|
||||
// AppendForgeFedPush appends a Push value to the back of a list of the
|
||||
// property "items". Invalidates iterators that are traversing using
|
||||
// Prev.
|
||||
AppendForgeFedPush(v ForgeFedPush)
|
||||
// AppendForgeFedRepository appends a Repository value to the back of a
|
||||
// list of the property "items". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
AppendForgeFedRepository(v ForgeFedRepository)
|
||||
// AppendForgeFedTicket appends a Ticket value to the back of a list of
|
||||
// the property "items". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendForgeFedTicket(v ForgeFedTicket)
|
||||
// AppendForgeFedTicketDependency appends a TicketDependency value to the
|
||||
// back of a list of the property "items". Invalidates iterators that
|
||||
// are traversing using Prev.
|
||||
AppendForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// AppendIRI appends an IRI value to the back of a list of the property
|
||||
// "items"
|
||||
AppendIRI(v *url.URL)
|
||||
|
|
@ -1031,6 +951,10 @@ type ActivityStreamsItemsProperty interface {
|
|||
// property "items". Invalidates iterators that are traversing using
|
||||
// Prev.
|
||||
AppendTootEmoji(v TootEmoji)
|
||||
// AppendTootHashtag appends a Hashtag value to the back of a list of the
|
||||
// property "items". Invalidates iterators that are traversing using
|
||||
// Prev.
|
||||
AppendTootHashtag(v TootHashtag)
|
||||
// AppendTootIdentityProof appends a IdentityProof value to the back of a
|
||||
// list of the property "items". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
|
|
@ -1275,30 +1199,6 @@ type ActivityStreamsItemsProperty interface {
|
|||
// for a property "items". Existing elements at that index and higher
|
||||
// are shifted back once. Invalidates all iterators.
|
||||
InsertActivityStreamsView(idx int, v ActivityStreamsView)
|
||||
// InsertForgeFedBranch inserts a Branch value at the specified index for
|
||||
// a property "items". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedBranch(idx int, v ForgeFedBranch)
|
||||
// InsertForgeFedCommit inserts a Commit value at the specified index for
|
||||
// a property "items". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedCommit(idx int, v ForgeFedCommit)
|
||||
// InsertForgeFedPush inserts a Push value at the specified index for a
|
||||
// property "items". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedPush(idx int, v ForgeFedPush)
|
||||
// InsertForgeFedRepository inserts a Repository value at the specified
|
||||
// index for a property "items". Existing elements at that index and
|
||||
// higher are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedRepository(idx int, v ForgeFedRepository)
|
||||
// InsertForgeFedTicket inserts a Ticket value at the specified index for
|
||||
// a property "items". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedTicket(idx int, v ForgeFedTicket)
|
||||
// InsertForgeFedTicketDependency inserts a TicketDependency value at the
|
||||
// specified index for a property "items". Existing elements at that
|
||||
// index and higher are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
|
||||
// Insert inserts an IRI value at the specified index for a property
|
||||
// "items". Existing elements at that index and higher are shifted
|
||||
// back once. Invalidates all iterators.
|
||||
|
|
@ -1311,6 +1211,10 @@ type ActivityStreamsItemsProperty interface {
|
|||
// property "items". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertTootEmoji(idx int, v TootEmoji)
|
||||
// InsertTootHashtag inserts a Hashtag value at the specified index for a
|
||||
// property "items". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertTootHashtag(idx int, v TootHashtag)
|
||||
// InsertTootIdentityProof inserts a IdentityProof value at the specified
|
||||
// index for a property "items". Existing elements at that index and
|
||||
// higher are shifted back once. Invalidates all iterators.
|
||||
|
|
@ -1509,25 +1413,6 @@ type ActivityStreamsItemsProperty interface {
|
|||
// PrependActivityStreamsView prepends a View value to the front of a list
|
||||
// of the property "items". Invalidates all iterators.
|
||||
PrependActivityStreamsView(v ActivityStreamsView)
|
||||
// PrependForgeFedBranch prepends a Branch value to the front of a list of
|
||||
// the property "items". Invalidates all iterators.
|
||||
PrependForgeFedBranch(v ForgeFedBranch)
|
||||
// PrependForgeFedCommit prepends a Commit value to the front of a list of
|
||||
// the property "items". Invalidates all iterators.
|
||||
PrependForgeFedCommit(v ForgeFedCommit)
|
||||
// PrependForgeFedPush prepends a Push value to the front of a list of the
|
||||
// property "items". Invalidates all iterators.
|
||||
PrependForgeFedPush(v ForgeFedPush)
|
||||
// PrependForgeFedRepository prepends a Repository value to the front of a
|
||||
// list of the property "items". Invalidates all iterators.
|
||||
PrependForgeFedRepository(v ForgeFedRepository)
|
||||
// PrependForgeFedTicket prepends a Ticket value to the front of a list of
|
||||
// the property "items". Invalidates all iterators.
|
||||
PrependForgeFedTicket(v ForgeFedTicket)
|
||||
// PrependForgeFedTicketDependency prepends a TicketDependency value to
|
||||
// the front of a list of the property "items". Invalidates all
|
||||
// iterators.
|
||||
PrependForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// PrependIRI prepends an IRI value to the front of a list of the property
|
||||
// "items".
|
||||
PrependIRI(v *url.URL)
|
||||
|
|
@ -1537,6 +1422,9 @@ type ActivityStreamsItemsProperty interface {
|
|||
// PrependTootEmoji prepends a Emoji value to the front of a list of the
|
||||
// property "items". Invalidates all iterators.
|
||||
PrependTootEmoji(v TootEmoji)
|
||||
// PrependTootHashtag prepends a Hashtag value to the front of a list of
|
||||
// the property "items". Invalidates all iterators.
|
||||
PrependTootHashtag(v TootHashtag)
|
||||
// PrependTootIdentityProof prepends a IdentityProof value to the front of
|
||||
// a list of the property "items". Invalidates all iterators.
|
||||
PrependTootIdentityProof(v TootIdentityProof)
|
||||
|
|
@ -1770,30 +1658,6 @@ type ActivityStreamsItemsProperty interface {
|
|||
// for the property "items". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetActivityStreamsView(idx int, v ActivityStreamsView)
|
||||
// SetForgeFedBranch sets a Branch value to be at the specified index for
|
||||
// the property "items". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedBranch(idx int, v ForgeFedBranch)
|
||||
// SetForgeFedCommit sets a Commit value to be at the specified index for
|
||||
// the property "items". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedCommit(idx int, v ForgeFedCommit)
|
||||
// SetForgeFedPush sets a Push value to be at the specified index for the
|
||||
// property "items". Panics if the index is out of bounds. Invalidates
|
||||
// all iterators.
|
||||
SetForgeFedPush(idx int, v ForgeFedPush)
|
||||
// SetForgeFedRepository sets a Repository value to be at the specified
|
||||
// index for the property "items". Panics if the index is out of
|
||||
// bounds. Invalidates all iterators.
|
||||
SetForgeFedRepository(idx int, v ForgeFedRepository)
|
||||
// SetForgeFedTicket sets a Ticket value to be at the specified index for
|
||||
// the property "items". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedTicket(idx int, v ForgeFedTicket)
|
||||
// SetForgeFedTicketDependency sets a TicketDependency value to be at the
|
||||
// specified index for the property "items". Panics if the index is
|
||||
// out of bounds. Invalidates all iterators.
|
||||
SetForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
|
||||
// SetIRI sets an IRI value to be at the specified index for the property
|
||||
// "items". Panics if the index is out of bounds.
|
||||
SetIRI(idx int, v *url.URL)
|
||||
|
|
@ -1805,6 +1669,10 @@ type ActivityStreamsItemsProperty interface {
|
|||
// property "items". Panics if the index is out of bounds. Invalidates
|
||||
// all iterators.
|
||||
SetTootEmoji(idx int, v TootEmoji)
|
||||
// SetTootHashtag sets a Hashtag value to be at the specified index for
|
||||
// the property "items". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetTootHashtag(idx int, v TootHashtag)
|
||||
// SetTootIdentityProof sets a IdentityProof value to be at the specified
|
||||
// index for the property "items". Panics if the index is out of
|
||||
// bounds. Invalidates all iterators.
|
||||
|
|
|
|||
|
|
@ -49,6 +49,9 @@ type ActivityStreamsLastProperty interface {
|
|||
// GetIRI returns the IRI of this property. When IsIRI returns false,
|
||||
// GetIRI will return an arbitrary value.
|
||||
GetIRI() *url.URL
|
||||
// GetTootHashtag returns the value of this property. When IsTootHashtag
|
||||
// returns false, GetTootHashtag will return an arbitrary value.
|
||||
GetTootHashtag() TootHashtag
|
||||
// GetType returns the value in this property as a Type. Returns nil if
|
||||
// the value is not an ActivityStreams type, such as an IRI or another
|
||||
// value.
|
||||
|
|
@ -78,6 +81,10 @@ type ActivityStreamsLastProperty interface {
|
|||
// IsIRI returns true if this property is an IRI. When true, use GetIRI
|
||||
// and SetIRI to access and set this property
|
||||
IsIRI() bool
|
||||
// IsTootHashtag returns true if this property has a type of "Hashtag".
|
||||
// When true, use the GetTootHashtag and SetTootHashtag methods to
|
||||
// access and set this property.
|
||||
IsTootHashtag() bool
|
||||
// JSONLDContext returns the JSONLD URIs required in the context string
|
||||
// for this property and the specific values that are set. The value
|
||||
// in the map is the alias used to import the property's value or
|
||||
|
|
@ -116,6 +123,9 @@ type ActivityStreamsLastProperty interface {
|
|||
// SetIRI sets the value of this property. Calling IsIRI afterwards
|
||||
// returns true.
|
||||
SetIRI(v *url.URL)
|
||||
// SetTootHashtag sets the value of this property. Calling IsTootHashtag
|
||||
// afterwards returns true.
|
||||
SetTootHashtag(v TootHashtag)
|
||||
// SetType attempts to set the property for the arbitrary type. Returns an
|
||||
// error if it is not a valid type to set on this property.
|
||||
SetType(t Type) error
|
||||
|
|
|
|||
|
|
@ -225,29 +225,6 @@ type ActivityStreamsLocationPropertyIterator interface {
|
|||
// IsActivityStreamsView returns false, GetActivityStreamsView will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsView() ActivityStreamsView
|
||||
// GetForgeFedBranch returns the value of this property. When
|
||||
// IsForgeFedBranch returns false, GetForgeFedBranch will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedBranch() ForgeFedBranch
|
||||
// GetForgeFedCommit returns the value of this property. When
|
||||
// IsForgeFedCommit returns false, GetForgeFedCommit will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedCommit() ForgeFedCommit
|
||||
// GetForgeFedPush returns the value of this property. When IsForgeFedPush
|
||||
// returns false, GetForgeFedPush will return an arbitrary value.
|
||||
GetForgeFedPush() ForgeFedPush
|
||||
// GetForgeFedRepository returns the value of this property. When
|
||||
// IsForgeFedRepository returns false, GetForgeFedRepository will
|
||||
// return an arbitrary value.
|
||||
GetForgeFedRepository() ForgeFedRepository
|
||||
// GetForgeFedTicket returns the value of this property. When
|
||||
// IsForgeFedTicket returns false, GetForgeFedTicket will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedTicket() ForgeFedTicket
|
||||
// GetForgeFedTicketDependency returns the value of this property. When
|
||||
// IsForgeFedTicketDependency returns false,
|
||||
// GetForgeFedTicketDependency will return an arbitrary value.
|
||||
GetForgeFedTicketDependency() ForgeFedTicketDependency
|
||||
// GetIRI returns the IRI of this property. When IsIRI returns false,
|
||||
// GetIRI will return an arbitrary value.
|
||||
GetIRI() *url.URL
|
||||
|
|
@ -258,6 +235,9 @@ type ActivityStreamsLocationPropertyIterator interface {
|
|||
// GetTootEmoji returns the value of this property. When IsTootEmoji
|
||||
// returns false, GetTootEmoji will return an arbitrary value.
|
||||
GetTootEmoji() TootEmoji
|
||||
// GetTootHashtag returns the value of this property. When IsTootHashtag
|
||||
// returns false, GetTootHashtag will return an arbitrary value.
|
||||
GetTootHashtag() TootHashtag
|
||||
// GetTootIdentityProof returns the value of this property. When
|
||||
// IsTootIdentityProof returns false, GetTootIdentityProof will return
|
||||
// an arbitrary value.
|
||||
|
|
@ -500,31 +480,6 @@ type ActivityStreamsLocationPropertyIterator interface {
|
|||
// "View". When true, use the GetActivityStreamsView and
|
||||
// SetActivityStreamsView methods to access and set this property.
|
||||
IsActivityStreamsView() bool
|
||||
// IsForgeFedBranch returns true if this property has a type of "Branch".
|
||||
// When true, use the GetForgeFedBranch and SetForgeFedBranch methods
|
||||
// to access and set this property.
|
||||
IsForgeFedBranch() bool
|
||||
// IsForgeFedCommit returns true if this property has a type of "Commit".
|
||||
// When true, use the GetForgeFedCommit and SetForgeFedCommit methods
|
||||
// to access and set this property.
|
||||
IsForgeFedCommit() bool
|
||||
// IsForgeFedPush returns true if this property has a type of "Push". When
|
||||
// true, use the GetForgeFedPush and SetForgeFedPush methods to access
|
||||
// and set this property.
|
||||
IsForgeFedPush() bool
|
||||
// IsForgeFedRepository returns true if this property has a type of
|
||||
// "Repository". When true, use the GetForgeFedRepository and
|
||||
// SetForgeFedRepository methods to access and set this property.
|
||||
IsForgeFedRepository() bool
|
||||
// IsForgeFedTicket returns true if this property has a type of "Ticket".
|
||||
// When true, use the GetForgeFedTicket and SetForgeFedTicket methods
|
||||
// to access and set this property.
|
||||
IsForgeFedTicket() bool
|
||||
// IsForgeFedTicketDependency returns true if this property has a type of
|
||||
// "TicketDependency". When true, use the GetForgeFedTicketDependency
|
||||
// and SetForgeFedTicketDependency methods to access and set this
|
||||
// property.
|
||||
IsForgeFedTicketDependency() bool
|
||||
// IsIRI returns true if this property is an IRI. When true, use GetIRI
|
||||
// and SetIRI to access and set this property
|
||||
IsIRI() bool
|
||||
|
|
@ -536,6 +491,10 @@ type ActivityStreamsLocationPropertyIterator interface {
|
|||
// true, use the GetTootEmoji and SetTootEmoji methods to access and
|
||||
// set this property.
|
||||
IsTootEmoji() bool
|
||||
// IsTootHashtag returns true if this property has a type of "Hashtag".
|
||||
// When true, use the GetTootHashtag and SetTootHashtag methods to
|
||||
// access and set this property.
|
||||
IsTootHashtag() bool
|
||||
// IsTootIdentityProof returns true if this property has a type of
|
||||
// "IdentityProof". When true, use the GetTootIdentityProof and
|
||||
// SetTootIdentityProof methods to access and set this property.
|
||||
|
|
@ -725,24 +684,6 @@ type ActivityStreamsLocationPropertyIterator interface {
|
|||
// SetActivityStreamsView sets the value of this property. Calling
|
||||
// IsActivityStreamsView afterwards returns true.
|
||||
SetActivityStreamsView(v ActivityStreamsView)
|
||||
// SetForgeFedBranch sets the value of this property. Calling
|
||||
// IsForgeFedBranch afterwards returns true.
|
||||
SetForgeFedBranch(v ForgeFedBranch)
|
||||
// SetForgeFedCommit sets the value of this property. Calling
|
||||
// IsForgeFedCommit afterwards returns true.
|
||||
SetForgeFedCommit(v ForgeFedCommit)
|
||||
// SetForgeFedPush sets the value of this property. Calling IsForgeFedPush
|
||||
// afterwards returns true.
|
||||
SetForgeFedPush(v ForgeFedPush)
|
||||
// SetForgeFedRepository sets the value of this property. Calling
|
||||
// IsForgeFedRepository afterwards returns true.
|
||||
SetForgeFedRepository(v ForgeFedRepository)
|
||||
// SetForgeFedTicket sets the value of this property. Calling
|
||||
// IsForgeFedTicket afterwards returns true.
|
||||
SetForgeFedTicket(v ForgeFedTicket)
|
||||
// SetForgeFedTicketDependency sets the value of this property. Calling
|
||||
// IsForgeFedTicketDependency afterwards returns true.
|
||||
SetForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// SetIRI sets the value of this property. Calling IsIRI afterwards
|
||||
// returns true.
|
||||
SetIRI(v *url.URL)
|
||||
|
|
@ -752,6 +693,9 @@ type ActivityStreamsLocationPropertyIterator interface {
|
|||
// SetTootEmoji sets the value of this property. Calling IsTootEmoji
|
||||
// afterwards returns true.
|
||||
SetTootEmoji(v TootEmoji)
|
||||
// SetTootHashtag sets the value of this property. Calling IsTootHashtag
|
||||
// afterwards returns true.
|
||||
SetTootHashtag(v TootHashtag)
|
||||
// SetTootIdentityProof sets the value of this property. Calling
|
||||
// IsTootIdentityProof afterwards returns true.
|
||||
SetTootIdentityProof(v TootIdentityProof)
|
||||
|
|
@ -993,30 +937,6 @@ type ActivityStreamsLocationProperty interface {
|
|||
// the property "location". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendActivityStreamsView(v ActivityStreamsView)
|
||||
// AppendForgeFedBranch appends a Branch value to the back of a list of
|
||||
// the property "location". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendForgeFedBranch(v ForgeFedBranch)
|
||||
// AppendForgeFedCommit appends a Commit value to the back of a list of
|
||||
// the property "location". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendForgeFedCommit(v ForgeFedCommit)
|
||||
// AppendForgeFedPush appends a Push value to the back of a list of the
|
||||
// property "location". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendForgeFedPush(v ForgeFedPush)
|
||||
// AppendForgeFedRepository appends a Repository value to the back of a
|
||||
// list of the property "location". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
AppendForgeFedRepository(v ForgeFedRepository)
|
||||
// AppendForgeFedTicket appends a Ticket value to the back of a list of
|
||||
// the property "location". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendForgeFedTicket(v ForgeFedTicket)
|
||||
// AppendForgeFedTicketDependency appends a TicketDependency value to the
|
||||
// back of a list of the property "location". Invalidates iterators
|
||||
// that are traversing using Prev.
|
||||
AppendForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// AppendIRI appends an IRI value to the back of a list of the property
|
||||
// "location"
|
||||
AppendIRI(v *url.URL)
|
||||
|
|
@ -1028,6 +948,10 @@ type ActivityStreamsLocationProperty interface {
|
|||
// property "location". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendTootEmoji(v TootEmoji)
|
||||
// AppendTootHashtag appends a Hashtag value to the back of a list of the
|
||||
// property "location". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendTootHashtag(v TootHashtag)
|
||||
// AppendTootIdentityProof appends a IdentityProof value to the back of a
|
||||
// list of the property "location". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
|
|
@ -1277,31 +1201,6 @@ type ActivityStreamsLocationProperty interface {
|
|||
// for a property "location". Existing elements at that index and
|
||||
// higher are shifted back once. Invalidates all iterators.
|
||||
InsertActivityStreamsView(idx int, v ActivityStreamsView)
|
||||
// InsertForgeFedBranch inserts a Branch value at the specified index for
|
||||
// a property "location". Existing elements at that index and higher
|
||||
// are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedBranch(idx int, v ForgeFedBranch)
|
||||
// InsertForgeFedCommit inserts a Commit value at the specified index for
|
||||
// a property "location". Existing elements at that index and higher
|
||||
// are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedCommit(idx int, v ForgeFedCommit)
|
||||
// InsertForgeFedPush inserts a Push value at the specified index for a
|
||||
// property "location". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedPush(idx int, v ForgeFedPush)
|
||||
// InsertForgeFedRepository inserts a Repository value at the specified
|
||||
// index for a property "location". Existing elements at that index
|
||||
// and higher are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedRepository(idx int, v ForgeFedRepository)
|
||||
// InsertForgeFedTicket inserts a Ticket value at the specified index for
|
||||
// a property "location". Existing elements at that index and higher
|
||||
// are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedTicket(idx int, v ForgeFedTicket)
|
||||
// InsertForgeFedTicketDependency inserts a TicketDependency value at the
|
||||
// specified index for a property "location". Existing elements at
|
||||
// that index and higher are shifted back once. Invalidates all
|
||||
// iterators.
|
||||
InsertForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
|
||||
// Insert inserts an IRI value at the specified index for a property
|
||||
// "location". Existing elements at that index and higher are shifted
|
||||
// back once. Invalidates all iterators.
|
||||
|
|
@ -1315,6 +1214,10 @@ type ActivityStreamsLocationProperty interface {
|
|||
// property "location". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertTootEmoji(idx int, v TootEmoji)
|
||||
// InsertTootHashtag inserts a Hashtag value at the specified index for a
|
||||
// property "location". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertTootHashtag(idx int, v TootHashtag)
|
||||
// InsertTootIdentityProof inserts a IdentityProof value at the specified
|
||||
// index for a property "location". Existing elements at that index
|
||||
// and higher are shifted back once. Invalidates all iterators.
|
||||
|
|
@ -1517,25 +1420,6 @@ type ActivityStreamsLocationProperty interface {
|
|||
// PrependActivityStreamsView prepends a View value to the front of a list
|
||||
// of the property "location". Invalidates all iterators.
|
||||
PrependActivityStreamsView(v ActivityStreamsView)
|
||||
// PrependForgeFedBranch prepends a Branch value to the front of a list of
|
||||
// the property "location". Invalidates all iterators.
|
||||
PrependForgeFedBranch(v ForgeFedBranch)
|
||||
// PrependForgeFedCommit prepends a Commit value to the front of a list of
|
||||
// the property "location". Invalidates all iterators.
|
||||
PrependForgeFedCommit(v ForgeFedCommit)
|
||||
// PrependForgeFedPush prepends a Push value to the front of a list of the
|
||||
// property "location". Invalidates all iterators.
|
||||
PrependForgeFedPush(v ForgeFedPush)
|
||||
// PrependForgeFedRepository prepends a Repository value to the front of a
|
||||
// list of the property "location". Invalidates all iterators.
|
||||
PrependForgeFedRepository(v ForgeFedRepository)
|
||||
// PrependForgeFedTicket prepends a Ticket value to the front of a list of
|
||||
// the property "location". Invalidates all iterators.
|
||||
PrependForgeFedTicket(v ForgeFedTicket)
|
||||
// PrependForgeFedTicketDependency prepends a TicketDependency value to
|
||||
// the front of a list of the property "location". Invalidates all
|
||||
// iterators.
|
||||
PrependForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// PrependIRI prepends an IRI value to the front of a list of the property
|
||||
// "location".
|
||||
PrependIRI(v *url.URL)
|
||||
|
|
@ -1545,6 +1429,9 @@ type ActivityStreamsLocationProperty interface {
|
|||
// PrependTootEmoji prepends a Emoji value to the front of a list of the
|
||||
// property "location". Invalidates all iterators.
|
||||
PrependTootEmoji(v TootEmoji)
|
||||
// PrependTootHashtag prepends a Hashtag value to the front of a list of
|
||||
// the property "location". Invalidates all iterators.
|
||||
PrependTootHashtag(v TootHashtag)
|
||||
// PrependTootIdentityProof prepends a IdentityProof value to the front of
|
||||
// a list of the property "location". Invalidates all iterators.
|
||||
PrependTootIdentityProof(v TootIdentityProof)
|
||||
|
|
@ -1778,30 +1665,6 @@ type ActivityStreamsLocationProperty interface {
|
|||
// for the property "location". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetActivityStreamsView(idx int, v ActivityStreamsView)
|
||||
// SetForgeFedBranch sets a Branch value to be at the specified index for
|
||||
// the property "location". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedBranch(idx int, v ForgeFedBranch)
|
||||
// SetForgeFedCommit sets a Commit value to be at the specified index for
|
||||
// the property "location". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedCommit(idx int, v ForgeFedCommit)
|
||||
// SetForgeFedPush sets a Push value to be at the specified index for the
|
||||
// property "location". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedPush(idx int, v ForgeFedPush)
|
||||
// SetForgeFedRepository sets a Repository value to be at the specified
|
||||
// index for the property "location". Panics if the index is out of
|
||||
// bounds. Invalidates all iterators.
|
||||
SetForgeFedRepository(idx int, v ForgeFedRepository)
|
||||
// SetForgeFedTicket sets a Ticket value to be at the specified index for
|
||||
// the property "location". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedTicket(idx int, v ForgeFedTicket)
|
||||
// SetForgeFedTicketDependency sets a TicketDependency value to be at the
|
||||
// specified index for the property "location". Panics if the index is
|
||||
// out of bounds. Invalidates all iterators.
|
||||
SetForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
|
||||
// SetIRI sets an IRI value to be at the specified index for the property
|
||||
// "location". Panics if the index is out of bounds.
|
||||
SetIRI(idx int, v *url.URL)
|
||||
|
|
@ -1813,6 +1676,10 @@ type ActivityStreamsLocationProperty interface {
|
|||
// property "location". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetTootEmoji(idx int, v TootEmoji)
|
||||
// SetTootHashtag sets a Hashtag value to be at the specified index for
|
||||
// the property "location". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetTootHashtag(idx int, v TootHashtag)
|
||||
// SetTootIdentityProof sets a IdentityProof value to be at the specified
|
||||
// index for the property "location". Panics if the index is out of
|
||||
// bounds. Invalidates all iterators.
|
||||
|
|
|
|||
|
|
@ -57,6 +57,9 @@ type ActivityStreamsNextProperty interface {
|
|||
// GetIRI returns the IRI of this property. When IsIRI returns false,
|
||||
// GetIRI will return an arbitrary value.
|
||||
GetIRI() *url.URL
|
||||
// GetTootHashtag returns the value of this property. When IsTootHashtag
|
||||
// returns false, GetTootHashtag will return an arbitrary value.
|
||||
GetTootHashtag() TootHashtag
|
||||
// GetType returns the value in this property as a Type. Returns nil if
|
||||
// the value is not an ActivityStreams type, such as an IRI or another
|
||||
// value.
|
||||
|
|
@ -86,6 +89,10 @@ type ActivityStreamsNextProperty interface {
|
|||
// IsIRI returns true if this property is an IRI. When true, use GetIRI
|
||||
// and SetIRI to access and set this property
|
||||
IsIRI() bool
|
||||
// IsTootHashtag returns true if this property has a type of "Hashtag".
|
||||
// When true, use the GetTootHashtag and SetTootHashtag methods to
|
||||
// access and set this property.
|
||||
IsTootHashtag() bool
|
||||
// JSONLDContext returns the JSONLD URIs required in the context string
|
||||
// for this property and the specific values that are set. The value
|
||||
// in the map is the alias used to import the property's value or
|
||||
|
|
@ -124,6 +131,9 @@ type ActivityStreamsNextProperty interface {
|
|||
// SetIRI sets the value of this property. Calling IsIRI afterwards
|
||||
// returns true.
|
||||
SetIRI(v *url.URL)
|
||||
// SetTootHashtag sets the value of this property. Calling IsTootHashtag
|
||||
// afterwards returns true.
|
||||
SetTootHashtag(v TootHashtag)
|
||||
// SetType attempts to set the property for the arbitrary type. Returns an
|
||||
// error if it is not a valid type to set on this property.
|
||||
SetType(t Type) error
|
||||
|
|
|
|||
|
|
@ -225,29 +225,6 @@ type ActivityStreamsObjectPropertyIterator interface {
|
|||
// IsActivityStreamsView returns false, GetActivityStreamsView will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsView() ActivityStreamsView
|
||||
// GetForgeFedBranch returns the value of this property. When
|
||||
// IsForgeFedBranch returns false, GetForgeFedBranch will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedBranch() ForgeFedBranch
|
||||
// GetForgeFedCommit returns the value of this property. When
|
||||
// IsForgeFedCommit returns false, GetForgeFedCommit will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedCommit() ForgeFedCommit
|
||||
// GetForgeFedPush returns the value of this property. When IsForgeFedPush
|
||||
// returns false, GetForgeFedPush will return an arbitrary value.
|
||||
GetForgeFedPush() ForgeFedPush
|
||||
// GetForgeFedRepository returns the value of this property. When
|
||||
// IsForgeFedRepository returns false, GetForgeFedRepository will
|
||||
// return an arbitrary value.
|
||||
GetForgeFedRepository() ForgeFedRepository
|
||||
// GetForgeFedTicket returns the value of this property. When
|
||||
// IsForgeFedTicket returns false, GetForgeFedTicket will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedTicket() ForgeFedTicket
|
||||
// GetForgeFedTicketDependency returns the value of this property. When
|
||||
// IsForgeFedTicketDependency returns false,
|
||||
// GetForgeFedTicketDependency will return an arbitrary value.
|
||||
GetForgeFedTicketDependency() ForgeFedTicketDependency
|
||||
// GetIRI returns the IRI of this property. When IsIRI returns false,
|
||||
// GetIRI will return an arbitrary value.
|
||||
GetIRI() *url.URL
|
||||
|
|
@ -258,6 +235,9 @@ type ActivityStreamsObjectPropertyIterator interface {
|
|||
// GetTootEmoji returns the value of this property. When IsTootEmoji
|
||||
// returns false, GetTootEmoji will return an arbitrary value.
|
||||
GetTootEmoji() TootEmoji
|
||||
// GetTootHashtag returns the value of this property. When IsTootHashtag
|
||||
// returns false, GetTootHashtag will return an arbitrary value.
|
||||
GetTootHashtag() TootHashtag
|
||||
// GetTootIdentityProof returns the value of this property. When
|
||||
// IsTootIdentityProof returns false, GetTootIdentityProof will return
|
||||
// an arbitrary value.
|
||||
|
|
@ -500,31 +480,6 @@ type ActivityStreamsObjectPropertyIterator interface {
|
|||
// "View". When true, use the GetActivityStreamsView and
|
||||
// SetActivityStreamsView methods to access and set this property.
|
||||
IsActivityStreamsView() bool
|
||||
// IsForgeFedBranch returns true if this property has a type of "Branch".
|
||||
// When true, use the GetForgeFedBranch and SetForgeFedBranch methods
|
||||
// to access and set this property.
|
||||
IsForgeFedBranch() bool
|
||||
// IsForgeFedCommit returns true if this property has a type of "Commit".
|
||||
// When true, use the GetForgeFedCommit and SetForgeFedCommit methods
|
||||
// to access and set this property.
|
||||
IsForgeFedCommit() bool
|
||||
// IsForgeFedPush returns true if this property has a type of "Push". When
|
||||
// true, use the GetForgeFedPush and SetForgeFedPush methods to access
|
||||
// and set this property.
|
||||
IsForgeFedPush() bool
|
||||
// IsForgeFedRepository returns true if this property has a type of
|
||||
// "Repository". When true, use the GetForgeFedRepository and
|
||||
// SetForgeFedRepository methods to access and set this property.
|
||||
IsForgeFedRepository() bool
|
||||
// IsForgeFedTicket returns true if this property has a type of "Ticket".
|
||||
// When true, use the GetForgeFedTicket and SetForgeFedTicket methods
|
||||
// to access and set this property.
|
||||
IsForgeFedTicket() bool
|
||||
// IsForgeFedTicketDependency returns true if this property has a type of
|
||||
// "TicketDependency". When true, use the GetForgeFedTicketDependency
|
||||
// and SetForgeFedTicketDependency methods to access and set this
|
||||
// property.
|
||||
IsForgeFedTicketDependency() bool
|
||||
// IsIRI returns true if this property is an IRI. When true, use GetIRI
|
||||
// and SetIRI to access and set this property
|
||||
IsIRI() bool
|
||||
|
|
@ -536,6 +491,10 @@ type ActivityStreamsObjectPropertyIterator interface {
|
|||
// true, use the GetTootEmoji and SetTootEmoji methods to access and
|
||||
// set this property.
|
||||
IsTootEmoji() bool
|
||||
// IsTootHashtag returns true if this property has a type of "Hashtag".
|
||||
// When true, use the GetTootHashtag and SetTootHashtag methods to
|
||||
// access and set this property.
|
||||
IsTootHashtag() bool
|
||||
// IsTootIdentityProof returns true if this property has a type of
|
||||
// "IdentityProof". When true, use the GetTootIdentityProof and
|
||||
// SetTootIdentityProof methods to access and set this property.
|
||||
|
|
@ -725,24 +684,6 @@ type ActivityStreamsObjectPropertyIterator interface {
|
|||
// SetActivityStreamsView sets the value of this property. Calling
|
||||
// IsActivityStreamsView afterwards returns true.
|
||||
SetActivityStreamsView(v ActivityStreamsView)
|
||||
// SetForgeFedBranch sets the value of this property. Calling
|
||||
// IsForgeFedBranch afterwards returns true.
|
||||
SetForgeFedBranch(v ForgeFedBranch)
|
||||
// SetForgeFedCommit sets the value of this property. Calling
|
||||
// IsForgeFedCommit afterwards returns true.
|
||||
SetForgeFedCommit(v ForgeFedCommit)
|
||||
// SetForgeFedPush sets the value of this property. Calling IsForgeFedPush
|
||||
// afterwards returns true.
|
||||
SetForgeFedPush(v ForgeFedPush)
|
||||
// SetForgeFedRepository sets the value of this property. Calling
|
||||
// IsForgeFedRepository afterwards returns true.
|
||||
SetForgeFedRepository(v ForgeFedRepository)
|
||||
// SetForgeFedTicket sets the value of this property. Calling
|
||||
// IsForgeFedTicket afterwards returns true.
|
||||
SetForgeFedTicket(v ForgeFedTicket)
|
||||
// SetForgeFedTicketDependency sets the value of this property. Calling
|
||||
// IsForgeFedTicketDependency afterwards returns true.
|
||||
SetForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// SetIRI sets the value of this property. Calling IsIRI afterwards
|
||||
// returns true.
|
||||
SetIRI(v *url.URL)
|
||||
|
|
@ -752,6 +693,9 @@ type ActivityStreamsObjectPropertyIterator interface {
|
|||
// SetTootEmoji sets the value of this property. Calling IsTootEmoji
|
||||
// afterwards returns true.
|
||||
SetTootEmoji(v TootEmoji)
|
||||
// SetTootHashtag sets the value of this property. Calling IsTootHashtag
|
||||
// afterwards returns true.
|
||||
SetTootHashtag(v TootHashtag)
|
||||
// SetTootIdentityProof sets the value of this property. Calling
|
||||
// IsTootIdentityProof afterwards returns true.
|
||||
SetTootIdentityProof(v TootIdentityProof)
|
||||
|
|
@ -1014,30 +958,6 @@ type ActivityStreamsObjectProperty interface {
|
|||
// the property "object". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendActivityStreamsView(v ActivityStreamsView)
|
||||
// AppendForgeFedBranch appends a Branch value to the back of a list of
|
||||
// the property "object". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendForgeFedBranch(v ForgeFedBranch)
|
||||
// AppendForgeFedCommit appends a Commit value to the back of a list of
|
||||
// the property "object". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendForgeFedCommit(v ForgeFedCommit)
|
||||
// AppendForgeFedPush appends a Push value to the back of a list of the
|
||||
// property "object". Invalidates iterators that are traversing using
|
||||
// Prev.
|
||||
AppendForgeFedPush(v ForgeFedPush)
|
||||
// AppendForgeFedRepository appends a Repository value to the back of a
|
||||
// list of the property "object". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
AppendForgeFedRepository(v ForgeFedRepository)
|
||||
// AppendForgeFedTicket appends a Ticket value to the back of a list of
|
||||
// the property "object". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendForgeFedTicket(v ForgeFedTicket)
|
||||
// AppendForgeFedTicketDependency appends a TicketDependency value to the
|
||||
// back of a list of the property "object". Invalidates iterators that
|
||||
// are traversing using Prev.
|
||||
AppendForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// AppendIRI appends an IRI value to the back of a list of the property
|
||||
// "object"
|
||||
AppendIRI(v *url.URL)
|
||||
|
|
@ -1049,6 +969,10 @@ type ActivityStreamsObjectProperty interface {
|
|||
// property "object". Invalidates iterators that are traversing using
|
||||
// Prev.
|
||||
AppendTootEmoji(v TootEmoji)
|
||||
// AppendTootHashtag appends a Hashtag value to the back of a list of the
|
||||
// property "object". Invalidates iterators that are traversing using
|
||||
// Prev.
|
||||
AppendTootHashtag(v TootHashtag)
|
||||
// AppendTootIdentityProof appends a IdentityProof value to the back of a
|
||||
// list of the property "object". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
|
|
@ -1293,30 +1217,6 @@ type ActivityStreamsObjectProperty interface {
|
|||
// for a property "object". Existing elements at that index and higher
|
||||
// are shifted back once. Invalidates all iterators.
|
||||
InsertActivityStreamsView(idx int, v ActivityStreamsView)
|
||||
// InsertForgeFedBranch inserts a Branch value at the specified index for
|
||||
// a property "object". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedBranch(idx int, v ForgeFedBranch)
|
||||
// InsertForgeFedCommit inserts a Commit value at the specified index for
|
||||
// a property "object". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedCommit(idx int, v ForgeFedCommit)
|
||||
// InsertForgeFedPush inserts a Push value at the specified index for a
|
||||
// property "object". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedPush(idx int, v ForgeFedPush)
|
||||
// InsertForgeFedRepository inserts a Repository value at the specified
|
||||
// index for a property "object". Existing elements at that index and
|
||||
// higher are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedRepository(idx int, v ForgeFedRepository)
|
||||
// InsertForgeFedTicket inserts a Ticket value at the specified index for
|
||||
// a property "object". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedTicket(idx int, v ForgeFedTicket)
|
||||
// InsertForgeFedTicketDependency inserts a TicketDependency value at the
|
||||
// specified index for a property "object". Existing elements at that
|
||||
// index and higher are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
|
||||
// Insert inserts an IRI value at the specified index for a property
|
||||
// "object". Existing elements at that index and higher are shifted
|
||||
// back once. Invalidates all iterators.
|
||||
|
|
@ -1329,6 +1229,10 @@ type ActivityStreamsObjectProperty interface {
|
|||
// property "object". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertTootEmoji(idx int, v TootEmoji)
|
||||
// InsertTootHashtag inserts a Hashtag value at the specified index for a
|
||||
// property "object". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertTootHashtag(idx int, v TootHashtag)
|
||||
// InsertTootIdentityProof inserts a IdentityProof value at the specified
|
||||
// index for a property "object". Existing elements at that index and
|
||||
// higher are shifted back once. Invalidates all iterators.
|
||||
|
|
@ -1527,25 +1431,6 @@ type ActivityStreamsObjectProperty interface {
|
|||
// PrependActivityStreamsView prepends a View value to the front of a list
|
||||
// of the property "object". Invalidates all iterators.
|
||||
PrependActivityStreamsView(v ActivityStreamsView)
|
||||
// PrependForgeFedBranch prepends a Branch value to the front of a list of
|
||||
// the property "object". Invalidates all iterators.
|
||||
PrependForgeFedBranch(v ForgeFedBranch)
|
||||
// PrependForgeFedCommit prepends a Commit value to the front of a list of
|
||||
// the property "object". Invalidates all iterators.
|
||||
PrependForgeFedCommit(v ForgeFedCommit)
|
||||
// PrependForgeFedPush prepends a Push value to the front of a list of the
|
||||
// property "object". Invalidates all iterators.
|
||||
PrependForgeFedPush(v ForgeFedPush)
|
||||
// PrependForgeFedRepository prepends a Repository value to the front of a
|
||||
// list of the property "object". Invalidates all iterators.
|
||||
PrependForgeFedRepository(v ForgeFedRepository)
|
||||
// PrependForgeFedTicket prepends a Ticket value to the front of a list of
|
||||
// the property "object". Invalidates all iterators.
|
||||
PrependForgeFedTicket(v ForgeFedTicket)
|
||||
// PrependForgeFedTicketDependency prepends a TicketDependency value to
|
||||
// the front of a list of the property "object". Invalidates all
|
||||
// iterators.
|
||||
PrependForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// PrependIRI prepends an IRI value to the front of a list of the property
|
||||
// "object".
|
||||
PrependIRI(v *url.URL)
|
||||
|
|
@ -1555,6 +1440,9 @@ type ActivityStreamsObjectProperty interface {
|
|||
// PrependTootEmoji prepends a Emoji value to the front of a list of the
|
||||
// property "object". Invalidates all iterators.
|
||||
PrependTootEmoji(v TootEmoji)
|
||||
// PrependTootHashtag prepends a Hashtag value to the front of a list of
|
||||
// the property "object". Invalidates all iterators.
|
||||
PrependTootHashtag(v TootHashtag)
|
||||
// PrependTootIdentityProof prepends a IdentityProof value to the front of
|
||||
// a list of the property "object". Invalidates all iterators.
|
||||
PrependTootIdentityProof(v TootIdentityProof)
|
||||
|
|
@ -1788,30 +1676,6 @@ type ActivityStreamsObjectProperty interface {
|
|||
// for the property "object". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetActivityStreamsView(idx int, v ActivityStreamsView)
|
||||
// SetForgeFedBranch sets a Branch value to be at the specified index for
|
||||
// the property "object". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedBranch(idx int, v ForgeFedBranch)
|
||||
// SetForgeFedCommit sets a Commit value to be at the specified index for
|
||||
// the property "object". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedCommit(idx int, v ForgeFedCommit)
|
||||
// SetForgeFedPush sets a Push value to be at the specified index for the
|
||||
// property "object". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedPush(idx int, v ForgeFedPush)
|
||||
// SetForgeFedRepository sets a Repository value to be at the specified
|
||||
// index for the property "object". Panics if the index is out of
|
||||
// bounds. Invalidates all iterators.
|
||||
SetForgeFedRepository(idx int, v ForgeFedRepository)
|
||||
// SetForgeFedTicket sets a Ticket value to be at the specified index for
|
||||
// the property "object". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedTicket(idx int, v ForgeFedTicket)
|
||||
// SetForgeFedTicketDependency sets a TicketDependency value to be at the
|
||||
// specified index for the property "object". Panics if the index is
|
||||
// out of bounds. Invalidates all iterators.
|
||||
SetForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
|
||||
// SetIRI sets an IRI value to be at the specified index for the property
|
||||
// "object". Panics if the index is out of bounds.
|
||||
SetIRI(idx int, v *url.URL)
|
||||
|
|
@ -1823,6 +1687,10 @@ type ActivityStreamsObjectProperty interface {
|
|||
// property "object". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetTootEmoji(idx int, v TootEmoji)
|
||||
// SetTootHashtag sets a Hashtag value to be at the specified index for
|
||||
// the property "object". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetTootHashtag(idx int, v TootHashtag)
|
||||
// SetTootIdentityProof sets a IdentityProof value to be at the specified
|
||||
// index for the property "object". Panics if the index is out of
|
||||
// bounds. Invalidates all iterators.
|
||||
|
|
|
|||
|
|
@ -225,29 +225,6 @@ type ActivityStreamsOneOfPropertyIterator interface {
|
|||
// IsActivityStreamsView returns false, GetActivityStreamsView will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsView() ActivityStreamsView
|
||||
// GetForgeFedBranch returns the value of this property. When
|
||||
// IsForgeFedBranch returns false, GetForgeFedBranch will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedBranch() ForgeFedBranch
|
||||
// GetForgeFedCommit returns the value of this property. When
|
||||
// IsForgeFedCommit returns false, GetForgeFedCommit will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedCommit() ForgeFedCommit
|
||||
// GetForgeFedPush returns the value of this property. When IsForgeFedPush
|
||||
// returns false, GetForgeFedPush will return an arbitrary value.
|
||||
GetForgeFedPush() ForgeFedPush
|
||||
// GetForgeFedRepository returns the value of this property. When
|
||||
// IsForgeFedRepository returns false, GetForgeFedRepository will
|
||||
// return an arbitrary value.
|
||||
GetForgeFedRepository() ForgeFedRepository
|
||||
// GetForgeFedTicket returns the value of this property. When
|
||||
// IsForgeFedTicket returns false, GetForgeFedTicket will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedTicket() ForgeFedTicket
|
||||
// GetForgeFedTicketDependency returns the value of this property. When
|
||||
// IsForgeFedTicketDependency returns false,
|
||||
// GetForgeFedTicketDependency will return an arbitrary value.
|
||||
GetForgeFedTicketDependency() ForgeFedTicketDependency
|
||||
// GetIRI returns the IRI of this property. When IsIRI returns false,
|
||||
// GetIRI will return an arbitrary value.
|
||||
GetIRI() *url.URL
|
||||
|
|
@ -258,6 +235,9 @@ type ActivityStreamsOneOfPropertyIterator interface {
|
|||
// GetTootEmoji returns the value of this property. When IsTootEmoji
|
||||
// returns false, GetTootEmoji will return an arbitrary value.
|
||||
GetTootEmoji() TootEmoji
|
||||
// GetTootHashtag returns the value of this property. When IsTootHashtag
|
||||
// returns false, GetTootHashtag will return an arbitrary value.
|
||||
GetTootHashtag() TootHashtag
|
||||
// GetTootIdentityProof returns the value of this property. When
|
||||
// IsTootIdentityProof returns false, GetTootIdentityProof will return
|
||||
// an arbitrary value.
|
||||
|
|
@ -500,31 +480,6 @@ type ActivityStreamsOneOfPropertyIterator interface {
|
|||
// "View". When true, use the GetActivityStreamsView and
|
||||
// SetActivityStreamsView methods to access and set this property.
|
||||
IsActivityStreamsView() bool
|
||||
// IsForgeFedBranch returns true if this property has a type of "Branch".
|
||||
// When true, use the GetForgeFedBranch and SetForgeFedBranch methods
|
||||
// to access and set this property.
|
||||
IsForgeFedBranch() bool
|
||||
// IsForgeFedCommit returns true if this property has a type of "Commit".
|
||||
// When true, use the GetForgeFedCommit and SetForgeFedCommit methods
|
||||
// to access and set this property.
|
||||
IsForgeFedCommit() bool
|
||||
// IsForgeFedPush returns true if this property has a type of "Push". When
|
||||
// true, use the GetForgeFedPush and SetForgeFedPush methods to access
|
||||
// and set this property.
|
||||
IsForgeFedPush() bool
|
||||
// IsForgeFedRepository returns true if this property has a type of
|
||||
// "Repository". When true, use the GetForgeFedRepository and
|
||||
// SetForgeFedRepository methods to access and set this property.
|
||||
IsForgeFedRepository() bool
|
||||
// IsForgeFedTicket returns true if this property has a type of "Ticket".
|
||||
// When true, use the GetForgeFedTicket and SetForgeFedTicket methods
|
||||
// to access and set this property.
|
||||
IsForgeFedTicket() bool
|
||||
// IsForgeFedTicketDependency returns true if this property has a type of
|
||||
// "TicketDependency". When true, use the GetForgeFedTicketDependency
|
||||
// and SetForgeFedTicketDependency methods to access and set this
|
||||
// property.
|
||||
IsForgeFedTicketDependency() bool
|
||||
// IsIRI returns true if this property is an IRI. When true, use GetIRI
|
||||
// and SetIRI to access and set this property
|
||||
IsIRI() bool
|
||||
|
|
@ -536,6 +491,10 @@ type ActivityStreamsOneOfPropertyIterator interface {
|
|||
// true, use the GetTootEmoji and SetTootEmoji methods to access and
|
||||
// set this property.
|
||||
IsTootEmoji() bool
|
||||
// IsTootHashtag returns true if this property has a type of "Hashtag".
|
||||
// When true, use the GetTootHashtag and SetTootHashtag methods to
|
||||
// access and set this property.
|
||||
IsTootHashtag() bool
|
||||
// IsTootIdentityProof returns true if this property has a type of
|
||||
// "IdentityProof". When true, use the GetTootIdentityProof and
|
||||
// SetTootIdentityProof methods to access and set this property.
|
||||
|
|
@ -725,24 +684,6 @@ type ActivityStreamsOneOfPropertyIterator interface {
|
|||
// SetActivityStreamsView sets the value of this property. Calling
|
||||
// IsActivityStreamsView afterwards returns true.
|
||||
SetActivityStreamsView(v ActivityStreamsView)
|
||||
// SetForgeFedBranch sets the value of this property. Calling
|
||||
// IsForgeFedBranch afterwards returns true.
|
||||
SetForgeFedBranch(v ForgeFedBranch)
|
||||
// SetForgeFedCommit sets the value of this property. Calling
|
||||
// IsForgeFedCommit afterwards returns true.
|
||||
SetForgeFedCommit(v ForgeFedCommit)
|
||||
// SetForgeFedPush sets the value of this property. Calling IsForgeFedPush
|
||||
// afterwards returns true.
|
||||
SetForgeFedPush(v ForgeFedPush)
|
||||
// SetForgeFedRepository sets the value of this property. Calling
|
||||
// IsForgeFedRepository afterwards returns true.
|
||||
SetForgeFedRepository(v ForgeFedRepository)
|
||||
// SetForgeFedTicket sets the value of this property. Calling
|
||||
// IsForgeFedTicket afterwards returns true.
|
||||
SetForgeFedTicket(v ForgeFedTicket)
|
||||
// SetForgeFedTicketDependency sets the value of this property. Calling
|
||||
// IsForgeFedTicketDependency afterwards returns true.
|
||||
SetForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// SetIRI sets the value of this property. Calling IsIRI afterwards
|
||||
// returns true.
|
||||
SetIRI(v *url.URL)
|
||||
|
|
@ -752,6 +693,9 @@ type ActivityStreamsOneOfPropertyIterator interface {
|
|||
// SetTootEmoji sets the value of this property. Calling IsTootEmoji
|
||||
// afterwards returns true.
|
||||
SetTootEmoji(v TootEmoji)
|
||||
// SetTootHashtag sets the value of this property. Calling IsTootHashtag
|
||||
// afterwards returns true.
|
||||
SetTootHashtag(v TootHashtag)
|
||||
// SetTootIdentityProof sets the value of this property. Calling
|
||||
// IsTootIdentityProof afterwards returns true.
|
||||
SetTootIdentityProof(v TootIdentityProof)
|
||||
|
|
@ -996,30 +940,6 @@ type ActivityStreamsOneOfProperty interface {
|
|||
// the property "oneOf". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendActivityStreamsView(v ActivityStreamsView)
|
||||
// AppendForgeFedBranch appends a Branch value to the back of a list of
|
||||
// the property "oneOf". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendForgeFedBranch(v ForgeFedBranch)
|
||||
// AppendForgeFedCommit appends a Commit value to the back of a list of
|
||||
// the property "oneOf". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendForgeFedCommit(v ForgeFedCommit)
|
||||
// AppendForgeFedPush appends a Push value to the back of a list of the
|
||||
// property "oneOf". Invalidates iterators that are traversing using
|
||||
// Prev.
|
||||
AppendForgeFedPush(v ForgeFedPush)
|
||||
// AppendForgeFedRepository appends a Repository value to the back of a
|
||||
// list of the property "oneOf". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
AppendForgeFedRepository(v ForgeFedRepository)
|
||||
// AppendForgeFedTicket appends a Ticket value to the back of a list of
|
||||
// the property "oneOf". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendForgeFedTicket(v ForgeFedTicket)
|
||||
// AppendForgeFedTicketDependency appends a TicketDependency value to the
|
||||
// back of a list of the property "oneOf". Invalidates iterators that
|
||||
// are traversing using Prev.
|
||||
AppendForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// AppendIRI appends an IRI value to the back of a list of the property
|
||||
// "oneOf"
|
||||
AppendIRI(v *url.URL)
|
||||
|
|
@ -1031,6 +951,10 @@ type ActivityStreamsOneOfProperty interface {
|
|||
// property "oneOf". Invalidates iterators that are traversing using
|
||||
// Prev.
|
||||
AppendTootEmoji(v TootEmoji)
|
||||
// AppendTootHashtag appends a Hashtag value to the back of a list of the
|
||||
// property "oneOf". Invalidates iterators that are traversing using
|
||||
// Prev.
|
||||
AppendTootHashtag(v TootHashtag)
|
||||
// AppendTootIdentityProof appends a IdentityProof value to the back of a
|
||||
// list of the property "oneOf". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
|
|
@ -1275,30 +1199,6 @@ type ActivityStreamsOneOfProperty interface {
|
|||
// for a property "oneOf". Existing elements at that index and higher
|
||||
// are shifted back once. Invalidates all iterators.
|
||||
InsertActivityStreamsView(idx int, v ActivityStreamsView)
|
||||
// InsertForgeFedBranch inserts a Branch value at the specified index for
|
||||
// a property "oneOf". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedBranch(idx int, v ForgeFedBranch)
|
||||
// InsertForgeFedCommit inserts a Commit value at the specified index for
|
||||
// a property "oneOf". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedCommit(idx int, v ForgeFedCommit)
|
||||
// InsertForgeFedPush inserts a Push value at the specified index for a
|
||||
// property "oneOf". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedPush(idx int, v ForgeFedPush)
|
||||
// InsertForgeFedRepository inserts a Repository value at the specified
|
||||
// index for a property "oneOf". Existing elements at that index and
|
||||
// higher are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedRepository(idx int, v ForgeFedRepository)
|
||||
// InsertForgeFedTicket inserts a Ticket value at the specified index for
|
||||
// a property "oneOf". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedTicket(idx int, v ForgeFedTicket)
|
||||
// InsertForgeFedTicketDependency inserts a TicketDependency value at the
|
||||
// specified index for a property "oneOf". Existing elements at that
|
||||
// index and higher are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
|
||||
// Insert inserts an IRI value at the specified index for a property
|
||||
// "oneOf". Existing elements at that index and higher are shifted
|
||||
// back once. Invalidates all iterators.
|
||||
|
|
@ -1311,6 +1211,10 @@ type ActivityStreamsOneOfProperty interface {
|
|||
// property "oneOf". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertTootEmoji(idx int, v TootEmoji)
|
||||
// InsertTootHashtag inserts a Hashtag value at the specified index for a
|
||||
// property "oneOf". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertTootHashtag(idx int, v TootHashtag)
|
||||
// InsertTootIdentityProof inserts a IdentityProof value at the specified
|
||||
// index for a property "oneOf". Existing elements at that index and
|
||||
// higher are shifted back once. Invalidates all iterators.
|
||||
|
|
@ -1509,25 +1413,6 @@ type ActivityStreamsOneOfProperty interface {
|
|||
// PrependActivityStreamsView prepends a View value to the front of a list
|
||||
// of the property "oneOf". Invalidates all iterators.
|
||||
PrependActivityStreamsView(v ActivityStreamsView)
|
||||
// PrependForgeFedBranch prepends a Branch value to the front of a list of
|
||||
// the property "oneOf". Invalidates all iterators.
|
||||
PrependForgeFedBranch(v ForgeFedBranch)
|
||||
// PrependForgeFedCommit prepends a Commit value to the front of a list of
|
||||
// the property "oneOf". Invalidates all iterators.
|
||||
PrependForgeFedCommit(v ForgeFedCommit)
|
||||
// PrependForgeFedPush prepends a Push value to the front of a list of the
|
||||
// property "oneOf". Invalidates all iterators.
|
||||
PrependForgeFedPush(v ForgeFedPush)
|
||||
// PrependForgeFedRepository prepends a Repository value to the front of a
|
||||
// list of the property "oneOf". Invalidates all iterators.
|
||||
PrependForgeFedRepository(v ForgeFedRepository)
|
||||
// PrependForgeFedTicket prepends a Ticket value to the front of a list of
|
||||
// the property "oneOf". Invalidates all iterators.
|
||||
PrependForgeFedTicket(v ForgeFedTicket)
|
||||
// PrependForgeFedTicketDependency prepends a TicketDependency value to
|
||||
// the front of a list of the property "oneOf". Invalidates all
|
||||
// iterators.
|
||||
PrependForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// PrependIRI prepends an IRI value to the front of a list of the property
|
||||
// "oneOf".
|
||||
PrependIRI(v *url.URL)
|
||||
|
|
@ -1537,6 +1422,9 @@ type ActivityStreamsOneOfProperty interface {
|
|||
// PrependTootEmoji prepends a Emoji value to the front of a list of the
|
||||
// property "oneOf". Invalidates all iterators.
|
||||
PrependTootEmoji(v TootEmoji)
|
||||
// PrependTootHashtag prepends a Hashtag value to the front of a list of
|
||||
// the property "oneOf". Invalidates all iterators.
|
||||
PrependTootHashtag(v TootHashtag)
|
||||
// PrependTootIdentityProof prepends a IdentityProof value to the front of
|
||||
// a list of the property "oneOf". Invalidates all iterators.
|
||||
PrependTootIdentityProof(v TootIdentityProof)
|
||||
|
|
@ -1770,30 +1658,6 @@ type ActivityStreamsOneOfProperty interface {
|
|||
// for the property "oneOf". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetActivityStreamsView(idx int, v ActivityStreamsView)
|
||||
// SetForgeFedBranch sets a Branch value to be at the specified index for
|
||||
// the property "oneOf". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedBranch(idx int, v ForgeFedBranch)
|
||||
// SetForgeFedCommit sets a Commit value to be at the specified index for
|
||||
// the property "oneOf". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedCommit(idx int, v ForgeFedCommit)
|
||||
// SetForgeFedPush sets a Push value to be at the specified index for the
|
||||
// property "oneOf". Panics if the index is out of bounds. Invalidates
|
||||
// all iterators.
|
||||
SetForgeFedPush(idx int, v ForgeFedPush)
|
||||
// SetForgeFedRepository sets a Repository value to be at the specified
|
||||
// index for the property "oneOf". Panics if the index is out of
|
||||
// bounds. Invalidates all iterators.
|
||||
SetForgeFedRepository(idx int, v ForgeFedRepository)
|
||||
// SetForgeFedTicket sets a Ticket value to be at the specified index for
|
||||
// the property "oneOf". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedTicket(idx int, v ForgeFedTicket)
|
||||
// SetForgeFedTicketDependency sets a TicketDependency value to be at the
|
||||
// specified index for the property "oneOf". Panics if the index is
|
||||
// out of bounds. Invalidates all iterators.
|
||||
SetForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
|
||||
// SetIRI sets an IRI value to be at the specified index for the property
|
||||
// "oneOf". Panics if the index is out of bounds.
|
||||
SetIRI(idx int, v *url.URL)
|
||||
|
|
@ -1805,6 +1669,10 @@ type ActivityStreamsOneOfProperty interface {
|
|||
// property "oneOf". Panics if the index is out of bounds. Invalidates
|
||||
// all iterators.
|
||||
SetTootEmoji(idx int, v TootEmoji)
|
||||
// SetTootHashtag sets a Hashtag value to be at the specified index for
|
||||
// the property "oneOf". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetTootHashtag(idx int, v TootHashtag)
|
||||
// SetTootIdentityProof sets a IdentityProof value to be at the specified
|
||||
// index for the property "oneOf". Panics if the index is out of
|
||||
// bounds. Invalidates all iterators.
|
||||
|
|
|
|||
|
|
@ -225,29 +225,6 @@ type ActivityStreamsOrderedItemsPropertyIterator interface {
|
|||
// IsActivityStreamsView returns false, GetActivityStreamsView will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsView() ActivityStreamsView
|
||||
// GetForgeFedBranch returns the value of this property. When
|
||||
// IsForgeFedBranch returns false, GetForgeFedBranch will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedBranch() ForgeFedBranch
|
||||
// GetForgeFedCommit returns the value of this property. When
|
||||
// IsForgeFedCommit returns false, GetForgeFedCommit will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedCommit() ForgeFedCommit
|
||||
// GetForgeFedPush returns the value of this property. When IsForgeFedPush
|
||||
// returns false, GetForgeFedPush will return an arbitrary value.
|
||||
GetForgeFedPush() ForgeFedPush
|
||||
// GetForgeFedRepository returns the value of this property. When
|
||||
// IsForgeFedRepository returns false, GetForgeFedRepository will
|
||||
// return an arbitrary value.
|
||||
GetForgeFedRepository() ForgeFedRepository
|
||||
// GetForgeFedTicket returns the value of this property. When
|
||||
// IsForgeFedTicket returns false, GetForgeFedTicket will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedTicket() ForgeFedTicket
|
||||
// GetForgeFedTicketDependency returns the value of this property. When
|
||||
// IsForgeFedTicketDependency returns false,
|
||||
// GetForgeFedTicketDependency will return an arbitrary value.
|
||||
GetForgeFedTicketDependency() ForgeFedTicketDependency
|
||||
// GetIRI returns the IRI of this property. When IsIRI returns false,
|
||||
// GetIRI will return an arbitrary value.
|
||||
GetIRI() *url.URL
|
||||
|
|
@ -258,6 +235,9 @@ type ActivityStreamsOrderedItemsPropertyIterator interface {
|
|||
// GetTootEmoji returns the value of this property. When IsTootEmoji
|
||||
// returns false, GetTootEmoji will return an arbitrary value.
|
||||
GetTootEmoji() TootEmoji
|
||||
// GetTootHashtag returns the value of this property. When IsTootHashtag
|
||||
// returns false, GetTootHashtag will return an arbitrary value.
|
||||
GetTootHashtag() TootHashtag
|
||||
// GetTootIdentityProof returns the value of this property. When
|
||||
// IsTootIdentityProof returns false, GetTootIdentityProof will return
|
||||
// an arbitrary value.
|
||||
|
|
@ -500,31 +480,6 @@ type ActivityStreamsOrderedItemsPropertyIterator interface {
|
|||
// "View". When true, use the GetActivityStreamsView and
|
||||
// SetActivityStreamsView methods to access and set this property.
|
||||
IsActivityStreamsView() bool
|
||||
// IsForgeFedBranch returns true if this property has a type of "Branch".
|
||||
// When true, use the GetForgeFedBranch and SetForgeFedBranch methods
|
||||
// to access and set this property.
|
||||
IsForgeFedBranch() bool
|
||||
// IsForgeFedCommit returns true if this property has a type of "Commit".
|
||||
// When true, use the GetForgeFedCommit and SetForgeFedCommit methods
|
||||
// to access and set this property.
|
||||
IsForgeFedCommit() bool
|
||||
// IsForgeFedPush returns true if this property has a type of "Push". When
|
||||
// true, use the GetForgeFedPush and SetForgeFedPush methods to access
|
||||
// and set this property.
|
||||
IsForgeFedPush() bool
|
||||
// IsForgeFedRepository returns true if this property has a type of
|
||||
// "Repository". When true, use the GetForgeFedRepository and
|
||||
// SetForgeFedRepository methods to access and set this property.
|
||||
IsForgeFedRepository() bool
|
||||
// IsForgeFedTicket returns true if this property has a type of "Ticket".
|
||||
// When true, use the GetForgeFedTicket and SetForgeFedTicket methods
|
||||
// to access and set this property.
|
||||
IsForgeFedTicket() bool
|
||||
// IsForgeFedTicketDependency returns true if this property has a type of
|
||||
// "TicketDependency". When true, use the GetForgeFedTicketDependency
|
||||
// and SetForgeFedTicketDependency methods to access and set this
|
||||
// property.
|
||||
IsForgeFedTicketDependency() bool
|
||||
// IsIRI returns true if this property is an IRI. When true, use GetIRI
|
||||
// and SetIRI to access and set this property
|
||||
IsIRI() bool
|
||||
|
|
@ -536,6 +491,10 @@ type ActivityStreamsOrderedItemsPropertyIterator interface {
|
|||
// true, use the GetTootEmoji and SetTootEmoji methods to access and
|
||||
// set this property.
|
||||
IsTootEmoji() bool
|
||||
// IsTootHashtag returns true if this property has a type of "Hashtag".
|
||||
// When true, use the GetTootHashtag and SetTootHashtag methods to
|
||||
// access and set this property.
|
||||
IsTootHashtag() bool
|
||||
// IsTootIdentityProof returns true if this property has a type of
|
||||
// "IdentityProof". When true, use the GetTootIdentityProof and
|
||||
// SetTootIdentityProof methods to access and set this property.
|
||||
|
|
@ -725,24 +684,6 @@ type ActivityStreamsOrderedItemsPropertyIterator interface {
|
|||
// SetActivityStreamsView sets the value of this property. Calling
|
||||
// IsActivityStreamsView afterwards returns true.
|
||||
SetActivityStreamsView(v ActivityStreamsView)
|
||||
// SetForgeFedBranch sets the value of this property. Calling
|
||||
// IsForgeFedBranch afterwards returns true.
|
||||
SetForgeFedBranch(v ForgeFedBranch)
|
||||
// SetForgeFedCommit sets the value of this property. Calling
|
||||
// IsForgeFedCommit afterwards returns true.
|
||||
SetForgeFedCommit(v ForgeFedCommit)
|
||||
// SetForgeFedPush sets the value of this property. Calling IsForgeFedPush
|
||||
// afterwards returns true.
|
||||
SetForgeFedPush(v ForgeFedPush)
|
||||
// SetForgeFedRepository sets the value of this property. Calling
|
||||
// IsForgeFedRepository afterwards returns true.
|
||||
SetForgeFedRepository(v ForgeFedRepository)
|
||||
// SetForgeFedTicket sets the value of this property. Calling
|
||||
// IsForgeFedTicket afterwards returns true.
|
||||
SetForgeFedTicket(v ForgeFedTicket)
|
||||
// SetForgeFedTicketDependency sets the value of this property. Calling
|
||||
// IsForgeFedTicketDependency afterwards returns true.
|
||||
SetForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// SetIRI sets the value of this property. Calling IsIRI afterwards
|
||||
// returns true.
|
||||
SetIRI(v *url.URL)
|
||||
|
|
@ -752,6 +693,9 @@ type ActivityStreamsOrderedItemsPropertyIterator interface {
|
|||
// SetTootEmoji sets the value of this property. Calling IsTootEmoji
|
||||
// afterwards returns true.
|
||||
SetTootEmoji(v TootEmoji)
|
||||
// SetTootHashtag sets the value of this property. Calling IsTootHashtag
|
||||
// afterwards returns true.
|
||||
SetTootHashtag(v TootHashtag)
|
||||
// SetTootIdentityProof sets the value of this property. Calling
|
||||
// IsTootIdentityProof afterwards returns true.
|
||||
SetTootIdentityProof(v TootIdentityProof)
|
||||
|
|
@ -997,30 +941,6 @@ type ActivityStreamsOrderedItemsProperty interface {
|
|||
// the property "orderedItems". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
AppendActivityStreamsView(v ActivityStreamsView)
|
||||
// AppendForgeFedBranch appends a Branch value to the back of a list of
|
||||
// the property "orderedItems". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
AppendForgeFedBranch(v ForgeFedBranch)
|
||||
// AppendForgeFedCommit appends a Commit value to the back of a list of
|
||||
// the property "orderedItems". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
AppendForgeFedCommit(v ForgeFedCommit)
|
||||
// AppendForgeFedPush appends a Push value to the back of a list of the
|
||||
// property "orderedItems". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendForgeFedPush(v ForgeFedPush)
|
||||
// AppendForgeFedRepository appends a Repository value to the back of a
|
||||
// list of the property "orderedItems". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
AppendForgeFedRepository(v ForgeFedRepository)
|
||||
// AppendForgeFedTicket appends a Ticket value to the back of a list of
|
||||
// the property "orderedItems". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
AppendForgeFedTicket(v ForgeFedTicket)
|
||||
// AppendForgeFedTicketDependency appends a TicketDependency value to the
|
||||
// back of a list of the property "orderedItems". Invalidates
|
||||
// iterators that are traversing using Prev.
|
||||
AppendForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// AppendIRI appends an IRI value to the back of a list of the property
|
||||
// "orderedItems"
|
||||
AppendIRI(v *url.URL)
|
||||
|
|
@ -1032,6 +952,10 @@ type ActivityStreamsOrderedItemsProperty interface {
|
|||
// property "orderedItems". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendTootEmoji(v TootEmoji)
|
||||
// AppendTootHashtag appends a Hashtag value to the back of a list of the
|
||||
// property "orderedItems". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendTootHashtag(v TootHashtag)
|
||||
// AppendTootIdentityProof appends a IdentityProof value to the back of a
|
||||
// list of the property "orderedItems". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
|
|
@ -1281,31 +1205,6 @@ type ActivityStreamsOrderedItemsProperty interface {
|
|||
// for a property "orderedItems". Existing elements at that index and
|
||||
// higher are shifted back once. Invalidates all iterators.
|
||||
InsertActivityStreamsView(idx int, v ActivityStreamsView)
|
||||
// InsertForgeFedBranch inserts a Branch value at the specified index for
|
||||
// a property "orderedItems". Existing elements at that index and
|
||||
// higher are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedBranch(idx int, v ForgeFedBranch)
|
||||
// InsertForgeFedCommit inserts a Commit value at the specified index for
|
||||
// a property "orderedItems". Existing elements at that index and
|
||||
// higher are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedCommit(idx int, v ForgeFedCommit)
|
||||
// InsertForgeFedPush inserts a Push value at the specified index for a
|
||||
// property "orderedItems". Existing elements at that index and higher
|
||||
// are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedPush(idx int, v ForgeFedPush)
|
||||
// InsertForgeFedRepository inserts a Repository value at the specified
|
||||
// index for a property "orderedItems". Existing elements at that
|
||||
// index and higher are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedRepository(idx int, v ForgeFedRepository)
|
||||
// InsertForgeFedTicket inserts a Ticket value at the specified index for
|
||||
// a property "orderedItems". Existing elements at that index and
|
||||
// higher are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedTicket(idx int, v ForgeFedTicket)
|
||||
// InsertForgeFedTicketDependency inserts a TicketDependency value at the
|
||||
// specified index for a property "orderedItems". Existing elements at
|
||||
// that index and higher are shifted back once. Invalidates all
|
||||
// iterators.
|
||||
InsertForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
|
||||
// Insert inserts an IRI value at the specified index for a property
|
||||
// "orderedItems". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
|
|
@ -1319,6 +1218,10 @@ type ActivityStreamsOrderedItemsProperty interface {
|
|||
// property "orderedItems". Existing elements at that index and higher
|
||||
// are shifted back once. Invalidates all iterators.
|
||||
InsertTootEmoji(idx int, v TootEmoji)
|
||||
// InsertTootHashtag inserts a Hashtag value at the specified index for a
|
||||
// property "orderedItems". Existing elements at that index and higher
|
||||
// are shifted back once. Invalidates all iterators.
|
||||
InsertTootHashtag(idx int, v TootHashtag)
|
||||
// InsertTootIdentityProof inserts a IdentityProof value at the specified
|
||||
// index for a property "orderedItems". Existing elements at that
|
||||
// index and higher are shifted back once. Invalidates all iterators.
|
||||
|
|
@ -1522,25 +1425,6 @@ type ActivityStreamsOrderedItemsProperty interface {
|
|||
// PrependActivityStreamsView prepends a View value to the front of a list
|
||||
// of the property "orderedItems". Invalidates all iterators.
|
||||
PrependActivityStreamsView(v ActivityStreamsView)
|
||||
// PrependForgeFedBranch prepends a Branch value to the front of a list of
|
||||
// the property "orderedItems". Invalidates all iterators.
|
||||
PrependForgeFedBranch(v ForgeFedBranch)
|
||||
// PrependForgeFedCommit prepends a Commit value to the front of a list of
|
||||
// the property "orderedItems". Invalidates all iterators.
|
||||
PrependForgeFedCommit(v ForgeFedCommit)
|
||||
// PrependForgeFedPush prepends a Push value to the front of a list of the
|
||||
// property "orderedItems". Invalidates all iterators.
|
||||
PrependForgeFedPush(v ForgeFedPush)
|
||||
// PrependForgeFedRepository prepends a Repository value to the front of a
|
||||
// list of the property "orderedItems". Invalidates all iterators.
|
||||
PrependForgeFedRepository(v ForgeFedRepository)
|
||||
// PrependForgeFedTicket prepends a Ticket value to the front of a list of
|
||||
// the property "orderedItems". Invalidates all iterators.
|
||||
PrependForgeFedTicket(v ForgeFedTicket)
|
||||
// PrependForgeFedTicketDependency prepends a TicketDependency value to
|
||||
// the front of a list of the property "orderedItems". Invalidates all
|
||||
// iterators.
|
||||
PrependForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// PrependIRI prepends an IRI value to the front of a list of the property
|
||||
// "orderedItems".
|
||||
PrependIRI(v *url.URL)
|
||||
|
|
@ -1550,6 +1434,9 @@ type ActivityStreamsOrderedItemsProperty interface {
|
|||
// PrependTootEmoji prepends a Emoji value to the front of a list of the
|
||||
// property "orderedItems". Invalidates all iterators.
|
||||
PrependTootEmoji(v TootEmoji)
|
||||
// PrependTootHashtag prepends a Hashtag value to the front of a list of
|
||||
// the property "orderedItems". Invalidates all iterators.
|
||||
PrependTootHashtag(v TootHashtag)
|
||||
// PrependTootIdentityProof prepends a IdentityProof value to the front of
|
||||
// a list of the property "orderedItems". Invalidates all iterators.
|
||||
PrependTootIdentityProof(v TootIdentityProof)
|
||||
|
|
@ -1783,30 +1670,6 @@ type ActivityStreamsOrderedItemsProperty interface {
|
|||
// for the property "orderedItems". Panics if the index is out of
|
||||
// bounds. Invalidates all iterators.
|
||||
SetActivityStreamsView(idx int, v ActivityStreamsView)
|
||||
// SetForgeFedBranch sets a Branch value to be at the specified index for
|
||||
// the property "orderedItems". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedBranch(idx int, v ForgeFedBranch)
|
||||
// SetForgeFedCommit sets a Commit value to be at the specified index for
|
||||
// the property "orderedItems". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedCommit(idx int, v ForgeFedCommit)
|
||||
// SetForgeFedPush sets a Push value to be at the specified index for the
|
||||
// property "orderedItems". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedPush(idx int, v ForgeFedPush)
|
||||
// SetForgeFedRepository sets a Repository value to be at the specified
|
||||
// index for the property "orderedItems". Panics if the index is out
|
||||
// of bounds. Invalidates all iterators.
|
||||
SetForgeFedRepository(idx int, v ForgeFedRepository)
|
||||
// SetForgeFedTicket sets a Ticket value to be at the specified index for
|
||||
// the property "orderedItems". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedTicket(idx int, v ForgeFedTicket)
|
||||
// SetForgeFedTicketDependency sets a TicketDependency value to be at the
|
||||
// specified index for the property "orderedItems". Panics if the
|
||||
// index is out of bounds. Invalidates all iterators.
|
||||
SetForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
|
||||
// SetIRI sets an IRI value to be at the specified index for the property
|
||||
// "orderedItems". Panics if the index is out of bounds.
|
||||
SetIRI(idx int, v *url.URL)
|
||||
|
|
@ -1818,6 +1681,10 @@ type ActivityStreamsOrderedItemsProperty interface {
|
|||
// property "orderedItems". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetTootEmoji(idx int, v TootEmoji)
|
||||
// SetTootHashtag sets a Hashtag value to be at the specified index for
|
||||
// the property "orderedItems". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetTootHashtag(idx int, v TootHashtag)
|
||||
// SetTootIdentityProof sets a IdentityProof value to be at the specified
|
||||
// index for the property "orderedItems". Panics if the index is out
|
||||
// of bounds. Invalidates all iterators.
|
||||
|
|
|
|||
|
|
@ -225,29 +225,6 @@ type ActivityStreamsOriginPropertyIterator interface {
|
|||
// IsActivityStreamsView returns false, GetActivityStreamsView will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsView() ActivityStreamsView
|
||||
// GetForgeFedBranch returns the value of this property. When
|
||||
// IsForgeFedBranch returns false, GetForgeFedBranch will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedBranch() ForgeFedBranch
|
||||
// GetForgeFedCommit returns the value of this property. When
|
||||
// IsForgeFedCommit returns false, GetForgeFedCommit will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedCommit() ForgeFedCommit
|
||||
// GetForgeFedPush returns the value of this property. When IsForgeFedPush
|
||||
// returns false, GetForgeFedPush will return an arbitrary value.
|
||||
GetForgeFedPush() ForgeFedPush
|
||||
// GetForgeFedRepository returns the value of this property. When
|
||||
// IsForgeFedRepository returns false, GetForgeFedRepository will
|
||||
// return an arbitrary value.
|
||||
GetForgeFedRepository() ForgeFedRepository
|
||||
// GetForgeFedTicket returns the value of this property. When
|
||||
// IsForgeFedTicket returns false, GetForgeFedTicket will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedTicket() ForgeFedTicket
|
||||
// GetForgeFedTicketDependency returns the value of this property. When
|
||||
// IsForgeFedTicketDependency returns false,
|
||||
// GetForgeFedTicketDependency will return an arbitrary value.
|
||||
GetForgeFedTicketDependency() ForgeFedTicketDependency
|
||||
// GetIRI returns the IRI of this property. When IsIRI returns false,
|
||||
// GetIRI will return an arbitrary value.
|
||||
GetIRI() *url.URL
|
||||
|
|
@ -258,6 +235,9 @@ type ActivityStreamsOriginPropertyIterator interface {
|
|||
// GetTootEmoji returns the value of this property. When IsTootEmoji
|
||||
// returns false, GetTootEmoji will return an arbitrary value.
|
||||
GetTootEmoji() TootEmoji
|
||||
// GetTootHashtag returns the value of this property. When IsTootHashtag
|
||||
// returns false, GetTootHashtag will return an arbitrary value.
|
||||
GetTootHashtag() TootHashtag
|
||||
// GetTootIdentityProof returns the value of this property. When
|
||||
// IsTootIdentityProof returns false, GetTootIdentityProof will return
|
||||
// an arbitrary value.
|
||||
|
|
@ -500,31 +480,6 @@ type ActivityStreamsOriginPropertyIterator interface {
|
|||
// "View". When true, use the GetActivityStreamsView and
|
||||
// SetActivityStreamsView methods to access and set this property.
|
||||
IsActivityStreamsView() bool
|
||||
// IsForgeFedBranch returns true if this property has a type of "Branch".
|
||||
// When true, use the GetForgeFedBranch and SetForgeFedBranch methods
|
||||
// to access and set this property.
|
||||
IsForgeFedBranch() bool
|
||||
// IsForgeFedCommit returns true if this property has a type of "Commit".
|
||||
// When true, use the GetForgeFedCommit and SetForgeFedCommit methods
|
||||
// to access and set this property.
|
||||
IsForgeFedCommit() bool
|
||||
// IsForgeFedPush returns true if this property has a type of "Push". When
|
||||
// true, use the GetForgeFedPush and SetForgeFedPush methods to access
|
||||
// and set this property.
|
||||
IsForgeFedPush() bool
|
||||
// IsForgeFedRepository returns true if this property has a type of
|
||||
// "Repository". When true, use the GetForgeFedRepository and
|
||||
// SetForgeFedRepository methods to access and set this property.
|
||||
IsForgeFedRepository() bool
|
||||
// IsForgeFedTicket returns true if this property has a type of "Ticket".
|
||||
// When true, use the GetForgeFedTicket and SetForgeFedTicket methods
|
||||
// to access and set this property.
|
||||
IsForgeFedTicket() bool
|
||||
// IsForgeFedTicketDependency returns true if this property has a type of
|
||||
// "TicketDependency". When true, use the GetForgeFedTicketDependency
|
||||
// and SetForgeFedTicketDependency methods to access and set this
|
||||
// property.
|
||||
IsForgeFedTicketDependency() bool
|
||||
// IsIRI returns true if this property is an IRI. When true, use GetIRI
|
||||
// and SetIRI to access and set this property
|
||||
IsIRI() bool
|
||||
|
|
@ -536,6 +491,10 @@ type ActivityStreamsOriginPropertyIterator interface {
|
|||
// true, use the GetTootEmoji and SetTootEmoji methods to access and
|
||||
// set this property.
|
||||
IsTootEmoji() bool
|
||||
// IsTootHashtag returns true if this property has a type of "Hashtag".
|
||||
// When true, use the GetTootHashtag and SetTootHashtag methods to
|
||||
// access and set this property.
|
||||
IsTootHashtag() bool
|
||||
// IsTootIdentityProof returns true if this property has a type of
|
||||
// "IdentityProof". When true, use the GetTootIdentityProof and
|
||||
// SetTootIdentityProof methods to access and set this property.
|
||||
|
|
@ -725,24 +684,6 @@ type ActivityStreamsOriginPropertyIterator interface {
|
|||
// SetActivityStreamsView sets the value of this property. Calling
|
||||
// IsActivityStreamsView afterwards returns true.
|
||||
SetActivityStreamsView(v ActivityStreamsView)
|
||||
// SetForgeFedBranch sets the value of this property. Calling
|
||||
// IsForgeFedBranch afterwards returns true.
|
||||
SetForgeFedBranch(v ForgeFedBranch)
|
||||
// SetForgeFedCommit sets the value of this property. Calling
|
||||
// IsForgeFedCommit afterwards returns true.
|
||||
SetForgeFedCommit(v ForgeFedCommit)
|
||||
// SetForgeFedPush sets the value of this property. Calling IsForgeFedPush
|
||||
// afterwards returns true.
|
||||
SetForgeFedPush(v ForgeFedPush)
|
||||
// SetForgeFedRepository sets the value of this property. Calling
|
||||
// IsForgeFedRepository afterwards returns true.
|
||||
SetForgeFedRepository(v ForgeFedRepository)
|
||||
// SetForgeFedTicket sets the value of this property. Calling
|
||||
// IsForgeFedTicket afterwards returns true.
|
||||
SetForgeFedTicket(v ForgeFedTicket)
|
||||
// SetForgeFedTicketDependency sets the value of this property. Calling
|
||||
// IsForgeFedTicketDependency afterwards returns true.
|
||||
SetForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// SetIRI sets the value of this property. Calling IsIRI afterwards
|
||||
// returns true.
|
||||
SetIRI(v *url.URL)
|
||||
|
|
@ -752,6 +693,9 @@ type ActivityStreamsOriginPropertyIterator interface {
|
|||
// SetTootEmoji sets the value of this property. Calling IsTootEmoji
|
||||
// afterwards returns true.
|
||||
SetTootEmoji(v TootEmoji)
|
||||
// SetTootHashtag sets the value of this property. Calling IsTootHashtag
|
||||
// afterwards returns true.
|
||||
SetTootHashtag(v TootHashtag)
|
||||
// SetTootIdentityProof sets the value of this property. Calling
|
||||
// IsTootIdentityProof afterwards returns true.
|
||||
SetTootIdentityProof(v TootIdentityProof)
|
||||
|
|
@ -997,30 +941,6 @@ type ActivityStreamsOriginProperty interface {
|
|||
// the property "origin". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendActivityStreamsView(v ActivityStreamsView)
|
||||
// AppendForgeFedBranch appends a Branch value to the back of a list of
|
||||
// the property "origin". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendForgeFedBranch(v ForgeFedBranch)
|
||||
// AppendForgeFedCommit appends a Commit value to the back of a list of
|
||||
// the property "origin". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendForgeFedCommit(v ForgeFedCommit)
|
||||
// AppendForgeFedPush appends a Push value to the back of a list of the
|
||||
// property "origin". Invalidates iterators that are traversing using
|
||||
// Prev.
|
||||
AppendForgeFedPush(v ForgeFedPush)
|
||||
// AppendForgeFedRepository appends a Repository value to the back of a
|
||||
// list of the property "origin". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
AppendForgeFedRepository(v ForgeFedRepository)
|
||||
// AppendForgeFedTicket appends a Ticket value to the back of a list of
|
||||
// the property "origin". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendForgeFedTicket(v ForgeFedTicket)
|
||||
// AppendForgeFedTicketDependency appends a TicketDependency value to the
|
||||
// back of a list of the property "origin". Invalidates iterators that
|
||||
// are traversing using Prev.
|
||||
AppendForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// AppendIRI appends an IRI value to the back of a list of the property
|
||||
// "origin"
|
||||
AppendIRI(v *url.URL)
|
||||
|
|
@ -1032,6 +952,10 @@ type ActivityStreamsOriginProperty interface {
|
|||
// property "origin". Invalidates iterators that are traversing using
|
||||
// Prev.
|
||||
AppendTootEmoji(v TootEmoji)
|
||||
// AppendTootHashtag appends a Hashtag value to the back of a list of the
|
||||
// property "origin". Invalidates iterators that are traversing using
|
||||
// Prev.
|
||||
AppendTootHashtag(v TootHashtag)
|
||||
// AppendTootIdentityProof appends a IdentityProof value to the back of a
|
||||
// list of the property "origin". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
|
|
@ -1276,30 +1200,6 @@ type ActivityStreamsOriginProperty interface {
|
|||
// for a property "origin". Existing elements at that index and higher
|
||||
// are shifted back once. Invalidates all iterators.
|
||||
InsertActivityStreamsView(idx int, v ActivityStreamsView)
|
||||
// InsertForgeFedBranch inserts a Branch value at the specified index for
|
||||
// a property "origin". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedBranch(idx int, v ForgeFedBranch)
|
||||
// InsertForgeFedCommit inserts a Commit value at the specified index for
|
||||
// a property "origin". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedCommit(idx int, v ForgeFedCommit)
|
||||
// InsertForgeFedPush inserts a Push value at the specified index for a
|
||||
// property "origin". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedPush(idx int, v ForgeFedPush)
|
||||
// InsertForgeFedRepository inserts a Repository value at the specified
|
||||
// index for a property "origin". Existing elements at that index and
|
||||
// higher are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedRepository(idx int, v ForgeFedRepository)
|
||||
// InsertForgeFedTicket inserts a Ticket value at the specified index for
|
||||
// a property "origin". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedTicket(idx int, v ForgeFedTicket)
|
||||
// InsertForgeFedTicketDependency inserts a TicketDependency value at the
|
||||
// specified index for a property "origin". Existing elements at that
|
||||
// index and higher are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
|
||||
// Insert inserts an IRI value at the specified index for a property
|
||||
// "origin". Existing elements at that index and higher are shifted
|
||||
// back once. Invalidates all iterators.
|
||||
|
|
@ -1312,6 +1212,10 @@ type ActivityStreamsOriginProperty interface {
|
|||
// property "origin". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertTootEmoji(idx int, v TootEmoji)
|
||||
// InsertTootHashtag inserts a Hashtag value at the specified index for a
|
||||
// property "origin". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertTootHashtag(idx int, v TootHashtag)
|
||||
// InsertTootIdentityProof inserts a IdentityProof value at the specified
|
||||
// index for a property "origin". Existing elements at that index and
|
||||
// higher are shifted back once. Invalidates all iterators.
|
||||
|
|
@ -1510,25 +1414,6 @@ type ActivityStreamsOriginProperty interface {
|
|||
// PrependActivityStreamsView prepends a View value to the front of a list
|
||||
// of the property "origin". Invalidates all iterators.
|
||||
PrependActivityStreamsView(v ActivityStreamsView)
|
||||
// PrependForgeFedBranch prepends a Branch value to the front of a list of
|
||||
// the property "origin". Invalidates all iterators.
|
||||
PrependForgeFedBranch(v ForgeFedBranch)
|
||||
// PrependForgeFedCommit prepends a Commit value to the front of a list of
|
||||
// the property "origin". Invalidates all iterators.
|
||||
PrependForgeFedCommit(v ForgeFedCommit)
|
||||
// PrependForgeFedPush prepends a Push value to the front of a list of the
|
||||
// property "origin". Invalidates all iterators.
|
||||
PrependForgeFedPush(v ForgeFedPush)
|
||||
// PrependForgeFedRepository prepends a Repository value to the front of a
|
||||
// list of the property "origin". Invalidates all iterators.
|
||||
PrependForgeFedRepository(v ForgeFedRepository)
|
||||
// PrependForgeFedTicket prepends a Ticket value to the front of a list of
|
||||
// the property "origin". Invalidates all iterators.
|
||||
PrependForgeFedTicket(v ForgeFedTicket)
|
||||
// PrependForgeFedTicketDependency prepends a TicketDependency value to
|
||||
// the front of a list of the property "origin". Invalidates all
|
||||
// iterators.
|
||||
PrependForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// PrependIRI prepends an IRI value to the front of a list of the property
|
||||
// "origin".
|
||||
PrependIRI(v *url.URL)
|
||||
|
|
@ -1538,6 +1423,9 @@ type ActivityStreamsOriginProperty interface {
|
|||
// PrependTootEmoji prepends a Emoji value to the front of a list of the
|
||||
// property "origin". Invalidates all iterators.
|
||||
PrependTootEmoji(v TootEmoji)
|
||||
// PrependTootHashtag prepends a Hashtag value to the front of a list of
|
||||
// the property "origin". Invalidates all iterators.
|
||||
PrependTootHashtag(v TootHashtag)
|
||||
// PrependTootIdentityProof prepends a IdentityProof value to the front of
|
||||
// a list of the property "origin". Invalidates all iterators.
|
||||
PrependTootIdentityProof(v TootIdentityProof)
|
||||
|
|
@ -1771,30 +1659,6 @@ type ActivityStreamsOriginProperty interface {
|
|||
// for the property "origin". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetActivityStreamsView(idx int, v ActivityStreamsView)
|
||||
// SetForgeFedBranch sets a Branch value to be at the specified index for
|
||||
// the property "origin". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedBranch(idx int, v ForgeFedBranch)
|
||||
// SetForgeFedCommit sets a Commit value to be at the specified index for
|
||||
// the property "origin". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedCommit(idx int, v ForgeFedCommit)
|
||||
// SetForgeFedPush sets a Push value to be at the specified index for the
|
||||
// property "origin". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedPush(idx int, v ForgeFedPush)
|
||||
// SetForgeFedRepository sets a Repository value to be at the specified
|
||||
// index for the property "origin". Panics if the index is out of
|
||||
// bounds. Invalidates all iterators.
|
||||
SetForgeFedRepository(idx int, v ForgeFedRepository)
|
||||
// SetForgeFedTicket sets a Ticket value to be at the specified index for
|
||||
// the property "origin". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedTicket(idx int, v ForgeFedTicket)
|
||||
// SetForgeFedTicketDependency sets a TicketDependency value to be at the
|
||||
// specified index for the property "origin". Panics if the index is
|
||||
// out of bounds. Invalidates all iterators.
|
||||
SetForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
|
||||
// SetIRI sets an IRI value to be at the specified index for the property
|
||||
// "origin". Panics if the index is out of bounds.
|
||||
SetIRI(idx int, v *url.URL)
|
||||
|
|
@ -1806,6 +1670,10 @@ type ActivityStreamsOriginProperty interface {
|
|||
// property "origin". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetTootEmoji(idx int, v TootEmoji)
|
||||
// SetTootHashtag sets a Hashtag value to be at the specified index for
|
||||
// the property "origin". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetTootHashtag(idx int, v TootHashtag)
|
||||
// SetTootIdentityProof sets a IdentityProof value to be at the specified
|
||||
// index for the property "origin". Panics if the index is out of
|
||||
// bounds. Invalidates all iterators.
|
||||
|
|
|
|||
|
|
@ -55,6 +55,9 @@ type ActivityStreamsPartOfProperty interface {
|
|||
// GetIRI returns the IRI of this property. When IsIRI returns false,
|
||||
// GetIRI will return an arbitrary value.
|
||||
GetIRI() *url.URL
|
||||
// GetTootHashtag returns the value of this property. When IsTootHashtag
|
||||
// returns false, GetTootHashtag will return an arbitrary value.
|
||||
GetTootHashtag() TootHashtag
|
||||
// GetType returns the value in this property as a Type. Returns nil if
|
||||
// the value is not an ActivityStreams type, such as an IRI or another
|
||||
// value.
|
||||
|
|
@ -95,6 +98,10 @@ type ActivityStreamsPartOfProperty interface {
|
|||
// IsIRI returns true if this property is an IRI. When true, use GetIRI
|
||||
// and SetIRI to access and set this property
|
||||
IsIRI() bool
|
||||
// IsTootHashtag returns true if this property has a type of "Hashtag".
|
||||
// When true, use the GetTootHashtag and SetTootHashtag methods to
|
||||
// access and set this property.
|
||||
IsTootHashtag() bool
|
||||
// JSONLDContext returns the JSONLD URIs required in the context string
|
||||
// for this property and the specific values that are set. The value
|
||||
// in the map is the alias used to import the property's value or
|
||||
|
|
@ -139,6 +146,9 @@ type ActivityStreamsPartOfProperty interface {
|
|||
// SetIRI sets the value of this property. Calling IsIRI afterwards
|
||||
// returns true.
|
||||
SetIRI(v *url.URL)
|
||||
// SetTootHashtag sets the value of this property. Calling IsTootHashtag
|
||||
// afterwards returns true.
|
||||
SetTootHashtag(v TootHashtag)
|
||||
// SetType attempts to set the property for the arbitrary type. Returns an
|
||||
// error if it is not a valid type to set on this property.
|
||||
SetType(t Type) error
|
||||
|
|
|
|||
|
|
@ -57,6 +57,9 @@ type ActivityStreamsPrevProperty interface {
|
|||
// GetIRI returns the IRI of this property. When IsIRI returns false,
|
||||
// GetIRI will return an arbitrary value.
|
||||
GetIRI() *url.URL
|
||||
// GetTootHashtag returns the value of this property. When IsTootHashtag
|
||||
// returns false, GetTootHashtag will return an arbitrary value.
|
||||
GetTootHashtag() TootHashtag
|
||||
// GetType returns the value in this property as a Type. Returns nil if
|
||||
// the value is not an ActivityStreams type, such as an IRI or another
|
||||
// value.
|
||||
|
|
@ -86,6 +89,10 @@ type ActivityStreamsPrevProperty interface {
|
|||
// IsIRI returns true if this property is an IRI. When true, use GetIRI
|
||||
// and SetIRI to access and set this property
|
||||
IsIRI() bool
|
||||
// IsTootHashtag returns true if this property has a type of "Hashtag".
|
||||
// When true, use the GetTootHashtag and SetTootHashtag methods to
|
||||
// access and set this property.
|
||||
IsTootHashtag() bool
|
||||
// JSONLDContext returns the JSONLD URIs required in the context string
|
||||
// for this property and the specific values that are set. The value
|
||||
// in the map is the alias used to import the property's value or
|
||||
|
|
@ -124,6 +131,9 @@ type ActivityStreamsPrevProperty interface {
|
|||
// SetIRI sets the value of this property. Calling IsIRI afterwards
|
||||
// returns true.
|
||||
SetIRI(v *url.URL)
|
||||
// SetTootHashtag sets the value of this property. Calling IsTootHashtag
|
||||
// afterwards returns true.
|
||||
SetTootHashtag(v TootHashtag)
|
||||
// SetType attempts to set the property for the arbitrary type. Returns an
|
||||
// error if it is not a valid type to set on this property.
|
||||
SetType(t Type) error
|
||||
|
|
|
|||
|
|
@ -225,29 +225,6 @@ type ActivityStreamsPreviewPropertyIterator interface {
|
|||
// IsActivityStreamsView returns false, GetActivityStreamsView will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsView() ActivityStreamsView
|
||||
// GetForgeFedBranch returns the value of this property. When
|
||||
// IsForgeFedBranch returns false, GetForgeFedBranch will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedBranch() ForgeFedBranch
|
||||
// GetForgeFedCommit returns the value of this property. When
|
||||
// IsForgeFedCommit returns false, GetForgeFedCommit will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedCommit() ForgeFedCommit
|
||||
// GetForgeFedPush returns the value of this property. When IsForgeFedPush
|
||||
// returns false, GetForgeFedPush will return an arbitrary value.
|
||||
GetForgeFedPush() ForgeFedPush
|
||||
// GetForgeFedRepository returns the value of this property. When
|
||||
// IsForgeFedRepository returns false, GetForgeFedRepository will
|
||||
// return an arbitrary value.
|
||||
GetForgeFedRepository() ForgeFedRepository
|
||||
// GetForgeFedTicket returns the value of this property. When
|
||||
// IsForgeFedTicket returns false, GetForgeFedTicket will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedTicket() ForgeFedTicket
|
||||
// GetForgeFedTicketDependency returns the value of this property. When
|
||||
// IsForgeFedTicketDependency returns false,
|
||||
// GetForgeFedTicketDependency will return an arbitrary value.
|
||||
GetForgeFedTicketDependency() ForgeFedTicketDependency
|
||||
// GetIRI returns the IRI of this property. When IsIRI returns false,
|
||||
// GetIRI will return an arbitrary value.
|
||||
GetIRI() *url.URL
|
||||
|
|
@ -258,6 +235,9 @@ type ActivityStreamsPreviewPropertyIterator interface {
|
|||
// GetTootEmoji returns the value of this property. When IsTootEmoji
|
||||
// returns false, GetTootEmoji will return an arbitrary value.
|
||||
GetTootEmoji() TootEmoji
|
||||
// GetTootHashtag returns the value of this property. When IsTootHashtag
|
||||
// returns false, GetTootHashtag will return an arbitrary value.
|
||||
GetTootHashtag() TootHashtag
|
||||
// GetTootIdentityProof returns the value of this property. When
|
||||
// IsTootIdentityProof returns false, GetTootIdentityProof will return
|
||||
// an arbitrary value.
|
||||
|
|
@ -500,31 +480,6 @@ type ActivityStreamsPreviewPropertyIterator interface {
|
|||
// "View". When true, use the GetActivityStreamsView and
|
||||
// SetActivityStreamsView methods to access and set this property.
|
||||
IsActivityStreamsView() bool
|
||||
// IsForgeFedBranch returns true if this property has a type of "Branch".
|
||||
// When true, use the GetForgeFedBranch and SetForgeFedBranch methods
|
||||
// to access and set this property.
|
||||
IsForgeFedBranch() bool
|
||||
// IsForgeFedCommit returns true if this property has a type of "Commit".
|
||||
// When true, use the GetForgeFedCommit and SetForgeFedCommit methods
|
||||
// to access and set this property.
|
||||
IsForgeFedCommit() bool
|
||||
// IsForgeFedPush returns true if this property has a type of "Push". When
|
||||
// true, use the GetForgeFedPush and SetForgeFedPush methods to access
|
||||
// and set this property.
|
||||
IsForgeFedPush() bool
|
||||
// IsForgeFedRepository returns true if this property has a type of
|
||||
// "Repository". When true, use the GetForgeFedRepository and
|
||||
// SetForgeFedRepository methods to access and set this property.
|
||||
IsForgeFedRepository() bool
|
||||
// IsForgeFedTicket returns true if this property has a type of "Ticket".
|
||||
// When true, use the GetForgeFedTicket and SetForgeFedTicket methods
|
||||
// to access and set this property.
|
||||
IsForgeFedTicket() bool
|
||||
// IsForgeFedTicketDependency returns true if this property has a type of
|
||||
// "TicketDependency". When true, use the GetForgeFedTicketDependency
|
||||
// and SetForgeFedTicketDependency methods to access and set this
|
||||
// property.
|
||||
IsForgeFedTicketDependency() bool
|
||||
// IsIRI returns true if this property is an IRI. When true, use GetIRI
|
||||
// and SetIRI to access and set this property
|
||||
IsIRI() bool
|
||||
|
|
@ -536,6 +491,10 @@ type ActivityStreamsPreviewPropertyIterator interface {
|
|||
// true, use the GetTootEmoji and SetTootEmoji methods to access and
|
||||
// set this property.
|
||||
IsTootEmoji() bool
|
||||
// IsTootHashtag returns true if this property has a type of "Hashtag".
|
||||
// When true, use the GetTootHashtag and SetTootHashtag methods to
|
||||
// access and set this property.
|
||||
IsTootHashtag() bool
|
||||
// IsTootIdentityProof returns true if this property has a type of
|
||||
// "IdentityProof". When true, use the GetTootIdentityProof and
|
||||
// SetTootIdentityProof methods to access and set this property.
|
||||
|
|
@ -725,24 +684,6 @@ type ActivityStreamsPreviewPropertyIterator interface {
|
|||
// SetActivityStreamsView sets the value of this property. Calling
|
||||
// IsActivityStreamsView afterwards returns true.
|
||||
SetActivityStreamsView(v ActivityStreamsView)
|
||||
// SetForgeFedBranch sets the value of this property. Calling
|
||||
// IsForgeFedBranch afterwards returns true.
|
||||
SetForgeFedBranch(v ForgeFedBranch)
|
||||
// SetForgeFedCommit sets the value of this property. Calling
|
||||
// IsForgeFedCommit afterwards returns true.
|
||||
SetForgeFedCommit(v ForgeFedCommit)
|
||||
// SetForgeFedPush sets the value of this property. Calling IsForgeFedPush
|
||||
// afterwards returns true.
|
||||
SetForgeFedPush(v ForgeFedPush)
|
||||
// SetForgeFedRepository sets the value of this property. Calling
|
||||
// IsForgeFedRepository afterwards returns true.
|
||||
SetForgeFedRepository(v ForgeFedRepository)
|
||||
// SetForgeFedTicket sets the value of this property. Calling
|
||||
// IsForgeFedTicket afterwards returns true.
|
||||
SetForgeFedTicket(v ForgeFedTicket)
|
||||
// SetForgeFedTicketDependency sets the value of this property. Calling
|
||||
// IsForgeFedTicketDependency afterwards returns true.
|
||||
SetForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// SetIRI sets the value of this property. Calling IsIRI afterwards
|
||||
// returns true.
|
||||
SetIRI(v *url.URL)
|
||||
|
|
@ -752,6 +693,9 @@ type ActivityStreamsPreviewPropertyIterator interface {
|
|||
// SetTootEmoji sets the value of this property. Calling IsTootEmoji
|
||||
// afterwards returns true.
|
||||
SetTootEmoji(v TootEmoji)
|
||||
// SetTootHashtag sets the value of this property. Calling IsTootHashtag
|
||||
// afterwards returns true.
|
||||
SetTootHashtag(v TootHashtag)
|
||||
// SetTootIdentityProof sets the value of this property. Calling
|
||||
// IsTootIdentityProof afterwards returns true.
|
||||
SetTootIdentityProof(v TootIdentityProof)
|
||||
|
|
@ -994,30 +938,6 @@ type ActivityStreamsPreviewProperty interface {
|
|||
// the property "preview". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendActivityStreamsView(v ActivityStreamsView)
|
||||
// AppendForgeFedBranch appends a Branch value to the back of a list of
|
||||
// the property "preview". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendForgeFedBranch(v ForgeFedBranch)
|
||||
// AppendForgeFedCommit appends a Commit value to the back of a list of
|
||||
// the property "preview". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendForgeFedCommit(v ForgeFedCommit)
|
||||
// AppendForgeFedPush appends a Push value to the back of a list of the
|
||||
// property "preview". Invalidates iterators that are traversing using
|
||||
// Prev.
|
||||
AppendForgeFedPush(v ForgeFedPush)
|
||||
// AppendForgeFedRepository appends a Repository value to the back of a
|
||||
// list of the property "preview". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
AppendForgeFedRepository(v ForgeFedRepository)
|
||||
// AppendForgeFedTicket appends a Ticket value to the back of a list of
|
||||
// the property "preview". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendForgeFedTicket(v ForgeFedTicket)
|
||||
// AppendForgeFedTicketDependency appends a TicketDependency value to the
|
||||
// back of a list of the property "preview". Invalidates iterators
|
||||
// that are traversing using Prev.
|
||||
AppendForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// AppendIRI appends an IRI value to the back of a list of the property
|
||||
// "preview"
|
||||
AppendIRI(v *url.URL)
|
||||
|
|
@ -1029,6 +949,10 @@ type ActivityStreamsPreviewProperty interface {
|
|||
// property "preview". Invalidates iterators that are traversing using
|
||||
// Prev.
|
||||
AppendTootEmoji(v TootEmoji)
|
||||
// AppendTootHashtag appends a Hashtag value to the back of a list of the
|
||||
// property "preview". Invalidates iterators that are traversing using
|
||||
// Prev.
|
||||
AppendTootHashtag(v TootHashtag)
|
||||
// AppendTootIdentityProof appends a IdentityProof value to the back of a
|
||||
// list of the property "preview". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
|
|
@ -1273,30 +1197,6 @@ type ActivityStreamsPreviewProperty interface {
|
|||
// for a property "preview". Existing elements at that index and
|
||||
// higher are shifted back once. Invalidates all iterators.
|
||||
InsertActivityStreamsView(idx int, v ActivityStreamsView)
|
||||
// InsertForgeFedBranch inserts a Branch value at the specified index for
|
||||
// a property "preview". Existing elements at that index and higher
|
||||
// are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedBranch(idx int, v ForgeFedBranch)
|
||||
// InsertForgeFedCommit inserts a Commit value at the specified index for
|
||||
// a property "preview". Existing elements at that index and higher
|
||||
// are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedCommit(idx int, v ForgeFedCommit)
|
||||
// InsertForgeFedPush inserts a Push value at the specified index for a
|
||||
// property "preview". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedPush(idx int, v ForgeFedPush)
|
||||
// InsertForgeFedRepository inserts a Repository value at the specified
|
||||
// index for a property "preview". Existing elements at that index and
|
||||
// higher are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedRepository(idx int, v ForgeFedRepository)
|
||||
// InsertForgeFedTicket inserts a Ticket value at the specified index for
|
||||
// a property "preview". Existing elements at that index and higher
|
||||
// are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedTicket(idx int, v ForgeFedTicket)
|
||||
// InsertForgeFedTicketDependency inserts a TicketDependency value at the
|
||||
// specified index for a property "preview". Existing elements at that
|
||||
// index and higher are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
|
||||
// Insert inserts an IRI value at the specified index for a property
|
||||
// "preview". Existing elements at that index and higher are shifted
|
||||
// back once. Invalidates all iterators.
|
||||
|
|
@ -1309,6 +1209,10 @@ type ActivityStreamsPreviewProperty interface {
|
|||
// property "preview". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertTootEmoji(idx int, v TootEmoji)
|
||||
// InsertTootHashtag inserts a Hashtag value at the specified index for a
|
||||
// property "preview". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertTootHashtag(idx int, v TootHashtag)
|
||||
// InsertTootIdentityProof inserts a IdentityProof value at the specified
|
||||
// index for a property "preview". Existing elements at that index and
|
||||
// higher are shifted back once. Invalidates all iterators.
|
||||
|
|
@ -1511,25 +1415,6 @@ type ActivityStreamsPreviewProperty interface {
|
|||
// PrependActivityStreamsView prepends a View value to the front of a list
|
||||
// of the property "preview". Invalidates all iterators.
|
||||
PrependActivityStreamsView(v ActivityStreamsView)
|
||||
// PrependForgeFedBranch prepends a Branch value to the front of a list of
|
||||
// the property "preview". Invalidates all iterators.
|
||||
PrependForgeFedBranch(v ForgeFedBranch)
|
||||
// PrependForgeFedCommit prepends a Commit value to the front of a list of
|
||||
// the property "preview". Invalidates all iterators.
|
||||
PrependForgeFedCommit(v ForgeFedCommit)
|
||||
// PrependForgeFedPush prepends a Push value to the front of a list of the
|
||||
// property "preview". Invalidates all iterators.
|
||||
PrependForgeFedPush(v ForgeFedPush)
|
||||
// PrependForgeFedRepository prepends a Repository value to the front of a
|
||||
// list of the property "preview". Invalidates all iterators.
|
||||
PrependForgeFedRepository(v ForgeFedRepository)
|
||||
// PrependForgeFedTicket prepends a Ticket value to the front of a list of
|
||||
// the property "preview". Invalidates all iterators.
|
||||
PrependForgeFedTicket(v ForgeFedTicket)
|
||||
// PrependForgeFedTicketDependency prepends a TicketDependency value to
|
||||
// the front of a list of the property "preview". Invalidates all
|
||||
// iterators.
|
||||
PrependForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// PrependIRI prepends an IRI value to the front of a list of the property
|
||||
// "preview".
|
||||
PrependIRI(v *url.URL)
|
||||
|
|
@ -1539,6 +1424,9 @@ type ActivityStreamsPreviewProperty interface {
|
|||
// PrependTootEmoji prepends a Emoji value to the front of a list of the
|
||||
// property "preview". Invalidates all iterators.
|
||||
PrependTootEmoji(v TootEmoji)
|
||||
// PrependTootHashtag prepends a Hashtag value to the front of a list of
|
||||
// the property "preview". Invalidates all iterators.
|
||||
PrependTootHashtag(v TootHashtag)
|
||||
// PrependTootIdentityProof prepends a IdentityProof value to the front of
|
||||
// a list of the property "preview". Invalidates all iterators.
|
||||
PrependTootIdentityProof(v TootIdentityProof)
|
||||
|
|
@ -1772,30 +1660,6 @@ type ActivityStreamsPreviewProperty interface {
|
|||
// for the property "preview". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetActivityStreamsView(idx int, v ActivityStreamsView)
|
||||
// SetForgeFedBranch sets a Branch value to be at the specified index for
|
||||
// the property "preview". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedBranch(idx int, v ForgeFedBranch)
|
||||
// SetForgeFedCommit sets a Commit value to be at the specified index for
|
||||
// the property "preview". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedCommit(idx int, v ForgeFedCommit)
|
||||
// SetForgeFedPush sets a Push value to be at the specified index for the
|
||||
// property "preview". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedPush(idx int, v ForgeFedPush)
|
||||
// SetForgeFedRepository sets a Repository value to be at the specified
|
||||
// index for the property "preview". Panics if the index is out of
|
||||
// bounds. Invalidates all iterators.
|
||||
SetForgeFedRepository(idx int, v ForgeFedRepository)
|
||||
// SetForgeFedTicket sets a Ticket value to be at the specified index for
|
||||
// the property "preview". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedTicket(idx int, v ForgeFedTicket)
|
||||
// SetForgeFedTicketDependency sets a TicketDependency value to be at the
|
||||
// specified index for the property "preview". Panics if the index is
|
||||
// out of bounds. Invalidates all iterators.
|
||||
SetForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
|
||||
// SetIRI sets an IRI value to be at the specified index for the property
|
||||
// "preview". Panics if the index is out of bounds.
|
||||
SetIRI(idx int, v *url.URL)
|
||||
|
|
@ -1807,6 +1671,10 @@ type ActivityStreamsPreviewProperty interface {
|
|||
// property "preview". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetTootEmoji(idx int, v TootEmoji)
|
||||
// SetTootHashtag sets a Hashtag value to be at the specified index for
|
||||
// the property "preview". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetTootHashtag(idx int, v TootHashtag)
|
||||
// SetTootIdentityProof sets a IdentityProof value to be at the specified
|
||||
// index for the property "preview". Panics if the index is out of
|
||||
// bounds. Invalidates all iterators.
|
||||
|
|
|
|||
|
|
@ -217,29 +217,6 @@ type ActivityStreamsRelationshipPropertyIterator interface {
|
|||
// IsActivityStreamsView returns false, GetActivityStreamsView will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsView() ActivityStreamsView
|
||||
// GetForgeFedBranch returns the value of this property. When
|
||||
// IsForgeFedBranch returns false, GetForgeFedBranch will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedBranch() ForgeFedBranch
|
||||
// GetForgeFedCommit returns the value of this property. When
|
||||
// IsForgeFedCommit returns false, GetForgeFedCommit will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedCommit() ForgeFedCommit
|
||||
// GetForgeFedPush returns the value of this property. When IsForgeFedPush
|
||||
// returns false, GetForgeFedPush will return an arbitrary value.
|
||||
GetForgeFedPush() ForgeFedPush
|
||||
// GetForgeFedRepository returns the value of this property. When
|
||||
// IsForgeFedRepository returns false, GetForgeFedRepository will
|
||||
// return an arbitrary value.
|
||||
GetForgeFedRepository() ForgeFedRepository
|
||||
// GetForgeFedTicket returns the value of this property. When
|
||||
// IsForgeFedTicket returns false, GetForgeFedTicket will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedTicket() ForgeFedTicket
|
||||
// GetForgeFedTicketDependency returns the value of this property. When
|
||||
// IsForgeFedTicketDependency returns false,
|
||||
// GetForgeFedTicketDependency will return an arbitrary value.
|
||||
GetForgeFedTicketDependency() ForgeFedTicketDependency
|
||||
// GetIRI returns the IRI of this property. When IsIRI returns false,
|
||||
// GetIRI will return an arbitrary value.
|
||||
GetIRI() *url.URL
|
||||
|
|
@ -484,31 +461,6 @@ type ActivityStreamsRelationshipPropertyIterator interface {
|
|||
// "View". When true, use the GetActivityStreamsView and
|
||||
// SetActivityStreamsView methods to access and set this property.
|
||||
IsActivityStreamsView() bool
|
||||
// IsForgeFedBranch returns true if this property has a type of "Branch".
|
||||
// When true, use the GetForgeFedBranch and SetForgeFedBranch methods
|
||||
// to access and set this property.
|
||||
IsForgeFedBranch() bool
|
||||
// IsForgeFedCommit returns true if this property has a type of "Commit".
|
||||
// When true, use the GetForgeFedCommit and SetForgeFedCommit methods
|
||||
// to access and set this property.
|
||||
IsForgeFedCommit() bool
|
||||
// IsForgeFedPush returns true if this property has a type of "Push". When
|
||||
// true, use the GetForgeFedPush and SetForgeFedPush methods to access
|
||||
// and set this property.
|
||||
IsForgeFedPush() bool
|
||||
// IsForgeFedRepository returns true if this property has a type of
|
||||
// "Repository". When true, use the GetForgeFedRepository and
|
||||
// SetForgeFedRepository methods to access and set this property.
|
||||
IsForgeFedRepository() bool
|
||||
// IsForgeFedTicket returns true if this property has a type of "Ticket".
|
||||
// When true, use the GetForgeFedTicket and SetForgeFedTicket methods
|
||||
// to access and set this property.
|
||||
IsForgeFedTicket() bool
|
||||
// IsForgeFedTicketDependency returns true if this property has a type of
|
||||
// "TicketDependency". When true, use the GetForgeFedTicketDependency
|
||||
// and SetForgeFedTicketDependency methods to access and set this
|
||||
// property.
|
||||
IsForgeFedTicketDependency() bool
|
||||
// IsIRI returns true if this property is an IRI. When true, use GetIRI
|
||||
// and SetIRI to access and set this property
|
||||
IsIRI() bool
|
||||
|
|
@ -703,24 +655,6 @@ type ActivityStreamsRelationshipPropertyIterator interface {
|
|||
// SetActivityStreamsView sets the value of this property. Calling
|
||||
// IsActivityStreamsView afterwards returns true.
|
||||
SetActivityStreamsView(v ActivityStreamsView)
|
||||
// SetForgeFedBranch sets the value of this property. Calling
|
||||
// IsForgeFedBranch afterwards returns true.
|
||||
SetForgeFedBranch(v ForgeFedBranch)
|
||||
// SetForgeFedCommit sets the value of this property. Calling
|
||||
// IsForgeFedCommit afterwards returns true.
|
||||
SetForgeFedCommit(v ForgeFedCommit)
|
||||
// SetForgeFedPush sets the value of this property. Calling IsForgeFedPush
|
||||
// afterwards returns true.
|
||||
SetForgeFedPush(v ForgeFedPush)
|
||||
// SetForgeFedRepository sets the value of this property. Calling
|
||||
// IsForgeFedRepository afterwards returns true.
|
||||
SetForgeFedRepository(v ForgeFedRepository)
|
||||
// SetForgeFedTicket sets the value of this property. Calling
|
||||
// IsForgeFedTicket afterwards returns true.
|
||||
SetForgeFedTicket(v ForgeFedTicket)
|
||||
// SetForgeFedTicketDependency sets the value of this property. Calling
|
||||
// IsForgeFedTicketDependency afterwards returns true.
|
||||
SetForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// SetIRI sets the value of this property. Calling IsIRI afterwards
|
||||
// returns true.
|
||||
SetIRI(v *url.URL)
|
||||
|
|
@ -966,30 +900,6 @@ type ActivityStreamsRelationshipProperty interface {
|
|||
// the property "relationship". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
AppendActivityStreamsView(v ActivityStreamsView)
|
||||
// AppendForgeFedBranch appends a Branch value to the back of a list of
|
||||
// the property "relationship". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
AppendForgeFedBranch(v ForgeFedBranch)
|
||||
// AppendForgeFedCommit appends a Commit value to the back of a list of
|
||||
// the property "relationship". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
AppendForgeFedCommit(v ForgeFedCommit)
|
||||
// AppendForgeFedPush appends a Push value to the back of a list of the
|
||||
// property "relationship". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendForgeFedPush(v ForgeFedPush)
|
||||
// AppendForgeFedRepository appends a Repository value to the back of a
|
||||
// list of the property "relationship". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
AppendForgeFedRepository(v ForgeFedRepository)
|
||||
// AppendForgeFedTicket appends a Ticket value to the back of a list of
|
||||
// the property "relationship". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
AppendForgeFedTicket(v ForgeFedTicket)
|
||||
// AppendForgeFedTicketDependency appends a TicketDependency value to the
|
||||
// back of a list of the property "relationship". Invalidates
|
||||
// iterators that are traversing using Prev.
|
||||
AppendForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// AppendIRI appends an IRI value to the back of a list of the property
|
||||
// "relationship"
|
||||
AppendIRI(v *url.URL)
|
||||
|
|
@ -1242,31 +1152,6 @@ type ActivityStreamsRelationshipProperty interface {
|
|||
// for a property "relationship". Existing elements at that index and
|
||||
// higher are shifted back once. Invalidates all iterators.
|
||||
InsertActivityStreamsView(idx int, v ActivityStreamsView)
|
||||
// InsertForgeFedBranch inserts a Branch value at the specified index for
|
||||
// a property "relationship". Existing elements at that index and
|
||||
// higher are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedBranch(idx int, v ForgeFedBranch)
|
||||
// InsertForgeFedCommit inserts a Commit value at the specified index for
|
||||
// a property "relationship". Existing elements at that index and
|
||||
// higher are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedCommit(idx int, v ForgeFedCommit)
|
||||
// InsertForgeFedPush inserts a Push value at the specified index for a
|
||||
// property "relationship". Existing elements at that index and higher
|
||||
// are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedPush(idx int, v ForgeFedPush)
|
||||
// InsertForgeFedRepository inserts a Repository value at the specified
|
||||
// index for a property "relationship". Existing elements at that
|
||||
// index and higher are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedRepository(idx int, v ForgeFedRepository)
|
||||
// InsertForgeFedTicket inserts a Ticket value at the specified index for
|
||||
// a property "relationship". Existing elements at that index and
|
||||
// higher are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedTicket(idx int, v ForgeFedTicket)
|
||||
// InsertForgeFedTicketDependency inserts a TicketDependency value at the
|
||||
// specified index for a property "relationship". Existing elements at
|
||||
// that index and higher are shifted back once. Invalidates all
|
||||
// iterators.
|
||||
InsertForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
|
||||
// Insert inserts an IRI value at the specified index for a property
|
||||
// "relationship". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
|
|
@ -1477,25 +1362,6 @@ type ActivityStreamsRelationshipProperty interface {
|
|||
// PrependActivityStreamsView prepends a View value to the front of a list
|
||||
// of the property "relationship". Invalidates all iterators.
|
||||
PrependActivityStreamsView(v ActivityStreamsView)
|
||||
// PrependForgeFedBranch prepends a Branch value to the front of a list of
|
||||
// the property "relationship". Invalidates all iterators.
|
||||
PrependForgeFedBranch(v ForgeFedBranch)
|
||||
// PrependForgeFedCommit prepends a Commit value to the front of a list of
|
||||
// the property "relationship". Invalidates all iterators.
|
||||
PrependForgeFedCommit(v ForgeFedCommit)
|
||||
// PrependForgeFedPush prepends a Push value to the front of a list of the
|
||||
// property "relationship". Invalidates all iterators.
|
||||
PrependForgeFedPush(v ForgeFedPush)
|
||||
// PrependForgeFedRepository prepends a Repository value to the front of a
|
||||
// list of the property "relationship". Invalidates all iterators.
|
||||
PrependForgeFedRepository(v ForgeFedRepository)
|
||||
// PrependForgeFedTicket prepends a Ticket value to the front of a list of
|
||||
// the property "relationship". Invalidates all iterators.
|
||||
PrependForgeFedTicket(v ForgeFedTicket)
|
||||
// PrependForgeFedTicketDependency prepends a TicketDependency value to
|
||||
// the front of a list of the property "relationship". Invalidates all
|
||||
// iterators.
|
||||
PrependForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// PrependIRI prepends an IRI value to the front of a list of the property
|
||||
// "relationship".
|
||||
PrependIRI(v *url.URL)
|
||||
|
|
@ -1730,30 +1596,6 @@ type ActivityStreamsRelationshipProperty interface {
|
|||
// for the property "relationship". Panics if the index is out of
|
||||
// bounds. Invalidates all iterators.
|
||||
SetActivityStreamsView(idx int, v ActivityStreamsView)
|
||||
// SetForgeFedBranch sets a Branch value to be at the specified index for
|
||||
// the property "relationship". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedBranch(idx int, v ForgeFedBranch)
|
||||
// SetForgeFedCommit sets a Commit value to be at the specified index for
|
||||
// the property "relationship". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedCommit(idx int, v ForgeFedCommit)
|
||||
// SetForgeFedPush sets a Push value to be at the specified index for the
|
||||
// property "relationship". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedPush(idx int, v ForgeFedPush)
|
||||
// SetForgeFedRepository sets a Repository value to be at the specified
|
||||
// index for the property "relationship". Panics if the index is out
|
||||
// of bounds. Invalidates all iterators.
|
||||
SetForgeFedRepository(idx int, v ForgeFedRepository)
|
||||
// SetForgeFedTicket sets a Ticket value to be at the specified index for
|
||||
// the property "relationship". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedTicket(idx int, v ForgeFedTicket)
|
||||
// SetForgeFedTicketDependency sets a TicketDependency value to be at the
|
||||
// specified index for the property "relationship". Panics if the
|
||||
// index is out of bounds. Invalidates all iterators.
|
||||
SetForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
|
||||
// SetIRI sets an IRI value to be at the specified index for the property
|
||||
// "relationship". Panics if the index is out of bounds.
|
||||
SetIRI(idx int, v *url.URL)
|
||||
|
|
|
|||
|
|
@ -225,29 +225,6 @@ type ActivityStreamsResultPropertyIterator interface {
|
|||
// IsActivityStreamsView returns false, GetActivityStreamsView will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsView() ActivityStreamsView
|
||||
// GetForgeFedBranch returns the value of this property. When
|
||||
// IsForgeFedBranch returns false, GetForgeFedBranch will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedBranch() ForgeFedBranch
|
||||
// GetForgeFedCommit returns the value of this property. When
|
||||
// IsForgeFedCommit returns false, GetForgeFedCommit will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedCommit() ForgeFedCommit
|
||||
// GetForgeFedPush returns the value of this property. When IsForgeFedPush
|
||||
// returns false, GetForgeFedPush will return an arbitrary value.
|
||||
GetForgeFedPush() ForgeFedPush
|
||||
// GetForgeFedRepository returns the value of this property. When
|
||||
// IsForgeFedRepository returns false, GetForgeFedRepository will
|
||||
// return an arbitrary value.
|
||||
GetForgeFedRepository() ForgeFedRepository
|
||||
// GetForgeFedTicket returns the value of this property. When
|
||||
// IsForgeFedTicket returns false, GetForgeFedTicket will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedTicket() ForgeFedTicket
|
||||
// GetForgeFedTicketDependency returns the value of this property. When
|
||||
// IsForgeFedTicketDependency returns false,
|
||||
// GetForgeFedTicketDependency will return an arbitrary value.
|
||||
GetForgeFedTicketDependency() ForgeFedTicketDependency
|
||||
// GetIRI returns the IRI of this property. When IsIRI returns false,
|
||||
// GetIRI will return an arbitrary value.
|
||||
GetIRI() *url.URL
|
||||
|
|
@ -258,6 +235,9 @@ type ActivityStreamsResultPropertyIterator interface {
|
|||
// GetTootEmoji returns the value of this property. When IsTootEmoji
|
||||
// returns false, GetTootEmoji will return an arbitrary value.
|
||||
GetTootEmoji() TootEmoji
|
||||
// GetTootHashtag returns the value of this property. When IsTootHashtag
|
||||
// returns false, GetTootHashtag will return an arbitrary value.
|
||||
GetTootHashtag() TootHashtag
|
||||
// GetTootIdentityProof returns the value of this property. When
|
||||
// IsTootIdentityProof returns false, GetTootIdentityProof will return
|
||||
// an arbitrary value.
|
||||
|
|
@ -500,31 +480,6 @@ type ActivityStreamsResultPropertyIterator interface {
|
|||
// "View". When true, use the GetActivityStreamsView and
|
||||
// SetActivityStreamsView methods to access and set this property.
|
||||
IsActivityStreamsView() bool
|
||||
// IsForgeFedBranch returns true if this property has a type of "Branch".
|
||||
// When true, use the GetForgeFedBranch and SetForgeFedBranch methods
|
||||
// to access and set this property.
|
||||
IsForgeFedBranch() bool
|
||||
// IsForgeFedCommit returns true if this property has a type of "Commit".
|
||||
// When true, use the GetForgeFedCommit and SetForgeFedCommit methods
|
||||
// to access and set this property.
|
||||
IsForgeFedCommit() bool
|
||||
// IsForgeFedPush returns true if this property has a type of "Push". When
|
||||
// true, use the GetForgeFedPush and SetForgeFedPush methods to access
|
||||
// and set this property.
|
||||
IsForgeFedPush() bool
|
||||
// IsForgeFedRepository returns true if this property has a type of
|
||||
// "Repository". When true, use the GetForgeFedRepository and
|
||||
// SetForgeFedRepository methods to access and set this property.
|
||||
IsForgeFedRepository() bool
|
||||
// IsForgeFedTicket returns true if this property has a type of "Ticket".
|
||||
// When true, use the GetForgeFedTicket and SetForgeFedTicket methods
|
||||
// to access and set this property.
|
||||
IsForgeFedTicket() bool
|
||||
// IsForgeFedTicketDependency returns true if this property has a type of
|
||||
// "TicketDependency". When true, use the GetForgeFedTicketDependency
|
||||
// and SetForgeFedTicketDependency methods to access and set this
|
||||
// property.
|
||||
IsForgeFedTicketDependency() bool
|
||||
// IsIRI returns true if this property is an IRI. When true, use GetIRI
|
||||
// and SetIRI to access and set this property
|
||||
IsIRI() bool
|
||||
|
|
@ -536,6 +491,10 @@ type ActivityStreamsResultPropertyIterator interface {
|
|||
// true, use the GetTootEmoji and SetTootEmoji methods to access and
|
||||
// set this property.
|
||||
IsTootEmoji() bool
|
||||
// IsTootHashtag returns true if this property has a type of "Hashtag".
|
||||
// When true, use the GetTootHashtag and SetTootHashtag methods to
|
||||
// access and set this property.
|
||||
IsTootHashtag() bool
|
||||
// IsTootIdentityProof returns true if this property has a type of
|
||||
// "IdentityProof". When true, use the GetTootIdentityProof and
|
||||
// SetTootIdentityProof methods to access and set this property.
|
||||
|
|
@ -725,24 +684,6 @@ type ActivityStreamsResultPropertyIterator interface {
|
|||
// SetActivityStreamsView sets the value of this property. Calling
|
||||
// IsActivityStreamsView afterwards returns true.
|
||||
SetActivityStreamsView(v ActivityStreamsView)
|
||||
// SetForgeFedBranch sets the value of this property. Calling
|
||||
// IsForgeFedBranch afterwards returns true.
|
||||
SetForgeFedBranch(v ForgeFedBranch)
|
||||
// SetForgeFedCommit sets the value of this property. Calling
|
||||
// IsForgeFedCommit afterwards returns true.
|
||||
SetForgeFedCommit(v ForgeFedCommit)
|
||||
// SetForgeFedPush sets the value of this property. Calling IsForgeFedPush
|
||||
// afterwards returns true.
|
||||
SetForgeFedPush(v ForgeFedPush)
|
||||
// SetForgeFedRepository sets the value of this property. Calling
|
||||
// IsForgeFedRepository afterwards returns true.
|
||||
SetForgeFedRepository(v ForgeFedRepository)
|
||||
// SetForgeFedTicket sets the value of this property. Calling
|
||||
// IsForgeFedTicket afterwards returns true.
|
||||
SetForgeFedTicket(v ForgeFedTicket)
|
||||
// SetForgeFedTicketDependency sets the value of this property. Calling
|
||||
// IsForgeFedTicketDependency afterwards returns true.
|
||||
SetForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// SetIRI sets the value of this property. Calling IsIRI afterwards
|
||||
// returns true.
|
||||
SetIRI(v *url.URL)
|
||||
|
|
@ -752,6 +693,9 @@ type ActivityStreamsResultPropertyIterator interface {
|
|||
// SetTootEmoji sets the value of this property. Calling IsTootEmoji
|
||||
// afterwards returns true.
|
||||
SetTootEmoji(v TootEmoji)
|
||||
// SetTootHashtag sets the value of this property. Calling IsTootHashtag
|
||||
// afterwards returns true.
|
||||
SetTootHashtag(v TootHashtag)
|
||||
// SetTootIdentityProof sets the value of this property. Calling
|
||||
// IsTootIdentityProof afterwards returns true.
|
||||
SetTootIdentityProof(v TootIdentityProof)
|
||||
|
|
@ -995,30 +939,6 @@ type ActivityStreamsResultProperty interface {
|
|||
// the property "result". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendActivityStreamsView(v ActivityStreamsView)
|
||||
// AppendForgeFedBranch appends a Branch value to the back of a list of
|
||||
// the property "result". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendForgeFedBranch(v ForgeFedBranch)
|
||||
// AppendForgeFedCommit appends a Commit value to the back of a list of
|
||||
// the property "result". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendForgeFedCommit(v ForgeFedCommit)
|
||||
// AppendForgeFedPush appends a Push value to the back of a list of the
|
||||
// property "result". Invalidates iterators that are traversing using
|
||||
// Prev.
|
||||
AppendForgeFedPush(v ForgeFedPush)
|
||||
// AppendForgeFedRepository appends a Repository value to the back of a
|
||||
// list of the property "result". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
AppendForgeFedRepository(v ForgeFedRepository)
|
||||
// AppendForgeFedTicket appends a Ticket value to the back of a list of
|
||||
// the property "result". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendForgeFedTicket(v ForgeFedTicket)
|
||||
// AppendForgeFedTicketDependency appends a TicketDependency value to the
|
||||
// back of a list of the property "result". Invalidates iterators that
|
||||
// are traversing using Prev.
|
||||
AppendForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// AppendIRI appends an IRI value to the back of a list of the property
|
||||
// "result"
|
||||
AppendIRI(v *url.URL)
|
||||
|
|
@ -1030,6 +950,10 @@ type ActivityStreamsResultProperty interface {
|
|||
// property "result". Invalidates iterators that are traversing using
|
||||
// Prev.
|
||||
AppendTootEmoji(v TootEmoji)
|
||||
// AppendTootHashtag appends a Hashtag value to the back of a list of the
|
||||
// property "result". Invalidates iterators that are traversing using
|
||||
// Prev.
|
||||
AppendTootHashtag(v TootHashtag)
|
||||
// AppendTootIdentityProof appends a IdentityProof value to the back of a
|
||||
// list of the property "result". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
|
|
@ -1274,30 +1198,6 @@ type ActivityStreamsResultProperty interface {
|
|||
// for a property "result". Existing elements at that index and higher
|
||||
// are shifted back once. Invalidates all iterators.
|
||||
InsertActivityStreamsView(idx int, v ActivityStreamsView)
|
||||
// InsertForgeFedBranch inserts a Branch value at the specified index for
|
||||
// a property "result". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedBranch(idx int, v ForgeFedBranch)
|
||||
// InsertForgeFedCommit inserts a Commit value at the specified index for
|
||||
// a property "result". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedCommit(idx int, v ForgeFedCommit)
|
||||
// InsertForgeFedPush inserts a Push value at the specified index for a
|
||||
// property "result". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedPush(idx int, v ForgeFedPush)
|
||||
// InsertForgeFedRepository inserts a Repository value at the specified
|
||||
// index for a property "result". Existing elements at that index and
|
||||
// higher are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedRepository(idx int, v ForgeFedRepository)
|
||||
// InsertForgeFedTicket inserts a Ticket value at the specified index for
|
||||
// a property "result". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedTicket(idx int, v ForgeFedTicket)
|
||||
// InsertForgeFedTicketDependency inserts a TicketDependency value at the
|
||||
// specified index for a property "result". Existing elements at that
|
||||
// index and higher are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
|
||||
// Insert inserts an IRI value at the specified index for a property
|
||||
// "result". Existing elements at that index and higher are shifted
|
||||
// back once. Invalidates all iterators.
|
||||
|
|
@ -1310,6 +1210,10 @@ type ActivityStreamsResultProperty interface {
|
|||
// property "result". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertTootEmoji(idx int, v TootEmoji)
|
||||
// InsertTootHashtag inserts a Hashtag value at the specified index for a
|
||||
// property "result". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertTootHashtag(idx int, v TootHashtag)
|
||||
// InsertTootIdentityProof inserts a IdentityProof value at the specified
|
||||
// index for a property "result". Existing elements at that index and
|
||||
// higher are shifted back once. Invalidates all iterators.
|
||||
|
|
@ -1508,25 +1412,6 @@ type ActivityStreamsResultProperty interface {
|
|||
// PrependActivityStreamsView prepends a View value to the front of a list
|
||||
// of the property "result". Invalidates all iterators.
|
||||
PrependActivityStreamsView(v ActivityStreamsView)
|
||||
// PrependForgeFedBranch prepends a Branch value to the front of a list of
|
||||
// the property "result". Invalidates all iterators.
|
||||
PrependForgeFedBranch(v ForgeFedBranch)
|
||||
// PrependForgeFedCommit prepends a Commit value to the front of a list of
|
||||
// the property "result". Invalidates all iterators.
|
||||
PrependForgeFedCommit(v ForgeFedCommit)
|
||||
// PrependForgeFedPush prepends a Push value to the front of a list of the
|
||||
// property "result". Invalidates all iterators.
|
||||
PrependForgeFedPush(v ForgeFedPush)
|
||||
// PrependForgeFedRepository prepends a Repository value to the front of a
|
||||
// list of the property "result". Invalidates all iterators.
|
||||
PrependForgeFedRepository(v ForgeFedRepository)
|
||||
// PrependForgeFedTicket prepends a Ticket value to the front of a list of
|
||||
// the property "result". Invalidates all iterators.
|
||||
PrependForgeFedTicket(v ForgeFedTicket)
|
||||
// PrependForgeFedTicketDependency prepends a TicketDependency value to
|
||||
// the front of a list of the property "result". Invalidates all
|
||||
// iterators.
|
||||
PrependForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// PrependIRI prepends an IRI value to the front of a list of the property
|
||||
// "result".
|
||||
PrependIRI(v *url.URL)
|
||||
|
|
@ -1536,6 +1421,9 @@ type ActivityStreamsResultProperty interface {
|
|||
// PrependTootEmoji prepends a Emoji value to the front of a list of the
|
||||
// property "result". Invalidates all iterators.
|
||||
PrependTootEmoji(v TootEmoji)
|
||||
// PrependTootHashtag prepends a Hashtag value to the front of a list of
|
||||
// the property "result". Invalidates all iterators.
|
||||
PrependTootHashtag(v TootHashtag)
|
||||
// PrependTootIdentityProof prepends a IdentityProof value to the front of
|
||||
// a list of the property "result". Invalidates all iterators.
|
||||
PrependTootIdentityProof(v TootIdentityProof)
|
||||
|
|
@ -1769,30 +1657,6 @@ type ActivityStreamsResultProperty interface {
|
|||
// for the property "result". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetActivityStreamsView(idx int, v ActivityStreamsView)
|
||||
// SetForgeFedBranch sets a Branch value to be at the specified index for
|
||||
// the property "result". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedBranch(idx int, v ForgeFedBranch)
|
||||
// SetForgeFedCommit sets a Commit value to be at the specified index for
|
||||
// the property "result". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedCommit(idx int, v ForgeFedCommit)
|
||||
// SetForgeFedPush sets a Push value to be at the specified index for the
|
||||
// property "result". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedPush(idx int, v ForgeFedPush)
|
||||
// SetForgeFedRepository sets a Repository value to be at the specified
|
||||
// index for the property "result". Panics if the index is out of
|
||||
// bounds. Invalidates all iterators.
|
||||
SetForgeFedRepository(idx int, v ForgeFedRepository)
|
||||
// SetForgeFedTicket sets a Ticket value to be at the specified index for
|
||||
// the property "result". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedTicket(idx int, v ForgeFedTicket)
|
||||
// SetForgeFedTicketDependency sets a TicketDependency value to be at the
|
||||
// specified index for the property "result". Panics if the index is
|
||||
// out of bounds. Invalidates all iterators.
|
||||
SetForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
|
||||
// SetIRI sets an IRI value to be at the specified index for the property
|
||||
// "result". Panics if the index is out of bounds.
|
||||
SetIRI(idx int, v *url.URL)
|
||||
|
|
@ -1804,6 +1668,10 @@ type ActivityStreamsResultProperty interface {
|
|||
// property "result". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetTootEmoji(idx int, v TootEmoji)
|
||||
// SetTootHashtag sets a Hashtag value to be at the specified index for
|
||||
// the property "result". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetTootHashtag(idx int, v TootHashtag)
|
||||
// SetTootIdentityProof sets a IdentityProof value to be at the specified
|
||||
// index for the property "result". Panics if the index is out of
|
||||
// bounds. Invalidates all iterators.
|
||||
|
|
|
|||
|
|
@ -247,29 +247,6 @@ type ActivityStreamsSourceProperty interface {
|
|||
// IsActivityStreamsView returns false, GetActivityStreamsView will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsView() ActivityStreamsView
|
||||
// GetForgeFedBranch returns the value of this property. When
|
||||
// IsForgeFedBranch returns false, GetForgeFedBranch will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedBranch() ForgeFedBranch
|
||||
// GetForgeFedCommit returns the value of this property. When
|
||||
// IsForgeFedCommit returns false, GetForgeFedCommit will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedCommit() ForgeFedCommit
|
||||
// GetForgeFedPush returns the value of this property. When IsForgeFedPush
|
||||
// returns false, GetForgeFedPush will return an arbitrary value.
|
||||
GetForgeFedPush() ForgeFedPush
|
||||
// GetForgeFedRepository returns the value of this property. When
|
||||
// IsForgeFedRepository returns false, GetForgeFedRepository will
|
||||
// return an arbitrary value.
|
||||
GetForgeFedRepository() ForgeFedRepository
|
||||
// GetForgeFedTicket returns the value of this property. When
|
||||
// IsForgeFedTicket returns false, GetForgeFedTicket will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedTicket() ForgeFedTicket
|
||||
// GetForgeFedTicketDependency returns the value of this property. When
|
||||
// IsForgeFedTicketDependency returns false,
|
||||
// GetForgeFedTicketDependency will return an arbitrary value.
|
||||
GetForgeFedTicketDependency() ForgeFedTicketDependency
|
||||
// GetIRI returns the IRI of this property. When IsIRI returns false,
|
||||
// GetIRI will return an arbitrary value.
|
||||
GetIRI() *url.URL
|
||||
|
|
@ -280,6 +257,9 @@ type ActivityStreamsSourceProperty interface {
|
|||
// GetTootEmoji returns the value of this property. When IsTootEmoji
|
||||
// returns false, GetTootEmoji will return an arbitrary value.
|
||||
GetTootEmoji() TootEmoji
|
||||
// GetTootHashtag returns the value of this property. When IsTootHashtag
|
||||
// returns false, GetTootHashtag will return an arbitrary value.
|
||||
GetTootHashtag() TootHashtag
|
||||
// GetTootIdentityProof returns the value of this property. When
|
||||
// IsTootIdentityProof returns false, GetTootIdentityProof will return
|
||||
// an arbitrary value.
|
||||
|
|
@ -522,31 +502,6 @@ type ActivityStreamsSourceProperty interface {
|
|||
// "View". When true, use the GetActivityStreamsView and
|
||||
// SetActivityStreamsView methods to access and set this property.
|
||||
IsActivityStreamsView() bool
|
||||
// IsForgeFedBranch returns true if this property has a type of "Branch".
|
||||
// When true, use the GetForgeFedBranch and SetForgeFedBranch methods
|
||||
// to access and set this property.
|
||||
IsForgeFedBranch() bool
|
||||
// IsForgeFedCommit returns true if this property has a type of "Commit".
|
||||
// When true, use the GetForgeFedCommit and SetForgeFedCommit methods
|
||||
// to access and set this property.
|
||||
IsForgeFedCommit() bool
|
||||
// IsForgeFedPush returns true if this property has a type of "Push". When
|
||||
// true, use the GetForgeFedPush and SetForgeFedPush methods to access
|
||||
// and set this property.
|
||||
IsForgeFedPush() bool
|
||||
// IsForgeFedRepository returns true if this property has a type of
|
||||
// "Repository". When true, use the GetForgeFedRepository and
|
||||
// SetForgeFedRepository methods to access and set this property.
|
||||
IsForgeFedRepository() bool
|
||||
// IsForgeFedTicket returns true if this property has a type of "Ticket".
|
||||
// When true, use the GetForgeFedTicket and SetForgeFedTicket methods
|
||||
// to access and set this property.
|
||||
IsForgeFedTicket() bool
|
||||
// IsForgeFedTicketDependency returns true if this property has a type of
|
||||
// "TicketDependency". When true, use the GetForgeFedTicketDependency
|
||||
// and SetForgeFedTicketDependency methods to access and set this
|
||||
// property.
|
||||
IsForgeFedTicketDependency() bool
|
||||
// IsIRI returns true if this property is an IRI. When true, use GetIRI
|
||||
// and SetIRI to access and set this property
|
||||
IsIRI() bool
|
||||
|
|
@ -558,6 +513,10 @@ type ActivityStreamsSourceProperty interface {
|
|||
// true, use the GetTootEmoji and SetTootEmoji methods to access and
|
||||
// set this property.
|
||||
IsTootEmoji() bool
|
||||
// IsTootHashtag returns true if this property has a type of "Hashtag".
|
||||
// When true, use the GetTootHashtag and SetTootHashtag methods to
|
||||
// access and set this property.
|
||||
IsTootHashtag() bool
|
||||
// IsTootIdentityProof returns true if this property has a type of
|
||||
// "IdentityProof". When true, use the GetTootIdentityProof and
|
||||
// SetTootIdentityProof methods to access and set this property.
|
||||
|
|
@ -748,24 +707,6 @@ type ActivityStreamsSourceProperty interface {
|
|||
// SetActivityStreamsView sets the value of this property. Calling
|
||||
// IsActivityStreamsView afterwards returns true.
|
||||
SetActivityStreamsView(v ActivityStreamsView)
|
||||
// SetForgeFedBranch sets the value of this property. Calling
|
||||
// IsForgeFedBranch afterwards returns true.
|
||||
SetForgeFedBranch(v ForgeFedBranch)
|
||||
// SetForgeFedCommit sets the value of this property. Calling
|
||||
// IsForgeFedCommit afterwards returns true.
|
||||
SetForgeFedCommit(v ForgeFedCommit)
|
||||
// SetForgeFedPush sets the value of this property. Calling IsForgeFedPush
|
||||
// afterwards returns true.
|
||||
SetForgeFedPush(v ForgeFedPush)
|
||||
// SetForgeFedRepository sets the value of this property. Calling
|
||||
// IsForgeFedRepository afterwards returns true.
|
||||
SetForgeFedRepository(v ForgeFedRepository)
|
||||
// SetForgeFedTicket sets the value of this property. Calling
|
||||
// IsForgeFedTicket afterwards returns true.
|
||||
SetForgeFedTicket(v ForgeFedTicket)
|
||||
// SetForgeFedTicketDependency sets the value of this property. Calling
|
||||
// IsForgeFedTicketDependency afterwards returns true.
|
||||
SetForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// SetIRI sets the value of this property. Calling IsIRI afterwards
|
||||
// returns true.
|
||||
SetIRI(v *url.URL)
|
||||
|
|
@ -775,6 +716,9 @@ type ActivityStreamsSourceProperty interface {
|
|||
// SetTootEmoji sets the value of this property. Calling IsTootEmoji
|
||||
// afterwards returns true.
|
||||
SetTootEmoji(v TootEmoji)
|
||||
// SetTootHashtag sets the value of this property. Calling IsTootHashtag
|
||||
// afterwards returns true.
|
||||
SetTootHashtag(v TootHashtag)
|
||||
// SetTootIdentityProof sets the value of this property. Calling
|
||||
// IsTootIdentityProof afterwards returns true.
|
||||
SetTootIdentityProof(v TootIdentityProof)
|
||||
|
|
|
|||
|
|
@ -244,29 +244,6 @@ type ActivityStreamsSubjectProperty interface {
|
|||
// IsActivityStreamsView returns false, GetActivityStreamsView will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsView() ActivityStreamsView
|
||||
// GetForgeFedBranch returns the value of this property. When
|
||||
// IsForgeFedBranch returns false, GetForgeFedBranch will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedBranch() ForgeFedBranch
|
||||
// GetForgeFedCommit returns the value of this property. When
|
||||
// IsForgeFedCommit returns false, GetForgeFedCommit will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedCommit() ForgeFedCommit
|
||||
// GetForgeFedPush returns the value of this property. When IsForgeFedPush
|
||||
// returns false, GetForgeFedPush will return an arbitrary value.
|
||||
GetForgeFedPush() ForgeFedPush
|
||||
// GetForgeFedRepository returns the value of this property. When
|
||||
// IsForgeFedRepository returns false, GetForgeFedRepository will
|
||||
// return an arbitrary value.
|
||||
GetForgeFedRepository() ForgeFedRepository
|
||||
// GetForgeFedTicket returns the value of this property. When
|
||||
// IsForgeFedTicket returns false, GetForgeFedTicket will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedTicket() ForgeFedTicket
|
||||
// GetForgeFedTicketDependency returns the value of this property. When
|
||||
// IsForgeFedTicketDependency returns false,
|
||||
// GetForgeFedTicketDependency will return an arbitrary value.
|
||||
GetForgeFedTicketDependency() ForgeFedTicketDependency
|
||||
// GetIRI returns the IRI of this property. When IsIRI returns false,
|
||||
// GetIRI will return an arbitrary value.
|
||||
GetIRI() *url.URL
|
||||
|
|
@ -277,6 +254,9 @@ type ActivityStreamsSubjectProperty interface {
|
|||
// GetTootEmoji returns the value of this property. When IsTootEmoji
|
||||
// returns false, GetTootEmoji will return an arbitrary value.
|
||||
GetTootEmoji() TootEmoji
|
||||
// GetTootHashtag returns the value of this property. When IsTootHashtag
|
||||
// returns false, GetTootHashtag will return an arbitrary value.
|
||||
GetTootHashtag() TootHashtag
|
||||
// GetTootIdentityProof returns the value of this property. When
|
||||
// IsTootIdentityProof returns false, GetTootIdentityProof will return
|
||||
// an arbitrary value.
|
||||
|
|
@ -519,31 +499,6 @@ type ActivityStreamsSubjectProperty interface {
|
|||
// "View". When true, use the GetActivityStreamsView and
|
||||
// SetActivityStreamsView methods to access and set this property.
|
||||
IsActivityStreamsView() bool
|
||||
// IsForgeFedBranch returns true if this property has a type of "Branch".
|
||||
// When true, use the GetForgeFedBranch and SetForgeFedBranch methods
|
||||
// to access and set this property.
|
||||
IsForgeFedBranch() bool
|
||||
// IsForgeFedCommit returns true if this property has a type of "Commit".
|
||||
// When true, use the GetForgeFedCommit and SetForgeFedCommit methods
|
||||
// to access and set this property.
|
||||
IsForgeFedCommit() bool
|
||||
// IsForgeFedPush returns true if this property has a type of "Push". When
|
||||
// true, use the GetForgeFedPush and SetForgeFedPush methods to access
|
||||
// and set this property.
|
||||
IsForgeFedPush() bool
|
||||
// IsForgeFedRepository returns true if this property has a type of
|
||||
// "Repository". When true, use the GetForgeFedRepository and
|
||||
// SetForgeFedRepository methods to access and set this property.
|
||||
IsForgeFedRepository() bool
|
||||
// IsForgeFedTicket returns true if this property has a type of "Ticket".
|
||||
// When true, use the GetForgeFedTicket and SetForgeFedTicket methods
|
||||
// to access and set this property.
|
||||
IsForgeFedTicket() bool
|
||||
// IsForgeFedTicketDependency returns true if this property has a type of
|
||||
// "TicketDependency". When true, use the GetForgeFedTicketDependency
|
||||
// and SetForgeFedTicketDependency methods to access and set this
|
||||
// property.
|
||||
IsForgeFedTicketDependency() bool
|
||||
// IsIRI returns true if this property is an IRI. When true, use GetIRI
|
||||
// and SetIRI to access and set this property
|
||||
IsIRI() bool
|
||||
|
|
@ -555,6 +510,10 @@ type ActivityStreamsSubjectProperty interface {
|
|||
// true, use the GetTootEmoji and SetTootEmoji methods to access and
|
||||
// set this property.
|
||||
IsTootEmoji() bool
|
||||
// IsTootHashtag returns true if this property has a type of "Hashtag".
|
||||
// When true, use the GetTootHashtag and SetTootHashtag methods to
|
||||
// access and set this property.
|
||||
IsTootHashtag() bool
|
||||
// IsTootIdentityProof returns true if this property has a type of
|
||||
// "IdentityProof". When true, use the GetTootIdentityProof and
|
||||
// SetTootIdentityProof methods to access and set this property.
|
||||
|
|
@ -745,24 +704,6 @@ type ActivityStreamsSubjectProperty interface {
|
|||
// SetActivityStreamsView sets the value of this property. Calling
|
||||
// IsActivityStreamsView afterwards returns true.
|
||||
SetActivityStreamsView(v ActivityStreamsView)
|
||||
// SetForgeFedBranch sets the value of this property. Calling
|
||||
// IsForgeFedBranch afterwards returns true.
|
||||
SetForgeFedBranch(v ForgeFedBranch)
|
||||
// SetForgeFedCommit sets the value of this property. Calling
|
||||
// IsForgeFedCommit afterwards returns true.
|
||||
SetForgeFedCommit(v ForgeFedCommit)
|
||||
// SetForgeFedPush sets the value of this property. Calling IsForgeFedPush
|
||||
// afterwards returns true.
|
||||
SetForgeFedPush(v ForgeFedPush)
|
||||
// SetForgeFedRepository sets the value of this property. Calling
|
||||
// IsForgeFedRepository afterwards returns true.
|
||||
SetForgeFedRepository(v ForgeFedRepository)
|
||||
// SetForgeFedTicket sets the value of this property. Calling
|
||||
// IsForgeFedTicket afterwards returns true.
|
||||
SetForgeFedTicket(v ForgeFedTicket)
|
||||
// SetForgeFedTicketDependency sets the value of this property. Calling
|
||||
// IsForgeFedTicketDependency afterwards returns true.
|
||||
SetForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// SetIRI sets the value of this property. Calling IsIRI afterwards
|
||||
// returns true.
|
||||
SetIRI(v *url.URL)
|
||||
|
|
@ -772,6 +713,9 @@ type ActivityStreamsSubjectProperty interface {
|
|||
// SetTootEmoji sets the value of this property. Calling IsTootEmoji
|
||||
// afterwards returns true.
|
||||
SetTootEmoji(v TootEmoji)
|
||||
// SetTootHashtag sets the value of this property. Calling IsTootHashtag
|
||||
// afterwards returns true.
|
||||
SetTootHashtag(v TootHashtag)
|
||||
// SetTootIdentityProof sets the value of this property. Calling
|
||||
// IsTootIdentityProof afterwards returns true.
|
||||
SetTootIdentityProof(v TootIdentityProof)
|
||||
|
|
|
|||
|
|
@ -225,29 +225,6 @@ type ActivityStreamsTagPropertyIterator interface {
|
|||
// IsActivityStreamsView returns false, GetActivityStreamsView will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsView() ActivityStreamsView
|
||||
// GetForgeFedBranch returns the value of this property. When
|
||||
// IsForgeFedBranch returns false, GetForgeFedBranch will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedBranch() ForgeFedBranch
|
||||
// GetForgeFedCommit returns the value of this property. When
|
||||
// IsForgeFedCommit returns false, GetForgeFedCommit will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedCommit() ForgeFedCommit
|
||||
// GetForgeFedPush returns the value of this property. When IsForgeFedPush
|
||||
// returns false, GetForgeFedPush will return an arbitrary value.
|
||||
GetForgeFedPush() ForgeFedPush
|
||||
// GetForgeFedRepository returns the value of this property. When
|
||||
// IsForgeFedRepository returns false, GetForgeFedRepository will
|
||||
// return an arbitrary value.
|
||||
GetForgeFedRepository() ForgeFedRepository
|
||||
// GetForgeFedTicket returns the value of this property. When
|
||||
// IsForgeFedTicket returns false, GetForgeFedTicket will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedTicket() ForgeFedTicket
|
||||
// GetForgeFedTicketDependency returns the value of this property. When
|
||||
// IsForgeFedTicketDependency returns false,
|
||||
// GetForgeFedTicketDependency will return an arbitrary value.
|
||||
GetForgeFedTicketDependency() ForgeFedTicketDependency
|
||||
// GetIRI returns the IRI of this property. When IsIRI returns false,
|
||||
// GetIRI will return an arbitrary value.
|
||||
GetIRI() *url.URL
|
||||
|
|
@ -258,6 +235,9 @@ type ActivityStreamsTagPropertyIterator interface {
|
|||
// GetTootEmoji returns the value of this property. When IsTootEmoji
|
||||
// returns false, GetTootEmoji will return an arbitrary value.
|
||||
GetTootEmoji() TootEmoji
|
||||
// GetTootHashtag returns the value of this property. When IsTootHashtag
|
||||
// returns false, GetTootHashtag will return an arbitrary value.
|
||||
GetTootHashtag() TootHashtag
|
||||
// GetTootIdentityProof returns the value of this property. When
|
||||
// IsTootIdentityProof returns false, GetTootIdentityProof will return
|
||||
// an arbitrary value.
|
||||
|
|
@ -500,31 +480,6 @@ type ActivityStreamsTagPropertyIterator interface {
|
|||
// "View". When true, use the GetActivityStreamsView and
|
||||
// SetActivityStreamsView methods to access and set this property.
|
||||
IsActivityStreamsView() bool
|
||||
// IsForgeFedBranch returns true if this property has a type of "Branch".
|
||||
// When true, use the GetForgeFedBranch and SetForgeFedBranch methods
|
||||
// to access and set this property.
|
||||
IsForgeFedBranch() bool
|
||||
// IsForgeFedCommit returns true if this property has a type of "Commit".
|
||||
// When true, use the GetForgeFedCommit and SetForgeFedCommit methods
|
||||
// to access and set this property.
|
||||
IsForgeFedCommit() bool
|
||||
// IsForgeFedPush returns true if this property has a type of "Push". When
|
||||
// true, use the GetForgeFedPush and SetForgeFedPush methods to access
|
||||
// and set this property.
|
||||
IsForgeFedPush() bool
|
||||
// IsForgeFedRepository returns true if this property has a type of
|
||||
// "Repository". When true, use the GetForgeFedRepository and
|
||||
// SetForgeFedRepository methods to access and set this property.
|
||||
IsForgeFedRepository() bool
|
||||
// IsForgeFedTicket returns true if this property has a type of "Ticket".
|
||||
// When true, use the GetForgeFedTicket and SetForgeFedTicket methods
|
||||
// to access and set this property.
|
||||
IsForgeFedTicket() bool
|
||||
// IsForgeFedTicketDependency returns true if this property has a type of
|
||||
// "TicketDependency". When true, use the GetForgeFedTicketDependency
|
||||
// and SetForgeFedTicketDependency methods to access and set this
|
||||
// property.
|
||||
IsForgeFedTicketDependency() bool
|
||||
// IsIRI returns true if this property is an IRI. When true, use GetIRI
|
||||
// and SetIRI to access and set this property
|
||||
IsIRI() bool
|
||||
|
|
@ -536,6 +491,10 @@ type ActivityStreamsTagPropertyIterator interface {
|
|||
// true, use the GetTootEmoji and SetTootEmoji methods to access and
|
||||
// set this property.
|
||||
IsTootEmoji() bool
|
||||
// IsTootHashtag returns true if this property has a type of "Hashtag".
|
||||
// When true, use the GetTootHashtag and SetTootHashtag methods to
|
||||
// access and set this property.
|
||||
IsTootHashtag() bool
|
||||
// IsTootIdentityProof returns true if this property has a type of
|
||||
// "IdentityProof". When true, use the GetTootIdentityProof and
|
||||
// SetTootIdentityProof methods to access and set this property.
|
||||
|
|
@ -725,24 +684,6 @@ type ActivityStreamsTagPropertyIterator interface {
|
|||
// SetActivityStreamsView sets the value of this property. Calling
|
||||
// IsActivityStreamsView afterwards returns true.
|
||||
SetActivityStreamsView(v ActivityStreamsView)
|
||||
// SetForgeFedBranch sets the value of this property. Calling
|
||||
// IsForgeFedBranch afterwards returns true.
|
||||
SetForgeFedBranch(v ForgeFedBranch)
|
||||
// SetForgeFedCommit sets the value of this property. Calling
|
||||
// IsForgeFedCommit afterwards returns true.
|
||||
SetForgeFedCommit(v ForgeFedCommit)
|
||||
// SetForgeFedPush sets the value of this property. Calling IsForgeFedPush
|
||||
// afterwards returns true.
|
||||
SetForgeFedPush(v ForgeFedPush)
|
||||
// SetForgeFedRepository sets the value of this property. Calling
|
||||
// IsForgeFedRepository afterwards returns true.
|
||||
SetForgeFedRepository(v ForgeFedRepository)
|
||||
// SetForgeFedTicket sets the value of this property. Calling
|
||||
// IsForgeFedTicket afterwards returns true.
|
||||
SetForgeFedTicket(v ForgeFedTicket)
|
||||
// SetForgeFedTicketDependency sets the value of this property. Calling
|
||||
// IsForgeFedTicketDependency afterwards returns true.
|
||||
SetForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// SetIRI sets the value of this property. Calling IsIRI afterwards
|
||||
// returns true.
|
||||
SetIRI(v *url.URL)
|
||||
|
|
@ -752,6 +693,9 @@ type ActivityStreamsTagPropertyIterator interface {
|
|||
// SetTootEmoji sets the value of this property. Calling IsTootEmoji
|
||||
// afterwards returns true.
|
||||
SetTootEmoji(v TootEmoji)
|
||||
// SetTootHashtag sets the value of this property. Calling IsTootHashtag
|
||||
// afterwards returns true.
|
||||
SetTootHashtag(v TootHashtag)
|
||||
// SetTootIdentityProof sets the value of this property. Calling
|
||||
// IsTootIdentityProof afterwards returns true.
|
||||
SetTootIdentityProof(v TootIdentityProof)
|
||||
|
|
@ -993,30 +937,6 @@ type ActivityStreamsTagProperty interface {
|
|||
// the property "tag". Invalidates iterators that are traversing using
|
||||
// Prev.
|
||||
AppendActivityStreamsView(v ActivityStreamsView)
|
||||
// AppendForgeFedBranch appends a Branch value to the back of a list of
|
||||
// the property "tag". Invalidates iterators that are traversing using
|
||||
// Prev.
|
||||
AppendForgeFedBranch(v ForgeFedBranch)
|
||||
// AppendForgeFedCommit appends a Commit value to the back of a list of
|
||||
// the property "tag". Invalidates iterators that are traversing using
|
||||
// Prev.
|
||||
AppendForgeFedCommit(v ForgeFedCommit)
|
||||
// AppendForgeFedPush appends a Push value to the back of a list of the
|
||||
// property "tag". Invalidates iterators that are traversing using
|
||||
// Prev.
|
||||
AppendForgeFedPush(v ForgeFedPush)
|
||||
// AppendForgeFedRepository appends a Repository value to the back of a
|
||||
// list of the property "tag". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
AppendForgeFedRepository(v ForgeFedRepository)
|
||||
// AppendForgeFedTicket appends a Ticket value to the back of a list of
|
||||
// the property "tag". Invalidates iterators that are traversing using
|
||||
// Prev.
|
||||
AppendForgeFedTicket(v ForgeFedTicket)
|
||||
// AppendForgeFedTicketDependency appends a TicketDependency value to the
|
||||
// back of a list of the property "tag". Invalidates iterators that
|
||||
// are traversing using Prev.
|
||||
AppendForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// AppendIRI appends an IRI value to the back of a list of the property
|
||||
// "tag"
|
||||
AppendIRI(v *url.URL)
|
||||
|
|
@ -1028,6 +948,10 @@ type ActivityStreamsTagProperty interface {
|
|||
// property "tag". Invalidates iterators that are traversing using
|
||||
// Prev.
|
||||
AppendTootEmoji(v TootEmoji)
|
||||
// AppendTootHashtag appends a Hashtag value to the back of a list of the
|
||||
// property "tag". Invalidates iterators that are traversing using
|
||||
// Prev.
|
||||
AppendTootHashtag(v TootHashtag)
|
||||
// AppendTootIdentityProof appends a IdentityProof value to the back of a
|
||||
// list of the property "tag". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
|
|
@ -1269,30 +1193,6 @@ type ActivityStreamsTagProperty interface {
|
|||
// for a property "tag". Existing elements at that index and higher
|
||||
// are shifted back once. Invalidates all iterators.
|
||||
InsertActivityStreamsView(idx int, v ActivityStreamsView)
|
||||
// InsertForgeFedBranch inserts a Branch value at the specified index for
|
||||
// a property "tag". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedBranch(idx int, v ForgeFedBranch)
|
||||
// InsertForgeFedCommit inserts a Commit value at the specified index for
|
||||
// a property "tag". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedCommit(idx int, v ForgeFedCommit)
|
||||
// InsertForgeFedPush inserts a Push value at the specified index for a
|
||||
// property "tag". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedPush(idx int, v ForgeFedPush)
|
||||
// InsertForgeFedRepository inserts a Repository value at the specified
|
||||
// index for a property "tag". Existing elements at that index and
|
||||
// higher are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedRepository(idx int, v ForgeFedRepository)
|
||||
// InsertForgeFedTicket inserts a Ticket value at the specified index for
|
||||
// a property "tag". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedTicket(idx int, v ForgeFedTicket)
|
||||
// InsertForgeFedTicketDependency inserts a TicketDependency value at the
|
||||
// specified index for a property "tag". Existing elements at that
|
||||
// index and higher are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
|
||||
// Insert inserts an IRI value at the specified index for a property
|
||||
// "tag". Existing elements at that index and higher are shifted back
|
||||
// once. Invalidates all iterators.
|
||||
|
|
@ -1305,6 +1205,10 @@ type ActivityStreamsTagProperty interface {
|
|||
// property "tag". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertTootEmoji(idx int, v TootEmoji)
|
||||
// InsertTootHashtag inserts a Hashtag value at the specified index for a
|
||||
// property "tag". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertTootHashtag(idx int, v TootHashtag)
|
||||
// InsertTootIdentityProof inserts a IdentityProof value at the specified
|
||||
// index for a property "tag". Existing elements at that index and
|
||||
// higher are shifted back once. Invalidates all iterators.
|
||||
|
|
@ -1503,25 +1407,6 @@ type ActivityStreamsTagProperty interface {
|
|||
// PrependActivityStreamsView prepends a View value to the front of a list
|
||||
// of the property "tag". Invalidates all iterators.
|
||||
PrependActivityStreamsView(v ActivityStreamsView)
|
||||
// PrependForgeFedBranch prepends a Branch value to the front of a list of
|
||||
// the property "tag". Invalidates all iterators.
|
||||
PrependForgeFedBranch(v ForgeFedBranch)
|
||||
// PrependForgeFedCommit prepends a Commit value to the front of a list of
|
||||
// the property "tag". Invalidates all iterators.
|
||||
PrependForgeFedCommit(v ForgeFedCommit)
|
||||
// PrependForgeFedPush prepends a Push value to the front of a list of the
|
||||
// property "tag". Invalidates all iterators.
|
||||
PrependForgeFedPush(v ForgeFedPush)
|
||||
// PrependForgeFedRepository prepends a Repository value to the front of a
|
||||
// list of the property "tag". Invalidates all iterators.
|
||||
PrependForgeFedRepository(v ForgeFedRepository)
|
||||
// PrependForgeFedTicket prepends a Ticket value to the front of a list of
|
||||
// the property "tag". Invalidates all iterators.
|
||||
PrependForgeFedTicket(v ForgeFedTicket)
|
||||
// PrependForgeFedTicketDependency prepends a TicketDependency value to
|
||||
// the front of a list of the property "tag". Invalidates all
|
||||
// iterators.
|
||||
PrependForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// PrependIRI prepends an IRI value to the front of a list of the property
|
||||
// "tag".
|
||||
PrependIRI(v *url.URL)
|
||||
|
|
@ -1531,6 +1416,9 @@ type ActivityStreamsTagProperty interface {
|
|||
// PrependTootEmoji prepends a Emoji value to the front of a list of the
|
||||
// property "tag". Invalidates all iterators.
|
||||
PrependTootEmoji(v TootEmoji)
|
||||
// PrependTootHashtag prepends a Hashtag value to the front of a list of
|
||||
// the property "tag". Invalidates all iterators.
|
||||
PrependTootHashtag(v TootHashtag)
|
||||
// PrependTootIdentityProof prepends a IdentityProof value to the front of
|
||||
// a list of the property "tag". Invalidates all iterators.
|
||||
PrependTootIdentityProof(v TootIdentityProof)
|
||||
|
|
@ -1764,30 +1652,6 @@ type ActivityStreamsTagProperty interface {
|
|||
// for the property "tag". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetActivityStreamsView(idx int, v ActivityStreamsView)
|
||||
// SetForgeFedBranch sets a Branch value to be at the specified index for
|
||||
// the property "tag". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedBranch(idx int, v ForgeFedBranch)
|
||||
// SetForgeFedCommit sets a Commit value to be at the specified index for
|
||||
// the property "tag". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedCommit(idx int, v ForgeFedCommit)
|
||||
// SetForgeFedPush sets a Push value to be at the specified index for the
|
||||
// property "tag". Panics if the index is out of bounds. Invalidates
|
||||
// all iterators.
|
||||
SetForgeFedPush(idx int, v ForgeFedPush)
|
||||
// SetForgeFedRepository sets a Repository value to be at the specified
|
||||
// index for the property "tag". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedRepository(idx int, v ForgeFedRepository)
|
||||
// SetForgeFedTicket sets a Ticket value to be at the specified index for
|
||||
// the property "tag". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedTicket(idx int, v ForgeFedTicket)
|
||||
// SetForgeFedTicketDependency sets a TicketDependency value to be at the
|
||||
// specified index for the property "tag". Panics if the index is out
|
||||
// of bounds. Invalidates all iterators.
|
||||
SetForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
|
||||
// SetIRI sets an IRI value to be at the specified index for the property
|
||||
// "tag". Panics if the index is out of bounds.
|
||||
SetIRI(idx int, v *url.URL)
|
||||
|
|
@ -1799,6 +1663,10 @@ type ActivityStreamsTagProperty interface {
|
|||
// property "tag". Panics if the index is out of bounds. Invalidates
|
||||
// all iterators.
|
||||
SetTootEmoji(idx int, v TootEmoji)
|
||||
// SetTootHashtag sets a Hashtag value to be at the specified index for
|
||||
// the property "tag". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetTootHashtag(idx int, v TootHashtag)
|
||||
// SetTootIdentityProof sets a IdentityProof value to be at the specified
|
||||
// index for the property "tag". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
|
|
|
|||
|
|
@ -225,29 +225,6 @@ type ActivityStreamsTargetPropertyIterator interface {
|
|||
// IsActivityStreamsView returns false, GetActivityStreamsView will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsView() ActivityStreamsView
|
||||
// GetForgeFedBranch returns the value of this property. When
|
||||
// IsForgeFedBranch returns false, GetForgeFedBranch will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedBranch() ForgeFedBranch
|
||||
// GetForgeFedCommit returns the value of this property. When
|
||||
// IsForgeFedCommit returns false, GetForgeFedCommit will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedCommit() ForgeFedCommit
|
||||
// GetForgeFedPush returns the value of this property. When IsForgeFedPush
|
||||
// returns false, GetForgeFedPush will return an arbitrary value.
|
||||
GetForgeFedPush() ForgeFedPush
|
||||
// GetForgeFedRepository returns the value of this property. When
|
||||
// IsForgeFedRepository returns false, GetForgeFedRepository will
|
||||
// return an arbitrary value.
|
||||
GetForgeFedRepository() ForgeFedRepository
|
||||
// GetForgeFedTicket returns the value of this property. When
|
||||
// IsForgeFedTicket returns false, GetForgeFedTicket will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedTicket() ForgeFedTicket
|
||||
// GetForgeFedTicketDependency returns the value of this property. When
|
||||
// IsForgeFedTicketDependency returns false,
|
||||
// GetForgeFedTicketDependency will return an arbitrary value.
|
||||
GetForgeFedTicketDependency() ForgeFedTicketDependency
|
||||
// GetIRI returns the IRI of this property. When IsIRI returns false,
|
||||
// GetIRI will return an arbitrary value.
|
||||
GetIRI() *url.URL
|
||||
|
|
@ -258,6 +235,9 @@ type ActivityStreamsTargetPropertyIterator interface {
|
|||
// GetTootEmoji returns the value of this property. When IsTootEmoji
|
||||
// returns false, GetTootEmoji will return an arbitrary value.
|
||||
GetTootEmoji() TootEmoji
|
||||
// GetTootHashtag returns the value of this property. When IsTootHashtag
|
||||
// returns false, GetTootHashtag will return an arbitrary value.
|
||||
GetTootHashtag() TootHashtag
|
||||
// GetTootIdentityProof returns the value of this property. When
|
||||
// IsTootIdentityProof returns false, GetTootIdentityProof will return
|
||||
// an arbitrary value.
|
||||
|
|
@ -500,31 +480,6 @@ type ActivityStreamsTargetPropertyIterator interface {
|
|||
// "View". When true, use the GetActivityStreamsView and
|
||||
// SetActivityStreamsView methods to access and set this property.
|
||||
IsActivityStreamsView() bool
|
||||
// IsForgeFedBranch returns true if this property has a type of "Branch".
|
||||
// When true, use the GetForgeFedBranch and SetForgeFedBranch methods
|
||||
// to access and set this property.
|
||||
IsForgeFedBranch() bool
|
||||
// IsForgeFedCommit returns true if this property has a type of "Commit".
|
||||
// When true, use the GetForgeFedCommit and SetForgeFedCommit methods
|
||||
// to access and set this property.
|
||||
IsForgeFedCommit() bool
|
||||
// IsForgeFedPush returns true if this property has a type of "Push". When
|
||||
// true, use the GetForgeFedPush and SetForgeFedPush methods to access
|
||||
// and set this property.
|
||||
IsForgeFedPush() bool
|
||||
// IsForgeFedRepository returns true if this property has a type of
|
||||
// "Repository". When true, use the GetForgeFedRepository and
|
||||
// SetForgeFedRepository methods to access and set this property.
|
||||
IsForgeFedRepository() bool
|
||||
// IsForgeFedTicket returns true if this property has a type of "Ticket".
|
||||
// When true, use the GetForgeFedTicket and SetForgeFedTicket methods
|
||||
// to access and set this property.
|
||||
IsForgeFedTicket() bool
|
||||
// IsForgeFedTicketDependency returns true if this property has a type of
|
||||
// "TicketDependency". When true, use the GetForgeFedTicketDependency
|
||||
// and SetForgeFedTicketDependency methods to access and set this
|
||||
// property.
|
||||
IsForgeFedTicketDependency() bool
|
||||
// IsIRI returns true if this property is an IRI. When true, use GetIRI
|
||||
// and SetIRI to access and set this property
|
||||
IsIRI() bool
|
||||
|
|
@ -536,6 +491,10 @@ type ActivityStreamsTargetPropertyIterator interface {
|
|||
// true, use the GetTootEmoji and SetTootEmoji methods to access and
|
||||
// set this property.
|
||||
IsTootEmoji() bool
|
||||
// IsTootHashtag returns true if this property has a type of "Hashtag".
|
||||
// When true, use the GetTootHashtag and SetTootHashtag methods to
|
||||
// access and set this property.
|
||||
IsTootHashtag() bool
|
||||
// IsTootIdentityProof returns true if this property has a type of
|
||||
// "IdentityProof". When true, use the GetTootIdentityProof and
|
||||
// SetTootIdentityProof methods to access and set this property.
|
||||
|
|
@ -725,24 +684,6 @@ type ActivityStreamsTargetPropertyIterator interface {
|
|||
// SetActivityStreamsView sets the value of this property. Calling
|
||||
// IsActivityStreamsView afterwards returns true.
|
||||
SetActivityStreamsView(v ActivityStreamsView)
|
||||
// SetForgeFedBranch sets the value of this property. Calling
|
||||
// IsForgeFedBranch afterwards returns true.
|
||||
SetForgeFedBranch(v ForgeFedBranch)
|
||||
// SetForgeFedCommit sets the value of this property. Calling
|
||||
// IsForgeFedCommit afterwards returns true.
|
||||
SetForgeFedCommit(v ForgeFedCommit)
|
||||
// SetForgeFedPush sets the value of this property. Calling IsForgeFedPush
|
||||
// afterwards returns true.
|
||||
SetForgeFedPush(v ForgeFedPush)
|
||||
// SetForgeFedRepository sets the value of this property. Calling
|
||||
// IsForgeFedRepository afterwards returns true.
|
||||
SetForgeFedRepository(v ForgeFedRepository)
|
||||
// SetForgeFedTicket sets the value of this property. Calling
|
||||
// IsForgeFedTicket afterwards returns true.
|
||||
SetForgeFedTicket(v ForgeFedTicket)
|
||||
// SetForgeFedTicketDependency sets the value of this property. Calling
|
||||
// IsForgeFedTicketDependency afterwards returns true.
|
||||
SetForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// SetIRI sets the value of this property. Calling IsIRI afterwards
|
||||
// returns true.
|
||||
SetIRI(v *url.URL)
|
||||
|
|
@ -752,6 +693,9 @@ type ActivityStreamsTargetPropertyIterator interface {
|
|||
// SetTootEmoji sets the value of this property. Calling IsTootEmoji
|
||||
// afterwards returns true.
|
||||
SetTootEmoji(v TootEmoji)
|
||||
// SetTootHashtag sets the value of this property. Calling IsTootHashtag
|
||||
// afterwards returns true.
|
||||
SetTootHashtag(v TootHashtag)
|
||||
// SetTootIdentityProof sets the value of this property. Calling
|
||||
// IsTootIdentityProof afterwards returns true.
|
||||
SetTootIdentityProof(v TootIdentityProof)
|
||||
|
|
@ -1003,30 +947,6 @@ type ActivityStreamsTargetProperty interface {
|
|||
// the property "target". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendActivityStreamsView(v ActivityStreamsView)
|
||||
// AppendForgeFedBranch appends a Branch value to the back of a list of
|
||||
// the property "target". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendForgeFedBranch(v ForgeFedBranch)
|
||||
// AppendForgeFedCommit appends a Commit value to the back of a list of
|
||||
// the property "target". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendForgeFedCommit(v ForgeFedCommit)
|
||||
// AppendForgeFedPush appends a Push value to the back of a list of the
|
||||
// property "target". Invalidates iterators that are traversing using
|
||||
// Prev.
|
||||
AppendForgeFedPush(v ForgeFedPush)
|
||||
// AppendForgeFedRepository appends a Repository value to the back of a
|
||||
// list of the property "target". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
AppendForgeFedRepository(v ForgeFedRepository)
|
||||
// AppendForgeFedTicket appends a Ticket value to the back of a list of
|
||||
// the property "target". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendForgeFedTicket(v ForgeFedTicket)
|
||||
// AppendForgeFedTicketDependency appends a TicketDependency value to the
|
||||
// back of a list of the property "target". Invalidates iterators that
|
||||
// are traversing using Prev.
|
||||
AppendForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// AppendIRI appends an IRI value to the back of a list of the property
|
||||
// "target"
|
||||
AppendIRI(v *url.URL)
|
||||
|
|
@ -1038,6 +958,10 @@ type ActivityStreamsTargetProperty interface {
|
|||
// property "target". Invalidates iterators that are traversing using
|
||||
// Prev.
|
||||
AppendTootEmoji(v TootEmoji)
|
||||
// AppendTootHashtag appends a Hashtag value to the back of a list of the
|
||||
// property "target". Invalidates iterators that are traversing using
|
||||
// Prev.
|
||||
AppendTootHashtag(v TootHashtag)
|
||||
// AppendTootIdentityProof appends a IdentityProof value to the back of a
|
||||
// list of the property "target". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
|
|
@ -1282,30 +1206,6 @@ type ActivityStreamsTargetProperty interface {
|
|||
// for a property "target". Existing elements at that index and higher
|
||||
// are shifted back once. Invalidates all iterators.
|
||||
InsertActivityStreamsView(idx int, v ActivityStreamsView)
|
||||
// InsertForgeFedBranch inserts a Branch value at the specified index for
|
||||
// a property "target". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedBranch(idx int, v ForgeFedBranch)
|
||||
// InsertForgeFedCommit inserts a Commit value at the specified index for
|
||||
// a property "target". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedCommit(idx int, v ForgeFedCommit)
|
||||
// InsertForgeFedPush inserts a Push value at the specified index for a
|
||||
// property "target". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedPush(idx int, v ForgeFedPush)
|
||||
// InsertForgeFedRepository inserts a Repository value at the specified
|
||||
// index for a property "target". Existing elements at that index and
|
||||
// higher are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedRepository(idx int, v ForgeFedRepository)
|
||||
// InsertForgeFedTicket inserts a Ticket value at the specified index for
|
||||
// a property "target". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedTicket(idx int, v ForgeFedTicket)
|
||||
// InsertForgeFedTicketDependency inserts a TicketDependency value at the
|
||||
// specified index for a property "target". Existing elements at that
|
||||
// index and higher are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
|
||||
// Insert inserts an IRI value at the specified index for a property
|
||||
// "target". Existing elements at that index and higher are shifted
|
||||
// back once. Invalidates all iterators.
|
||||
|
|
@ -1318,6 +1218,10 @@ type ActivityStreamsTargetProperty interface {
|
|||
// property "target". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertTootEmoji(idx int, v TootEmoji)
|
||||
// InsertTootHashtag inserts a Hashtag value at the specified index for a
|
||||
// property "target". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertTootHashtag(idx int, v TootHashtag)
|
||||
// InsertTootIdentityProof inserts a IdentityProof value at the specified
|
||||
// index for a property "target". Existing elements at that index and
|
||||
// higher are shifted back once. Invalidates all iterators.
|
||||
|
|
@ -1516,25 +1420,6 @@ type ActivityStreamsTargetProperty interface {
|
|||
// PrependActivityStreamsView prepends a View value to the front of a list
|
||||
// of the property "target". Invalidates all iterators.
|
||||
PrependActivityStreamsView(v ActivityStreamsView)
|
||||
// PrependForgeFedBranch prepends a Branch value to the front of a list of
|
||||
// the property "target". Invalidates all iterators.
|
||||
PrependForgeFedBranch(v ForgeFedBranch)
|
||||
// PrependForgeFedCommit prepends a Commit value to the front of a list of
|
||||
// the property "target". Invalidates all iterators.
|
||||
PrependForgeFedCommit(v ForgeFedCommit)
|
||||
// PrependForgeFedPush prepends a Push value to the front of a list of the
|
||||
// property "target". Invalidates all iterators.
|
||||
PrependForgeFedPush(v ForgeFedPush)
|
||||
// PrependForgeFedRepository prepends a Repository value to the front of a
|
||||
// list of the property "target". Invalidates all iterators.
|
||||
PrependForgeFedRepository(v ForgeFedRepository)
|
||||
// PrependForgeFedTicket prepends a Ticket value to the front of a list of
|
||||
// the property "target". Invalidates all iterators.
|
||||
PrependForgeFedTicket(v ForgeFedTicket)
|
||||
// PrependForgeFedTicketDependency prepends a TicketDependency value to
|
||||
// the front of a list of the property "target". Invalidates all
|
||||
// iterators.
|
||||
PrependForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// PrependIRI prepends an IRI value to the front of a list of the property
|
||||
// "target".
|
||||
PrependIRI(v *url.URL)
|
||||
|
|
@ -1544,6 +1429,9 @@ type ActivityStreamsTargetProperty interface {
|
|||
// PrependTootEmoji prepends a Emoji value to the front of a list of the
|
||||
// property "target". Invalidates all iterators.
|
||||
PrependTootEmoji(v TootEmoji)
|
||||
// PrependTootHashtag prepends a Hashtag value to the front of a list of
|
||||
// the property "target". Invalidates all iterators.
|
||||
PrependTootHashtag(v TootHashtag)
|
||||
// PrependTootIdentityProof prepends a IdentityProof value to the front of
|
||||
// a list of the property "target". Invalidates all iterators.
|
||||
PrependTootIdentityProof(v TootIdentityProof)
|
||||
|
|
@ -1777,30 +1665,6 @@ type ActivityStreamsTargetProperty interface {
|
|||
// for the property "target". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetActivityStreamsView(idx int, v ActivityStreamsView)
|
||||
// SetForgeFedBranch sets a Branch value to be at the specified index for
|
||||
// the property "target". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedBranch(idx int, v ForgeFedBranch)
|
||||
// SetForgeFedCommit sets a Commit value to be at the specified index for
|
||||
// the property "target". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedCommit(idx int, v ForgeFedCommit)
|
||||
// SetForgeFedPush sets a Push value to be at the specified index for the
|
||||
// property "target". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedPush(idx int, v ForgeFedPush)
|
||||
// SetForgeFedRepository sets a Repository value to be at the specified
|
||||
// index for the property "target". Panics if the index is out of
|
||||
// bounds. Invalidates all iterators.
|
||||
SetForgeFedRepository(idx int, v ForgeFedRepository)
|
||||
// SetForgeFedTicket sets a Ticket value to be at the specified index for
|
||||
// the property "target". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedTicket(idx int, v ForgeFedTicket)
|
||||
// SetForgeFedTicketDependency sets a TicketDependency value to be at the
|
||||
// specified index for the property "target". Panics if the index is
|
||||
// out of bounds. Invalidates all iterators.
|
||||
SetForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
|
||||
// SetIRI sets an IRI value to be at the specified index for the property
|
||||
// "target". Panics if the index is out of bounds.
|
||||
SetIRI(idx int, v *url.URL)
|
||||
|
|
@ -1812,6 +1676,10 @@ type ActivityStreamsTargetProperty interface {
|
|||
// property "target". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetTootEmoji(idx int, v TootEmoji)
|
||||
// SetTootHashtag sets a Hashtag value to be at the specified index for
|
||||
// the property "target". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetTootHashtag(idx int, v TootHashtag)
|
||||
// SetTootIdentityProof sets a IdentityProof value to be at the specified
|
||||
// index for the property "target". Panics if the index is out of
|
||||
// bounds. Invalidates all iterators.
|
||||
|
|
|
|||
|
|
@ -225,29 +225,6 @@ type ActivityStreamsToPropertyIterator interface {
|
|||
// IsActivityStreamsView returns false, GetActivityStreamsView will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsView() ActivityStreamsView
|
||||
// GetForgeFedBranch returns the value of this property. When
|
||||
// IsForgeFedBranch returns false, GetForgeFedBranch will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedBranch() ForgeFedBranch
|
||||
// GetForgeFedCommit returns the value of this property. When
|
||||
// IsForgeFedCommit returns false, GetForgeFedCommit will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedCommit() ForgeFedCommit
|
||||
// GetForgeFedPush returns the value of this property. When IsForgeFedPush
|
||||
// returns false, GetForgeFedPush will return an arbitrary value.
|
||||
GetForgeFedPush() ForgeFedPush
|
||||
// GetForgeFedRepository returns the value of this property. When
|
||||
// IsForgeFedRepository returns false, GetForgeFedRepository will
|
||||
// return an arbitrary value.
|
||||
GetForgeFedRepository() ForgeFedRepository
|
||||
// GetForgeFedTicket returns the value of this property. When
|
||||
// IsForgeFedTicket returns false, GetForgeFedTicket will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedTicket() ForgeFedTicket
|
||||
// GetForgeFedTicketDependency returns the value of this property. When
|
||||
// IsForgeFedTicketDependency returns false,
|
||||
// GetForgeFedTicketDependency will return an arbitrary value.
|
||||
GetForgeFedTicketDependency() ForgeFedTicketDependency
|
||||
// GetIRI returns the IRI of this property. When IsIRI returns false,
|
||||
// GetIRI will return an arbitrary value.
|
||||
GetIRI() *url.URL
|
||||
|
|
@ -258,6 +235,9 @@ type ActivityStreamsToPropertyIterator interface {
|
|||
// GetTootEmoji returns the value of this property. When IsTootEmoji
|
||||
// returns false, GetTootEmoji will return an arbitrary value.
|
||||
GetTootEmoji() TootEmoji
|
||||
// GetTootHashtag returns the value of this property. When IsTootHashtag
|
||||
// returns false, GetTootHashtag will return an arbitrary value.
|
||||
GetTootHashtag() TootHashtag
|
||||
// GetTootIdentityProof returns the value of this property. When
|
||||
// IsTootIdentityProof returns false, GetTootIdentityProof will return
|
||||
// an arbitrary value.
|
||||
|
|
@ -500,31 +480,6 @@ type ActivityStreamsToPropertyIterator interface {
|
|||
// "View". When true, use the GetActivityStreamsView and
|
||||
// SetActivityStreamsView methods to access and set this property.
|
||||
IsActivityStreamsView() bool
|
||||
// IsForgeFedBranch returns true if this property has a type of "Branch".
|
||||
// When true, use the GetForgeFedBranch and SetForgeFedBranch methods
|
||||
// to access and set this property.
|
||||
IsForgeFedBranch() bool
|
||||
// IsForgeFedCommit returns true if this property has a type of "Commit".
|
||||
// When true, use the GetForgeFedCommit and SetForgeFedCommit methods
|
||||
// to access and set this property.
|
||||
IsForgeFedCommit() bool
|
||||
// IsForgeFedPush returns true if this property has a type of "Push". When
|
||||
// true, use the GetForgeFedPush and SetForgeFedPush methods to access
|
||||
// and set this property.
|
||||
IsForgeFedPush() bool
|
||||
// IsForgeFedRepository returns true if this property has a type of
|
||||
// "Repository". When true, use the GetForgeFedRepository and
|
||||
// SetForgeFedRepository methods to access and set this property.
|
||||
IsForgeFedRepository() bool
|
||||
// IsForgeFedTicket returns true if this property has a type of "Ticket".
|
||||
// When true, use the GetForgeFedTicket and SetForgeFedTicket methods
|
||||
// to access and set this property.
|
||||
IsForgeFedTicket() bool
|
||||
// IsForgeFedTicketDependency returns true if this property has a type of
|
||||
// "TicketDependency". When true, use the GetForgeFedTicketDependency
|
||||
// and SetForgeFedTicketDependency methods to access and set this
|
||||
// property.
|
||||
IsForgeFedTicketDependency() bool
|
||||
// IsIRI returns true if this property is an IRI. When true, use GetIRI
|
||||
// and SetIRI to access and set this property
|
||||
IsIRI() bool
|
||||
|
|
@ -536,6 +491,10 @@ type ActivityStreamsToPropertyIterator interface {
|
|||
// true, use the GetTootEmoji and SetTootEmoji methods to access and
|
||||
// set this property.
|
||||
IsTootEmoji() bool
|
||||
// IsTootHashtag returns true if this property has a type of "Hashtag".
|
||||
// When true, use the GetTootHashtag and SetTootHashtag methods to
|
||||
// access and set this property.
|
||||
IsTootHashtag() bool
|
||||
// IsTootIdentityProof returns true if this property has a type of
|
||||
// "IdentityProof". When true, use the GetTootIdentityProof and
|
||||
// SetTootIdentityProof methods to access and set this property.
|
||||
|
|
@ -725,24 +684,6 @@ type ActivityStreamsToPropertyIterator interface {
|
|||
// SetActivityStreamsView sets the value of this property. Calling
|
||||
// IsActivityStreamsView afterwards returns true.
|
||||
SetActivityStreamsView(v ActivityStreamsView)
|
||||
// SetForgeFedBranch sets the value of this property. Calling
|
||||
// IsForgeFedBranch afterwards returns true.
|
||||
SetForgeFedBranch(v ForgeFedBranch)
|
||||
// SetForgeFedCommit sets the value of this property. Calling
|
||||
// IsForgeFedCommit afterwards returns true.
|
||||
SetForgeFedCommit(v ForgeFedCommit)
|
||||
// SetForgeFedPush sets the value of this property. Calling IsForgeFedPush
|
||||
// afterwards returns true.
|
||||
SetForgeFedPush(v ForgeFedPush)
|
||||
// SetForgeFedRepository sets the value of this property. Calling
|
||||
// IsForgeFedRepository afterwards returns true.
|
||||
SetForgeFedRepository(v ForgeFedRepository)
|
||||
// SetForgeFedTicket sets the value of this property. Calling
|
||||
// IsForgeFedTicket afterwards returns true.
|
||||
SetForgeFedTicket(v ForgeFedTicket)
|
||||
// SetForgeFedTicketDependency sets the value of this property. Calling
|
||||
// IsForgeFedTicketDependency afterwards returns true.
|
||||
SetForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// SetIRI sets the value of this property. Calling IsIRI afterwards
|
||||
// returns true.
|
||||
SetIRI(v *url.URL)
|
||||
|
|
@ -752,6 +693,9 @@ type ActivityStreamsToPropertyIterator interface {
|
|||
// SetTootEmoji sets the value of this property. Calling IsTootEmoji
|
||||
// afterwards returns true.
|
||||
SetTootEmoji(v TootEmoji)
|
||||
// SetTootHashtag sets the value of this property. Calling IsTootHashtag
|
||||
// afterwards returns true.
|
||||
SetTootHashtag(v TootHashtag)
|
||||
// SetTootIdentityProof sets the value of this property. Calling
|
||||
// IsTootIdentityProof afterwards returns true.
|
||||
SetTootIdentityProof(v TootIdentityProof)
|
||||
|
|
@ -989,29 +933,6 @@ type ActivityStreamsToProperty interface {
|
|||
// the property "to". Invalidates iterators that are traversing using
|
||||
// Prev.
|
||||
AppendActivityStreamsView(v ActivityStreamsView)
|
||||
// AppendForgeFedBranch appends a Branch value to the back of a list of
|
||||
// the property "to". Invalidates iterators that are traversing using
|
||||
// Prev.
|
||||
AppendForgeFedBranch(v ForgeFedBranch)
|
||||
// AppendForgeFedCommit appends a Commit value to the back of a list of
|
||||
// the property "to". Invalidates iterators that are traversing using
|
||||
// Prev.
|
||||
AppendForgeFedCommit(v ForgeFedCommit)
|
||||
// AppendForgeFedPush appends a Push value to the back of a list of the
|
||||
// property "to". Invalidates iterators that are traversing using Prev.
|
||||
AppendForgeFedPush(v ForgeFedPush)
|
||||
// AppendForgeFedRepository appends a Repository value to the back of a
|
||||
// list of the property "to". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
AppendForgeFedRepository(v ForgeFedRepository)
|
||||
// AppendForgeFedTicket appends a Ticket value to the back of a list of
|
||||
// the property "to". Invalidates iterators that are traversing using
|
||||
// Prev.
|
||||
AppendForgeFedTicket(v ForgeFedTicket)
|
||||
// AppendForgeFedTicketDependency appends a TicketDependency value to the
|
||||
// back of a list of the property "to". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
AppendForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// AppendIRI appends an IRI value to the back of a list of the property
|
||||
// "to"
|
||||
AppendIRI(v *url.URL)
|
||||
|
|
@ -1022,6 +943,9 @@ type ActivityStreamsToProperty interface {
|
|||
// AppendTootEmoji appends a Emoji value to the back of a list of the
|
||||
// property "to". Invalidates iterators that are traversing using Prev.
|
||||
AppendTootEmoji(v TootEmoji)
|
||||
// AppendTootHashtag appends a Hashtag value to the back of a list of the
|
||||
// property "to". Invalidates iterators that are traversing using Prev.
|
||||
AppendTootHashtag(v TootHashtag)
|
||||
// AppendTootIdentityProof appends a IdentityProof value to the back of a
|
||||
// list of the property "to". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
|
|
@ -1263,30 +1187,6 @@ type ActivityStreamsToProperty interface {
|
|||
// for a property "to". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertActivityStreamsView(idx int, v ActivityStreamsView)
|
||||
// InsertForgeFedBranch inserts a Branch value at the specified index for
|
||||
// a property "to". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedBranch(idx int, v ForgeFedBranch)
|
||||
// InsertForgeFedCommit inserts a Commit value at the specified index for
|
||||
// a property "to". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedCommit(idx int, v ForgeFedCommit)
|
||||
// InsertForgeFedPush inserts a Push value at the specified index for a
|
||||
// property "to". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedPush(idx int, v ForgeFedPush)
|
||||
// InsertForgeFedRepository inserts a Repository value at the specified
|
||||
// index for a property "to". Existing elements at that index and
|
||||
// higher are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedRepository(idx int, v ForgeFedRepository)
|
||||
// InsertForgeFedTicket inserts a Ticket value at the specified index for
|
||||
// a property "to". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedTicket(idx int, v ForgeFedTicket)
|
||||
// InsertForgeFedTicketDependency inserts a TicketDependency value at the
|
||||
// specified index for a property "to". Existing elements at that
|
||||
// index and higher are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
|
||||
// Insert inserts an IRI value at the specified index for a property "to".
|
||||
// Existing elements at that index and higher are shifted back once.
|
||||
// Invalidates all iterators.
|
||||
|
|
@ -1299,6 +1199,10 @@ type ActivityStreamsToProperty interface {
|
|||
// property "to". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertTootEmoji(idx int, v TootEmoji)
|
||||
// InsertTootHashtag inserts a Hashtag value at the specified index for a
|
||||
// property "to". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertTootHashtag(idx int, v TootHashtag)
|
||||
// InsertTootIdentityProof inserts a IdentityProof value at the specified
|
||||
// index for a property "to". Existing elements at that index and
|
||||
// higher are shifted back once. Invalidates all iterators.
|
||||
|
|
@ -1496,24 +1400,6 @@ type ActivityStreamsToProperty interface {
|
|||
// PrependActivityStreamsView prepends a View value to the front of a list
|
||||
// of the property "to". Invalidates all iterators.
|
||||
PrependActivityStreamsView(v ActivityStreamsView)
|
||||
// PrependForgeFedBranch prepends a Branch value to the front of a list of
|
||||
// the property "to". Invalidates all iterators.
|
||||
PrependForgeFedBranch(v ForgeFedBranch)
|
||||
// PrependForgeFedCommit prepends a Commit value to the front of a list of
|
||||
// the property "to". Invalidates all iterators.
|
||||
PrependForgeFedCommit(v ForgeFedCommit)
|
||||
// PrependForgeFedPush prepends a Push value to the front of a list of the
|
||||
// property "to". Invalidates all iterators.
|
||||
PrependForgeFedPush(v ForgeFedPush)
|
||||
// PrependForgeFedRepository prepends a Repository value to the front of a
|
||||
// list of the property "to". Invalidates all iterators.
|
||||
PrependForgeFedRepository(v ForgeFedRepository)
|
||||
// PrependForgeFedTicket prepends a Ticket value to the front of a list of
|
||||
// the property "to". Invalidates all iterators.
|
||||
PrependForgeFedTicket(v ForgeFedTicket)
|
||||
// PrependForgeFedTicketDependency prepends a TicketDependency value to
|
||||
// the front of a list of the property "to". Invalidates all iterators.
|
||||
PrependForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// PrependIRI prepends an IRI value to the front of a list of the property
|
||||
// "to".
|
||||
PrependIRI(v *url.URL)
|
||||
|
|
@ -1523,6 +1409,9 @@ type ActivityStreamsToProperty interface {
|
|||
// PrependTootEmoji prepends a Emoji value to the front of a list of the
|
||||
// property "to". Invalidates all iterators.
|
||||
PrependTootEmoji(v TootEmoji)
|
||||
// PrependTootHashtag prepends a Hashtag value to the front of a list of
|
||||
// the property "to". Invalidates all iterators.
|
||||
PrependTootHashtag(v TootHashtag)
|
||||
// PrependTootIdentityProof prepends a IdentityProof value to the front of
|
||||
// a list of the property "to". Invalidates all iterators.
|
||||
PrependTootIdentityProof(v TootIdentityProof)
|
||||
|
|
@ -1756,30 +1645,6 @@ type ActivityStreamsToProperty interface {
|
|||
// for the property "to". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetActivityStreamsView(idx int, v ActivityStreamsView)
|
||||
// SetForgeFedBranch sets a Branch value to be at the specified index for
|
||||
// the property "to". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedBranch(idx int, v ForgeFedBranch)
|
||||
// SetForgeFedCommit sets a Commit value to be at the specified index for
|
||||
// the property "to". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedCommit(idx int, v ForgeFedCommit)
|
||||
// SetForgeFedPush sets a Push value to be at the specified index for the
|
||||
// property "to". Panics if the index is out of bounds. Invalidates
|
||||
// all iterators.
|
||||
SetForgeFedPush(idx int, v ForgeFedPush)
|
||||
// SetForgeFedRepository sets a Repository value to be at the specified
|
||||
// index for the property "to". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedRepository(idx int, v ForgeFedRepository)
|
||||
// SetForgeFedTicket sets a Ticket value to be at the specified index for
|
||||
// the property "to". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetForgeFedTicket(idx int, v ForgeFedTicket)
|
||||
// SetForgeFedTicketDependency sets a TicketDependency value to be at the
|
||||
// specified index for the property "to". Panics if the index is out
|
||||
// of bounds. Invalidates all iterators.
|
||||
SetForgeFedTicketDependency(idx int, v ForgeFedTicketDependency)
|
||||
// SetIRI sets an IRI value to be at the specified index for the property
|
||||
// "to". Panics if the index is out of bounds.
|
||||
SetIRI(idx int, v *url.URL)
|
||||
|
|
@ -1791,6 +1656,10 @@ type ActivityStreamsToProperty interface {
|
|||
// property "to". Panics if the index is out of bounds. Invalidates
|
||||
// all iterators.
|
||||
SetTootEmoji(idx int, v TootEmoji)
|
||||
// SetTootHashtag sets a Hashtag value to be at the specified index for
|
||||
// the property "to". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetTootHashtag(idx int, v TootHashtag)
|
||||
// SetTootIdentityProof sets a IdentityProof value to be at the specified
|
||||
// index for the property "to". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
|
|
|
|||
|
|
@ -18,6 +18,9 @@ type ActivityStreamsUrlPropertyIterator interface {
|
|||
// GetIRI returns the IRI of this property. When IsIRI returns false,
|
||||
// GetIRI will return an arbitrary value.
|
||||
GetIRI() *url.URL
|
||||
// GetTootHashtag returns the value of this property. When IsTootHashtag
|
||||
// returns false, GetTootHashtag will return an arbitrary value.
|
||||
GetTootHashtag() TootHashtag
|
||||
// GetType returns the value in this property as a Type. Returns nil if
|
||||
// the value is not an ActivityStreams type, such as an IRI or another
|
||||
// value.
|
||||
|
|
@ -39,6 +42,10 @@ type ActivityStreamsUrlPropertyIterator interface {
|
|||
// IsIRI returns true if this property is an IRI. When true, use GetIRI
|
||||
// and SetIRI to access and set this property
|
||||
IsIRI() bool
|
||||
// IsTootHashtag returns true if this property has a type of "Hashtag".
|
||||
// When true, use the GetTootHashtag and SetTootHashtag methods to
|
||||
// access and set this property.
|
||||
IsTootHashtag() bool
|
||||
// IsXMLSchemaAnyURI returns true if this property has a type of "anyURI".
|
||||
// When true, use the GetXMLSchemaAnyURI and SetXMLSchemaAnyURI
|
||||
// methods to access and set this property.
|
||||
|
|
@ -73,6 +80,9 @@ type ActivityStreamsUrlPropertyIterator interface {
|
|||
// SetIRI sets the value of this property. Calling IsIRI afterwards
|
||||
// returns true.
|
||||
SetIRI(v *url.URL)
|
||||
// SetTootHashtag sets the value of this property. Calling IsTootHashtag
|
||||
// afterwards returns true.
|
||||
SetTootHashtag(v TootHashtag)
|
||||
// SetType attempts to set the property for the arbitrary type. Returns an
|
||||
// error if it is not a valid type to set on this property.
|
||||
SetType(t Type) error
|
||||
|
|
@ -129,6 +139,10 @@ type ActivityStreamsUrlProperty interface {
|
|||
// AppendIRI appends an IRI value to the back of a list of the property
|
||||
// "url"
|
||||
AppendIRI(v *url.URL)
|
||||
// AppendTootHashtag appends a Hashtag value to the back of a list of the
|
||||
// property "url". Invalidates iterators that are traversing using
|
||||
// Prev.
|
||||
AppendTootHashtag(v TootHashtag)
|
||||
// PrependType prepends an arbitrary type value to the front of a list of
|
||||
// the property "url". Invalidates iterators that are traversing using
|
||||
// Prev. Returns an error if the type is not a valid one to set for
|
||||
|
|
@ -163,6 +177,10 @@ type ActivityStreamsUrlProperty interface {
|
|||
// "url". Existing elements at that index and higher are shifted back
|
||||
// once. Invalidates all iterators.
|
||||
InsertIRI(idx int, v *url.URL)
|
||||
// InsertTootHashtag inserts a Hashtag value at the specified index for a
|
||||
// property "url". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertTootHashtag(idx int, v TootHashtag)
|
||||
// PrependType prepends an arbitrary type value to the front of a list of
|
||||
// the property "url". Invalidates all iterators. Returns an error if
|
||||
// the type is not a valid one to set for this property.
|
||||
|
|
@ -202,6 +220,9 @@ type ActivityStreamsUrlProperty interface {
|
|||
// PrependIRI prepends an IRI value to the front of a list of the property
|
||||
// "url".
|
||||
PrependIRI(v *url.URL)
|
||||
// PrependTootHashtag prepends a Hashtag value to the front of a list of
|
||||
// the property "url". Invalidates all iterators.
|
||||
PrependTootHashtag(v TootHashtag)
|
||||
// PrependType prepends an arbitrary type value to the front of a list of
|
||||
// the property "url". Invalidates all iterators. Returns an error if
|
||||
// the type is not a valid one to set for this property.
|
||||
|
|
@ -230,6 +251,10 @@ type ActivityStreamsUrlProperty interface {
|
|||
// SetIRI sets an IRI value to be at the specified index for the property
|
||||
// "url". Panics if the index is out of bounds.
|
||||
SetIRI(idx int, v *url.URL)
|
||||
// SetTootHashtag sets a Hashtag value to be at the specified index for
|
||||
// the property "url". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
SetTootHashtag(idx int, v TootHashtag)
|
||||
// SetType sets an arbitrary type value to the specified index of the
|
||||
// property "url". Invalidates all iterators. Returns an error if the
|
||||
// type is not a valid one to set for this property. Panics if the
|
||||
|
|
|
|||
|
|
@ -1,60 +0,0 @@
|
|||
// Code generated by astool. DO NOT EDIT.
|
||||
|
||||
package vocab
|
||||
|
||||
import "net/url"
|
||||
|
||||
// Identifies the Person assigned to work on this Ticket.
|
||||
type ForgeFedAssignedToProperty interface {
|
||||
// Clear ensures no value of this property is set. Calling
|
||||
// IsActivityStreamsPerson afterwards will return false.
|
||||
Clear()
|
||||
// Get returns the value of this property. When IsActivityStreamsPerson
|
||||
// returns false, Get will return any arbitrary value.
|
||||
Get() ActivityStreamsPerson
|
||||
// GetIRI returns the IRI of this property. When IsIRI returns false,
|
||||
// GetIRI will return any arbitrary value.
|
||||
GetIRI() *url.URL
|
||||
// GetType returns the value in this property as a Type. Returns nil if
|
||||
// the value is not an ActivityStreams type, such as an IRI or another
|
||||
// value.
|
||||
GetType() Type
|
||||
// HasAny returns true if the value or IRI is set.
|
||||
HasAny() bool
|
||||
// IsActivityStreamsPerson returns true if this property is set and not an
|
||||
// IRI.
|
||||
IsActivityStreamsPerson() bool
|
||||
// IsIRI returns true if this property is an IRI.
|
||||
IsIRI() bool
|
||||
// JSONLDContext returns the JSONLD URIs required in the context string
|
||||
// for this property and the specific values that are set. The value
|
||||
// in the map is the alias used to import the property's value or
|
||||
// values.
|
||||
JSONLDContext() map[string]string
|
||||
// KindIndex computes an arbitrary value for indexing this kind of value.
|
||||
// This is a leaky API detail only for folks looking to replace the
|
||||
// go-fed implementation. Applications should not use this method.
|
||||
KindIndex() int
|
||||
// LessThan compares two instances of this property with an arbitrary but
|
||||
// stable comparison. Applications should not use this because it is
|
||||
// only meant to help alternative implementations to go-fed to be able
|
||||
// to normalize nonfunctional properties.
|
||||
LessThan(o ForgeFedAssignedToProperty) bool
|
||||
// Name returns the name of this property: "assignedTo".
|
||||
Name() string
|
||||
// Serialize converts this into an interface representation suitable for
|
||||
// marshalling into a text or binary format. Applications should not
|
||||
// need this function as most typical use cases serialize types
|
||||
// instead of individual properties. It is exposed for alternatives to
|
||||
// go-fed implementations to use.
|
||||
Serialize() (interface{}, error)
|
||||
// Set sets the value of this property. Calling IsActivityStreamsPerson
|
||||
// afterwards will return true.
|
||||
Set(v ActivityStreamsPerson)
|
||||
// SetIRI sets the value of this property. Calling IsIRI afterwards will
|
||||
// return true.
|
||||
SetIRI(v *url.URL)
|
||||
// SetType attempts to set the property for the arbitrary type. Returns an
|
||||
// error if it is not a valid type to set on this property.
|
||||
SetType(t Type) error
|
||||
}
|
||||
|
|
@ -1,749 +0,0 @@
|
|||
// Code generated by astool. DO NOT EDIT.
|
||||
|
||||
package vocab
|
||||
|
||||
import "net/url"
|
||||
|
||||
// Identifies the actor (usually a person, but could be something else, e.g. a
|
||||
// bot) that added a set of changes to the version-control Repository.
|
||||
// Sometimes the author of the changes and the committer of those changes
|
||||
// aren’t the same actor, in which case the committedBy property can be used
|
||||
// to specify who added the changes to the repository. For example, when
|
||||
// applying a patch to a repository, e.g. a Git repository, the author would
|
||||
// be the person who made the patch, and the committer would be the person who
|
||||
// applied the patch to their copy of the repository.
|
||||
type ForgeFedCommittedByProperty interface {
|
||||
// Clear ensures no value of this property is set. Calling HasAny or any
|
||||
// of the 'Is' methods afterwards will return false.
|
||||
Clear()
|
||||
// GetActivityStreamsAccept returns the value of this property. When
|
||||
// IsActivityStreamsAccept returns false, GetActivityStreamsAccept
|
||||
// will return an arbitrary value.
|
||||
GetActivityStreamsAccept() ActivityStreamsAccept
|
||||
// GetActivityStreamsActivity returns the value of this property. When
|
||||
// IsActivityStreamsActivity returns false, GetActivityStreamsActivity
|
||||
// will return an arbitrary value.
|
||||
GetActivityStreamsActivity() ActivityStreamsActivity
|
||||
// GetActivityStreamsAdd returns the value of this property. When
|
||||
// IsActivityStreamsAdd returns false, GetActivityStreamsAdd will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsAdd() ActivityStreamsAdd
|
||||
// GetActivityStreamsAnnounce returns the value of this property. When
|
||||
// IsActivityStreamsAnnounce returns false, GetActivityStreamsAnnounce
|
||||
// will return an arbitrary value.
|
||||
GetActivityStreamsAnnounce() ActivityStreamsAnnounce
|
||||
// GetActivityStreamsApplication returns the value of this property. When
|
||||
// IsActivityStreamsApplication returns false,
|
||||
// GetActivityStreamsApplication will return an arbitrary value.
|
||||
GetActivityStreamsApplication() ActivityStreamsApplication
|
||||
// GetActivityStreamsArrive returns the value of this property. When
|
||||
// IsActivityStreamsArrive returns false, GetActivityStreamsArrive
|
||||
// will return an arbitrary value.
|
||||
GetActivityStreamsArrive() ActivityStreamsArrive
|
||||
// GetActivityStreamsArticle returns the value of this property. When
|
||||
// IsActivityStreamsArticle returns false, GetActivityStreamsArticle
|
||||
// will return an arbitrary value.
|
||||
GetActivityStreamsArticle() ActivityStreamsArticle
|
||||
// GetActivityStreamsAudio returns the value of this property. When
|
||||
// IsActivityStreamsAudio returns false, GetActivityStreamsAudio will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsAudio() ActivityStreamsAudio
|
||||
// GetActivityStreamsBlock returns the value of this property. When
|
||||
// IsActivityStreamsBlock returns false, GetActivityStreamsBlock will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsBlock() ActivityStreamsBlock
|
||||
// GetActivityStreamsCollection returns the value of this property. When
|
||||
// IsActivityStreamsCollection returns false,
|
||||
// GetActivityStreamsCollection will return an arbitrary value.
|
||||
GetActivityStreamsCollection() ActivityStreamsCollection
|
||||
// GetActivityStreamsCollectionPage returns the value of this property.
|
||||
// When IsActivityStreamsCollectionPage returns false,
|
||||
// GetActivityStreamsCollectionPage will return an arbitrary value.
|
||||
GetActivityStreamsCollectionPage() ActivityStreamsCollectionPage
|
||||
// GetActivityStreamsCreate returns the value of this property. When
|
||||
// IsActivityStreamsCreate returns false, GetActivityStreamsCreate
|
||||
// will return an arbitrary value.
|
||||
GetActivityStreamsCreate() ActivityStreamsCreate
|
||||
// GetActivityStreamsDelete returns the value of this property. When
|
||||
// IsActivityStreamsDelete returns false, GetActivityStreamsDelete
|
||||
// will return an arbitrary value.
|
||||
GetActivityStreamsDelete() ActivityStreamsDelete
|
||||
// GetActivityStreamsDislike returns the value of this property. When
|
||||
// IsActivityStreamsDislike returns false, GetActivityStreamsDislike
|
||||
// will return an arbitrary value.
|
||||
GetActivityStreamsDislike() ActivityStreamsDislike
|
||||
// GetActivityStreamsDocument returns the value of this property. When
|
||||
// IsActivityStreamsDocument returns false, GetActivityStreamsDocument
|
||||
// will return an arbitrary value.
|
||||
GetActivityStreamsDocument() ActivityStreamsDocument
|
||||
// GetActivityStreamsEvent returns the value of this property. When
|
||||
// IsActivityStreamsEvent returns false, GetActivityStreamsEvent will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsEvent() ActivityStreamsEvent
|
||||
// GetActivityStreamsFlag returns the value of this property. When
|
||||
// IsActivityStreamsFlag returns false, GetActivityStreamsFlag will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsFlag() ActivityStreamsFlag
|
||||
// GetActivityStreamsFollow returns the value of this property. When
|
||||
// IsActivityStreamsFollow returns false, GetActivityStreamsFollow
|
||||
// will return an arbitrary value.
|
||||
GetActivityStreamsFollow() ActivityStreamsFollow
|
||||
// GetActivityStreamsGroup returns the value of this property. When
|
||||
// IsActivityStreamsGroup returns false, GetActivityStreamsGroup will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsGroup() ActivityStreamsGroup
|
||||
// GetActivityStreamsIgnore returns the value of this property. When
|
||||
// IsActivityStreamsIgnore returns false, GetActivityStreamsIgnore
|
||||
// will return an arbitrary value.
|
||||
GetActivityStreamsIgnore() ActivityStreamsIgnore
|
||||
// GetActivityStreamsImage returns the value of this property. When
|
||||
// IsActivityStreamsImage returns false, GetActivityStreamsImage will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsImage() ActivityStreamsImage
|
||||
// GetActivityStreamsIntransitiveActivity returns the value of this
|
||||
// property. When IsActivityStreamsIntransitiveActivity returns false,
|
||||
// GetActivityStreamsIntransitiveActivity will return an arbitrary
|
||||
// value.
|
||||
GetActivityStreamsIntransitiveActivity() ActivityStreamsIntransitiveActivity
|
||||
// GetActivityStreamsInvite returns the value of this property. When
|
||||
// IsActivityStreamsInvite returns false, GetActivityStreamsInvite
|
||||
// will return an arbitrary value.
|
||||
GetActivityStreamsInvite() ActivityStreamsInvite
|
||||
// GetActivityStreamsJoin returns the value of this property. When
|
||||
// IsActivityStreamsJoin returns false, GetActivityStreamsJoin will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsJoin() ActivityStreamsJoin
|
||||
// GetActivityStreamsLeave returns the value of this property. When
|
||||
// IsActivityStreamsLeave returns false, GetActivityStreamsLeave will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsLeave() ActivityStreamsLeave
|
||||
// GetActivityStreamsLike returns the value of this property. When
|
||||
// IsActivityStreamsLike returns false, GetActivityStreamsLike will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsLike() ActivityStreamsLike
|
||||
// GetActivityStreamsListen returns the value of this property. When
|
||||
// IsActivityStreamsListen returns false, GetActivityStreamsListen
|
||||
// will return an arbitrary value.
|
||||
GetActivityStreamsListen() ActivityStreamsListen
|
||||
// GetActivityStreamsMove returns the value of this property. When
|
||||
// IsActivityStreamsMove returns false, GetActivityStreamsMove will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsMove() ActivityStreamsMove
|
||||
// GetActivityStreamsNote returns the value of this property. When
|
||||
// IsActivityStreamsNote returns false, GetActivityStreamsNote will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsNote() ActivityStreamsNote
|
||||
// GetActivityStreamsObject returns the value of this property. When
|
||||
// IsActivityStreamsObject returns false, GetActivityStreamsObject
|
||||
// will return an arbitrary value.
|
||||
GetActivityStreamsObject() ActivityStreamsObject
|
||||
// GetActivityStreamsOffer returns the value of this property. When
|
||||
// IsActivityStreamsOffer returns false, GetActivityStreamsOffer will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsOffer() ActivityStreamsOffer
|
||||
// GetActivityStreamsOrderedCollection returns the value of this property.
|
||||
// When IsActivityStreamsOrderedCollection returns false,
|
||||
// GetActivityStreamsOrderedCollection will return an arbitrary value.
|
||||
GetActivityStreamsOrderedCollection() ActivityStreamsOrderedCollection
|
||||
// GetActivityStreamsOrderedCollectionPage returns the value of this
|
||||
// property. When IsActivityStreamsOrderedCollectionPage returns
|
||||
// false, GetActivityStreamsOrderedCollectionPage will return an
|
||||
// arbitrary value.
|
||||
GetActivityStreamsOrderedCollectionPage() ActivityStreamsOrderedCollectionPage
|
||||
// GetActivityStreamsOrganization returns the value of this property. When
|
||||
// IsActivityStreamsOrganization returns false,
|
||||
// GetActivityStreamsOrganization will return an arbitrary value.
|
||||
GetActivityStreamsOrganization() ActivityStreamsOrganization
|
||||
// GetActivityStreamsPage returns the value of this property. When
|
||||
// IsActivityStreamsPage returns false, GetActivityStreamsPage will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsPage() ActivityStreamsPage
|
||||
// GetActivityStreamsPerson returns the value of this property. When
|
||||
// IsActivityStreamsPerson returns false, GetActivityStreamsPerson
|
||||
// will return an arbitrary value.
|
||||
GetActivityStreamsPerson() ActivityStreamsPerson
|
||||
// GetActivityStreamsPlace returns the value of this property. When
|
||||
// IsActivityStreamsPlace returns false, GetActivityStreamsPlace will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsPlace() ActivityStreamsPlace
|
||||
// GetActivityStreamsProfile returns the value of this property. When
|
||||
// IsActivityStreamsProfile returns false, GetActivityStreamsProfile
|
||||
// will return an arbitrary value.
|
||||
GetActivityStreamsProfile() ActivityStreamsProfile
|
||||
// GetActivityStreamsQuestion returns the value of this property. When
|
||||
// IsActivityStreamsQuestion returns false, GetActivityStreamsQuestion
|
||||
// will return an arbitrary value.
|
||||
GetActivityStreamsQuestion() ActivityStreamsQuestion
|
||||
// GetActivityStreamsRead returns the value of this property. When
|
||||
// IsActivityStreamsRead returns false, GetActivityStreamsRead will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsRead() ActivityStreamsRead
|
||||
// GetActivityStreamsReject returns the value of this property. When
|
||||
// IsActivityStreamsReject returns false, GetActivityStreamsReject
|
||||
// will return an arbitrary value.
|
||||
GetActivityStreamsReject() ActivityStreamsReject
|
||||
// GetActivityStreamsRelationship returns the value of this property. When
|
||||
// IsActivityStreamsRelationship returns false,
|
||||
// GetActivityStreamsRelationship will return an arbitrary value.
|
||||
GetActivityStreamsRelationship() ActivityStreamsRelationship
|
||||
// GetActivityStreamsRemove returns the value of this property. When
|
||||
// IsActivityStreamsRemove returns false, GetActivityStreamsRemove
|
||||
// will return an arbitrary value.
|
||||
GetActivityStreamsRemove() ActivityStreamsRemove
|
||||
// GetActivityStreamsService returns the value of this property. When
|
||||
// IsActivityStreamsService returns false, GetActivityStreamsService
|
||||
// will return an arbitrary value.
|
||||
GetActivityStreamsService() ActivityStreamsService
|
||||
// GetActivityStreamsTentativeAccept returns the value of this property.
|
||||
// When IsActivityStreamsTentativeAccept returns false,
|
||||
// GetActivityStreamsTentativeAccept will return an arbitrary value.
|
||||
GetActivityStreamsTentativeAccept() ActivityStreamsTentativeAccept
|
||||
// GetActivityStreamsTentativeReject returns the value of this property.
|
||||
// When IsActivityStreamsTentativeReject returns false,
|
||||
// GetActivityStreamsTentativeReject will return an arbitrary value.
|
||||
GetActivityStreamsTentativeReject() ActivityStreamsTentativeReject
|
||||
// GetActivityStreamsTombstone returns the value of this property. When
|
||||
// IsActivityStreamsTombstone returns false,
|
||||
// GetActivityStreamsTombstone will return an arbitrary value.
|
||||
GetActivityStreamsTombstone() ActivityStreamsTombstone
|
||||
// GetActivityStreamsTravel returns the value of this property. When
|
||||
// IsActivityStreamsTravel returns false, GetActivityStreamsTravel
|
||||
// will return an arbitrary value.
|
||||
GetActivityStreamsTravel() ActivityStreamsTravel
|
||||
// GetActivityStreamsUndo returns the value of this property. When
|
||||
// IsActivityStreamsUndo returns false, GetActivityStreamsUndo will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsUndo() ActivityStreamsUndo
|
||||
// GetActivityStreamsUpdate returns the value of this property. When
|
||||
// IsActivityStreamsUpdate returns false, GetActivityStreamsUpdate
|
||||
// will return an arbitrary value.
|
||||
GetActivityStreamsUpdate() ActivityStreamsUpdate
|
||||
// GetActivityStreamsVideo returns the value of this property. When
|
||||
// IsActivityStreamsVideo returns false, GetActivityStreamsVideo will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsVideo() ActivityStreamsVideo
|
||||
// GetActivityStreamsView returns the value of this property. When
|
||||
// IsActivityStreamsView returns false, GetActivityStreamsView will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsView() ActivityStreamsView
|
||||
// GetForgeFedBranch returns the value of this property. When
|
||||
// IsForgeFedBranch returns false, GetForgeFedBranch will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedBranch() ForgeFedBranch
|
||||
// GetForgeFedCommit returns the value of this property. When
|
||||
// IsForgeFedCommit returns false, GetForgeFedCommit will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedCommit() ForgeFedCommit
|
||||
// GetForgeFedPush returns the value of this property. When IsForgeFedPush
|
||||
// returns false, GetForgeFedPush will return an arbitrary value.
|
||||
GetForgeFedPush() ForgeFedPush
|
||||
// GetForgeFedRepository returns the value of this property. When
|
||||
// IsForgeFedRepository returns false, GetForgeFedRepository will
|
||||
// return an arbitrary value.
|
||||
GetForgeFedRepository() ForgeFedRepository
|
||||
// GetForgeFedTicket returns the value of this property. When
|
||||
// IsForgeFedTicket returns false, GetForgeFedTicket will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedTicket() ForgeFedTicket
|
||||
// GetForgeFedTicketDependency returns the value of this property. When
|
||||
// IsForgeFedTicketDependency returns false,
|
||||
// GetForgeFedTicketDependency will return an arbitrary value.
|
||||
GetForgeFedTicketDependency() ForgeFedTicketDependency
|
||||
// GetIRI returns the IRI of this property. When IsIRI returns false,
|
||||
// GetIRI will return an arbitrary value.
|
||||
GetIRI() *url.URL
|
||||
// GetSchemaPropertyValue returns the value of this property. When
|
||||
// IsSchemaPropertyValue returns false, GetSchemaPropertyValue will
|
||||
// return an arbitrary value.
|
||||
GetSchemaPropertyValue() SchemaPropertyValue
|
||||
// GetTootEmoji returns the value of this property. When IsTootEmoji
|
||||
// returns false, GetTootEmoji will return an arbitrary value.
|
||||
GetTootEmoji() TootEmoji
|
||||
// GetTootIdentityProof returns the value of this property. When
|
||||
// IsTootIdentityProof returns false, GetTootIdentityProof will return
|
||||
// an arbitrary value.
|
||||
GetTootIdentityProof() TootIdentityProof
|
||||
// GetType returns the value in this property as a Type. Returns nil if
|
||||
// the value is not an ActivityStreams type, such as an IRI or another
|
||||
// value.
|
||||
GetType() Type
|
||||
// HasAny returns true if any of the different values is set.
|
||||
HasAny() bool
|
||||
// IsActivityStreamsAccept returns true if this property has a type of
|
||||
// "Accept". When true, use the GetActivityStreamsAccept and
|
||||
// SetActivityStreamsAccept methods to access and set this property.
|
||||
IsActivityStreamsAccept() bool
|
||||
// IsActivityStreamsActivity returns true if this property has a type of
|
||||
// "Activity". When true, use the GetActivityStreamsActivity and
|
||||
// SetActivityStreamsActivity methods to access and set this property.
|
||||
IsActivityStreamsActivity() bool
|
||||
// IsActivityStreamsAdd returns true if this property has a type of "Add".
|
||||
// When true, use the GetActivityStreamsAdd and SetActivityStreamsAdd
|
||||
// methods to access and set this property.
|
||||
IsActivityStreamsAdd() bool
|
||||
// IsActivityStreamsAnnounce returns true if this property has a type of
|
||||
// "Announce". When true, use the GetActivityStreamsAnnounce and
|
||||
// SetActivityStreamsAnnounce methods to access and set this property.
|
||||
IsActivityStreamsAnnounce() bool
|
||||
// IsActivityStreamsApplication returns true if this property has a type
|
||||
// of "Application". When true, use the GetActivityStreamsApplication
|
||||
// and SetActivityStreamsApplication methods to access and set this
|
||||
// property.
|
||||
IsActivityStreamsApplication() bool
|
||||
// IsActivityStreamsArrive returns true if this property has a type of
|
||||
// "Arrive". When true, use the GetActivityStreamsArrive and
|
||||
// SetActivityStreamsArrive methods to access and set this property.
|
||||
IsActivityStreamsArrive() bool
|
||||
// IsActivityStreamsArticle returns true if this property has a type of
|
||||
// "Article". When true, use the GetActivityStreamsArticle and
|
||||
// SetActivityStreamsArticle methods to access and set this property.
|
||||
IsActivityStreamsArticle() bool
|
||||
// IsActivityStreamsAudio returns true if this property has a type of
|
||||
// "Audio". When true, use the GetActivityStreamsAudio and
|
||||
// SetActivityStreamsAudio methods to access and set this property.
|
||||
IsActivityStreamsAudio() bool
|
||||
// IsActivityStreamsBlock returns true if this property has a type of
|
||||
// "Block". When true, use the GetActivityStreamsBlock and
|
||||
// SetActivityStreamsBlock methods to access and set this property.
|
||||
IsActivityStreamsBlock() bool
|
||||
// IsActivityStreamsCollection returns true if this property has a type of
|
||||
// "Collection". When true, use the GetActivityStreamsCollection and
|
||||
// SetActivityStreamsCollection methods to access and set this
|
||||
// property.
|
||||
IsActivityStreamsCollection() bool
|
||||
// IsActivityStreamsCollectionPage returns true if this property has a
|
||||
// type of "CollectionPage". When true, use the
|
||||
// GetActivityStreamsCollectionPage and
|
||||
// SetActivityStreamsCollectionPage methods to access and set this
|
||||
// property.
|
||||
IsActivityStreamsCollectionPage() bool
|
||||
// IsActivityStreamsCreate returns true if this property has a type of
|
||||
// "Create". When true, use the GetActivityStreamsCreate and
|
||||
// SetActivityStreamsCreate methods to access and set this property.
|
||||
IsActivityStreamsCreate() bool
|
||||
// IsActivityStreamsDelete returns true if this property has a type of
|
||||
// "Delete". When true, use the GetActivityStreamsDelete and
|
||||
// SetActivityStreamsDelete methods to access and set this property.
|
||||
IsActivityStreamsDelete() bool
|
||||
// IsActivityStreamsDislike returns true if this property has a type of
|
||||
// "Dislike". When true, use the GetActivityStreamsDislike and
|
||||
// SetActivityStreamsDislike methods to access and set this property.
|
||||
IsActivityStreamsDislike() bool
|
||||
// IsActivityStreamsDocument returns true if this property has a type of
|
||||
// "Document". When true, use the GetActivityStreamsDocument and
|
||||
// SetActivityStreamsDocument methods to access and set this property.
|
||||
IsActivityStreamsDocument() bool
|
||||
// IsActivityStreamsEvent returns true if this property has a type of
|
||||
// "Event". When true, use the GetActivityStreamsEvent and
|
||||
// SetActivityStreamsEvent methods to access and set this property.
|
||||
IsActivityStreamsEvent() bool
|
||||
// IsActivityStreamsFlag returns true if this property has a type of
|
||||
// "Flag". When true, use the GetActivityStreamsFlag and
|
||||
// SetActivityStreamsFlag methods to access and set this property.
|
||||
IsActivityStreamsFlag() bool
|
||||
// IsActivityStreamsFollow returns true if this property has a type of
|
||||
// "Follow". When true, use the GetActivityStreamsFollow and
|
||||
// SetActivityStreamsFollow methods to access and set this property.
|
||||
IsActivityStreamsFollow() bool
|
||||
// IsActivityStreamsGroup returns true if this property has a type of
|
||||
// "Group". When true, use the GetActivityStreamsGroup and
|
||||
// SetActivityStreamsGroup methods to access and set this property.
|
||||
IsActivityStreamsGroup() bool
|
||||
// IsActivityStreamsIgnore returns true if this property has a type of
|
||||
// "Ignore". When true, use the GetActivityStreamsIgnore and
|
||||
// SetActivityStreamsIgnore methods to access and set this property.
|
||||
IsActivityStreamsIgnore() bool
|
||||
// IsActivityStreamsImage returns true if this property has a type of
|
||||
// "Image". When true, use the GetActivityStreamsImage and
|
||||
// SetActivityStreamsImage methods to access and set this property.
|
||||
IsActivityStreamsImage() bool
|
||||
// IsActivityStreamsIntransitiveActivity returns true if this property has
|
||||
// a type of "IntransitiveActivity". When true, use the
|
||||
// GetActivityStreamsIntransitiveActivity and
|
||||
// SetActivityStreamsIntransitiveActivity methods to access and set
|
||||
// this property.
|
||||
IsActivityStreamsIntransitiveActivity() bool
|
||||
// IsActivityStreamsInvite returns true if this property has a type of
|
||||
// "Invite". When true, use the GetActivityStreamsInvite and
|
||||
// SetActivityStreamsInvite methods to access and set this property.
|
||||
IsActivityStreamsInvite() bool
|
||||
// IsActivityStreamsJoin returns true if this property has a type of
|
||||
// "Join". When true, use the GetActivityStreamsJoin and
|
||||
// SetActivityStreamsJoin methods to access and set this property.
|
||||
IsActivityStreamsJoin() bool
|
||||
// IsActivityStreamsLeave returns true if this property has a type of
|
||||
// "Leave". When true, use the GetActivityStreamsLeave and
|
||||
// SetActivityStreamsLeave methods to access and set this property.
|
||||
IsActivityStreamsLeave() bool
|
||||
// IsActivityStreamsLike returns true if this property has a type of
|
||||
// "Like". When true, use the GetActivityStreamsLike and
|
||||
// SetActivityStreamsLike methods to access and set this property.
|
||||
IsActivityStreamsLike() bool
|
||||
// IsActivityStreamsListen returns true if this property has a type of
|
||||
// "Listen". When true, use the GetActivityStreamsListen and
|
||||
// SetActivityStreamsListen methods to access and set this property.
|
||||
IsActivityStreamsListen() bool
|
||||
// IsActivityStreamsMove returns true if this property has a type of
|
||||
// "Move". When true, use the GetActivityStreamsMove and
|
||||
// SetActivityStreamsMove methods to access and set this property.
|
||||
IsActivityStreamsMove() bool
|
||||
// IsActivityStreamsNote returns true if this property has a type of
|
||||
// "Note". When true, use the GetActivityStreamsNote and
|
||||
// SetActivityStreamsNote methods to access and set this property.
|
||||
IsActivityStreamsNote() bool
|
||||
// IsActivityStreamsObject returns true if this property has a type of
|
||||
// "Object". When true, use the GetActivityStreamsObject and
|
||||
// SetActivityStreamsObject methods to access and set this property.
|
||||
IsActivityStreamsObject() bool
|
||||
// IsActivityStreamsOffer returns true if this property has a type of
|
||||
// "Offer". When true, use the GetActivityStreamsOffer and
|
||||
// SetActivityStreamsOffer methods to access and set this property.
|
||||
IsActivityStreamsOffer() bool
|
||||
// IsActivityStreamsOrderedCollection returns true if this property has a
|
||||
// type of "OrderedCollection". When true, use the
|
||||
// GetActivityStreamsOrderedCollection and
|
||||
// SetActivityStreamsOrderedCollection methods to access and set this
|
||||
// property.
|
||||
IsActivityStreamsOrderedCollection() bool
|
||||
// IsActivityStreamsOrderedCollectionPage returns true if this property
|
||||
// has a type of "OrderedCollectionPage". When true, use the
|
||||
// GetActivityStreamsOrderedCollectionPage and
|
||||
// SetActivityStreamsOrderedCollectionPage methods to access and set
|
||||
// this property.
|
||||
IsActivityStreamsOrderedCollectionPage() bool
|
||||
// IsActivityStreamsOrganization returns true if this property has a type
|
||||
// of "Organization". When true, use the
|
||||
// GetActivityStreamsOrganization and SetActivityStreamsOrganization
|
||||
// methods to access and set this property.
|
||||
IsActivityStreamsOrganization() bool
|
||||
// IsActivityStreamsPage returns true if this property has a type of
|
||||
// "Page". When true, use the GetActivityStreamsPage and
|
||||
// SetActivityStreamsPage methods to access and set this property.
|
||||
IsActivityStreamsPage() bool
|
||||
// IsActivityStreamsPerson returns true if this property has a type of
|
||||
// "Person". When true, use the GetActivityStreamsPerson and
|
||||
// SetActivityStreamsPerson methods to access and set this property.
|
||||
IsActivityStreamsPerson() bool
|
||||
// IsActivityStreamsPlace returns true if this property has a type of
|
||||
// "Place". When true, use the GetActivityStreamsPlace and
|
||||
// SetActivityStreamsPlace methods to access and set this property.
|
||||
IsActivityStreamsPlace() bool
|
||||
// IsActivityStreamsProfile returns true if this property has a type of
|
||||
// "Profile". When true, use the GetActivityStreamsProfile and
|
||||
// SetActivityStreamsProfile methods to access and set this property.
|
||||
IsActivityStreamsProfile() bool
|
||||
// IsActivityStreamsQuestion returns true if this property has a type of
|
||||
// "Question". When true, use the GetActivityStreamsQuestion and
|
||||
// SetActivityStreamsQuestion methods to access and set this property.
|
||||
IsActivityStreamsQuestion() bool
|
||||
// IsActivityStreamsRead returns true if this property has a type of
|
||||
// "Read". When true, use the GetActivityStreamsRead and
|
||||
// SetActivityStreamsRead methods to access and set this property.
|
||||
IsActivityStreamsRead() bool
|
||||
// IsActivityStreamsReject returns true if this property has a type of
|
||||
// "Reject". When true, use the GetActivityStreamsReject and
|
||||
// SetActivityStreamsReject methods to access and set this property.
|
||||
IsActivityStreamsReject() bool
|
||||
// IsActivityStreamsRelationship returns true if this property has a type
|
||||
// of "Relationship". When true, use the
|
||||
// GetActivityStreamsRelationship and SetActivityStreamsRelationship
|
||||
// methods to access and set this property.
|
||||
IsActivityStreamsRelationship() bool
|
||||
// IsActivityStreamsRemove returns true if this property has a type of
|
||||
// "Remove". When true, use the GetActivityStreamsRemove and
|
||||
// SetActivityStreamsRemove methods to access and set this property.
|
||||
IsActivityStreamsRemove() bool
|
||||
// IsActivityStreamsService returns true if this property has a type of
|
||||
// "Service". When true, use the GetActivityStreamsService and
|
||||
// SetActivityStreamsService methods to access and set this property.
|
||||
IsActivityStreamsService() bool
|
||||
// IsActivityStreamsTentativeAccept returns true if this property has a
|
||||
// type of "TentativeAccept". When true, use the
|
||||
// GetActivityStreamsTentativeAccept and
|
||||
// SetActivityStreamsTentativeAccept methods to access and set this
|
||||
// property.
|
||||
IsActivityStreamsTentativeAccept() bool
|
||||
// IsActivityStreamsTentativeReject returns true if this property has a
|
||||
// type of "TentativeReject". When true, use the
|
||||
// GetActivityStreamsTentativeReject and
|
||||
// SetActivityStreamsTentativeReject methods to access and set this
|
||||
// property.
|
||||
IsActivityStreamsTentativeReject() bool
|
||||
// IsActivityStreamsTombstone returns true if this property has a type of
|
||||
// "Tombstone". When true, use the GetActivityStreamsTombstone and
|
||||
// SetActivityStreamsTombstone methods to access and set this property.
|
||||
IsActivityStreamsTombstone() bool
|
||||
// IsActivityStreamsTravel returns true if this property has a type of
|
||||
// "Travel". When true, use the GetActivityStreamsTravel and
|
||||
// SetActivityStreamsTravel methods to access and set this property.
|
||||
IsActivityStreamsTravel() bool
|
||||
// IsActivityStreamsUndo returns true if this property has a type of
|
||||
// "Undo". When true, use the GetActivityStreamsUndo and
|
||||
// SetActivityStreamsUndo methods to access and set this property.
|
||||
IsActivityStreamsUndo() bool
|
||||
// IsActivityStreamsUpdate returns true if this property has a type of
|
||||
// "Update". When true, use the GetActivityStreamsUpdate and
|
||||
// SetActivityStreamsUpdate methods to access and set this property.
|
||||
IsActivityStreamsUpdate() bool
|
||||
// IsActivityStreamsVideo returns true if this property has a type of
|
||||
// "Video". When true, use the GetActivityStreamsVideo and
|
||||
// SetActivityStreamsVideo methods to access and set this property.
|
||||
IsActivityStreamsVideo() bool
|
||||
// IsActivityStreamsView returns true if this property has a type of
|
||||
// "View". When true, use the GetActivityStreamsView and
|
||||
// SetActivityStreamsView methods to access and set this property.
|
||||
IsActivityStreamsView() bool
|
||||
// IsForgeFedBranch returns true if this property has a type of "Branch".
|
||||
// When true, use the GetForgeFedBranch and SetForgeFedBranch methods
|
||||
// to access and set this property.
|
||||
IsForgeFedBranch() bool
|
||||
// IsForgeFedCommit returns true if this property has a type of "Commit".
|
||||
// When true, use the GetForgeFedCommit and SetForgeFedCommit methods
|
||||
// to access and set this property.
|
||||
IsForgeFedCommit() bool
|
||||
// IsForgeFedPush returns true if this property has a type of "Push". When
|
||||
// true, use the GetForgeFedPush and SetForgeFedPush methods to access
|
||||
// and set this property.
|
||||
IsForgeFedPush() bool
|
||||
// IsForgeFedRepository returns true if this property has a type of
|
||||
// "Repository". When true, use the GetForgeFedRepository and
|
||||
// SetForgeFedRepository methods to access and set this property.
|
||||
IsForgeFedRepository() bool
|
||||
// IsForgeFedTicket returns true if this property has a type of "Ticket".
|
||||
// When true, use the GetForgeFedTicket and SetForgeFedTicket methods
|
||||
// to access and set this property.
|
||||
IsForgeFedTicket() bool
|
||||
// IsForgeFedTicketDependency returns true if this property has a type of
|
||||
// "TicketDependency". When true, use the GetForgeFedTicketDependency
|
||||
// and SetForgeFedTicketDependency methods to access and set this
|
||||
// property.
|
||||
IsForgeFedTicketDependency() bool
|
||||
// IsIRI returns true if this property is an IRI. When true, use GetIRI
|
||||
// and SetIRI to access and set this property
|
||||
IsIRI() bool
|
||||
// IsSchemaPropertyValue returns true if this property has a type of
|
||||
// "PropertyValue". When true, use the GetSchemaPropertyValue and
|
||||
// SetSchemaPropertyValue methods to access and set this property.
|
||||
IsSchemaPropertyValue() bool
|
||||
// IsTootEmoji returns true if this property has a type of "Emoji". When
|
||||
// true, use the GetTootEmoji and SetTootEmoji methods to access and
|
||||
// set this property.
|
||||
IsTootEmoji() bool
|
||||
// IsTootIdentityProof returns true if this property has a type of
|
||||
// "IdentityProof". When true, use the GetTootIdentityProof and
|
||||
// SetTootIdentityProof methods to access and set this property.
|
||||
IsTootIdentityProof() bool
|
||||
// JSONLDContext returns the JSONLD URIs required in the context string
|
||||
// for this property and the specific values that are set. The value
|
||||
// in the map is the alias used to import the property's value or
|
||||
// values.
|
||||
JSONLDContext() map[string]string
|
||||
// KindIndex computes an arbitrary value for indexing this kind of value.
|
||||
// This is a leaky API detail only for folks looking to replace the
|
||||
// go-fed implementation. Applications should not use this method.
|
||||
KindIndex() int
|
||||
// LessThan compares two instances of this property with an arbitrary but
|
||||
// stable comparison. Applications should not use this because it is
|
||||
// only meant to help alternative implementations to go-fed to be able
|
||||
// to normalize nonfunctional properties.
|
||||
LessThan(o ForgeFedCommittedByProperty) bool
|
||||
// Name returns the name of this property: "committedBy".
|
||||
Name() string
|
||||
// Serialize converts this into an interface representation suitable for
|
||||
// marshalling into a text or binary format. Applications should not
|
||||
// need this function as most typical use cases serialize types
|
||||
// instead of individual properties. It is exposed for alternatives to
|
||||
// go-fed implementations to use.
|
||||
Serialize() (interface{}, error)
|
||||
// SetActivityStreamsAccept sets the value of this property. Calling
|
||||
// IsActivityStreamsAccept afterwards returns true.
|
||||
SetActivityStreamsAccept(v ActivityStreamsAccept)
|
||||
// SetActivityStreamsActivity sets the value of this property. Calling
|
||||
// IsActivityStreamsActivity afterwards returns true.
|
||||
SetActivityStreamsActivity(v ActivityStreamsActivity)
|
||||
// SetActivityStreamsAdd sets the value of this property. Calling
|
||||
// IsActivityStreamsAdd afterwards returns true.
|
||||
SetActivityStreamsAdd(v ActivityStreamsAdd)
|
||||
// SetActivityStreamsAnnounce sets the value of this property. Calling
|
||||
// IsActivityStreamsAnnounce afterwards returns true.
|
||||
SetActivityStreamsAnnounce(v ActivityStreamsAnnounce)
|
||||
// SetActivityStreamsApplication sets the value of this property. Calling
|
||||
// IsActivityStreamsApplication afterwards returns true.
|
||||
SetActivityStreamsApplication(v ActivityStreamsApplication)
|
||||
// SetActivityStreamsArrive sets the value of this property. Calling
|
||||
// IsActivityStreamsArrive afterwards returns true.
|
||||
SetActivityStreamsArrive(v ActivityStreamsArrive)
|
||||
// SetActivityStreamsArticle sets the value of this property. Calling
|
||||
// IsActivityStreamsArticle afterwards returns true.
|
||||
SetActivityStreamsArticle(v ActivityStreamsArticle)
|
||||
// SetActivityStreamsAudio sets the value of this property. Calling
|
||||
// IsActivityStreamsAudio afterwards returns true.
|
||||
SetActivityStreamsAudio(v ActivityStreamsAudio)
|
||||
// SetActivityStreamsBlock sets the value of this property. Calling
|
||||
// IsActivityStreamsBlock afterwards returns true.
|
||||
SetActivityStreamsBlock(v ActivityStreamsBlock)
|
||||
// SetActivityStreamsCollection sets the value of this property. Calling
|
||||
// IsActivityStreamsCollection afterwards returns true.
|
||||
SetActivityStreamsCollection(v ActivityStreamsCollection)
|
||||
// SetActivityStreamsCollectionPage sets the value of this property.
|
||||
// Calling IsActivityStreamsCollectionPage afterwards returns true.
|
||||
SetActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
|
||||
// SetActivityStreamsCreate sets the value of this property. Calling
|
||||
// IsActivityStreamsCreate afterwards returns true.
|
||||
SetActivityStreamsCreate(v ActivityStreamsCreate)
|
||||
// SetActivityStreamsDelete sets the value of this property. Calling
|
||||
// IsActivityStreamsDelete afterwards returns true.
|
||||
SetActivityStreamsDelete(v ActivityStreamsDelete)
|
||||
// SetActivityStreamsDislike sets the value of this property. Calling
|
||||
// IsActivityStreamsDislike afterwards returns true.
|
||||
SetActivityStreamsDislike(v ActivityStreamsDislike)
|
||||
// SetActivityStreamsDocument sets the value of this property. Calling
|
||||
// IsActivityStreamsDocument afterwards returns true.
|
||||
SetActivityStreamsDocument(v ActivityStreamsDocument)
|
||||
// SetActivityStreamsEvent sets the value of this property. Calling
|
||||
// IsActivityStreamsEvent afterwards returns true.
|
||||
SetActivityStreamsEvent(v ActivityStreamsEvent)
|
||||
// SetActivityStreamsFlag sets the value of this property. Calling
|
||||
// IsActivityStreamsFlag afterwards returns true.
|
||||
SetActivityStreamsFlag(v ActivityStreamsFlag)
|
||||
// SetActivityStreamsFollow sets the value of this property. Calling
|
||||
// IsActivityStreamsFollow afterwards returns true.
|
||||
SetActivityStreamsFollow(v ActivityStreamsFollow)
|
||||
// SetActivityStreamsGroup sets the value of this property. Calling
|
||||
// IsActivityStreamsGroup afterwards returns true.
|
||||
SetActivityStreamsGroup(v ActivityStreamsGroup)
|
||||
// SetActivityStreamsIgnore sets the value of this property. Calling
|
||||
// IsActivityStreamsIgnore afterwards returns true.
|
||||
SetActivityStreamsIgnore(v ActivityStreamsIgnore)
|
||||
// SetActivityStreamsImage sets the value of this property. Calling
|
||||
// IsActivityStreamsImage afterwards returns true.
|
||||
SetActivityStreamsImage(v ActivityStreamsImage)
|
||||
// SetActivityStreamsIntransitiveActivity sets the value of this property.
|
||||
// Calling IsActivityStreamsIntransitiveActivity afterwards returns
|
||||
// true.
|
||||
SetActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
|
||||
// SetActivityStreamsInvite sets the value of this property. Calling
|
||||
// IsActivityStreamsInvite afterwards returns true.
|
||||
SetActivityStreamsInvite(v ActivityStreamsInvite)
|
||||
// SetActivityStreamsJoin sets the value of this property. Calling
|
||||
// IsActivityStreamsJoin afterwards returns true.
|
||||
SetActivityStreamsJoin(v ActivityStreamsJoin)
|
||||
// SetActivityStreamsLeave sets the value of this property. Calling
|
||||
// IsActivityStreamsLeave afterwards returns true.
|
||||
SetActivityStreamsLeave(v ActivityStreamsLeave)
|
||||
// SetActivityStreamsLike sets the value of this property. Calling
|
||||
// IsActivityStreamsLike afterwards returns true.
|
||||
SetActivityStreamsLike(v ActivityStreamsLike)
|
||||
// SetActivityStreamsListen sets the value of this property. Calling
|
||||
// IsActivityStreamsListen afterwards returns true.
|
||||
SetActivityStreamsListen(v ActivityStreamsListen)
|
||||
// SetActivityStreamsMove sets the value of this property. Calling
|
||||
// IsActivityStreamsMove afterwards returns true.
|
||||
SetActivityStreamsMove(v ActivityStreamsMove)
|
||||
// SetActivityStreamsNote sets the value of this property. Calling
|
||||
// IsActivityStreamsNote afterwards returns true.
|
||||
SetActivityStreamsNote(v ActivityStreamsNote)
|
||||
// SetActivityStreamsObject sets the value of this property. Calling
|
||||
// IsActivityStreamsObject afterwards returns true.
|
||||
SetActivityStreamsObject(v ActivityStreamsObject)
|
||||
// SetActivityStreamsOffer sets the value of this property. Calling
|
||||
// IsActivityStreamsOffer afterwards returns true.
|
||||
SetActivityStreamsOffer(v ActivityStreamsOffer)
|
||||
// SetActivityStreamsOrderedCollection sets the value of this property.
|
||||
// Calling IsActivityStreamsOrderedCollection afterwards returns true.
|
||||
SetActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
|
||||
// SetActivityStreamsOrderedCollectionPage sets the value of this
|
||||
// property. Calling IsActivityStreamsOrderedCollectionPage afterwards
|
||||
// returns true.
|
||||
SetActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
|
||||
// SetActivityStreamsOrganization sets the value of this property. Calling
|
||||
// IsActivityStreamsOrganization afterwards returns true.
|
||||
SetActivityStreamsOrganization(v ActivityStreamsOrganization)
|
||||
// SetActivityStreamsPage sets the value of this property. Calling
|
||||
// IsActivityStreamsPage afterwards returns true.
|
||||
SetActivityStreamsPage(v ActivityStreamsPage)
|
||||
// SetActivityStreamsPerson sets the value of this property. Calling
|
||||
// IsActivityStreamsPerson afterwards returns true.
|
||||
SetActivityStreamsPerson(v ActivityStreamsPerson)
|
||||
// SetActivityStreamsPlace sets the value of this property. Calling
|
||||
// IsActivityStreamsPlace afterwards returns true.
|
||||
SetActivityStreamsPlace(v ActivityStreamsPlace)
|
||||
// SetActivityStreamsProfile sets the value of this property. Calling
|
||||
// IsActivityStreamsProfile afterwards returns true.
|
||||
SetActivityStreamsProfile(v ActivityStreamsProfile)
|
||||
// SetActivityStreamsQuestion sets the value of this property. Calling
|
||||
// IsActivityStreamsQuestion afterwards returns true.
|
||||
SetActivityStreamsQuestion(v ActivityStreamsQuestion)
|
||||
// SetActivityStreamsRead sets the value of this property. Calling
|
||||
// IsActivityStreamsRead afterwards returns true.
|
||||
SetActivityStreamsRead(v ActivityStreamsRead)
|
||||
// SetActivityStreamsReject sets the value of this property. Calling
|
||||
// IsActivityStreamsReject afterwards returns true.
|
||||
SetActivityStreamsReject(v ActivityStreamsReject)
|
||||
// SetActivityStreamsRelationship sets the value of this property. Calling
|
||||
// IsActivityStreamsRelationship afterwards returns true.
|
||||
SetActivityStreamsRelationship(v ActivityStreamsRelationship)
|
||||
// SetActivityStreamsRemove sets the value of this property. Calling
|
||||
// IsActivityStreamsRemove afterwards returns true.
|
||||
SetActivityStreamsRemove(v ActivityStreamsRemove)
|
||||
// SetActivityStreamsService sets the value of this property. Calling
|
||||
// IsActivityStreamsService afterwards returns true.
|
||||
SetActivityStreamsService(v ActivityStreamsService)
|
||||
// SetActivityStreamsTentativeAccept sets the value of this property.
|
||||
// Calling IsActivityStreamsTentativeAccept afterwards returns true.
|
||||
SetActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
|
||||
// SetActivityStreamsTentativeReject sets the value of this property.
|
||||
// Calling IsActivityStreamsTentativeReject afterwards returns true.
|
||||
SetActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
|
||||
// SetActivityStreamsTombstone sets the value of this property. Calling
|
||||
// IsActivityStreamsTombstone afterwards returns true.
|
||||
SetActivityStreamsTombstone(v ActivityStreamsTombstone)
|
||||
// SetActivityStreamsTravel sets the value of this property. Calling
|
||||
// IsActivityStreamsTravel afterwards returns true.
|
||||
SetActivityStreamsTravel(v ActivityStreamsTravel)
|
||||
// SetActivityStreamsUndo sets the value of this property. Calling
|
||||
// IsActivityStreamsUndo afterwards returns true.
|
||||
SetActivityStreamsUndo(v ActivityStreamsUndo)
|
||||
// SetActivityStreamsUpdate sets the value of this property. Calling
|
||||
// IsActivityStreamsUpdate afterwards returns true.
|
||||
SetActivityStreamsUpdate(v ActivityStreamsUpdate)
|
||||
// SetActivityStreamsVideo sets the value of this property. Calling
|
||||
// IsActivityStreamsVideo afterwards returns true.
|
||||
SetActivityStreamsVideo(v ActivityStreamsVideo)
|
||||
// SetActivityStreamsView sets the value of this property. Calling
|
||||
// IsActivityStreamsView afterwards returns true.
|
||||
SetActivityStreamsView(v ActivityStreamsView)
|
||||
// SetForgeFedBranch sets the value of this property. Calling
|
||||
// IsForgeFedBranch afterwards returns true.
|
||||
SetForgeFedBranch(v ForgeFedBranch)
|
||||
// SetForgeFedCommit sets the value of this property. Calling
|
||||
// IsForgeFedCommit afterwards returns true.
|
||||
SetForgeFedCommit(v ForgeFedCommit)
|
||||
// SetForgeFedPush sets the value of this property. Calling IsForgeFedPush
|
||||
// afterwards returns true.
|
||||
SetForgeFedPush(v ForgeFedPush)
|
||||
// SetForgeFedRepository sets the value of this property. Calling
|
||||
// IsForgeFedRepository afterwards returns true.
|
||||
SetForgeFedRepository(v ForgeFedRepository)
|
||||
// SetForgeFedTicket sets the value of this property. Calling
|
||||
// IsForgeFedTicket afterwards returns true.
|
||||
SetForgeFedTicket(v ForgeFedTicket)
|
||||
// SetForgeFedTicketDependency sets the value of this property. Calling
|
||||
// IsForgeFedTicketDependency afterwards returns true.
|
||||
SetForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// SetIRI sets the value of this property. Calling IsIRI afterwards
|
||||
// returns true.
|
||||
SetIRI(v *url.URL)
|
||||
// SetSchemaPropertyValue sets the value of this property. Calling
|
||||
// IsSchemaPropertyValue afterwards returns true.
|
||||
SetSchemaPropertyValue(v SchemaPropertyValue)
|
||||
// SetTootEmoji sets the value of this property. Calling IsTootEmoji
|
||||
// afterwards returns true.
|
||||
SetTootEmoji(v TootEmoji)
|
||||
// SetTootIdentityProof sets the value of this property. Calling
|
||||
// IsTootIdentityProof afterwards returns true.
|
||||
SetTootIdentityProof(v TootIdentityProof)
|
||||
// SetType attempts to set the property for the arbitrary type. Returns an
|
||||
// error if it is not a valid type to set on this property.
|
||||
SetType(t Type) error
|
||||
}
|
||||
|
|
@ -1,60 +0,0 @@
|
|||
// Code generated by astool. DO NOT EDIT.
|
||||
|
||||
package vocab
|
||||
|
||||
import (
|
||||
"net/url"
|
||||
"time"
|
||||
)
|
||||
|
||||
// Specifies the time that a set of changes was committed into the Repository and
|
||||
// became a Commit in it. This can be different from the time the set of
|
||||
// changes was produced, e.g. if one person creates a patch and sends to
|
||||
// another, and the other person then applies the patch to their copy of the
|
||||
// repository. We call the former event "created" and the latter event
|
||||
// "committed", and this latter event is specified by the committed property.
|
||||
type ForgeFedCommittedProperty interface {
|
||||
// Clear ensures no value of this property is set. Calling
|
||||
// IsXMLSchemaDateTime afterwards will return false.
|
||||
Clear()
|
||||
// Get returns the value of this property. When IsXMLSchemaDateTime
|
||||
// returns false, Get will return any arbitrary value.
|
||||
Get() time.Time
|
||||
// GetIRI returns the IRI of this property. When IsIRI returns false,
|
||||
// GetIRI will return any arbitrary value.
|
||||
GetIRI() *url.URL
|
||||
// HasAny returns true if the value or IRI is set.
|
||||
HasAny() bool
|
||||
// IsIRI returns true if this property is an IRI.
|
||||
IsIRI() bool
|
||||
// IsXMLSchemaDateTime returns true if this property is set and not an IRI.
|
||||
IsXMLSchemaDateTime() bool
|
||||
// JSONLDContext returns the JSONLD URIs required in the context string
|
||||
// for this property and the specific values that are set. The value
|
||||
// in the map is the alias used to import the property's value or
|
||||
// values.
|
||||
JSONLDContext() map[string]string
|
||||
// KindIndex computes an arbitrary value for indexing this kind of value.
|
||||
// This is a leaky API detail only for folks looking to replace the
|
||||
// go-fed implementation. Applications should not use this method.
|
||||
KindIndex() int
|
||||
// LessThan compares two instances of this property with an arbitrary but
|
||||
// stable comparison. Applications should not use this because it is
|
||||
// only meant to help alternative implementations to go-fed to be able
|
||||
// to normalize nonfunctional properties.
|
||||
LessThan(o ForgeFedCommittedProperty) bool
|
||||
// Name returns the name of this property: "committed".
|
||||
Name() string
|
||||
// Serialize converts this into an interface representation suitable for
|
||||
// marshalling into a text or binary format. Applications should not
|
||||
// need this function as most typical use cases serialize types
|
||||
// instead of individual properties. It is exposed for alternatives to
|
||||
// go-fed implementations to use.
|
||||
Serialize() (interface{}, error)
|
||||
// Set sets the value of this property. Calling IsXMLSchemaDateTime
|
||||
// afterwards will return true.
|
||||
Set(v time.Time)
|
||||
// SetIRI sets the value of this property. Calling IsIRI afterwards will
|
||||
// return true.
|
||||
SetIRI(v *url.URL)
|
||||
}
|
||||
|
|
@ -1,82 +0,0 @@
|
|||
// Code generated by astool. DO NOT EDIT.
|
||||
|
||||
package vocab
|
||||
|
||||
import "net/url"
|
||||
|
||||
// Identifies a Collection of TicketDependency which specify tickets that depends
|
||||
// on this Ticket, i.e. this ticket is the object of the dependsOn
|
||||
// relationship. Often called "reverse dependencies".
|
||||
type ForgeFedDependantsProperty interface {
|
||||
// Clear ensures no value of this property is set. Calling HasAny or any
|
||||
// of the 'Is' methods afterwards will return false.
|
||||
Clear()
|
||||
// GetActivityStreamsOrderedCollection returns the value of this property.
|
||||
// When IsActivityStreamsOrderedCollection returns false,
|
||||
// GetActivityStreamsOrderedCollection will return an arbitrary value.
|
||||
GetActivityStreamsOrderedCollection() ActivityStreamsOrderedCollection
|
||||
// GetActivityStreamsOrderedCollectionPage returns the value of this
|
||||
// property. When IsActivityStreamsOrderedCollectionPage returns
|
||||
// false, GetActivityStreamsOrderedCollectionPage will return an
|
||||
// arbitrary value.
|
||||
GetActivityStreamsOrderedCollectionPage() ActivityStreamsOrderedCollectionPage
|
||||
// GetIRI returns the IRI of this property. When IsIRI returns false,
|
||||
// GetIRI will return an arbitrary value.
|
||||
GetIRI() *url.URL
|
||||
// GetType returns the value in this property as a Type. Returns nil if
|
||||
// the value is not an ActivityStreams type, such as an IRI or another
|
||||
// value.
|
||||
GetType() Type
|
||||
// HasAny returns true if any of the different values is set.
|
||||
HasAny() bool
|
||||
// IsActivityStreamsOrderedCollection returns true if this property has a
|
||||
// type of "OrderedCollection". When true, use the
|
||||
// GetActivityStreamsOrderedCollection and
|
||||
// SetActivityStreamsOrderedCollection methods to access and set this
|
||||
// property.
|
||||
IsActivityStreamsOrderedCollection() bool
|
||||
// IsActivityStreamsOrderedCollectionPage returns true if this property
|
||||
// has a type of "OrderedCollectionPage". When true, use the
|
||||
// GetActivityStreamsOrderedCollectionPage and
|
||||
// SetActivityStreamsOrderedCollectionPage methods to access and set
|
||||
// this property.
|
||||
IsActivityStreamsOrderedCollectionPage() bool
|
||||
// IsIRI returns true if this property is an IRI. When true, use GetIRI
|
||||
// and SetIRI to access and set this property
|
||||
IsIRI() bool
|
||||
// JSONLDContext returns the JSONLD URIs required in the context string
|
||||
// for this property and the specific values that are set. The value
|
||||
// in the map is the alias used to import the property's value or
|
||||
// values.
|
||||
JSONLDContext() map[string]string
|
||||
// KindIndex computes an arbitrary value for indexing this kind of value.
|
||||
// This is a leaky API detail only for folks looking to replace the
|
||||
// go-fed implementation. Applications should not use this method.
|
||||
KindIndex() int
|
||||
// LessThan compares two instances of this property with an arbitrary but
|
||||
// stable comparison. Applications should not use this because it is
|
||||
// only meant to help alternative implementations to go-fed to be able
|
||||
// to normalize nonfunctional properties.
|
||||
LessThan(o ForgeFedDependantsProperty) bool
|
||||
// Name returns the name of this property: "dependants".
|
||||
Name() string
|
||||
// Serialize converts this into an interface representation suitable for
|
||||
// marshalling into a text or binary format. Applications should not
|
||||
// need this function as most typical use cases serialize types
|
||||
// instead of individual properties. It is exposed for alternatives to
|
||||
// go-fed implementations to use.
|
||||
Serialize() (interface{}, error)
|
||||
// SetActivityStreamsOrderedCollection sets the value of this property.
|
||||
// Calling IsActivityStreamsOrderedCollection afterwards returns true.
|
||||
SetActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
|
||||
// SetActivityStreamsOrderedCollectionPage sets the value of this
|
||||
// property. Calling IsActivityStreamsOrderedCollectionPage afterwards
|
||||
// returns true.
|
||||
SetActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
|
||||
// SetIRI sets the value of this property. Calling IsIRI afterwards
|
||||
// returns true.
|
||||
SetIRI(v *url.URL)
|
||||
// SetType attempts to set the property for the arbitrary type. Returns an
|
||||
// error if it is not a valid type to set on this property.
|
||||
SetType(t Type) error
|
||||
}
|
||||
|
|
@ -1,156 +0,0 @@
|
|||
// Code generated by astool. DO NOT EDIT.
|
||||
|
||||
package vocab
|
||||
|
||||
import "net/url"
|
||||
|
||||
// ForgeFedDependedByPropertyIterator represents a single value for the
|
||||
// "dependedBy" property.
|
||||
type ForgeFedDependedByPropertyIterator interface {
|
||||
// Get returns the value of this property. When IsForgeFedTicket returns
|
||||
// false, Get will return any arbitrary value.
|
||||
Get() ForgeFedTicket
|
||||
// GetIRI returns the IRI of this property. When IsIRI returns false,
|
||||
// GetIRI will return any arbitrary value.
|
||||
GetIRI() *url.URL
|
||||
// GetType returns the value in this property as a Type. Returns nil if
|
||||
// the value is not an ActivityStreams type, such as an IRI or another
|
||||
// value.
|
||||
GetType() Type
|
||||
// HasAny returns true if the value or IRI is set.
|
||||
HasAny() bool
|
||||
// IsForgeFedTicket returns true if this property is set and not an IRI.
|
||||
IsForgeFedTicket() bool
|
||||
// IsIRI returns true if this property is an IRI.
|
||||
IsIRI() bool
|
||||
// JSONLDContext returns the JSONLD URIs required in the context string
|
||||
// for this property and the specific values that are set. The value
|
||||
// in the map is the alias used to import the property's value or
|
||||
// values.
|
||||
JSONLDContext() map[string]string
|
||||
// KindIndex computes an arbitrary value for indexing this kind of value.
|
||||
// This is a leaky API detail only for folks looking to replace the
|
||||
// go-fed implementation. Applications should not use this method.
|
||||
KindIndex() int
|
||||
// LessThan compares two instances of this property with an arbitrary but
|
||||
// stable comparison. Applications should not use this because it is
|
||||
// only meant to help alternative implementations to go-fed to be able
|
||||
// to normalize nonfunctional properties.
|
||||
LessThan(o ForgeFedDependedByPropertyIterator) bool
|
||||
// Name returns the name of this property: "ForgeFedDependedBy".
|
||||
Name() string
|
||||
// Next returns the next iterator, or nil if there is no next iterator.
|
||||
Next() ForgeFedDependedByPropertyIterator
|
||||
// Prev returns the previous iterator, or nil if there is no previous
|
||||
// iterator.
|
||||
Prev() ForgeFedDependedByPropertyIterator
|
||||
// Set sets the value of this property. Calling IsForgeFedTicket
|
||||
// afterwards will return true.
|
||||
Set(v ForgeFedTicket)
|
||||
// SetIRI sets the value of this property. Calling IsIRI afterwards will
|
||||
// return true.
|
||||
SetIRI(v *url.URL)
|
||||
// SetType attempts to set the property for the arbitrary type. Returns an
|
||||
// error if it is not a valid type to set on this property.
|
||||
SetType(t Type) error
|
||||
}
|
||||
|
||||
// Identifies one or more tickets which depend on this Ticket, i.e. they can’t
|
||||
// be resolved without this tickets being resolved too.
|
||||
type ForgeFedDependedByProperty interface {
|
||||
// AppendForgeFedTicket appends a Ticket value to the back of a list of
|
||||
// the property "dependedBy". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
AppendForgeFedTicket(v ForgeFedTicket)
|
||||
// AppendIRI appends an IRI value to the back of a list of the property
|
||||
// "dependedBy"
|
||||
AppendIRI(v *url.URL)
|
||||
// PrependType prepends an arbitrary type value to the front of a list of
|
||||
// the property "dependedBy". Invalidates iterators that are
|
||||
// traversing using Prev. Returns an error if the type is not a valid
|
||||
// one to set for this property.
|
||||
AppendType(t Type) error
|
||||
// At returns the property value for the specified index. Panics if the
|
||||
// index is out of bounds.
|
||||
At(index int) ForgeFedDependedByPropertyIterator
|
||||
// Begin returns the first iterator, or nil if empty. Can be used with the
|
||||
// iterator's Next method and this property's End method to iterate
|
||||
// from front to back through all values.
|
||||
Begin() ForgeFedDependedByPropertyIterator
|
||||
// Empty returns returns true if there are no elements.
|
||||
Empty() bool
|
||||
// End returns beyond-the-last iterator, which is nil. Can be used with
|
||||
// the iterator's Next method and this property's Begin method to
|
||||
// iterate from front to back through all values.
|
||||
End() ForgeFedDependedByPropertyIterator
|
||||
// InsertForgeFedTicket inserts a Ticket value at the specified index for
|
||||
// a property "dependedBy". Existing elements at that index and higher
|
||||
// are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedTicket(idx int, v ForgeFedTicket)
|
||||
// Insert inserts an IRI value at the specified index for a property
|
||||
// "dependedBy". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertIRI(idx int, v *url.URL)
|
||||
// PrependType prepends an arbitrary type value to the front of a list of
|
||||
// the property "dependedBy". Invalidates all iterators. Returns an
|
||||
// error if the type is not a valid one to set for this property.
|
||||
InsertType(idx int, t Type) error
|
||||
// JSONLDContext returns the JSONLD URIs required in the context string
|
||||
// for this property and the specific values that are set. The value
|
||||
// in the map is the alias used to import the property's value or
|
||||
// values.
|
||||
JSONLDContext() map[string]string
|
||||
// KindIndex computes an arbitrary value for indexing this kind of value.
|
||||
// This is a leaky API method specifically needed only for alternate
|
||||
// implementations for go-fed. Applications should not use this
|
||||
// method. Panics if the index is out of bounds.
|
||||
KindIndex(idx int) int
|
||||
// Len returns the number of values that exist for the "dependedBy"
|
||||
// property.
|
||||
Len() (length int)
|
||||
// Less computes whether another property is less than this one. Mixing
|
||||
// types results in a consistent but arbitrary ordering
|
||||
Less(i, j int) bool
|
||||
// LessThan compares two instances of this property with an arbitrary but
|
||||
// stable comparison. Applications should not use this because it is
|
||||
// only meant to help alternative implementations to go-fed to be able
|
||||
// to normalize nonfunctional properties.
|
||||
LessThan(o ForgeFedDependedByProperty) bool
|
||||
// Name returns the name of this property ("dependedBy") with any alias.
|
||||
Name() string
|
||||
// PrependForgeFedTicket prepends a Ticket value to the front of a list of
|
||||
// the property "dependedBy". Invalidates all iterators.
|
||||
PrependForgeFedTicket(v ForgeFedTicket)
|
||||
// PrependIRI prepends an IRI value to the front of a list of the property
|
||||
// "dependedBy".
|
||||
PrependIRI(v *url.URL)
|
||||
// PrependType prepends an arbitrary type value to the front of a list of
|
||||
// the property "dependedBy". Invalidates all iterators. Returns an
|
||||
// error if the type is not a valid one to set for this property.
|
||||
PrependType(t Type) error
|
||||
// Remove deletes an element at the specified index from a list of the
|
||||
// property "dependedBy", regardless of its type. Panics if the index
|
||||
// is out of bounds. Invalidates all iterators.
|
||||
Remove(idx int)
|
||||
// Serialize converts this into an interface representation suitable for
|
||||
// marshalling into a text or binary format. Applications should not
|
||||
// need this function as most typical use cases serialize types
|
||||
// instead of individual properties. It is exposed for alternatives to
|
||||
// go-fed implementations to use.
|
||||
Serialize() (interface{}, error)
|
||||
// Set sets a Ticket value to be at the specified index for the property
|
||||
// "dependedBy". Panics if the index is out of bounds. Invalidates all
|
||||
// iterators.
|
||||
Set(idx int, v ForgeFedTicket)
|
||||
// SetIRI sets an IRI value to be at the specified index for the property
|
||||
// "dependedBy". Panics if the index is out of bounds.
|
||||
SetIRI(idx int, v *url.URL)
|
||||
// SetType sets an arbitrary type value to the specified index of the
|
||||
// property "dependedBy". Invalidates all iterators. Returns an error
|
||||
// if the type is not a valid one to set for this property. Panics if
|
||||
// the index is out of bounds.
|
||||
SetType(idx int, t Type) error
|
||||
// Swap swaps the location of values at two indices for the "dependedBy"
|
||||
// property.
|
||||
Swap(i, j int)
|
||||
}
|
||||
|
|
@ -1,82 +0,0 @@
|
|||
// Code generated by astool. DO NOT EDIT.
|
||||
|
||||
package vocab
|
||||
|
||||
import "net/url"
|
||||
|
||||
// Identifies a Collection of TicketDependency which specify tickets that this
|
||||
// Ticket depends on, i.e. this ticket is the subject of the dependsOn
|
||||
// relationship.
|
||||
type ForgeFedDependenciesProperty interface {
|
||||
// Clear ensures no value of this property is set. Calling HasAny or any
|
||||
// of the 'Is' methods afterwards will return false.
|
||||
Clear()
|
||||
// GetActivityStreamsOrderedCollection returns the value of this property.
|
||||
// When IsActivityStreamsOrderedCollection returns false,
|
||||
// GetActivityStreamsOrderedCollection will return an arbitrary value.
|
||||
GetActivityStreamsOrderedCollection() ActivityStreamsOrderedCollection
|
||||
// GetActivityStreamsOrderedCollectionPage returns the value of this
|
||||
// property. When IsActivityStreamsOrderedCollectionPage returns
|
||||
// false, GetActivityStreamsOrderedCollectionPage will return an
|
||||
// arbitrary value.
|
||||
GetActivityStreamsOrderedCollectionPage() ActivityStreamsOrderedCollectionPage
|
||||
// GetIRI returns the IRI of this property. When IsIRI returns false,
|
||||
// GetIRI will return an arbitrary value.
|
||||
GetIRI() *url.URL
|
||||
// GetType returns the value in this property as a Type. Returns nil if
|
||||
// the value is not an ActivityStreams type, such as an IRI or another
|
||||
// value.
|
||||
GetType() Type
|
||||
// HasAny returns true if any of the different values is set.
|
||||
HasAny() bool
|
||||
// IsActivityStreamsOrderedCollection returns true if this property has a
|
||||
// type of "OrderedCollection". When true, use the
|
||||
// GetActivityStreamsOrderedCollection and
|
||||
// SetActivityStreamsOrderedCollection methods to access and set this
|
||||
// property.
|
||||
IsActivityStreamsOrderedCollection() bool
|
||||
// IsActivityStreamsOrderedCollectionPage returns true if this property
|
||||
// has a type of "OrderedCollectionPage". When true, use the
|
||||
// GetActivityStreamsOrderedCollectionPage and
|
||||
// SetActivityStreamsOrderedCollectionPage methods to access and set
|
||||
// this property.
|
||||
IsActivityStreamsOrderedCollectionPage() bool
|
||||
// IsIRI returns true if this property is an IRI. When true, use GetIRI
|
||||
// and SetIRI to access and set this property
|
||||
IsIRI() bool
|
||||
// JSONLDContext returns the JSONLD URIs required in the context string
|
||||
// for this property and the specific values that are set. The value
|
||||
// in the map is the alias used to import the property's value or
|
||||
// values.
|
||||
JSONLDContext() map[string]string
|
||||
// KindIndex computes an arbitrary value for indexing this kind of value.
|
||||
// This is a leaky API detail only for folks looking to replace the
|
||||
// go-fed implementation. Applications should not use this method.
|
||||
KindIndex() int
|
||||
// LessThan compares two instances of this property with an arbitrary but
|
||||
// stable comparison. Applications should not use this because it is
|
||||
// only meant to help alternative implementations to go-fed to be able
|
||||
// to normalize nonfunctional properties.
|
||||
LessThan(o ForgeFedDependenciesProperty) bool
|
||||
// Name returns the name of this property: "dependencies".
|
||||
Name() string
|
||||
// Serialize converts this into an interface representation suitable for
|
||||
// marshalling into a text or binary format. Applications should not
|
||||
// need this function as most typical use cases serialize types
|
||||
// instead of individual properties. It is exposed for alternatives to
|
||||
// go-fed implementations to use.
|
||||
Serialize() (interface{}, error)
|
||||
// SetActivityStreamsOrderedCollection sets the value of this property.
|
||||
// Calling IsActivityStreamsOrderedCollection afterwards returns true.
|
||||
SetActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
|
||||
// SetActivityStreamsOrderedCollectionPage sets the value of this
|
||||
// property. Calling IsActivityStreamsOrderedCollectionPage afterwards
|
||||
// returns true.
|
||||
SetActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
|
||||
// SetIRI sets the value of this property. Calling IsIRI afterwards
|
||||
// returns true.
|
||||
SetIRI(v *url.URL)
|
||||
// SetType attempts to set the property for the arbitrary type. Returns an
|
||||
// error if it is not a valid type to set on this property.
|
||||
SetType(t Type) error
|
||||
}
|
||||
|
|
@ -1,156 +0,0 @@
|
|||
// Code generated by astool. DO NOT EDIT.
|
||||
|
||||
package vocab
|
||||
|
||||
import "net/url"
|
||||
|
||||
// ForgeFedDependsOnPropertyIterator represents a single value for the "dependsOn"
|
||||
// property.
|
||||
type ForgeFedDependsOnPropertyIterator interface {
|
||||
// Get returns the value of this property. When IsForgeFedTicket returns
|
||||
// false, Get will return any arbitrary value.
|
||||
Get() ForgeFedTicket
|
||||
// GetIRI returns the IRI of this property. When IsIRI returns false,
|
||||
// GetIRI will return any arbitrary value.
|
||||
GetIRI() *url.URL
|
||||
// GetType returns the value in this property as a Type. Returns nil if
|
||||
// the value is not an ActivityStreams type, such as an IRI or another
|
||||
// value.
|
||||
GetType() Type
|
||||
// HasAny returns true if the value or IRI is set.
|
||||
HasAny() bool
|
||||
// IsForgeFedTicket returns true if this property is set and not an IRI.
|
||||
IsForgeFedTicket() bool
|
||||
// IsIRI returns true if this property is an IRI.
|
||||
IsIRI() bool
|
||||
// JSONLDContext returns the JSONLD URIs required in the context string
|
||||
// for this property and the specific values that are set. The value
|
||||
// in the map is the alias used to import the property's value or
|
||||
// values.
|
||||
JSONLDContext() map[string]string
|
||||
// KindIndex computes an arbitrary value for indexing this kind of value.
|
||||
// This is a leaky API detail only for folks looking to replace the
|
||||
// go-fed implementation. Applications should not use this method.
|
||||
KindIndex() int
|
||||
// LessThan compares two instances of this property with an arbitrary but
|
||||
// stable comparison. Applications should not use this because it is
|
||||
// only meant to help alternative implementations to go-fed to be able
|
||||
// to normalize nonfunctional properties.
|
||||
LessThan(o ForgeFedDependsOnPropertyIterator) bool
|
||||
// Name returns the name of this property: "ForgeFedDependsOn".
|
||||
Name() string
|
||||
// Next returns the next iterator, or nil if there is no next iterator.
|
||||
Next() ForgeFedDependsOnPropertyIterator
|
||||
// Prev returns the previous iterator, or nil if there is no previous
|
||||
// iterator.
|
||||
Prev() ForgeFedDependsOnPropertyIterator
|
||||
// Set sets the value of this property. Calling IsForgeFedTicket
|
||||
// afterwards will return true.
|
||||
Set(v ForgeFedTicket)
|
||||
// SetIRI sets the value of this property. Calling IsIRI afterwards will
|
||||
// return true.
|
||||
SetIRI(v *url.URL)
|
||||
// SetType attempts to set the property for the arbitrary type. Returns an
|
||||
// error if it is not a valid type to set on this property.
|
||||
SetType(t Type) error
|
||||
}
|
||||
|
||||
// Identifies one or more tickets on which this Ticket depends, i.e. it can’t be
|
||||
// resolved without those tickets being resolved too.
|
||||
type ForgeFedDependsOnProperty interface {
|
||||
// AppendForgeFedTicket appends a Ticket value to the back of a list of
|
||||
// the property "dependsOn". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
AppendForgeFedTicket(v ForgeFedTicket)
|
||||
// AppendIRI appends an IRI value to the back of a list of the property
|
||||
// "dependsOn"
|
||||
AppendIRI(v *url.URL)
|
||||
// PrependType prepends an arbitrary type value to the front of a list of
|
||||
// the property "dependsOn". Invalidates iterators that are traversing
|
||||
// using Prev. Returns an error if the type is not a valid one to set
|
||||
// for this property.
|
||||
AppendType(t Type) error
|
||||
// At returns the property value for the specified index. Panics if the
|
||||
// index is out of bounds.
|
||||
At(index int) ForgeFedDependsOnPropertyIterator
|
||||
// Begin returns the first iterator, or nil if empty. Can be used with the
|
||||
// iterator's Next method and this property's End method to iterate
|
||||
// from front to back through all values.
|
||||
Begin() ForgeFedDependsOnPropertyIterator
|
||||
// Empty returns returns true if there are no elements.
|
||||
Empty() bool
|
||||
// End returns beyond-the-last iterator, which is nil. Can be used with
|
||||
// the iterator's Next method and this property's Begin method to
|
||||
// iterate from front to back through all values.
|
||||
End() ForgeFedDependsOnPropertyIterator
|
||||
// InsertForgeFedTicket inserts a Ticket value at the specified index for
|
||||
// a property "dependsOn". Existing elements at that index and higher
|
||||
// are shifted back once. Invalidates all iterators.
|
||||
InsertForgeFedTicket(idx int, v ForgeFedTicket)
|
||||
// Insert inserts an IRI value at the specified index for a property
|
||||
// "dependsOn". Existing elements at that index and higher are shifted
|
||||
// back once. Invalidates all iterators.
|
||||
InsertIRI(idx int, v *url.URL)
|
||||
// PrependType prepends an arbitrary type value to the front of a list of
|
||||
// the property "dependsOn". Invalidates all iterators. Returns an
|
||||
// error if the type is not a valid one to set for this property.
|
||||
InsertType(idx int, t Type) error
|
||||
// JSONLDContext returns the JSONLD URIs required in the context string
|
||||
// for this property and the specific values that are set. The value
|
||||
// in the map is the alias used to import the property's value or
|
||||
// values.
|
||||
JSONLDContext() map[string]string
|
||||
// KindIndex computes an arbitrary value for indexing this kind of value.
|
||||
// This is a leaky API method specifically needed only for alternate
|
||||
// implementations for go-fed. Applications should not use this
|
||||
// method. Panics if the index is out of bounds.
|
||||
KindIndex(idx int) int
|
||||
// Len returns the number of values that exist for the "dependsOn"
|
||||
// property.
|
||||
Len() (length int)
|
||||
// Less computes whether another property is less than this one. Mixing
|
||||
// types results in a consistent but arbitrary ordering
|
||||
Less(i, j int) bool
|
||||
// LessThan compares two instances of this property with an arbitrary but
|
||||
// stable comparison. Applications should not use this because it is
|
||||
// only meant to help alternative implementations to go-fed to be able
|
||||
// to normalize nonfunctional properties.
|
||||
LessThan(o ForgeFedDependsOnProperty) bool
|
||||
// Name returns the name of this property ("dependsOn") with any alias.
|
||||
Name() string
|
||||
// PrependForgeFedTicket prepends a Ticket value to the front of a list of
|
||||
// the property "dependsOn". Invalidates all iterators.
|
||||
PrependForgeFedTicket(v ForgeFedTicket)
|
||||
// PrependIRI prepends an IRI value to the front of a list of the property
|
||||
// "dependsOn".
|
||||
PrependIRI(v *url.URL)
|
||||
// PrependType prepends an arbitrary type value to the front of a list of
|
||||
// the property "dependsOn". Invalidates all iterators. Returns an
|
||||
// error if the type is not a valid one to set for this property.
|
||||
PrependType(t Type) error
|
||||
// Remove deletes an element at the specified index from a list of the
|
||||
// property "dependsOn", regardless of its type. Panics if the index
|
||||
// is out of bounds. Invalidates all iterators.
|
||||
Remove(idx int)
|
||||
// Serialize converts this into an interface representation suitable for
|
||||
// marshalling into a text or binary format. Applications should not
|
||||
// need this function as most typical use cases serialize types
|
||||
// instead of individual properties. It is exposed for alternatives to
|
||||
// go-fed implementations to use.
|
||||
Serialize() (interface{}, error)
|
||||
// Set sets a Ticket value to be at the specified index for the property
|
||||
// "dependsOn". Panics if the index is out of bounds. Invalidates all
|
||||
// iterators.
|
||||
Set(idx int, v ForgeFedTicket)
|
||||
// SetIRI sets an IRI value to be at the specified index for the property
|
||||
// "dependsOn". Panics if the index is out of bounds.
|
||||
SetIRI(idx int, v *url.URL)
|
||||
// SetType sets an arbitrary type value to the specified index of the
|
||||
// property "dependsOn". Invalidates all iterators. Returns an error
|
||||
// if the type is not a valid one to set for this property. Panics if
|
||||
// the index is out of bounds.
|
||||
SetType(idx int, t Type) error
|
||||
// Swap swaps the location of values at two indices for the "dependsOn"
|
||||
// property.
|
||||
Swap(i, j int)
|
||||
}
|
||||
|
|
@ -1,763 +0,0 @@
|
|||
// Code generated by astool. DO NOT EDIT.
|
||||
|
||||
package vocab
|
||||
|
||||
import "net/url"
|
||||
|
||||
// Specifies the description text of a Commit, which is an optional possibly
|
||||
// multi-line text provided in addition to the one-line commit title. The
|
||||
// range of the description property works the same way the range of the
|
||||
// ActivityPub source property works.
|
||||
//
|
||||
// {
|
||||
// "@context": [
|
||||
// "https://www.w3.org/ns/activitystreams",
|
||||
// "https://forgefed.peers.community/ns"
|
||||
// ],
|
||||
// "attributedTo": "https://example.org/bob",
|
||||
// "context": "https://example.org/alice/myrepo",
|
||||
// "created": "2019-07-11T12:34:56Z",
|
||||
// "description": {
|
||||
// "content": "It's about time people can install on their computers!",
|
||||
// "mediaType": "text/plain"
|
||||
// },
|
||||
// "hash": "109ec9a09c7df7fec775d2ba0b9d466e5643ec8c",
|
||||
// "id": "https://example.org/alice/myrepo/commits/109ec9a09c7df7fec775d2ba0b9d466e5643ec8c",
|
||||
// "summary": "Add an installation script, fixes issue #89",
|
||||
// "type": "Commit"
|
||||
// }
|
||||
type ForgeFedDescriptionProperty interface {
|
||||
// Clear ensures no value of this property is set. Calling HasAny or any
|
||||
// of the 'Is' methods afterwards will return false.
|
||||
Clear()
|
||||
// GetActivityStreamsAccept returns the value of this property. When
|
||||
// IsActivityStreamsAccept returns false, GetActivityStreamsAccept
|
||||
// will return an arbitrary value.
|
||||
GetActivityStreamsAccept() ActivityStreamsAccept
|
||||
// GetActivityStreamsActivity returns the value of this property. When
|
||||
// IsActivityStreamsActivity returns false, GetActivityStreamsActivity
|
||||
// will return an arbitrary value.
|
||||
GetActivityStreamsActivity() ActivityStreamsActivity
|
||||
// GetActivityStreamsAdd returns the value of this property. When
|
||||
// IsActivityStreamsAdd returns false, GetActivityStreamsAdd will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsAdd() ActivityStreamsAdd
|
||||
// GetActivityStreamsAnnounce returns the value of this property. When
|
||||
// IsActivityStreamsAnnounce returns false, GetActivityStreamsAnnounce
|
||||
// will return an arbitrary value.
|
||||
GetActivityStreamsAnnounce() ActivityStreamsAnnounce
|
||||
// GetActivityStreamsApplication returns the value of this property. When
|
||||
// IsActivityStreamsApplication returns false,
|
||||
// GetActivityStreamsApplication will return an arbitrary value.
|
||||
GetActivityStreamsApplication() ActivityStreamsApplication
|
||||
// GetActivityStreamsArrive returns the value of this property. When
|
||||
// IsActivityStreamsArrive returns false, GetActivityStreamsArrive
|
||||
// will return an arbitrary value.
|
||||
GetActivityStreamsArrive() ActivityStreamsArrive
|
||||
// GetActivityStreamsArticle returns the value of this property. When
|
||||
// IsActivityStreamsArticle returns false, GetActivityStreamsArticle
|
||||
// will return an arbitrary value.
|
||||
GetActivityStreamsArticle() ActivityStreamsArticle
|
||||
// GetActivityStreamsAudio returns the value of this property. When
|
||||
// IsActivityStreamsAudio returns false, GetActivityStreamsAudio will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsAudio() ActivityStreamsAudio
|
||||
// GetActivityStreamsBlock returns the value of this property. When
|
||||
// IsActivityStreamsBlock returns false, GetActivityStreamsBlock will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsBlock() ActivityStreamsBlock
|
||||
// GetActivityStreamsCollection returns the value of this property. When
|
||||
// IsActivityStreamsCollection returns false,
|
||||
// GetActivityStreamsCollection will return an arbitrary value.
|
||||
GetActivityStreamsCollection() ActivityStreamsCollection
|
||||
// GetActivityStreamsCollectionPage returns the value of this property.
|
||||
// When IsActivityStreamsCollectionPage returns false,
|
||||
// GetActivityStreamsCollectionPage will return an arbitrary value.
|
||||
GetActivityStreamsCollectionPage() ActivityStreamsCollectionPage
|
||||
// GetActivityStreamsCreate returns the value of this property. When
|
||||
// IsActivityStreamsCreate returns false, GetActivityStreamsCreate
|
||||
// will return an arbitrary value.
|
||||
GetActivityStreamsCreate() ActivityStreamsCreate
|
||||
// GetActivityStreamsDelete returns the value of this property. When
|
||||
// IsActivityStreamsDelete returns false, GetActivityStreamsDelete
|
||||
// will return an arbitrary value.
|
||||
GetActivityStreamsDelete() ActivityStreamsDelete
|
||||
// GetActivityStreamsDislike returns the value of this property. When
|
||||
// IsActivityStreamsDislike returns false, GetActivityStreamsDislike
|
||||
// will return an arbitrary value.
|
||||
GetActivityStreamsDislike() ActivityStreamsDislike
|
||||
// GetActivityStreamsDocument returns the value of this property. When
|
||||
// IsActivityStreamsDocument returns false, GetActivityStreamsDocument
|
||||
// will return an arbitrary value.
|
||||
GetActivityStreamsDocument() ActivityStreamsDocument
|
||||
// GetActivityStreamsEvent returns the value of this property. When
|
||||
// IsActivityStreamsEvent returns false, GetActivityStreamsEvent will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsEvent() ActivityStreamsEvent
|
||||
// GetActivityStreamsFlag returns the value of this property. When
|
||||
// IsActivityStreamsFlag returns false, GetActivityStreamsFlag will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsFlag() ActivityStreamsFlag
|
||||
// GetActivityStreamsFollow returns the value of this property. When
|
||||
// IsActivityStreamsFollow returns false, GetActivityStreamsFollow
|
||||
// will return an arbitrary value.
|
||||
GetActivityStreamsFollow() ActivityStreamsFollow
|
||||
// GetActivityStreamsGroup returns the value of this property. When
|
||||
// IsActivityStreamsGroup returns false, GetActivityStreamsGroup will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsGroup() ActivityStreamsGroup
|
||||
// GetActivityStreamsIgnore returns the value of this property. When
|
||||
// IsActivityStreamsIgnore returns false, GetActivityStreamsIgnore
|
||||
// will return an arbitrary value.
|
||||
GetActivityStreamsIgnore() ActivityStreamsIgnore
|
||||
// GetActivityStreamsImage returns the value of this property. When
|
||||
// IsActivityStreamsImage returns false, GetActivityStreamsImage will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsImage() ActivityStreamsImage
|
||||
// GetActivityStreamsIntransitiveActivity returns the value of this
|
||||
// property. When IsActivityStreamsIntransitiveActivity returns false,
|
||||
// GetActivityStreamsIntransitiveActivity will return an arbitrary
|
||||
// value.
|
||||
GetActivityStreamsIntransitiveActivity() ActivityStreamsIntransitiveActivity
|
||||
// GetActivityStreamsInvite returns the value of this property. When
|
||||
// IsActivityStreamsInvite returns false, GetActivityStreamsInvite
|
||||
// will return an arbitrary value.
|
||||
GetActivityStreamsInvite() ActivityStreamsInvite
|
||||
// GetActivityStreamsJoin returns the value of this property. When
|
||||
// IsActivityStreamsJoin returns false, GetActivityStreamsJoin will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsJoin() ActivityStreamsJoin
|
||||
// GetActivityStreamsLeave returns the value of this property. When
|
||||
// IsActivityStreamsLeave returns false, GetActivityStreamsLeave will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsLeave() ActivityStreamsLeave
|
||||
// GetActivityStreamsLike returns the value of this property. When
|
||||
// IsActivityStreamsLike returns false, GetActivityStreamsLike will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsLike() ActivityStreamsLike
|
||||
// GetActivityStreamsListen returns the value of this property. When
|
||||
// IsActivityStreamsListen returns false, GetActivityStreamsListen
|
||||
// will return an arbitrary value.
|
||||
GetActivityStreamsListen() ActivityStreamsListen
|
||||
// GetActivityStreamsMove returns the value of this property. When
|
||||
// IsActivityStreamsMove returns false, GetActivityStreamsMove will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsMove() ActivityStreamsMove
|
||||
// GetActivityStreamsNote returns the value of this property. When
|
||||
// IsActivityStreamsNote returns false, GetActivityStreamsNote will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsNote() ActivityStreamsNote
|
||||
// GetActivityStreamsObject returns the value of this property. When
|
||||
// IsActivityStreamsObject returns false, GetActivityStreamsObject
|
||||
// will return an arbitrary value.
|
||||
GetActivityStreamsObject() ActivityStreamsObject
|
||||
// GetActivityStreamsOffer returns the value of this property. When
|
||||
// IsActivityStreamsOffer returns false, GetActivityStreamsOffer will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsOffer() ActivityStreamsOffer
|
||||
// GetActivityStreamsOrderedCollection returns the value of this property.
|
||||
// When IsActivityStreamsOrderedCollection returns false,
|
||||
// GetActivityStreamsOrderedCollection will return an arbitrary value.
|
||||
GetActivityStreamsOrderedCollection() ActivityStreamsOrderedCollection
|
||||
// GetActivityStreamsOrderedCollectionPage returns the value of this
|
||||
// property. When IsActivityStreamsOrderedCollectionPage returns
|
||||
// false, GetActivityStreamsOrderedCollectionPage will return an
|
||||
// arbitrary value.
|
||||
GetActivityStreamsOrderedCollectionPage() ActivityStreamsOrderedCollectionPage
|
||||
// GetActivityStreamsOrganization returns the value of this property. When
|
||||
// IsActivityStreamsOrganization returns false,
|
||||
// GetActivityStreamsOrganization will return an arbitrary value.
|
||||
GetActivityStreamsOrganization() ActivityStreamsOrganization
|
||||
// GetActivityStreamsPage returns the value of this property. When
|
||||
// IsActivityStreamsPage returns false, GetActivityStreamsPage will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsPage() ActivityStreamsPage
|
||||
// GetActivityStreamsPerson returns the value of this property. When
|
||||
// IsActivityStreamsPerson returns false, GetActivityStreamsPerson
|
||||
// will return an arbitrary value.
|
||||
GetActivityStreamsPerson() ActivityStreamsPerson
|
||||
// GetActivityStreamsPlace returns the value of this property. When
|
||||
// IsActivityStreamsPlace returns false, GetActivityStreamsPlace will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsPlace() ActivityStreamsPlace
|
||||
// GetActivityStreamsProfile returns the value of this property. When
|
||||
// IsActivityStreamsProfile returns false, GetActivityStreamsProfile
|
||||
// will return an arbitrary value.
|
||||
GetActivityStreamsProfile() ActivityStreamsProfile
|
||||
// GetActivityStreamsQuestion returns the value of this property. When
|
||||
// IsActivityStreamsQuestion returns false, GetActivityStreamsQuestion
|
||||
// will return an arbitrary value.
|
||||
GetActivityStreamsQuestion() ActivityStreamsQuestion
|
||||
// GetActivityStreamsRead returns the value of this property. When
|
||||
// IsActivityStreamsRead returns false, GetActivityStreamsRead will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsRead() ActivityStreamsRead
|
||||
// GetActivityStreamsReject returns the value of this property. When
|
||||
// IsActivityStreamsReject returns false, GetActivityStreamsReject
|
||||
// will return an arbitrary value.
|
||||
GetActivityStreamsReject() ActivityStreamsReject
|
||||
// GetActivityStreamsRelationship returns the value of this property. When
|
||||
// IsActivityStreamsRelationship returns false,
|
||||
// GetActivityStreamsRelationship will return an arbitrary value.
|
||||
GetActivityStreamsRelationship() ActivityStreamsRelationship
|
||||
// GetActivityStreamsRemove returns the value of this property. When
|
||||
// IsActivityStreamsRemove returns false, GetActivityStreamsRemove
|
||||
// will return an arbitrary value.
|
||||
GetActivityStreamsRemove() ActivityStreamsRemove
|
||||
// GetActivityStreamsService returns the value of this property. When
|
||||
// IsActivityStreamsService returns false, GetActivityStreamsService
|
||||
// will return an arbitrary value.
|
||||
GetActivityStreamsService() ActivityStreamsService
|
||||
// GetActivityStreamsTentativeAccept returns the value of this property.
|
||||
// When IsActivityStreamsTentativeAccept returns false,
|
||||
// GetActivityStreamsTentativeAccept will return an arbitrary value.
|
||||
GetActivityStreamsTentativeAccept() ActivityStreamsTentativeAccept
|
||||
// GetActivityStreamsTentativeReject returns the value of this property.
|
||||
// When IsActivityStreamsTentativeReject returns false,
|
||||
// GetActivityStreamsTentativeReject will return an arbitrary value.
|
||||
GetActivityStreamsTentativeReject() ActivityStreamsTentativeReject
|
||||
// GetActivityStreamsTombstone returns the value of this property. When
|
||||
// IsActivityStreamsTombstone returns false,
|
||||
// GetActivityStreamsTombstone will return an arbitrary value.
|
||||
GetActivityStreamsTombstone() ActivityStreamsTombstone
|
||||
// GetActivityStreamsTravel returns the value of this property. When
|
||||
// IsActivityStreamsTravel returns false, GetActivityStreamsTravel
|
||||
// will return an arbitrary value.
|
||||
GetActivityStreamsTravel() ActivityStreamsTravel
|
||||
// GetActivityStreamsUndo returns the value of this property. When
|
||||
// IsActivityStreamsUndo returns false, GetActivityStreamsUndo will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsUndo() ActivityStreamsUndo
|
||||
// GetActivityStreamsUpdate returns the value of this property. When
|
||||
// IsActivityStreamsUpdate returns false, GetActivityStreamsUpdate
|
||||
// will return an arbitrary value.
|
||||
GetActivityStreamsUpdate() ActivityStreamsUpdate
|
||||
// GetActivityStreamsVideo returns the value of this property. When
|
||||
// IsActivityStreamsVideo returns false, GetActivityStreamsVideo will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsVideo() ActivityStreamsVideo
|
||||
// GetActivityStreamsView returns the value of this property. When
|
||||
// IsActivityStreamsView returns false, GetActivityStreamsView will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsView() ActivityStreamsView
|
||||
// GetForgeFedBranch returns the value of this property. When
|
||||
// IsForgeFedBranch returns false, GetForgeFedBranch will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedBranch() ForgeFedBranch
|
||||
// GetForgeFedCommit returns the value of this property. When
|
||||
// IsForgeFedCommit returns false, GetForgeFedCommit will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedCommit() ForgeFedCommit
|
||||
// GetForgeFedPush returns the value of this property. When IsForgeFedPush
|
||||
// returns false, GetForgeFedPush will return an arbitrary value.
|
||||
GetForgeFedPush() ForgeFedPush
|
||||
// GetForgeFedRepository returns the value of this property. When
|
||||
// IsForgeFedRepository returns false, GetForgeFedRepository will
|
||||
// return an arbitrary value.
|
||||
GetForgeFedRepository() ForgeFedRepository
|
||||
// GetForgeFedTicket returns the value of this property. When
|
||||
// IsForgeFedTicket returns false, GetForgeFedTicket will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedTicket() ForgeFedTicket
|
||||
// GetForgeFedTicketDependency returns the value of this property. When
|
||||
// IsForgeFedTicketDependency returns false,
|
||||
// GetForgeFedTicketDependency will return an arbitrary value.
|
||||
GetForgeFedTicketDependency() ForgeFedTicketDependency
|
||||
// GetIRI returns the IRI of this property. When IsIRI returns false,
|
||||
// GetIRI will return an arbitrary value.
|
||||
GetIRI() *url.URL
|
||||
// GetSchemaPropertyValue returns the value of this property. When
|
||||
// IsSchemaPropertyValue returns false, GetSchemaPropertyValue will
|
||||
// return an arbitrary value.
|
||||
GetSchemaPropertyValue() SchemaPropertyValue
|
||||
// GetTootEmoji returns the value of this property. When IsTootEmoji
|
||||
// returns false, GetTootEmoji will return an arbitrary value.
|
||||
GetTootEmoji() TootEmoji
|
||||
// GetTootIdentityProof returns the value of this property. When
|
||||
// IsTootIdentityProof returns false, GetTootIdentityProof will return
|
||||
// an arbitrary value.
|
||||
GetTootIdentityProof() TootIdentityProof
|
||||
// GetType returns the value in this property as a Type. Returns nil if
|
||||
// the value is not an ActivityStreams type, such as an IRI or another
|
||||
// value.
|
||||
GetType() Type
|
||||
// HasAny returns true if any of the different values is set.
|
||||
HasAny() bool
|
||||
// IsActivityStreamsAccept returns true if this property has a type of
|
||||
// "Accept". When true, use the GetActivityStreamsAccept and
|
||||
// SetActivityStreamsAccept methods to access and set this property.
|
||||
IsActivityStreamsAccept() bool
|
||||
// IsActivityStreamsActivity returns true if this property has a type of
|
||||
// "Activity". When true, use the GetActivityStreamsActivity and
|
||||
// SetActivityStreamsActivity methods to access and set this property.
|
||||
IsActivityStreamsActivity() bool
|
||||
// IsActivityStreamsAdd returns true if this property has a type of "Add".
|
||||
// When true, use the GetActivityStreamsAdd and SetActivityStreamsAdd
|
||||
// methods to access and set this property.
|
||||
IsActivityStreamsAdd() bool
|
||||
// IsActivityStreamsAnnounce returns true if this property has a type of
|
||||
// "Announce". When true, use the GetActivityStreamsAnnounce and
|
||||
// SetActivityStreamsAnnounce methods to access and set this property.
|
||||
IsActivityStreamsAnnounce() bool
|
||||
// IsActivityStreamsApplication returns true if this property has a type
|
||||
// of "Application". When true, use the GetActivityStreamsApplication
|
||||
// and SetActivityStreamsApplication methods to access and set this
|
||||
// property.
|
||||
IsActivityStreamsApplication() bool
|
||||
// IsActivityStreamsArrive returns true if this property has a type of
|
||||
// "Arrive". When true, use the GetActivityStreamsArrive and
|
||||
// SetActivityStreamsArrive methods to access and set this property.
|
||||
IsActivityStreamsArrive() bool
|
||||
// IsActivityStreamsArticle returns true if this property has a type of
|
||||
// "Article". When true, use the GetActivityStreamsArticle and
|
||||
// SetActivityStreamsArticle methods to access and set this property.
|
||||
IsActivityStreamsArticle() bool
|
||||
// IsActivityStreamsAudio returns true if this property has a type of
|
||||
// "Audio". When true, use the GetActivityStreamsAudio and
|
||||
// SetActivityStreamsAudio methods to access and set this property.
|
||||
IsActivityStreamsAudio() bool
|
||||
// IsActivityStreamsBlock returns true if this property has a type of
|
||||
// "Block". When true, use the GetActivityStreamsBlock and
|
||||
// SetActivityStreamsBlock methods to access and set this property.
|
||||
IsActivityStreamsBlock() bool
|
||||
// IsActivityStreamsCollection returns true if this property has a type of
|
||||
// "Collection". When true, use the GetActivityStreamsCollection and
|
||||
// SetActivityStreamsCollection methods to access and set this
|
||||
// property.
|
||||
IsActivityStreamsCollection() bool
|
||||
// IsActivityStreamsCollectionPage returns true if this property has a
|
||||
// type of "CollectionPage". When true, use the
|
||||
// GetActivityStreamsCollectionPage and
|
||||
// SetActivityStreamsCollectionPage methods to access and set this
|
||||
// property.
|
||||
IsActivityStreamsCollectionPage() bool
|
||||
// IsActivityStreamsCreate returns true if this property has a type of
|
||||
// "Create". When true, use the GetActivityStreamsCreate and
|
||||
// SetActivityStreamsCreate methods to access and set this property.
|
||||
IsActivityStreamsCreate() bool
|
||||
// IsActivityStreamsDelete returns true if this property has a type of
|
||||
// "Delete". When true, use the GetActivityStreamsDelete and
|
||||
// SetActivityStreamsDelete methods to access and set this property.
|
||||
IsActivityStreamsDelete() bool
|
||||
// IsActivityStreamsDislike returns true if this property has a type of
|
||||
// "Dislike". When true, use the GetActivityStreamsDislike and
|
||||
// SetActivityStreamsDislike methods to access and set this property.
|
||||
IsActivityStreamsDislike() bool
|
||||
// IsActivityStreamsDocument returns true if this property has a type of
|
||||
// "Document". When true, use the GetActivityStreamsDocument and
|
||||
// SetActivityStreamsDocument methods to access and set this property.
|
||||
IsActivityStreamsDocument() bool
|
||||
// IsActivityStreamsEvent returns true if this property has a type of
|
||||
// "Event". When true, use the GetActivityStreamsEvent and
|
||||
// SetActivityStreamsEvent methods to access and set this property.
|
||||
IsActivityStreamsEvent() bool
|
||||
// IsActivityStreamsFlag returns true if this property has a type of
|
||||
// "Flag". When true, use the GetActivityStreamsFlag and
|
||||
// SetActivityStreamsFlag methods to access and set this property.
|
||||
IsActivityStreamsFlag() bool
|
||||
// IsActivityStreamsFollow returns true if this property has a type of
|
||||
// "Follow". When true, use the GetActivityStreamsFollow and
|
||||
// SetActivityStreamsFollow methods to access and set this property.
|
||||
IsActivityStreamsFollow() bool
|
||||
// IsActivityStreamsGroup returns true if this property has a type of
|
||||
// "Group". When true, use the GetActivityStreamsGroup and
|
||||
// SetActivityStreamsGroup methods to access and set this property.
|
||||
IsActivityStreamsGroup() bool
|
||||
// IsActivityStreamsIgnore returns true if this property has a type of
|
||||
// "Ignore". When true, use the GetActivityStreamsIgnore and
|
||||
// SetActivityStreamsIgnore methods to access and set this property.
|
||||
IsActivityStreamsIgnore() bool
|
||||
// IsActivityStreamsImage returns true if this property has a type of
|
||||
// "Image". When true, use the GetActivityStreamsImage and
|
||||
// SetActivityStreamsImage methods to access and set this property.
|
||||
IsActivityStreamsImage() bool
|
||||
// IsActivityStreamsIntransitiveActivity returns true if this property has
|
||||
// a type of "IntransitiveActivity". When true, use the
|
||||
// GetActivityStreamsIntransitiveActivity and
|
||||
// SetActivityStreamsIntransitiveActivity methods to access and set
|
||||
// this property.
|
||||
IsActivityStreamsIntransitiveActivity() bool
|
||||
// IsActivityStreamsInvite returns true if this property has a type of
|
||||
// "Invite". When true, use the GetActivityStreamsInvite and
|
||||
// SetActivityStreamsInvite methods to access and set this property.
|
||||
IsActivityStreamsInvite() bool
|
||||
// IsActivityStreamsJoin returns true if this property has a type of
|
||||
// "Join". When true, use the GetActivityStreamsJoin and
|
||||
// SetActivityStreamsJoin methods to access and set this property.
|
||||
IsActivityStreamsJoin() bool
|
||||
// IsActivityStreamsLeave returns true if this property has a type of
|
||||
// "Leave". When true, use the GetActivityStreamsLeave and
|
||||
// SetActivityStreamsLeave methods to access and set this property.
|
||||
IsActivityStreamsLeave() bool
|
||||
// IsActivityStreamsLike returns true if this property has a type of
|
||||
// "Like". When true, use the GetActivityStreamsLike and
|
||||
// SetActivityStreamsLike methods to access and set this property.
|
||||
IsActivityStreamsLike() bool
|
||||
// IsActivityStreamsListen returns true if this property has a type of
|
||||
// "Listen". When true, use the GetActivityStreamsListen and
|
||||
// SetActivityStreamsListen methods to access and set this property.
|
||||
IsActivityStreamsListen() bool
|
||||
// IsActivityStreamsMove returns true if this property has a type of
|
||||
// "Move". When true, use the GetActivityStreamsMove and
|
||||
// SetActivityStreamsMove methods to access and set this property.
|
||||
IsActivityStreamsMove() bool
|
||||
// IsActivityStreamsNote returns true if this property has a type of
|
||||
// "Note". When true, use the GetActivityStreamsNote and
|
||||
// SetActivityStreamsNote methods to access and set this property.
|
||||
IsActivityStreamsNote() bool
|
||||
// IsActivityStreamsObject returns true if this property has a type of
|
||||
// "Object". When true, use the GetActivityStreamsObject and
|
||||
// SetActivityStreamsObject methods to access and set this property.
|
||||
IsActivityStreamsObject() bool
|
||||
// IsActivityStreamsOffer returns true if this property has a type of
|
||||
// "Offer". When true, use the GetActivityStreamsOffer and
|
||||
// SetActivityStreamsOffer methods to access and set this property.
|
||||
IsActivityStreamsOffer() bool
|
||||
// IsActivityStreamsOrderedCollection returns true if this property has a
|
||||
// type of "OrderedCollection". When true, use the
|
||||
// GetActivityStreamsOrderedCollection and
|
||||
// SetActivityStreamsOrderedCollection methods to access and set this
|
||||
// property.
|
||||
IsActivityStreamsOrderedCollection() bool
|
||||
// IsActivityStreamsOrderedCollectionPage returns true if this property
|
||||
// has a type of "OrderedCollectionPage". When true, use the
|
||||
// GetActivityStreamsOrderedCollectionPage and
|
||||
// SetActivityStreamsOrderedCollectionPage methods to access and set
|
||||
// this property.
|
||||
IsActivityStreamsOrderedCollectionPage() bool
|
||||
// IsActivityStreamsOrganization returns true if this property has a type
|
||||
// of "Organization". When true, use the
|
||||
// GetActivityStreamsOrganization and SetActivityStreamsOrganization
|
||||
// methods to access and set this property.
|
||||
IsActivityStreamsOrganization() bool
|
||||
// IsActivityStreamsPage returns true if this property has a type of
|
||||
// "Page". When true, use the GetActivityStreamsPage and
|
||||
// SetActivityStreamsPage methods to access and set this property.
|
||||
IsActivityStreamsPage() bool
|
||||
// IsActivityStreamsPerson returns true if this property has a type of
|
||||
// "Person". When true, use the GetActivityStreamsPerson and
|
||||
// SetActivityStreamsPerson methods to access and set this property.
|
||||
IsActivityStreamsPerson() bool
|
||||
// IsActivityStreamsPlace returns true if this property has a type of
|
||||
// "Place". When true, use the GetActivityStreamsPlace and
|
||||
// SetActivityStreamsPlace methods to access and set this property.
|
||||
IsActivityStreamsPlace() bool
|
||||
// IsActivityStreamsProfile returns true if this property has a type of
|
||||
// "Profile". When true, use the GetActivityStreamsProfile and
|
||||
// SetActivityStreamsProfile methods to access and set this property.
|
||||
IsActivityStreamsProfile() bool
|
||||
// IsActivityStreamsQuestion returns true if this property has a type of
|
||||
// "Question". When true, use the GetActivityStreamsQuestion and
|
||||
// SetActivityStreamsQuestion methods to access and set this property.
|
||||
IsActivityStreamsQuestion() bool
|
||||
// IsActivityStreamsRead returns true if this property has a type of
|
||||
// "Read". When true, use the GetActivityStreamsRead and
|
||||
// SetActivityStreamsRead methods to access and set this property.
|
||||
IsActivityStreamsRead() bool
|
||||
// IsActivityStreamsReject returns true if this property has a type of
|
||||
// "Reject". When true, use the GetActivityStreamsReject and
|
||||
// SetActivityStreamsReject methods to access and set this property.
|
||||
IsActivityStreamsReject() bool
|
||||
// IsActivityStreamsRelationship returns true if this property has a type
|
||||
// of "Relationship". When true, use the
|
||||
// GetActivityStreamsRelationship and SetActivityStreamsRelationship
|
||||
// methods to access and set this property.
|
||||
IsActivityStreamsRelationship() bool
|
||||
// IsActivityStreamsRemove returns true if this property has a type of
|
||||
// "Remove". When true, use the GetActivityStreamsRemove and
|
||||
// SetActivityStreamsRemove methods to access and set this property.
|
||||
IsActivityStreamsRemove() bool
|
||||
// IsActivityStreamsService returns true if this property has a type of
|
||||
// "Service". When true, use the GetActivityStreamsService and
|
||||
// SetActivityStreamsService methods to access and set this property.
|
||||
IsActivityStreamsService() bool
|
||||
// IsActivityStreamsTentativeAccept returns true if this property has a
|
||||
// type of "TentativeAccept". When true, use the
|
||||
// GetActivityStreamsTentativeAccept and
|
||||
// SetActivityStreamsTentativeAccept methods to access and set this
|
||||
// property.
|
||||
IsActivityStreamsTentativeAccept() bool
|
||||
// IsActivityStreamsTentativeReject returns true if this property has a
|
||||
// type of "TentativeReject". When true, use the
|
||||
// GetActivityStreamsTentativeReject and
|
||||
// SetActivityStreamsTentativeReject methods to access and set this
|
||||
// property.
|
||||
IsActivityStreamsTentativeReject() bool
|
||||
// IsActivityStreamsTombstone returns true if this property has a type of
|
||||
// "Tombstone". When true, use the GetActivityStreamsTombstone and
|
||||
// SetActivityStreamsTombstone methods to access and set this property.
|
||||
IsActivityStreamsTombstone() bool
|
||||
// IsActivityStreamsTravel returns true if this property has a type of
|
||||
// "Travel". When true, use the GetActivityStreamsTravel and
|
||||
// SetActivityStreamsTravel methods to access and set this property.
|
||||
IsActivityStreamsTravel() bool
|
||||
// IsActivityStreamsUndo returns true if this property has a type of
|
||||
// "Undo". When true, use the GetActivityStreamsUndo and
|
||||
// SetActivityStreamsUndo methods to access and set this property.
|
||||
IsActivityStreamsUndo() bool
|
||||
// IsActivityStreamsUpdate returns true if this property has a type of
|
||||
// "Update". When true, use the GetActivityStreamsUpdate and
|
||||
// SetActivityStreamsUpdate methods to access and set this property.
|
||||
IsActivityStreamsUpdate() bool
|
||||
// IsActivityStreamsVideo returns true if this property has a type of
|
||||
// "Video". When true, use the GetActivityStreamsVideo and
|
||||
// SetActivityStreamsVideo methods to access and set this property.
|
||||
IsActivityStreamsVideo() bool
|
||||
// IsActivityStreamsView returns true if this property has a type of
|
||||
// "View". When true, use the GetActivityStreamsView and
|
||||
// SetActivityStreamsView methods to access and set this property.
|
||||
IsActivityStreamsView() bool
|
||||
// IsForgeFedBranch returns true if this property has a type of "Branch".
|
||||
// When true, use the GetForgeFedBranch and SetForgeFedBranch methods
|
||||
// to access and set this property.
|
||||
IsForgeFedBranch() bool
|
||||
// IsForgeFedCommit returns true if this property has a type of "Commit".
|
||||
// When true, use the GetForgeFedCommit and SetForgeFedCommit methods
|
||||
// to access and set this property.
|
||||
IsForgeFedCommit() bool
|
||||
// IsForgeFedPush returns true if this property has a type of "Push". When
|
||||
// true, use the GetForgeFedPush and SetForgeFedPush methods to access
|
||||
// and set this property.
|
||||
IsForgeFedPush() bool
|
||||
// IsForgeFedRepository returns true if this property has a type of
|
||||
// "Repository". When true, use the GetForgeFedRepository and
|
||||
// SetForgeFedRepository methods to access and set this property.
|
||||
IsForgeFedRepository() bool
|
||||
// IsForgeFedTicket returns true if this property has a type of "Ticket".
|
||||
// When true, use the GetForgeFedTicket and SetForgeFedTicket methods
|
||||
// to access and set this property.
|
||||
IsForgeFedTicket() bool
|
||||
// IsForgeFedTicketDependency returns true if this property has a type of
|
||||
// "TicketDependency". When true, use the GetForgeFedTicketDependency
|
||||
// and SetForgeFedTicketDependency methods to access and set this
|
||||
// property.
|
||||
IsForgeFedTicketDependency() bool
|
||||
// IsIRI returns true if this property is an IRI. When true, use GetIRI
|
||||
// and SetIRI to access and set this property
|
||||
IsIRI() bool
|
||||
// IsSchemaPropertyValue returns true if this property has a type of
|
||||
// "PropertyValue". When true, use the GetSchemaPropertyValue and
|
||||
// SetSchemaPropertyValue methods to access and set this property.
|
||||
IsSchemaPropertyValue() bool
|
||||
// IsTootEmoji returns true if this property has a type of "Emoji". When
|
||||
// true, use the GetTootEmoji and SetTootEmoji methods to access and
|
||||
// set this property.
|
||||
IsTootEmoji() bool
|
||||
// IsTootIdentityProof returns true if this property has a type of
|
||||
// "IdentityProof". When true, use the GetTootIdentityProof and
|
||||
// SetTootIdentityProof methods to access and set this property.
|
||||
IsTootIdentityProof() bool
|
||||
// JSONLDContext returns the JSONLD URIs required in the context string
|
||||
// for this property and the specific values that are set. The value
|
||||
// in the map is the alias used to import the property's value or
|
||||
// values.
|
||||
JSONLDContext() map[string]string
|
||||
// KindIndex computes an arbitrary value for indexing this kind of value.
|
||||
// This is a leaky API detail only for folks looking to replace the
|
||||
// go-fed implementation. Applications should not use this method.
|
||||
KindIndex() int
|
||||
// LessThan compares two instances of this property with an arbitrary but
|
||||
// stable comparison. Applications should not use this because it is
|
||||
// only meant to help alternative implementations to go-fed to be able
|
||||
// to normalize nonfunctional properties.
|
||||
LessThan(o ForgeFedDescriptionProperty) bool
|
||||
// Name returns the name of this property: "description".
|
||||
Name() string
|
||||
// Serialize converts this into an interface representation suitable for
|
||||
// marshalling into a text or binary format. Applications should not
|
||||
// need this function as most typical use cases serialize types
|
||||
// instead of individual properties. It is exposed for alternatives to
|
||||
// go-fed implementations to use.
|
||||
Serialize() (interface{}, error)
|
||||
// SetActivityStreamsAccept sets the value of this property. Calling
|
||||
// IsActivityStreamsAccept afterwards returns true.
|
||||
SetActivityStreamsAccept(v ActivityStreamsAccept)
|
||||
// SetActivityStreamsActivity sets the value of this property. Calling
|
||||
// IsActivityStreamsActivity afterwards returns true.
|
||||
SetActivityStreamsActivity(v ActivityStreamsActivity)
|
||||
// SetActivityStreamsAdd sets the value of this property. Calling
|
||||
// IsActivityStreamsAdd afterwards returns true.
|
||||
SetActivityStreamsAdd(v ActivityStreamsAdd)
|
||||
// SetActivityStreamsAnnounce sets the value of this property. Calling
|
||||
// IsActivityStreamsAnnounce afterwards returns true.
|
||||
SetActivityStreamsAnnounce(v ActivityStreamsAnnounce)
|
||||
// SetActivityStreamsApplication sets the value of this property. Calling
|
||||
// IsActivityStreamsApplication afterwards returns true.
|
||||
SetActivityStreamsApplication(v ActivityStreamsApplication)
|
||||
// SetActivityStreamsArrive sets the value of this property. Calling
|
||||
// IsActivityStreamsArrive afterwards returns true.
|
||||
SetActivityStreamsArrive(v ActivityStreamsArrive)
|
||||
// SetActivityStreamsArticle sets the value of this property. Calling
|
||||
// IsActivityStreamsArticle afterwards returns true.
|
||||
SetActivityStreamsArticle(v ActivityStreamsArticle)
|
||||
// SetActivityStreamsAudio sets the value of this property. Calling
|
||||
// IsActivityStreamsAudio afterwards returns true.
|
||||
SetActivityStreamsAudio(v ActivityStreamsAudio)
|
||||
// SetActivityStreamsBlock sets the value of this property. Calling
|
||||
// IsActivityStreamsBlock afterwards returns true.
|
||||
SetActivityStreamsBlock(v ActivityStreamsBlock)
|
||||
// SetActivityStreamsCollection sets the value of this property. Calling
|
||||
// IsActivityStreamsCollection afterwards returns true.
|
||||
SetActivityStreamsCollection(v ActivityStreamsCollection)
|
||||
// SetActivityStreamsCollectionPage sets the value of this property.
|
||||
// Calling IsActivityStreamsCollectionPage afterwards returns true.
|
||||
SetActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
|
||||
// SetActivityStreamsCreate sets the value of this property. Calling
|
||||
// IsActivityStreamsCreate afterwards returns true.
|
||||
SetActivityStreamsCreate(v ActivityStreamsCreate)
|
||||
// SetActivityStreamsDelete sets the value of this property. Calling
|
||||
// IsActivityStreamsDelete afterwards returns true.
|
||||
SetActivityStreamsDelete(v ActivityStreamsDelete)
|
||||
// SetActivityStreamsDislike sets the value of this property. Calling
|
||||
// IsActivityStreamsDislike afterwards returns true.
|
||||
SetActivityStreamsDislike(v ActivityStreamsDislike)
|
||||
// SetActivityStreamsDocument sets the value of this property. Calling
|
||||
// IsActivityStreamsDocument afterwards returns true.
|
||||
SetActivityStreamsDocument(v ActivityStreamsDocument)
|
||||
// SetActivityStreamsEvent sets the value of this property. Calling
|
||||
// IsActivityStreamsEvent afterwards returns true.
|
||||
SetActivityStreamsEvent(v ActivityStreamsEvent)
|
||||
// SetActivityStreamsFlag sets the value of this property. Calling
|
||||
// IsActivityStreamsFlag afterwards returns true.
|
||||
SetActivityStreamsFlag(v ActivityStreamsFlag)
|
||||
// SetActivityStreamsFollow sets the value of this property. Calling
|
||||
// IsActivityStreamsFollow afterwards returns true.
|
||||
SetActivityStreamsFollow(v ActivityStreamsFollow)
|
||||
// SetActivityStreamsGroup sets the value of this property. Calling
|
||||
// IsActivityStreamsGroup afterwards returns true.
|
||||
SetActivityStreamsGroup(v ActivityStreamsGroup)
|
||||
// SetActivityStreamsIgnore sets the value of this property. Calling
|
||||
// IsActivityStreamsIgnore afterwards returns true.
|
||||
SetActivityStreamsIgnore(v ActivityStreamsIgnore)
|
||||
// SetActivityStreamsImage sets the value of this property. Calling
|
||||
// IsActivityStreamsImage afterwards returns true.
|
||||
SetActivityStreamsImage(v ActivityStreamsImage)
|
||||
// SetActivityStreamsIntransitiveActivity sets the value of this property.
|
||||
// Calling IsActivityStreamsIntransitiveActivity afterwards returns
|
||||
// true.
|
||||
SetActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
|
||||
// SetActivityStreamsInvite sets the value of this property. Calling
|
||||
// IsActivityStreamsInvite afterwards returns true.
|
||||
SetActivityStreamsInvite(v ActivityStreamsInvite)
|
||||
// SetActivityStreamsJoin sets the value of this property. Calling
|
||||
// IsActivityStreamsJoin afterwards returns true.
|
||||
SetActivityStreamsJoin(v ActivityStreamsJoin)
|
||||
// SetActivityStreamsLeave sets the value of this property. Calling
|
||||
// IsActivityStreamsLeave afterwards returns true.
|
||||
SetActivityStreamsLeave(v ActivityStreamsLeave)
|
||||
// SetActivityStreamsLike sets the value of this property. Calling
|
||||
// IsActivityStreamsLike afterwards returns true.
|
||||
SetActivityStreamsLike(v ActivityStreamsLike)
|
||||
// SetActivityStreamsListen sets the value of this property. Calling
|
||||
// IsActivityStreamsListen afterwards returns true.
|
||||
SetActivityStreamsListen(v ActivityStreamsListen)
|
||||
// SetActivityStreamsMove sets the value of this property. Calling
|
||||
// IsActivityStreamsMove afterwards returns true.
|
||||
SetActivityStreamsMove(v ActivityStreamsMove)
|
||||
// SetActivityStreamsNote sets the value of this property. Calling
|
||||
// IsActivityStreamsNote afterwards returns true.
|
||||
SetActivityStreamsNote(v ActivityStreamsNote)
|
||||
// SetActivityStreamsObject sets the value of this property. Calling
|
||||
// IsActivityStreamsObject afterwards returns true.
|
||||
SetActivityStreamsObject(v ActivityStreamsObject)
|
||||
// SetActivityStreamsOffer sets the value of this property. Calling
|
||||
// IsActivityStreamsOffer afterwards returns true.
|
||||
SetActivityStreamsOffer(v ActivityStreamsOffer)
|
||||
// SetActivityStreamsOrderedCollection sets the value of this property.
|
||||
// Calling IsActivityStreamsOrderedCollection afterwards returns true.
|
||||
SetActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
|
||||
// SetActivityStreamsOrderedCollectionPage sets the value of this
|
||||
// property. Calling IsActivityStreamsOrderedCollectionPage afterwards
|
||||
// returns true.
|
||||
SetActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
|
||||
// SetActivityStreamsOrganization sets the value of this property. Calling
|
||||
// IsActivityStreamsOrganization afterwards returns true.
|
||||
SetActivityStreamsOrganization(v ActivityStreamsOrganization)
|
||||
// SetActivityStreamsPage sets the value of this property. Calling
|
||||
// IsActivityStreamsPage afterwards returns true.
|
||||
SetActivityStreamsPage(v ActivityStreamsPage)
|
||||
// SetActivityStreamsPerson sets the value of this property. Calling
|
||||
// IsActivityStreamsPerson afterwards returns true.
|
||||
SetActivityStreamsPerson(v ActivityStreamsPerson)
|
||||
// SetActivityStreamsPlace sets the value of this property. Calling
|
||||
// IsActivityStreamsPlace afterwards returns true.
|
||||
SetActivityStreamsPlace(v ActivityStreamsPlace)
|
||||
// SetActivityStreamsProfile sets the value of this property. Calling
|
||||
// IsActivityStreamsProfile afterwards returns true.
|
||||
SetActivityStreamsProfile(v ActivityStreamsProfile)
|
||||
// SetActivityStreamsQuestion sets the value of this property. Calling
|
||||
// IsActivityStreamsQuestion afterwards returns true.
|
||||
SetActivityStreamsQuestion(v ActivityStreamsQuestion)
|
||||
// SetActivityStreamsRead sets the value of this property. Calling
|
||||
// IsActivityStreamsRead afterwards returns true.
|
||||
SetActivityStreamsRead(v ActivityStreamsRead)
|
||||
// SetActivityStreamsReject sets the value of this property. Calling
|
||||
// IsActivityStreamsReject afterwards returns true.
|
||||
SetActivityStreamsReject(v ActivityStreamsReject)
|
||||
// SetActivityStreamsRelationship sets the value of this property. Calling
|
||||
// IsActivityStreamsRelationship afterwards returns true.
|
||||
SetActivityStreamsRelationship(v ActivityStreamsRelationship)
|
||||
// SetActivityStreamsRemove sets the value of this property. Calling
|
||||
// IsActivityStreamsRemove afterwards returns true.
|
||||
SetActivityStreamsRemove(v ActivityStreamsRemove)
|
||||
// SetActivityStreamsService sets the value of this property. Calling
|
||||
// IsActivityStreamsService afterwards returns true.
|
||||
SetActivityStreamsService(v ActivityStreamsService)
|
||||
// SetActivityStreamsTentativeAccept sets the value of this property.
|
||||
// Calling IsActivityStreamsTentativeAccept afterwards returns true.
|
||||
SetActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
|
||||
// SetActivityStreamsTentativeReject sets the value of this property.
|
||||
// Calling IsActivityStreamsTentativeReject afterwards returns true.
|
||||
SetActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
|
||||
// SetActivityStreamsTombstone sets the value of this property. Calling
|
||||
// IsActivityStreamsTombstone afterwards returns true.
|
||||
SetActivityStreamsTombstone(v ActivityStreamsTombstone)
|
||||
// SetActivityStreamsTravel sets the value of this property. Calling
|
||||
// IsActivityStreamsTravel afterwards returns true.
|
||||
SetActivityStreamsTravel(v ActivityStreamsTravel)
|
||||
// SetActivityStreamsUndo sets the value of this property. Calling
|
||||
// IsActivityStreamsUndo afterwards returns true.
|
||||
SetActivityStreamsUndo(v ActivityStreamsUndo)
|
||||
// SetActivityStreamsUpdate sets the value of this property. Calling
|
||||
// IsActivityStreamsUpdate afterwards returns true.
|
||||
SetActivityStreamsUpdate(v ActivityStreamsUpdate)
|
||||
// SetActivityStreamsVideo sets the value of this property. Calling
|
||||
// IsActivityStreamsVideo afterwards returns true.
|
||||
SetActivityStreamsVideo(v ActivityStreamsVideo)
|
||||
// SetActivityStreamsView sets the value of this property. Calling
|
||||
// IsActivityStreamsView afterwards returns true.
|
||||
SetActivityStreamsView(v ActivityStreamsView)
|
||||
// SetForgeFedBranch sets the value of this property. Calling
|
||||
// IsForgeFedBranch afterwards returns true.
|
||||
SetForgeFedBranch(v ForgeFedBranch)
|
||||
// SetForgeFedCommit sets the value of this property. Calling
|
||||
// IsForgeFedCommit afterwards returns true.
|
||||
SetForgeFedCommit(v ForgeFedCommit)
|
||||
// SetForgeFedPush sets the value of this property. Calling IsForgeFedPush
|
||||
// afterwards returns true.
|
||||
SetForgeFedPush(v ForgeFedPush)
|
||||
// SetForgeFedRepository sets the value of this property. Calling
|
||||
// IsForgeFedRepository afterwards returns true.
|
||||
SetForgeFedRepository(v ForgeFedRepository)
|
||||
// SetForgeFedTicket sets the value of this property. Calling
|
||||
// IsForgeFedTicket afterwards returns true.
|
||||
SetForgeFedTicket(v ForgeFedTicket)
|
||||
// SetForgeFedTicketDependency sets the value of this property. Calling
|
||||
// IsForgeFedTicketDependency afterwards returns true.
|
||||
SetForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// SetIRI sets the value of this property. Calling IsIRI afterwards
|
||||
// returns true.
|
||||
SetIRI(v *url.URL)
|
||||
// SetSchemaPropertyValue sets the value of this property. Calling
|
||||
// IsSchemaPropertyValue afterwards returns true.
|
||||
SetSchemaPropertyValue(v SchemaPropertyValue)
|
||||
// SetTootEmoji sets the value of this property. Calling IsTootEmoji
|
||||
// afterwards returns true.
|
||||
SetTootEmoji(v TootEmoji)
|
||||
// SetTootIdentityProof sets the value of this property. Calling
|
||||
// IsTootIdentityProof afterwards returns true.
|
||||
SetTootIdentityProof(v TootIdentityProof)
|
||||
// SetType attempts to set the property for the arbitrary type. Returns an
|
||||
// error if it is not a valid type to set on this property.
|
||||
SetType(t Type) error
|
||||
}
|
||||
File diff suppressed because it is too large
Load diff
|
|
@ -1,132 +0,0 @@
|
|||
// Code generated by astool. DO NOT EDIT.
|
||||
|
||||
package vocab
|
||||
|
||||
import "net/url"
|
||||
|
||||
// ForgeFedFilesAddedPropertyIterator represents a single value for the
|
||||
// "filesAdded" property.
|
||||
type ForgeFedFilesAddedPropertyIterator interface {
|
||||
// Get returns the value of this property. When IsXMLSchemaString returns
|
||||
// false, Get will return any arbitrary value.
|
||||
Get() string
|
||||
// GetIRI returns the IRI of this property. When IsIRI returns false,
|
||||
// GetIRI will return any arbitrary value.
|
||||
GetIRI() *url.URL
|
||||
// HasAny returns true if the value or IRI is set.
|
||||
HasAny() bool
|
||||
// IsIRI returns true if this property is an IRI.
|
||||
IsIRI() bool
|
||||
// IsXMLSchemaString returns true if this property is set and not an IRI.
|
||||
IsXMLSchemaString() bool
|
||||
// JSONLDContext returns the JSONLD URIs required in the context string
|
||||
// for this property and the specific values that are set. The value
|
||||
// in the map is the alias used to import the property's value or
|
||||
// values.
|
||||
JSONLDContext() map[string]string
|
||||
// KindIndex computes an arbitrary value for indexing this kind of value.
|
||||
// This is a leaky API detail only for folks looking to replace the
|
||||
// go-fed implementation. Applications should not use this method.
|
||||
KindIndex() int
|
||||
// LessThan compares two instances of this property with an arbitrary but
|
||||
// stable comparison. Applications should not use this because it is
|
||||
// only meant to help alternative implementations to go-fed to be able
|
||||
// to normalize nonfunctional properties.
|
||||
LessThan(o ForgeFedFilesAddedPropertyIterator) bool
|
||||
// Name returns the name of this property: "ForgeFedFilesAdded".
|
||||
Name() string
|
||||
// Next returns the next iterator, or nil if there is no next iterator.
|
||||
Next() ForgeFedFilesAddedPropertyIterator
|
||||
// Prev returns the previous iterator, or nil if there is no previous
|
||||
// iterator.
|
||||
Prev() ForgeFedFilesAddedPropertyIterator
|
||||
// Set sets the value of this property. Calling IsXMLSchemaString
|
||||
// afterwards will return true.
|
||||
Set(v string)
|
||||
// SetIRI sets the value of this property. Calling IsIRI afterwards will
|
||||
// return true.
|
||||
SetIRI(v *url.URL)
|
||||
}
|
||||
|
||||
// Specifies a filename, as a relative path, relative to the top of the tree of
|
||||
// files in the Repository, of a file that got added in this Commit, and
|
||||
// didn’t exist in the previous version of the tree.
|
||||
type ForgeFedFilesAddedProperty interface {
|
||||
// AppendIRI appends an IRI value to the back of a list of the property
|
||||
// "filesAdded"
|
||||
AppendIRI(v *url.URL)
|
||||
// AppendXMLSchemaString appends a string value to the back of a list of
|
||||
// the property "filesAdded". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
AppendXMLSchemaString(v string)
|
||||
// At returns the property value for the specified index. Panics if the
|
||||
// index is out of bounds.
|
||||
At(index int) ForgeFedFilesAddedPropertyIterator
|
||||
// Begin returns the first iterator, or nil if empty. Can be used with the
|
||||
// iterator's Next method and this property's End method to iterate
|
||||
// from front to back through all values.
|
||||
Begin() ForgeFedFilesAddedPropertyIterator
|
||||
// Empty returns returns true if there are no elements.
|
||||
Empty() bool
|
||||
// End returns beyond-the-last iterator, which is nil. Can be used with
|
||||
// the iterator's Next method and this property's Begin method to
|
||||
// iterate from front to back through all values.
|
||||
End() ForgeFedFilesAddedPropertyIterator
|
||||
// Insert inserts an IRI value at the specified index for a property
|
||||
// "filesAdded". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertIRI(idx int, v *url.URL)
|
||||
// InsertXMLSchemaString inserts a string value at the specified index for
|
||||
// a property "filesAdded". Existing elements at that index and higher
|
||||
// are shifted back once. Invalidates all iterators.
|
||||
InsertXMLSchemaString(idx int, v string)
|
||||
// JSONLDContext returns the JSONLD URIs required in the context string
|
||||
// for this property and the specific values that are set. The value
|
||||
// in the map is the alias used to import the property's value or
|
||||
// values.
|
||||
JSONLDContext() map[string]string
|
||||
// KindIndex computes an arbitrary value for indexing this kind of value.
|
||||
// This is a leaky API method specifically needed only for alternate
|
||||
// implementations for go-fed. Applications should not use this
|
||||
// method. Panics if the index is out of bounds.
|
||||
KindIndex(idx int) int
|
||||
// Len returns the number of values that exist for the "filesAdded"
|
||||
// property.
|
||||
Len() (length int)
|
||||
// Less computes whether another property is less than this one. Mixing
|
||||
// types results in a consistent but arbitrary ordering
|
||||
Less(i, j int) bool
|
||||
// LessThan compares two instances of this property with an arbitrary but
|
||||
// stable comparison. Applications should not use this because it is
|
||||
// only meant to help alternative implementations to go-fed to be able
|
||||
// to normalize nonfunctional properties.
|
||||
LessThan(o ForgeFedFilesAddedProperty) bool
|
||||
// Name returns the name of this property ("filesAdded") with any alias.
|
||||
Name() string
|
||||
// PrependIRI prepends an IRI value to the front of a list of the property
|
||||
// "filesAdded".
|
||||
PrependIRI(v *url.URL)
|
||||
// PrependXMLSchemaString prepends a string value to the front of a list
|
||||
// of the property "filesAdded". Invalidates all iterators.
|
||||
PrependXMLSchemaString(v string)
|
||||
// Remove deletes an element at the specified index from a list of the
|
||||
// property "filesAdded", regardless of its type. Panics if the index
|
||||
// is out of bounds. Invalidates all iterators.
|
||||
Remove(idx int)
|
||||
// Serialize converts this into an interface representation suitable for
|
||||
// marshalling into a text or binary format. Applications should not
|
||||
// need this function as most typical use cases serialize types
|
||||
// instead of individual properties. It is exposed for alternatives to
|
||||
// go-fed implementations to use.
|
||||
Serialize() (interface{}, error)
|
||||
// Set sets a string value to be at the specified index for the property
|
||||
// "filesAdded". Panics if the index is out of bounds. Invalidates all
|
||||
// iterators.
|
||||
Set(idx int, v string)
|
||||
// SetIRI sets an IRI value to be at the specified index for the property
|
||||
// "filesAdded". Panics if the index is out of bounds.
|
||||
SetIRI(idx int, v *url.URL)
|
||||
// Swap swaps the location of values at two indices for the "filesAdded"
|
||||
// property.
|
||||
Swap(i, j int)
|
||||
}
|
||||
|
|
@ -1,132 +0,0 @@
|
|||
// Code generated by astool. DO NOT EDIT.
|
||||
|
||||
package vocab
|
||||
|
||||
import "net/url"
|
||||
|
||||
// ForgeFedFilesModifiedPropertyIterator represents a single value for the
|
||||
// "filesModified" property.
|
||||
type ForgeFedFilesModifiedPropertyIterator interface {
|
||||
// Get returns the value of this property. When IsXMLSchemaString returns
|
||||
// false, Get will return any arbitrary value.
|
||||
Get() string
|
||||
// GetIRI returns the IRI of this property. When IsIRI returns false,
|
||||
// GetIRI will return any arbitrary value.
|
||||
GetIRI() *url.URL
|
||||
// HasAny returns true if the value or IRI is set.
|
||||
HasAny() bool
|
||||
// IsIRI returns true if this property is an IRI.
|
||||
IsIRI() bool
|
||||
// IsXMLSchemaString returns true if this property is set and not an IRI.
|
||||
IsXMLSchemaString() bool
|
||||
// JSONLDContext returns the JSONLD URIs required in the context string
|
||||
// for this property and the specific values that are set. The value
|
||||
// in the map is the alias used to import the property's value or
|
||||
// values.
|
||||
JSONLDContext() map[string]string
|
||||
// KindIndex computes an arbitrary value for indexing this kind of value.
|
||||
// This is a leaky API detail only for folks looking to replace the
|
||||
// go-fed implementation. Applications should not use this method.
|
||||
KindIndex() int
|
||||
// LessThan compares two instances of this property with an arbitrary but
|
||||
// stable comparison. Applications should not use this because it is
|
||||
// only meant to help alternative implementations to go-fed to be able
|
||||
// to normalize nonfunctional properties.
|
||||
LessThan(o ForgeFedFilesModifiedPropertyIterator) bool
|
||||
// Name returns the name of this property: "ForgeFedFilesModified".
|
||||
Name() string
|
||||
// Next returns the next iterator, or nil if there is no next iterator.
|
||||
Next() ForgeFedFilesModifiedPropertyIterator
|
||||
// Prev returns the previous iterator, or nil if there is no previous
|
||||
// iterator.
|
||||
Prev() ForgeFedFilesModifiedPropertyIterator
|
||||
// Set sets the value of this property. Calling IsXMLSchemaString
|
||||
// afterwards will return true.
|
||||
Set(v string)
|
||||
// SetIRI sets the value of this property. Calling IsIRI afterwards will
|
||||
// return true.
|
||||
SetIRI(v *url.URL)
|
||||
}
|
||||
|
||||
// Specifies a filename, as a relative path, relative to the top of the tree of
|
||||
// files in the Repository, of a file that existed in the previous version of
|
||||
// the tree, and its contents got modified in this Commit.
|
||||
type ForgeFedFilesModifiedProperty interface {
|
||||
// AppendIRI appends an IRI value to the back of a list of the property
|
||||
// "filesModified"
|
||||
AppendIRI(v *url.URL)
|
||||
// AppendXMLSchemaString appends a string value to the back of a list of
|
||||
// the property "filesModified". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
AppendXMLSchemaString(v string)
|
||||
// At returns the property value for the specified index. Panics if the
|
||||
// index is out of bounds.
|
||||
At(index int) ForgeFedFilesModifiedPropertyIterator
|
||||
// Begin returns the first iterator, or nil if empty. Can be used with the
|
||||
// iterator's Next method and this property's End method to iterate
|
||||
// from front to back through all values.
|
||||
Begin() ForgeFedFilesModifiedPropertyIterator
|
||||
// Empty returns returns true if there are no elements.
|
||||
Empty() bool
|
||||
// End returns beyond-the-last iterator, which is nil. Can be used with
|
||||
// the iterator's Next method and this property's Begin method to
|
||||
// iterate from front to back through all values.
|
||||
End() ForgeFedFilesModifiedPropertyIterator
|
||||
// Insert inserts an IRI value at the specified index for a property
|
||||
// "filesModified". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertIRI(idx int, v *url.URL)
|
||||
// InsertXMLSchemaString inserts a string value at the specified index for
|
||||
// a property "filesModified". Existing elements at that index and
|
||||
// higher are shifted back once. Invalidates all iterators.
|
||||
InsertXMLSchemaString(idx int, v string)
|
||||
// JSONLDContext returns the JSONLD URIs required in the context string
|
||||
// for this property and the specific values that are set. The value
|
||||
// in the map is the alias used to import the property's value or
|
||||
// values.
|
||||
JSONLDContext() map[string]string
|
||||
// KindIndex computes an arbitrary value for indexing this kind of value.
|
||||
// This is a leaky API method specifically needed only for alternate
|
||||
// implementations for go-fed. Applications should not use this
|
||||
// method. Panics if the index is out of bounds.
|
||||
KindIndex(idx int) int
|
||||
// Len returns the number of values that exist for the "filesModified"
|
||||
// property.
|
||||
Len() (length int)
|
||||
// Less computes whether another property is less than this one. Mixing
|
||||
// types results in a consistent but arbitrary ordering
|
||||
Less(i, j int) bool
|
||||
// LessThan compares two instances of this property with an arbitrary but
|
||||
// stable comparison. Applications should not use this because it is
|
||||
// only meant to help alternative implementations to go-fed to be able
|
||||
// to normalize nonfunctional properties.
|
||||
LessThan(o ForgeFedFilesModifiedProperty) bool
|
||||
// Name returns the name of this property ("filesModified") with any alias.
|
||||
Name() string
|
||||
// PrependIRI prepends an IRI value to the front of a list of the property
|
||||
// "filesModified".
|
||||
PrependIRI(v *url.URL)
|
||||
// PrependXMLSchemaString prepends a string value to the front of a list
|
||||
// of the property "filesModified". Invalidates all iterators.
|
||||
PrependXMLSchemaString(v string)
|
||||
// Remove deletes an element at the specified index from a list of the
|
||||
// property "filesModified", regardless of its type. Panics if the
|
||||
// index is out of bounds. Invalidates all iterators.
|
||||
Remove(idx int)
|
||||
// Serialize converts this into an interface representation suitable for
|
||||
// marshalling into a text or binary format. Applications should not
|
||||
// need this function as most typical use cases serialize types
|
||||
// instead of individual properties. It is exposed for alternatives to
|
||||
// go-fed implementations to use.
|
||||
Serialize() (interface{}, error)
|
||||
// Set sets a string value to be at the specified index for the property
|
||||
// "filesModified". Panics if the index is out of bounds. Invalidates
|
||||
// all iterators.
|
||||
Set(idx int, v string)
|
||||
// SetIRI sets an IRI value to be at the specified index for the property
|
||||
// "filesModified". Panics if the index is out of bounds.
|
||||
SetIRI(idx int, v *url.URL)
|
||||
// Swap swaps the location of values at two indices for the
|
||||
// "filesModified" property.
|
||||
Swap(i, j int)
|
||||
}
|
||||
|
|
@ -1,132 +0,0 @@
|
|||
// Code generated by astool. DO NOT EDIT.
|
||||
|
||||
package vocab
|
||||
|
||||
import "net/url"
|
||||
|
||||
// ForgeFedFilesRemovedPropertyIterator represents a single value for the
|
||||
// "filesRemoved" property.
|
||||
type ForgeFedFilesRemovedPropertyIterator interface {
|
||||
// Get returns the value of this property. When IsXMLSchemaString returns
|
||||
// false, Get will return any arbitrary value.
|
||||
Get() string
|
||||
// GetIRI returns the IRI of this property. When IsIRI returns false,
|
||||
// GetIRI will return any arbitrary value.
|
||||
GetIRI() *url.URL
|
||||
// HasAny returns true if the value or IRI is set.
|
||||
HasAny() bool
|
||||
// IsIRI returns true if this property is an IRI.
|
||||
IsIRI() bool
|
||||
// IsXMLSchemaString returns true if this property is set and not an IRI.
|
||||
IsXMLSchemaString() bool
|
||||
// JSONLDContext returns the JSONLD URIs required in the context string
|
||||
// for this property and the specific values that are set. The value
|
||||
// in the map is the alias used to import the property's value or
|
||||
// values.
|
||||
JSONLDContext() map[string]string
|
||||
// KindIndex computes an arbitrary value for indexing this kind of value.
|
||||
// This is a leaky API detail only for folks looking to replace the
|
||||
// go-fed implementation. Applications should not use this method.
|
||||
KindIndex() int
|
||||
// LessThan compares two instances of this property with an arbitrary but
|
||||
// stable comparison. Applications should not use this because it is
|
||||
// only meant to help alternative implementations to go-fed to be able
|
||||
// to normalize nonfunctional properties.
|
||||
LessThan(o ForgeFedFilesRemovedPropertyIterator) bool
|
||||
// Name returns the name of this property: "ForgeFedFilesRemoved".
|
||||
Name() string
|
||||
// Next returns the next iterator, or nil if there is no next iterator.
|
||||
Next() ForgeFedFilesRemovedPropertyIterator
|
||||
// Prev returns the previous iterator, or nil if there is no previous
|
||||
// iterator.
|
||||
Prev() ForgeFedFilesRemovedPropertyIterator
|
||||
// Set sets the value of this property. Calling IsXMLSchemaString
|
||||
// afterwards will return true.
|
||||
Set(v string)
|
||||
// SetIRI sets the value of this property. Calling IsIRI afterwards will
|
||||
// return true.
|
||||
SetIRI(v *url.URL)
|
||||
}
|
||||
|
||||
// Specifies a filename, as a relative path, relative to the top of the tree of
|
||||
// files in the Repository, of a file that existed in the previous version of
|
||||
// the tree, and got removed from the tree in this Commit.
|
||||
type ForgeFedFilesRemovedProperty interface {
|
||||
// AppendIRI appends an IRI value to the back of a list of the property
|
||||
// "filesRemoved"
|
||||
AppendIRI(v *url.URL)
|
||||
// AppendXMLSchemaString appends a string value to the back of a list of
|
||||
// the property "filesRemoved". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
AppendXMLSchemaString(v string)
|
||||
// At returns the property value for the specified index. Panics if the
|
||||
// index is out of bounds.
|
||||
At(index int) ForgeFedFilesRemovedPropertyIterator
|
||||
// Begin returns the first iterator, or nil if empty. Can be used with the
|
||||
// iterator's Next method and this property's End method to iterate
|
||||
// from front to back through all values.
|
||||
Begin() ForgeFedFilesRemovedPropertyIterator
|
||||
// Empty returns returns true if there are no elements.
|
||||
Empty() bool
|
||||
// End returns beyond-the-last iterator, which is nil. Can be used with
|
||||
// the iterator's Next method and this property's Begin method to
|
||||
// iterate from front to back through all values.
|
||||
End() ForgeFedFilesRemovedPropertyIterator
|
||||
// Insert inserts an IRI value at the specified index for a property
|
||||
// "filesRemoved". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
InsertIRI(idx int, v *url.URL)
|
||||
// InsertXMLSchemaString inserts a string value at the specified index for
|
||||
// a property "filesRemoved". Existing elements at that index and
|
||||
// higher are shifted back once. Invalidates all iterators.
|
||||
InsertXMLSchemaString(idx int, v string)
|
||||
// JSONLDContext returns the JSONLD URIs required in the context string
|
||||
// for this property and the specific values that are set. The value
|
||||
// in the map is the alias used to import the property's value or
|
||||
// values.
|
||||
JSONLDContext() map[string]string
|
||||
// KindIndex computes an arbitrary value for indexing this kind of value.
|
||||
// This is a leaky API method specifically needed only for alternate
|
||||
// implementations for go-fed. Applications should not use this
|
||||
// method. Panics if the index is out of bounds.
|
||||
KindIndex(idx int) int
|
||||
// Len returns the number of values that exist for the "filesRemoved"
|
||||
// property.
|
||||
Len() (length int)
|
||||
// Less computes whether another property is less than this one. Mixing
|
||||
// types results in a consistent but arbitrary ordering
|
||||
Less(i, j int) bool
|
||||
// LessThan compares two instances of this property with an arbitrary but
|
||||
// stable comparison. Applications should not use this because it is
|
||||
// only meant to help alternative implementations to go-fed to be able
|
||||
// to normalize nonfunctional properties.
|
||||
LessThan(o ForgeFedFilesRemovedProperty) bool
|
||||
// Name returns the name of this property ("filesRemoved") with any alias.
|
||||
Name() string
|
||||
// PrependIRI prepends an IRI value to the front of a list of the property
|
||||
// "filesRemoved".
|
||||
PrependIRI(v *url.URL)
|
||||
// PrependXMLSchemaString prepends a string value to the front of a list
|
||||
// of the property "filesRemoved". Invalidates all iterators.
|
||||
PrependXMLSchemaString(v string)
|
||||
// Remove deletes an element at the specified index from a list of the
|
||||
// property "filesRemoved", regardless of its type. Panics if the
|
||||
// index is out of bounds. Invalidates all iterators.
|
||||
Remove(idx int)
|
||||
// Serialize converts this into an interface representation suitable for
|
||||
// marshalling into a text or binary format. Applications should not
|
||||
// need this function as most typical use cases serialize types
|
||||
// instead of individual properties. It is exposed for alternatives to
|
||||
// go-fed implementations to use.
|
||||
Serialize() (interface{}, error)
|
||||
// Set sets a string value to be at the specified index for the property
|
||||
// "filesRemoved". Panics if the index is out of bounds. Invalidates
|
||||
// all iterators.
|
||||
Set(idx int, v string)
|
||||
// SetIRI sets an IRI value to be at the specified index for the property
|
||||
// "filesRemoved". Panics if the index is out of bounds.
|
||||
SetIRI(idx int, v *url.URL)
|
||||
// Swap swaps the location of values at two indices for the "filesRemoved"
|
||||
// property.
|
||||
Swap(i, j int)
|
||||
}
|
||||
|
|
@ -1,82 +0,0 @@
|
|||
// Code generated by astool. DO NOT EDIT.
|
||||
|
||||
package vocab
|
||||
|
||||
import "net/url"
|
||||
|
||||
// Identifies an OrderedCollection of Repositorys which were created as forks of
|
||||
// this Repository, i.e. by cloning it. The order of the collection items is
|
||||
// by reverse chronological order of the forking events.
|
||||
type ForgeFedForksProperty interface {
|
||||
// Clear ensures no value of this property is set. Calling HasAny or any
|
||||
// of the 'Is' methods afterwards will return false.
|
||||
Clear()
|
||||
// GetActivityStreamsOrderedCollection returns the value of this property.
|
||||
// When IsActivityStreamsOrderedCollection returns false,
|
||||
// GetActivityStreamsOrderedCollection will return an arbitrary value.
|
||||
GetActivityStreamsOrderedCollection() ActivityStreamsOrderedCollection
|
||||
// GetActivityStreamsOrderedCollectionPage returns the value of this
|
||||
// property. When IsActivityStreamsOrderedCollectionPage returns
|
||||
// false, GetActivityStreamsOrderedCollectionPage will return an
|
||||
// arbitrary value.
|
||||
GetActivityStreamsOrderedCollectionPage() ActivityStreamsOrderedCollectionPage
|
||||
// GetIRI returns the IRI of this property. When IsIRI returns false,
|
||||
// GetIRI will return an arbitrary value.
|
||||
GetIRI() *url.URL
|
||||
// GetType returns the value in this property as a Type. Returns nil if
|
||||
// the value is not an ActivityStreams type, such as an IRI or another
|
||||
// value.
|
||||
GetType() Type
|
||||
// HasAny returns true if any of the different values is set.
|
||||
HasAny() bool
|
||||
// IsActivityStreamsOrderedCollection returns true if this property has a
|
||||
// type of "OrderedCollection". When true, use the
|
||||
// GetActivityStreamsOrderedCollection and
|
||||
// SetActivityStreamsOrderedCollection methods to access and set this
|
||||
// property.
|
||||
IsActivityStreamsOrderedCollection() bool
|
||||
// IsActivityStreamsOrderedCollectionPage returns true if this property
|
||||
// has a type of "OrderedCollectionPage". When true, use the
|
||||
// GetActivityStreamsOrderedCollectionPage and
|
||||
// SetActivityStreamsOrderedCollectionPage methods to access and set
|
||||
// this property.
|
||||
IsActivityStreamsOrderedCollectionPage() bool
|
||||
// IsIRI returns true if this property is an IRI. When true, use GetIRI
|
||||
// and SetIRI to access and set this property
|
||||
IsIRI() bool
|
||||
// JSONLDContext returns the JSONLD URIs required in the context string
|
||||
// for this property and the specific values that are set. The value
|
||||
// in the map is the alias used to import the property's value or
|
||||
// values.
|
||||
JSONLDContext() map[string]string
|
||||
// KindIndex computes an arbitrary value for indexing this kind of value.
|
||||
// This is a leaky API detail only for folks looking to replace the
|
||||
// go-fed implementation. Applications should not use this method.
|
||||
KindIndex() int
|
||||
// LessThan compares two instances of this property with an arbitrary but
|
||||
// stable comparison. Applications should not use this because it is
|
||||
// only meant to help alternative implementations to go-fed to be able
|
||||
// to normalize nonfunctional properties.
|
||||
LessThan(o ForgeFedForksProperty) bool
|
||||
// Name returns the name of this property: "forks".
|
||||
Name() string
|
||||
// Serialize converts this into an interface representation suitable for
|
||||
// marshalling into a text or binary format. Applications should not
|
||||
// need this function as most typical use cases serialize types
|
||||
// instead of individual properties. It is exposed for alternatives to
|
||||
// go-fed implementations to use.
|
||||
Serialize() (interface{}, error)
|
||||
// SetActivityStreamsOrderedCollection sets the value of this property.
|
||||
// Calling IsActivityStreamsOrderedCollection afterwards returns true.
|
||||
SetActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
|
||||
// SetActivityStreamsOrderedCollectionPage sets the value of this
|
||||
// property. Calling IsActivityStreamsOrderedCollectionPage afterwards
|
||||
// returns true.
|
||||
SetActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
|
||||
// SetIRI sets the value of this property. Calling IsIRI afterwards
|
||||
// returns true.
|
||||
SetIRI(v *url.URL)
|
||||
// SetType attempts to set the property for the arbitrary type. Returns an
|
||||
// error if it is not a valid type to set on this property.
|
||||
SetType(t Type) error
|
||||
}
|
||||
|
|
@ -1,56 +0,0 @@
|
|||
// Code generated by astool. DO NOT EDIT.
|
||||
|
||||
package vocab
|
||||
|
||||
import "net/url"
|
||||
|
||||
// Specifies the hash associated with a Commit, which is a unique identifier of
|
||||
// the commit within the Repository, usually generated as a cryptographic hash
|
||||
// function of some (or all) of the commit’s data or metadata. For example,
|
||||
// in Git it would be the SHA1 hash of the commit; in Darcs it would be the
|
||||
// SHA1 hash of the patch info.
|
||||
type ForgeFedHashProperty interface {
|
||||
// Clear ensures no value of this property is set. Calling
|
||||
// IsXMLSchemaString afterwards will return false.
|
||||
Clear()
|
||||
// Get returns the value of this property. When IsXMLSchemaString returns
|
||||
// false, Get will return any arbitrary value.
|
||||
Get() string
|
||||
// GetIRI returns the IRI of this property. When IsIRI returns false,
|
||||
// GetIRI will return any arbitrary value.
|
||||
GetIRI() *url.URL
|
||||
// HasAny returns true if the value or IRI is set.
|
||||
HasAny() bool
|
||||
// IsIRI returns true if this property is an IRI.
|
||||
IsIRI() bool
|
||||
// IsXMLSchemaString returns true if this property is set and not an IRI.
|
||||
IsXMLSchemaString() bool
|
||||
// JSONLDContext returns the JSONLD URIs required in the context string
|
||||
// for this property and the specific values that are set. The value
|
||||
// in the map is the alias used to import the property's value or
|
||||
// values.
|
||||
JSONLDContext() map[string]string
|
||||
// KindIndex computes an arbitrary value for indexing this kind of value.
|
||||
// This is a leaky API detail only for folks looking to replace the
|
||||
// go-fed implementation. Applications should not use this method.
|
||||
KindIndex() int
|
||||
// LessThan compares two instances of this property with an arbitrary but
|
||||
// stable comparison. Applications should not use this because it is
|
||||
// only meant to help alternative implementations to go-fed to be able
|
||||
// to normalize nonfunctional properties.
|
||||
LessThan(o ForgeFedHashProperty) bool
|
||||
// Name returns the name of this property: "hash".
|
||||
Name() string
|
||||
// Serialize converts this into an interface representation suitable for
|
||||
// marshalling into a text or binary format. Applications should not
|
||||
// need this function as most typical use cases serialize types
|
||||
// instead of individual properties. It is exposed for alternatives to
|
||||
// go-fed implementations to use.
|
||||
Serialize() (interface{}, error)
|
||||
// Set sets the value of this property. Calling IsXMLSchemaString
|
||||
// afterwards will return true.
|
||||
Set(v string)
|
||||
// SetIRI sets the value of this property. Calling IsIRI afterwards will
|
||||
// return true.
|
||||
SetIRI(v *url.URL)
|
||||
}
|
||||
|
|
@ -1,53 +0,0 @@
|
|||
// Code generated by astool. DO NOT EDIT.
|
||||
|
||||
package vocab
|
||||
|
||||
import "net/url"
|
||||
|
||||
// Specifies whether the Ticket is closed, i.e. the work on it is done and it
|
||||
// doesn’t need to attract attention anymore.
|
||||
type ForgeFedIsResolvedProperty interface {
|
||||
// Clear ensures no value of this property is set. Calling
|
||||
// IsXMLSchemaBoolean afterwards will return false.
|
||||
Clear()
|
||||
// Get returns the value of this property. When IsXMLSchemaBoolean returns
|
||||
// false, Get will return any arbitrary value.
|
||||
Get() bool
|
||||
// GetIRI returns the IRI of this property. When IsIRI returns false,
|
||||
// GetIRI will return any arbitrary value.
|
||||
GetIRI() *url.URL
|
||||
// HasAny returns true if the value or IRI is set.
|
||||
HasAny() bool
|
||||
// IsIRI returns true if this property is an IRI.
|
||||
IsIRI() bool
|
||||
// IsXMLSchemaBoolean returns true if this property is set and not an IRI.
|
||||
IsXMLSchemaBoolean() bool
|
||||
// JSONLDContext returns the JSONLD URIs required in the context string
|
||||
// for this property and the specific values that are set. The value
|
||||
// in the map is the alias used to import the property's value or
|
||||
// values.
|
||||
JSONLDContext() map[string]string
|
||||
// KindIndex computes an arbitrary value for indexing this kind of value.
|
||||
// This is a leaky API detail only for folks looking to replace the
|
||||
// go-fed implementation. Applications should not use this method.
|
||||
KindIndex() int
|
||||
// LessThan compares two instances of this property with an arbitrary but
|
||||
// stable comparison. Applications should not use this because it is
|
||||
// only meant to help alternative implementations to go-fed to be able
|
||||
// to normalize nonfunctional properties.
|
||||
LessThan(o ForgeFedIsResolvedProperty) bool
|
||||
// Name returns the name of this property: "isResolved".
|
||||
Name() string
|
||||
// Serialize converts this into an interface representation suitable for
|
||||
// marshalling into a text or binary format. Applications should not
|
||||
// need this function as most typical use cases serialize types
|
||||
// instead of individual properties. It is exposed for alternatives to
|
||||
// go-fed implementations to use.
|
||||
Serialize() (interface{}, error)
|
||||
// Set sets the value of this property. Calling IsXMLSchemaBoolean
|
||||
// afterwards will return true.
|
||||
Set(v bool)
|
||||
// SetIRI sets the value of this property. Calling IsIRI afterwards will
|
||||
// return true.
|
||||
SetIRI(v *url.URL)
|
||||
}
|
||||
|
|
@ -1,66 +0,0 @@
|
|||
// Code generated by astool. DO NOT EDIT.
|
||||
|
||||
package vocab
|
||||
|
||||
import "net/url"
|
||||
|
||||
// Specifies an identifier for a Branch, that is used in the Repository to
|
||||
// uniquely refer to it. For example, in Git, "refs/heads/master" would be the
|
||||
// ref of the master branch.
|
||||
//
|
||||
// {
|
||||
// "@context": [
|
||||
// "https://www.w3.org/ns/activitystreams",
|
||||
// "https://forgefed.peers.community/ns"
|
||||
// ],
|
||||
// "context": "https://example.org/luke/myrepo",
|
||||
// "id": "https://example.org/luke/myrepo/branches/master",
|
||||
// "name": "master",
|
||||
// "ref": "refs/heads/master",
|
||||
// "type": "Branch"
|
||||
// }
|
||||
type ForgeFedRefProperty interface {
|
||||
// Clear ensures no value of this property is set. Calling
|
||||
// IsXMLSchemaString afterwards will return false.
|
||||
Clear()
|
||||
// Get returns the value of this property. When IsXMLSchemaString returns
|
||||
// false, Get will return any arbitrary value.
|
||||
Get() string
|
||||
// GetIRI returns the IRI of this property. When IsIRI returns false,
|
||||
// GetIRI will return any arbitrary value.
|
||||
GetIRI() *url.URL
|
||||
// HasAny returns true if the value or IRI is set.
|
||||
HasAny() bool
|
||||
// IsIRI returns true if this property is an IRI.
|
||||
IsIRI() bool
|
||||
// IsXMLSchemaString returns true if this property is set and not an IRI.
|
||||
IsXMLSchemaString() bool
|
||||
// JSONLDContext returns the JSONLD URIs required in the context string
|
||||
// for this property and the specific values that are set. The value
|
||||
// in the map is the alias used to import the property's value or
|
||||
// values.
|
||||
JSONLDContext() map[string]string
|
||||
// KindIndex computes an arbitrary value for indexing this kind of value.
|
||||
// This is a leaky API detail only for folks looking to replace the
|
||||
// go-fed implementation. Applications should not use this method.
|
||||
KindIndex() int
|
||||
// LessThan compares two instances of this property with an arbitrary but
|
||||
// stable comparison. Applications should not use this because it is
|
||||
// only meant to help alternative implementations to go-fed to be able
|
||||
// to normalize nonfunctional properties.
|
||||
LessThan(o ForgeFedRefProperty) bool
|
||||
// Name returns the name of this property: "ref".
|
||||
Name() string
|
||||
// Serialize converts this into an interface representation suitable for
|
||||
// marshalling into a text or binary format. Applications should not
|
||||
// need this function as most typical use cases serialize types
|
||||
// instead of individual properties. It is exposed for alternatives to
|
||||
// go-fed implementations to use.
|
||||
Serialize() (interface{}, error)
|
||||
// Set sets the value of this property. Calling IsXMLSchemaString
|
||||
// afterwards will return true.
|
||||
Set(v string)
|
||||
// SetIRI sets the value of this property. Calling IsIRI afterwards will
|
||||
// return true.
|
||||
SetIRI(v *url.URL)
|
||||
}
|
||||
|
|
@ -1,142 +0,0 @@
|
|||
// Code generated by astool. DO NOT EDIT.
|
||||
|
||||
package vocab
|
||||
|
||||
import "net/url"
|
||||
|
||||
// Specifies a Collection of actors who are working on the object, or responsible
|
||||
// for it, or managing or administrating it, or having edit access to it. For
|
||||
// example, for a Repository, it could be the people who have push/edit
|
||||
// access, the "collaborators" of the repository.
|
||||
//
|
||||
// {
|
||||
// "@context": [
|
||||
// "https://www.w3.org/ns/activitystreams",
|
||||
// "https://w3id.org/security/v1",
|
||||
// "https://forgefed.peers.community/ns"
|
||||
// ],
|
||||
// "followers": "https://dev.example/aviva/treesim/followers",
|
||||
// "id": "https://dev.example/aviva/treesim",
|
||||
// "inbox": "https://dev.example/aviva/treesim/inbox",
|
||||
// "name": "Tree Growth 3D Simulation",
|
||||
// "outbox": "https://dev.example/aviva/treesim/outbox",
|
||||
// "publicKey": {
|
||||
// "id": "https://dev.example/aviva/treesim#main-key",
|
||||
// "owner": "https://dev.example/aviva/treesim",
|
||||
// "publicKeyPem": "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhki....."
|
||||
// },
|
||||
// "summary": "\u003cp\u003eTree growth 3D simulator for my nature
|
||||
// exploration game\u003c/p\u003e",
|
||||
// "team": "https://dev.example/aviva/treesim/team",
|
||||
// "type": "Repository"
|
||||
// }
|
||||
//
|
||||
// {
|
||||
// "@context": "https://www.w3.org/ns/activitystreams",
|
||||
// "id": "https://dev.example/aviva/treesim/team",
|
||||
// "items": [
|
||||
// "https://dev.example/aviva",
|
||||
// "https://dev.example/luke",
|
||||
// "https://code.community/users/lorax"
|
||||
// ],
|
||||
// "totalItems": 3,
|
||||
// "type": "Collection"
|
||||
// }
|
||||
type ForgeFedTeamProperty interface {
|
||||
// Clear ensures no value of this property is set. Calling HasAny or any
|
||||
// of the 'Is' methods afterwards will return false.
|
||||
Clear()
|
||||
// GetActivityStreamsCollection returns the value of this property. When
|
||||
// IsActivityStreamsCollection returns false,
|
||||
// GetActivityStreamsCollection will return an arbitrary value.
|
||||
GetActivityStreamsCollection() ActivityStreamsCollection
|
||||
// GetActivityStreamsCollectionPage returns the value of this property.
|
||||
// When IsActivityStreamsCollectionPage returns false,
|
||||
// GetActivityStreamsCollectionPage will return an arbitrary value.
|
||||
GetActivityStreamsCollectionPage() ActivityStreamsCollectionPage
|
||||
// GetActivityStreamsOrderedCollection returns the value of this property.
|
||||
// When IsActivityStreamsOrderedCollection returns false,
|
||||
// GetActivityStreamsOrderedCollection will return an arbitrary value.
|
||||
GetActivityStreamsOrderedCollection() ActivityStreamsOrderedCollection
|
||||
// GetActivityStreamsOrderedCollectionPage returns the value of this
|
||||
// property. When IsActivityStreamsOrderedCollectionPage returns
|
||||
// false, GetActivityStreamsOrderedCollectionPage will return an
|
||||
// arbitrary value.
|
||||
GetActivityStreamsOrderedCollectionPage() ActivityStreamsOrderedCollectionPage
|
||||
// GetIRI returns the IRI of this property. When IsIRI returns false,
|
||||
// GetIRI will return an arbitrary value.
|
||||
GetIRI() *url.URL
|
||||
// GetType returns the value in this property as a Type. Returns nil if
|
||||
// the value is not an ActivityStreams type, such as an IRI or another
|
||||
// value.
|
||||
GetType() Type
|
||||
// HasAny returns true if any of the different values is set.
|
||||
HasAny() bool
|
||||
// IsActivityStreamsCollection returns true if this property has a type of
|
||||
// "Collection". When true, use the GetActivityStreamsCollection and
|
||||
// SetActivityStreamsCollection methods to access and set this
|
||||
// property.
|
||||
IsActivityStreamsCollection() bool
|
||||
// IsActivityStreamsCollectionPage returns true if this property has a
|
||||
// type of "CollectionPage". When true, use the
|
||||
// GetActivityStreamsCollectionPage and
|
||||
// SetActivityStreamsCollectionPage methods to access and set this
|
||||
// property.
|
||||
IsActivityStreamsCollectionPage() bool
|
||||
// IsActivityStreamsOrderedCollection returns true if this property has a
|
||||
// type of "OrderedCollection". When true, use the
|
||||
// GetActivityStreamsOrderedCollection and
|
||||
// SetActivityStreamsOrderedCollection methods to access and set this
|
||||
// property.
|
||||
IsActivityStreamsOrderedCollection() bool
|
||||
// IsActivityStreamsOrderedCollectionPage returns true if this property
|
||||
// has a type of "OrderedCollectionPage". When true, use the
|
||||
// GetActivityStreamsOrderedCollectionPage and
|
||||
// SetActivityStreamsOrderedCollectionPage methods to access and set
|
||||
// this property.
|
||||
IsActivityStreamsOrderedCollectionPage() bool
|
||||
// IsIRI returns true if this property is an IRI. When true, use GetIRI
|
||||
// and SetIRI to access and set this property
|
||||
IsIRI() bool
|
||||
// JSONLDContext returns the JSONLD URIs required in the context string
|
||||
// for this property and the specific values that are set. The value
|
||||
// in the map is the alias used to import the property's value or
|
||||
// values.
|
||||
JSONLDContext() map[string]string
|
||||
// KindIndex computes an arbitrary value for indexing this kind of value.
|
||||
// This is a leaky API detail only for folks looking to replace the
|
||||
// go-fed implementation. Applications should not use this method.
|
||||
KindIndex() int
|
||||
// LessThan compares two instances of this property with an arbitrary but
|
||||
// stable comparison. Applications should not use this because it is
|
||||
// only meant to help alternative implementations to go-fed to be able
|
||||
// to normalize nonfunctional properties.
|
||||
LessThan(o ForgeFedTeamProperty) bool
|
||||
// Name returns the name of this property: "team".
|
||||
Name() string
|
||||
// Serialize converts this into an interface representation suitable for
|
||||
// marshalling into a text or binary format. Applications should not
|
||||
// need this function as most typical use cases serialize types
|
||||
// instead of individual properties. It is exposed for alternatives to
|
||||
// go-fed implementations to use.
|
||||
Serialize() (interface{}, error)
|
||||
// SetActivityStreamsCollection sets the value of this property. Calling
|
||||
// IsActivityStreamsCollection afterwards returns true.
|
||||
SetActivityStreamsCollection(v ActivityStreamsCollection)
|
||||
// SetActivityStreamsCollectionPage sets the value of this property.
|
||||
// Calling IsActivityStreamsCollectionPage afterwards returns true.
|
||||
SetActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
|
||||
// SetActivityStreamsOrderedCollection sets the value of this property.
|
||||
// Calling IsActivityStreamsOrderedCollection afterwards returns true.
|
||||
SetActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
|
||||
// SetActivityStreamsOrderedCollectionPage sets the value of this
|
||||
// property. Calling IsActivityStreamsOrderedCollectionPage afterwards
|
||||
// returns true.
|
||||
SetActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
|
||||
// SetIRI sets the value of this property. Calling IsIRI afterwards
|
||||
// returns true.
|
||||
SetIRI(v *url.URL)
|
||||
// SetType attempts to set the property for the arbitrary type. Returns an
|
||||
// error if it is not a valid type to set on this property.
|
||||
SetType(t Type) error
|
||||
}
|
||||
|
|
@ -1,756 +0,0 @@
|
|||
// Code generated by astool. DO NOT EDIT.
|
||||
|
||||
package vocab
|
||||
|
||||
import "net/url"
|
||||
|
||||
// Identifies the actor which tracks tickets related to the given object. This is
|
||||
// the actor to whom you send tickets you’d like to open against the object.
|
||||
//
|
||||
// {
|
||||
// "@context": [
|
||||
// "https://www.w3.org/ns/activitystreams",
|
||||
// "https://forgefed.peers.community/ns"
|
||||
// ],
|
||||
// "id": "https://dev.example/aviva/treesim",
|
||||
// "name": "Tree Growth 3D Simulation",
|
||||
// "summary": "\u003cp\u003eTree growth 3D simulator for my nature
|
||||
// exploration game\u003c/p\u003e",
|
||||
// "ticketsTrackedBy": "https://bugs.example/projects/treesim",
|
||||
// "type": "Repository"
|
||||
// }
|
||||
type ForgeFedTicketsTrackedByProperty interface {
|
||||
// Clear ensures no value of this property is set. Calling HasAny or any
|
||||
// of the 'Is' methods afterwards will return false.
|
||||
Clear()
|
||||
// GetActivityStreamsAccept returns the value of this property. When
|
||||
// IsActivityStreamsAccept returns false, GetActivityStreamsAccept
|
||||
// will return an arbitrary value.
|
||||
GetActivityStreamsAccept() ActivityStreamsAccept
|
||||
// GetActivityStreamsActivity returns the value of this property. When
|
||||
// IsActivityStreamsActivity returns false, GetActivityStreamsActivity
|
||||
// will return an arbitrary value.
|
||||
GetActivityStreamsActivity() ActivityStreamsActivity
|
||||
// GetActivityStreamsAdd returns the value of this property. When
|
||||
// IsActivityStreamsAdd returns false, GetActivityStreamsAdd will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsAdd() ActivityStreamsAdd
|
||||
// GetActivityStreamsAnnounce returns the value of this property. When
|
||||
// IsActivityStreamsAnnounce returns false, GetActivityStreamsAnnounce
|
||||
// will return an arbitrary value.
|
||||
GetActivityStreamsAnnounce() ActivityStreamsAnnounce
|
||||
// GetActivityStreamsApplication returns the value of this property. When
|
||||
// IsActivityStreamsApplication returns false,
|
||||
// GetActivityStreamsApplication will return an arbitrary value.
|
||||
GetActivityStreamsApplication() ActivityStreamsApplication
|
||||
// GetActivityStreamsArrive returns the value of this property. When
|
||||
// IsActivityStreamsArrive returns false, GetActivityStreamsArrive
|
||||
// will return an arbitrary value.
|
||||
GetActivityStreamsArrive() ActivityStreamsArrive
|
||||
// GetActivityStreamsArticle returns the value of this property. When
|
||||
// IsActivityStreamsArticle returns false, GetActivityStreamsArticle
|
||||
// will return an arbitrary value.
|
||||
GetActivityStreamsArticle() ActivityStreamsArticle
|
||||
// GetActivityStreamsAudio returns the value of this property. When
|
||||
// IsActivityStreamsAudio returns false, GetActivityStreamsAudio will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsAudio() ActivityStreamsAudio
|
||||
// GetActivityStreamsBlock returns the value of this property. When
|
||||
// IsActivityStreamsBlock returns false, GetActivityStreamsBlock will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsBlock() ActivityStreamsBlock
|
||||
// GetActivityStreamsCollection returns the value of this property. When
|
||||
// IsActivityStreamsCollection returns false,
|
||||
// GetActivityStreamsCollection will return an arbitrary value.
|
||||
GetActivityStreamsCollection() ActivityStreamsCollection
|
||||
// GetActivityStreamsCollectionPage returns the value of this property.
|
||||
// When IsActivityStreamsCollectionPage returns false,
|
||||
// GetActivityStreamsCollectionPage will return an arbitrary value.
|
||||
GetActivityStreamsCollectionPage() ActivityStreamsCollectionPage
|
||||
// GetActivityStreamsCreate returns the value of this property. When
|
||||
// IsActivityStreamsCreate returns false, GetActivityStreamsCreate
|
||||
// will return an arbitrary value.
|
||||
GetActivityStreamsCreate() ActivityStreamsCreate
|
||||
// GetActivityStreamsDelete returns the value of this property. When
|
||||
// IsActivityStreamsDelete returns false, GetActivityStreamsDelete
|
||||
// will return an arbitrary value.
|
||||
GetActivityStreamsDelete() ActivityStreamsDelete
|
||||
// GetActivityStreamsDislike returns the value of this property. When
|
||||
// IsActivityStreamsDislike returns false, GetActivityStreamsDislike
|
||||
// will return an arbitrary value.
|
||||
GetActivityStreamsDislike() ActivityStreamsDislike
|
||||
// GetActivityStreamsDocument returns the value of this property. When
|
||||
// IsActivityStreamsDocument returns false, GetActivityStreamsDocument
|
||||
// will return an arbitrary value.
|
||||
GetActivityStreamsDocument() ActivityStreamsDocument
|
||||
// GetActivityStreamsEvent returns the value of this property. When
|
||||
// IsActivityStreamsEvent returns false, GetActivityStreamsEvent will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsEvent() ActivityStreamsEvent
|
||||
// GetActivityStreamsFlag returns the value of this property. When
|
||||
// IsActivityStreamsFlag returns false, GetActivityStreamsFlag will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsFlag() ActivityStreamsFlag
|
||||
// GetActivityStreamsFollow returns the value of this property. When
|
||||
// IsActivityStreamsFollow returns false, GetActivityStreamsFollow
|
||||
// will return an arbitrary value.
|
||||
GetActivityStreamsFollow() ActivityStreamsFollow
|
||||
// GetActivityStreamsGroup returns the value of this property. When
|
||||
// IsActivityStreamsGroup returns false, GetActivityStreamsGroup will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsGroup() ActivityStreamsGroup
|
||||
// GetActivityStreamsIgnore returns the value of this property. When
|
||||
// IsActivityStreamsIgnore returns false, GetActivityStreamsIgnore
|
||||
// will return an arbitrary value.
|
||||
GetActivityStreamsIgnore() ActivityStreamsIgnore
|
||||
// GetActivityStreamsImage returns the value of this property. When
|
||||
// IsActivityStreamsImage returns false, GetActivityStreamsImage will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsImage() ActivityStreamsImage
|
||||
// GetActivityStreamsIntransitiveActivity returns the value of this
|
||||
// property. When IsActivityStreamsIntransitiveActivity returns false,
|
||||
// GetActivityStreamsIntransitiveActivity will return an arbitrary
|
||||
// value.
|
||||
GetActivityStreamsIntransitiveActivity() ActivityStreamsIntransitiveActivity
|
||||
// GetActivityStreamsInvite returns the value of this property. When
|
||||
// IsActivityStreamsInvite returns false, GetActivityStreamsInvite
|
||||
// will return an arbitrary value.
|
||||
GetActivityStreamsInvite() ActivityStreamsInvite
|
||||
// GetActivityStreamsJoin returns the value of this property. When
|
||||
// IsActivityStreamsJoin returns false, GetActivityStreamsJoin will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsJoin() ActivityStreamsJoin
|
||||
// GetActivityStreamsLeave returns the value of this property. When
|
||||
// IsActivityStreamsLeave returns false, GetActivityStreamsLeave will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsLeave() ActivityStreamsLeave
|
||||
// GetActivityStreamsLike returns the value of this property. When
|
||||
// IsActivityStreamsLike returns false, GetActivityStreamsLike will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsLike() ActivityStreamsLike
|
||||
// GetActivityStreamsListen returns the value of this property. When
|
||||
// IsActivityStreamsListen returns false, GetActivityStreamsListen
|
||||
// will return an arbitrary value.
|
||||
GetActivityStreamsListen() ActivityStreamsListen
|
||||
// GetActivityStreamsMove returns the value of this property. When
|
||||
// IsActivityStreamsMove returns false, GetActivityStreamsMove will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsMove() ActivityStreamsMove
|
||||
// GetActivityStreamsNote returns the value of this property. When
|
||||
// IsActivityStreamsNote returns false, GetActivityStreamsNote will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsNote() ActivityStreamsNote
|
||||
// GetActivityStreamsObject returns the value of this property. When
|
||||
// IsActivityStreamsObject returns false, GetActivityStreamsObject
|
||||
// will return an arbitrary value.
|
||||
GetActivityStreamsObject() ActivityStreamsObject
|
||||
// GetActivityStreamsOffer returns the value of this property. When
|
||||
// IsActivityStreamsOffer returns false, GetActivityStreamsOffer will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsOffer() ActivityStreamsOffer
|
||||
// GetActivityStreamsOrderedCollection returns the value of this property.
|
||||
// When IsActivityStreamsOrderedCollection returns false,
|
||||
// GetActivityStreamsOrderedCollection will return an arbitrary value.
|
||||
GetActivityStreamsOrderedCollection() ActivityStreamsOrderedCollection
|
||||
// GetActivityStreamsOrderedCollectionPage returns the value of this
|
||||
// property. When IsActivityStreamsOrderedCollectionPage returns
|
||||
// false, GetActivityStreamsOrderedCollectionPage will return an
|
||||
// arbitrary value.
|
||||
GetActivityStreamsOrderedCollectionPage() ActivityStreamsOrderedCollectionPage
|
||||
// GetActivityStreamsOrganization returns the value of this property. When
|
||||
// IsActivityStreamsOrganization returns false,
|
||||
// GetActivityStreamsOrganization will return an arbitrary value.
|
||||
GetActivityStreamsOrganization() ActivityStreamsOrganization
|
||||
// GetActivityStreamsPage returns the value of this property. When
|
||||
// IsActivityStreamsPage returns false, GetActivityStreamsPage will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsPage() ActivityStreamsPage
|
||||
// GetActivityStreamsPerson returns the value of this property. When
|
||||
// IsActivityStreamsPerson returns false, GetActivityStreamsPerson
|
||||
// will return an arbitrary value.
|
||||
GetActivityStreamsPerson() ActivityStreamsPerson
|
||||
// GetActivityStreamsPlace returns the value of this property. When
|
||||
// IsActivityStreamsPlace returns false, GetActivityStreamsPlace will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsPlace() ActivityStreamsPlace
|
||||
// GetActivityStreamsProfile returns the value of this property. When
|
||||
// IsActivityStreamsProfile returns false, GetActivityStreamsProfile
|
||||
// will return an arbitrary value.
|
||||
GetActivityStreamsProfile() ActivityStreamsProfile
|
||||
// GetActivityStreamsQuestion returns the value of this property. When
|
||||
// IsActivityStreamsQuestion returns false, GetActivityStreamsQuestion
|
||||
// will return an arbitrary value.
|
||||
GetActivityStreamsQuestion() ActivityStreamsQuestion
|
||||
// GetActivityStreamsRead returns the value of this property. When
|
||||
// IsActivityStreamsRead returns false, GetActivityStreamsRead will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsRead() ActivityStreamsRead
|
||||
// GetActivityStreamsReject returns the value of this property. When
|
||||
// IsActivityStreamsReject returns false, GetActivityStreamsReject
|
||||
// will return an arbitrary value.
|
||||
GetActivityStreamsReject() ActivityStreamsReject
|
||||
// GetActivityStreamsRelationship returns the value of this property. When
|
||||
// IsActivityStreamsRelationship returns false,
|
||||
// GetActivityStreamsRelationship will return an arbitrary value.
|
||||
GetActivityStreamsRelationship() ActivityStreamsRelationship
|
||||
// GetActivityStreamsRemove returns the value of this property. When
|
||||
// IsActivityStreamsRemove returns false, GetActivityStreamsRemove
|
||||
// will return an arbitrary value.
|
||||
GetActivityStreamsRemove() ActivityStreamsRemove
|
||||
// GetActivityStreamsService returns the value of this property. When
|
||||
// IsActivityStreamsService returns false, GetActivityStreamsService
|
||||
// will return an arbitrary value.
|
||||
GetActivityStreamsService() ActivityStreamsService
|
||||
// GetActivityStreamsTentativeAccept returns the value of this property.
|
||||
// When IsActivityStreamsTentativeAccept returns false,
|
||||
// GetActivityStreamsTentativeAccept will return an arbitrary value.
|
||||
GetActivityStreamsTentativeAccept() ActivityStreamsTentativeAccept
|
||||
// GetActivityStreamsTentativeReject returns the value of this property.
|
||||
// When IsActivityStreamsTentativeReject returns false,
|
||||
// GetActivityStreamsTentativeReject will return an arbitrary value.
|
||||
GetActivityStreamsTentativeReject() ActivityStreamsTentativeReject
|
||||
// GetActivityStreamsTombstone returns the value of this property. When
|
||||
// IsActivityStreamsTombstone returns false,
|
||||
// GetActivityStreamsTombstone will return an arbitrary value.
|
||||
GetActivityStreamsTombstone() ActivityStreamsTombstone
|
||||
// GetActivityStreamsTravel returns the value of this property. When
|
||||
// IsActivityStreamsTravel returns false, GetActivityStreamsTravel
|
||||
// will return an arbitrary value.
|
||||
GetActivityStreamsTravel() ActivityStreamsTravel
|
||||
// GetActivityStreamsUndo returns the value of this property. When
|
||||
// IsActivityStreamsUndo returns false, GetActivityStreamsUndo will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsUndo() ActivityStreamsUndo
|
||||
// GetActivityStreamsUpdate returns the value of this property. When
|
||||
// IsActivityStreamsUpdate returns false, GetActivityStreamsUpdate
|
||||
// will return an arbitrary value.
|
||||
GetActivityStreamsUpdate() ActivityStreamsUpdate
|
||||
// GetActivityStreamsVideo returns the value of this property. When
|
||||
// IsActivityStreamsVideo returns false, GetActivityStreamsVideo will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsVideo() ActivityStreamsVideo
|
||||
// GetActivityStreamsView returns the value of this property. When
|
||||
// IsActivityStreamsView returns false, GetActivityStreamsView will
|
||||
// return an arbitrary value.
|
||||
GetActivityStreamsView() ActivityStreamsView
|
||||
// GetForgeFedBranch returns the value of this property. When
|
||||
// IsForgeFedBranch returns false, GetForgeFedBranch will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedBranch() ForgeFedBranch
|
||||
// GetForgeFedCommit returns the value of this property. When
|
||||
// IsForgeFedCommit returns false, GetForgeFedCommit will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedCommit() ForgeFedCommit
|
||||
// GetForgeFedPush returns the value of this property. When IsForgeFedPush
|
||||
// returns false, GetForgeFedPush will return an arbitrary value.
|
||||
GetForgeFedPush() ForgeFedPush
|
||||
// GetForgeFedRepository returns the value of this property. When
|
||||
// IsForgeFedRepository returns false, GetForgeFedRepository will
|
||||
// return an arbitrary value.
|
||||
GetForgeFedRepository() ForgeFedRepository
|
||||
// GetForgeFedTicket returns the value of this property. When
|
||||
// IsForgeFedTicket returns false, GetForgeFedTicket will return an
|
||||
// arbitrary value.
|
||||
GetForgeFedTicket() ForgeFedTicket
|
||||
// GetForgeFedTicketDependency returns the value of this property. When
|
||||
// IsForgeFedTicketDependency returns false,
|
||||
// GetForgeFedTicketDependency will return an arbitrary value.
|
||||
GetForgeFedTicketDependency() ForgeFedTicketDependency
|
||||
// GetIRI returns the IRI of this property. When IsIRI returns false,
|
||||
// GetIRI will return an arbitrary value.
|
||||
GetIRI() *url.URL
|
||||
// GetSchemaPropertyValue returns the value of this property. When
|
||||
// IsSchemaPropertyValue returns false, GetSchemaPropertyValue will
|
||||
// return an arbitrary value.
|
||||
GetSchemaPropertyValue() SchemaPropertyValue
|
||||
// GetTootEmoji returns the value of this property. When IsTootEmoji
|
||||
// returns false, GetTootEmoji will return an arbitrary value.
|
||||
GetTootEmoji() TootEmoji
|
||||
// GetTootIdentityProof returns the value of this property. When
|
||||
// IsTootIdentityProof returns false, GetTootIdentityProof will return
|
||||
// an arbitrary value.
|
||||
GetTootIdentityProof() TootIdentityProof
|
||||
// GetType returns the value in this property as a Type. Returns nil if
|
||||
// the value is not an ActivityStreams type, such as an IRI or another
|
||||
// value.
|
||||
GetType() Type
|
||||
// HasAny returns true if any of the different values is set.
|
||||
HasAny() bool
|
||||
// IsActivityStreamsAccept returns true if this property has a type of
|
||||
// "Accept". When true, use the GetActivityStreamsAccept and
|
||||
// SetActivityStreamsAccept methods to access and set this property.
|
||||
IsActivityStreamsAccept() bool
|
||||
// IsActivityStreamsActivity returns true if this property has a type of
|
||||
// "Activity". When true, use the GetActivityStreamsActivity and
|
||||
// SetActivityStreamsActivity methods to access and set this property.
|
||||
IsActivityStreamsActivity() bool
|
||||
// IsActivityStreamsAdd returns true if this property has a type of "Add".
|
||||
// When true, use the GetActivityStreamsAdd and SetActivityStreamsAdd
|
||||
// methods to access and set this property.
|
||||
IsActivityStreamsAdd() bool
|
||||
// IsActivityStreamsAnnounce returns true if this property has a type of
|
||||
// "Announce". When true, use the GetActivityStreamsAnnounce and
|
||||
// SetActivityStreamsAnnounce methods to access and set this property.
|
||||
IsActivityStreamsAnnounce() bool
|
||||
// IsActivityStreamsApplication returns true if this property has a type
|
||||
// of "Application". When true, use the GetActivityStreamsApplication
|
||||
// and SetActivityStreamsApplication methods to access and set this
|
||||
// property.
|
||||
IsActivityStreamsApplication() bool
|
||||
// IsActivityStreamsArrive returns true if this property has a type of
|
||||
// "Arrive". When true, use the GetActivityStreamsArrive and
|
||||
// SetActivityStreamsArrive methods to access and set this property.
|
||||
IsActivityStreamsArrive() bool
|
||||
// IsActivityStreamsArticle returns true if this property has a type of
|
||||
// "Article". When true, use the GetActivityStreamsArticle and
|
||||
// SetActivityStreamsArticle methods to access and set this property.
|
||||
IsActivityStreamsArticle() bool
|
||||
// IsActivityStreamsAudio returns true if this property has a type of
|
||||
// "Audio". When true, use the GetActivityStreamsAudio and
|
||||
// SetActivityStreamsAudio methods to access and set this property.
|
||||
IsActivityStreamsAudio() bool
|
||||
// IsActivityStreamsBlock returns true if this property has a type of
|
||||
// "Block". When true, use the GetActivityStreamsBlock and
|
||||
// SetActivityStreamsBlock methods to access and set this property.
|
||||
IsActivityStreamsBlock() bool
|
||||
// IsActivityStreamsCollection returns true if this property has a type of
|
||||
// "Collection". When true, use the GetActivityStreamsCollection and
|
||||
// SetActivityStreamsCollection methods to access and set this
|
||||
// property.
|
||||
IsActivityStreamsCollection() bool
|
||||
// IsActivityStreamsCollectionPage returns true if this property has a
|
||||
// type of "CollectionPage". When true, use the
|
||||
// GetActivityStreamsCollectionPage and
|
||||
// SetActivityStreamsCollectionPage methods to access and set this
|
||||
// property.
|
||||
IsActivityStreamsCollectionPage() bool
|
||||
// IsActivityStreamsCreate returns true if this property has a type of
|
||||
// "Create". When true, use the GetActivityStreamsCreate and
|
||||
// SetActivityStreamsCreate methods to access and set this property.
|
||||
IsActivityStreamsCreate() bool
|
||||
// IsActivityStreamsDelete returns true if this property has a type of
|
||||
// "Delete". When true, use the GetActivityStreamsDelete and
|
||||
// SetActivityStreamsDelete methods to access and set this property.
|
||||
IsActivityStreamsDelete() bool
|
||||
// IsActivityStreamsDislike returns true if this property has a type of
|
||||
// "Dislike". When true, use the GetActivityStreamsDislike and
|
||||
// SetActivityStreamsDislike methods to access and set this property.
|
||||
IsActivityStreamsDislike() bool
|
||||
// IsActivityStreamsDocument returns true if this property has a type of
|
||||
// "Document". When true, use the GetActivityStreamsDocument and
|
||||
// SetActivityStreamsDocument methods to access and set this property.
|
||||
IsActivityStreamsDocument() bool
|
||||
// IsActivityStreamsEvent returns true if this property has a type of
|
||||
// "Event". When true, use the GetActivityStreamsEvent and
|
||||
// SetActivityStreamsEvent methods to access and set this property.
|
||||
IsActivityStreamsEvent() bool
|
||||
// IsActivityStreamsFlag returns true if this property has a type of
|
||||
// "Flag". When true, use the GetActivityStreamsFlag and
|
||||
// SetActivityStreamsFlag methods to access and set this property.
|
||||
IsActivityStreamsFlag() bool
|
||||
// IsActivityStreamsFollow returns true if this property has a type of
|
||||
// "Follow". When true, use the GetActivityStreamsFollow and
|
||||
// SetActivityStreamsFollow methods to access and set this property.
|
||||
IsActivityStreamsFollow() bool
|
||||
// IsActivityStreamsGroup returns true if this property has a type of
|
||||
// "Group". When true, use the GetActivityStreamsGroup and
|
||||
// SetActivityStreamsGroup methods to access and set this property.
|
||||
IsActivityStreamsGroup() bool
|
||||
// IsActivityStreamsIgnore returns true if this property has a type of
|
||||
// "Ignore". When true, use the GetActivityStreamsIgnore and
|
||||
// SetActivityStreamsIgnore methods to access and set this property.
|
||||
IsActivityStreamsIgnore() bool
|
||||
// IsActivityStreamsImage returns true if this property has a type of
|
||||
// "Image". When true, use the GetActivityStreamsImage and
|
||||
// SetActivityStreamsImage methods to access and set this property.
|
||||
IsActivityStreamsImage() bool
|
||||
// IsActivityStreamsIntransitiveActivity returns true if this property has
|
||||
// a type of "IntransitiveActivity". When true, use the
|
||||
// GetActivityStreamsIntransitiveActivity and
|
||||
// SetActivityStreamsIntransitiveActivity methods to access and set
|
||||
// this property.
|
||||
IsActivityStreamsIntransitiveActivity() bool
|
||||
// IsActivityStreamsInvite returns true if this property has a type of
|
||||
// "Invite". When true, use the GetActivityStreamsInvite and
|
||||
// SetActivityStreamsInvite methods to access and set this property.
|
||||
IsActivityStreamsInvite() bool
|
||||
// IsActivityStreamsJoin returns true if this property has a type of
|
||||
// "Join". When true, use the GetActivityStreamsJoin and
|
||||
// SetActivityStreamsJoin methods to access and set this property.
|
||||
IsActivityStreamsJoin() bool
|
||||
// IsActivityStreamsLeave returns true if this property has a type of
|
||||
// "Leave". When true, use the GetActivityStreamsLeave and
|
||||
// SetActivityStreamsLeave methods to access and set this property.
|
||||
IsActivityStreamsLeave() bool
|
||||
// IsActivityStreamsLike returns true if this property has a type of
|
||||
// "Like". When true, use the GetActivityStreamsLike and
|
||||
// SetActivityStreamsLike methods to access and set this property.
|
||||
IsActivityStreamsLike() bool
|
||||
// IsActivityStreamsListen returns true if this property has a type of
|
||||
// "Listen". When true, use the GetActivityStreamsListen and
|
||||
// SetActivityStreamsListen methods to access and set this property.
|
||||
IsActivityStreamsListen() bool
|
||||
// IsActivityStreamsMove returns true if this property has a type of
|
||||
// "Move". When true, use the GetActivityStreamsMove and
|
||||
// SetActivityStreamsMove methods to access and set this property.
|
||||
IsActivityStreamsMove() bool
|
||||
// IsActivityStreamsNote returns true if this property has a type of
|
||||
// "Note". When true, use the GetActivityStreamsNote and
|
||||
// SetActivityStreamsNote methods to access and set this property.
|
||||
IsActivityStreamsNote() bool
|
||||
// IsActivityStreamsObject returns true if this property has a type of
|
||||
// "Object". When true, use the GetActivityStreamsObject and
|
||||
// SetActivityStreamsObject methods to access and set this property.
|
||||
IsActivityStreamsObject() bool
|
||||
// IsActivityStreamsOffer returns true if this property has a type of
|
||||
// "Offer". When true, use the GetActivityStreamsOffer and
|
||||
// SetActivityStreamsOffer methods to access and set this property.
|
||||
IsActivityStreamsOffer() bool
|
||||
// IsActivityStreamsOrderedCollection returns true if this property has a
|
||||
// type of "OrderedCollection". When true, use the
|
||||
// GetActivityStreamsOrderedCollection and
|
||||
// SetActivityStreamsOrderedCollection methods to access and set this
|
||||
// property.
|
||||
IsActivityStreamsOrderedCollection() bool
|
||||
// IsActivityStreamsOrderedCollectionPage returns true if this property
|
||||
// has a type of "OrderedCollectionPage". When true, use the
|
||||
// GetActivityStreamsOrderedCollectionPage and
|
||||
// SetActivityStreamsOrderedCollectionPage methods to access and set
|
||||
// this property.
|
||||
IsActivityStreamsOrderedCollectionPage() bool
|
||||
// IsActivityStreamsOrganization returns true if this property has a type
|
||||
// of "Organization". When true, use the
|
||||
// GetActivityStreamsOrganization and SetActivityStreamsOrganization
|
||||
// methods to access and set this property.
|
||||
IsActivityStreamsOrganization() bool
|
||||
// IsActivityStreamsPage returns true if this property has a type of
|
||||
// "Page". When true, use the GetActivityStreamsPage and
|
||||
// SetActivityStreamsPage methods to access and set this property.
|
||||
IsActivityStreamsPage() bool
|
||||
// IsActivityStreamsPerson returns true if this property has a type of
|
||||
// "Person". When true, use the GetActivityStreamsPerson and
|
||||
// SetActivityStreamsPerson methods to access and set this property.
|
||||
IsActivityStreamsPerson() bool
|
||||
// IsActivityStreamsPlace returns true if this property has a type of
|
||||
// "Place". When true, use the GetActivityStreamsPlace and
|
||||
// SetActivityStreamsPlace methods to access and set this property.
|
||||
IsActivityStreamsPlace() bool
|
||||
// IsActivityStreamsProfile returns true if this property has a type of
|
||||
// "Profile". When true, use the GetActivityStreamsProfile and
|
||||
// SetActivityStreamsProfile methods to access and set this property.
|
||||
IsActivityStreamsProfile() bool
|
||||
// IsActivityStreamsQuestion returns true if this property has a type of
|
||||
// "Question". When true, use the GetActivityStreamsQuestion and
|
||||
// SetActivityStreamsQuestion methods to access and set this property.
|
||||
IsActivityStreamsQuestion() bool
|
||||
// IsActivityStreamsRead returns true if this property has a type of
|
||||
// "Read". When true, use the GetActivityStreamsRead and
|
||||
// SetActivityStreamsRead methods to access and set this property.
|
||||
IsActivityStreamsRead() bool
|
||||
// IsActivityStreamsReject returns true if this property has a type of
|
||||
// "Reject". When true, use the GetActivityStreamsReject and
|
||||
// SetActivityStreamsReject methods to access and set this property.
|
||||
IsActivityStreamsReject() bool
|
||||
// IsActivityStreamsRelationship returns true if this property has a type
|
||||
// of "Relationship". When true, use the
|
||||
// GetActivityStreamsRelationship and SetActivityStreamsRelationship
|
||||
// methods to access and set this property.
|
||||
IsActivityStreamsRelationship() bool
|
||||
// IsActivityStreamsRemove returns true if this property has a type of
|
||||
// "Remove". When true, use the GetActivityStreamsRemove and
|
||||
// SetActivityStreamsRemove methods to access and set this property.
|
||||
IsActivityStreamsRemove() bool
|
||||
// IsActivityStreamsService returns true if this property has a type of
|
||||
// "Service". When true, use the GetActivityStreamsService and
|
||||
// SetActivityStreamsService methods to access and set this property.
|
||||
IsActivityStreamsService() bool
|
||||
// IsActivityStreamsTentativeAccept returns true if this property has a
|
||||
// type of "TentativeAccept". When true, use the
|
||||
// GetActivityStreamsTentativeAccept and
|
||||
// SetActivityStreamsTentativeAccept methods to access and set this
|
||||
// property.
|
||||
IsActivityStreamsTentativeAccept() bool
|
||||
// IsActivityStreamsTentativeReject returns true if this property has a
|
||||
// type of "TentativeReject". When true, use the
|
||||
// GetActivityStreamsTentativeReject and
|
||||
// SetActivityStreamsTentativeReject methods to access and set this
|
||||
// property.
|
||||
IsActivityStreamsTentativeReject() bool
|
||||
// IsActivityStreamsTombstone returns true if this property has a type of
|
||||
// "Tombstone". When true, use the GetActivityStreamsTombstone and
|
||||
// SetActivityStreamsTombstone methods to access and set this property.
|
||||
IsActivityStreamsTombstone() bool
|
||||
// IsActivityStreamsTravel returns true if this property has a type of
|
||||
// "Travel". When true, use the GetActivityStreamsTravel and
|
||||
// SetActivityStreamsTravel methods to access and set this property.
|
||||
IsActivityStreamsTravel() bool
|
||||
// IsActivityStreamsUndo returns true if this property has a type of
|
||||
// "Undo". When true, use the GetActivityStreamsUndo and
|
||||
// SetActivityStreamsUndo methods to access and set this property.
|
||||
IsActivityStreamsUndo() bool
|
||||
// IsActivityStreamsUpdate returns true if this property has a type of
|
||||
// "Update". When true, use the GetActivityStreamsUpdate and
|
||||
// SetActivityStreamsUpdate methods to access and set this property.
|
||||
IsActivityStreamsUpdate() bool
|
||||
// IsActivityStreamsVideo returns true if this property has a type of
|
||||
// "Video". When true, use the GetActivityStreamsVideo and
|
||||
// SetActivityStreamsVideo methods to access and set this property.
|
||||
IsActivityStreamsVideo() bool
|
||||
// IsActivityStreamsView returns true if this property has a type of
|
||||
// "View". When true, use the GetActivityStreamsView and
|
||||
// SetActivityStreamsView methods to access and set this property.
|
||||
IsActivityStreamsView() bool
|
||||
// IsForgeFedBranch returns true if this property has a type of "Branch".
|
||||
// When true, use the GetForgeFedBranch and SetForgeFedBranch methods
|
||||
// to access and set this property.
|
||||
IsForgeFedBranch() bool
|
||||
// IsForgeFedCommit returns true if this property has a type of "Commit".
|
||||
// When true, use the GetForgeFedCommit and SetForgeFedCommit methods
|
||||
// to access and set this property.
|
||||
IsForgeFedCommit() bool
|
||||
// IsForgeFedPush returns true if this property has a type of "Push". When
|
||||
// true, use the GetForgeFedPush and SetForgeFedPush methods to access
|
||||
// and set this property.
|
||||
IsForgeFedPush() bool
|
||||
// IsForgeFedRepository returns true if this property has a type of
|
||||
// "Repository". When true, use the GetForgeFedRepository and
|
||||
// SetForgeFedRepository methods to access and set this property.
|
||||
IsForgeFedRepository() bool
|
||||
// IsForgeFedTicket returns true if this property has a type of "Ticket".
|
||||
// When true, use the GetForgeFedTicket and SetForgeFedTicket methods
|
||||
// to access and set this property.
|
||||
IsForgeFedTicket() bool
|
||||
// IsForgeFedTicketDependency returns true if this property has a type of
|
||||
// "TicketDependency". When true, use the GetForgeFedTicketDependency
|
||||
// and SetForgeFedTicketDependency methods to access and set this
|
||||
// property.
|
||||
IsForgeFedTicketDependency() bool
|
||||
// IsIRI returns true if this property is an IRI. When true, use GetIRI
|
||||
// and SetIRI to access and set this property
|
||||
IsIRI() bool
|
||||
// IsSchemaPropertyValue returns true if this property has a type of
|
||||
// "PropertyValue". When true, use the GetSchemaPropertyValue and
|
||||
// SetSchemaPropertyValue methods to access and set this property.
|
||||
IsSchemaPropertyValue() bool
|
||||
// IsTootEmoji returns true if this property has a type of "Emoji". When
|
||||
// true, use the GetTootEmoji and SetTootEmoji methods to access and
|
||||
// set this property.
|
||||
IsTootEmoji() bool
|
||||
// IsTootIdentityProof returns true if this property has a type of
|
||||
// "IdentityProof". When true, use the GetTootIdentityProof and
|
||||
// SetTootIdentityProof methods to access and set this property.
|
||||
IsTootIdentityProof() bool
|
||||
// JSONLDContext returns the JSONLD URIs required in the context string
|
||||
// for this property and the specific values that are set. The value
|
||||
// in the map is the alias used to import the property's value or
|
||||
// values.
|
||||
JSONLDContext() map[string]string
|
||||
// KindIndex computes an arbitrary value for indexing this kind of value.
|
||||
// This is a leaky API detail only for folks looking to replace the
|
||||
// go-fed implementation. Applications should not use this method.
|
||||
KindIndex() int
|
||||
// LessThan compares two instances of this property with an arbitrary but
|
||||
// stable comparison. Applications should not use this because it is
|
||||
// only meant to help alternative implementations to go-fed to be able
|
||||
// to normalize nonfunctional properties.
|
||||
LessThan(o ForgeFedTicketsTrackedByProperty) bool
|
||||
// Name returns the name of this property: "ticketsTrackedBy".
|
||||
Name() string
|
||||
// Serialize converts this into an interface representation suitable for
|
||||
// marshalling into a text or binary format. Applications should not
|
||||
// need this function as most typical use cases serialize types
|
||||
// instead of individual properties. It is exposed for alternatives to
|
||||
// go-fed implementations to use.
|
||||
Serialize() (interface{}, error)
|
||||
// SetActivityStreamsAccept sets the value of this property. Calling
|
||||
// IsActivityStreamsAccept afterwards returns true.
|
||||
SetActivityStreamsAccept(v ActivityStreamsAccept)
|
||||
// SetActivityStreamsActivity sets the value of this property. Calling
|
||||
// IsActivityStreamsActivity afterwards returns true.
|
||||
SetActivityStreamsActivity(v ActivityStreamsActivity)
|
||||
// SetActivityStreamsAdd sets the value of this property. Calling
|
||||
// IsActivityStreamsAdd afterwards returns true.
|
||||
SetActivityStreamsAdd(v ActivityStreamsAdd)
|
||||
// SetActivityStreamsAnnounce sets the value of this property. Calling
|
||||
// IsActivityStreamsAnnounce afterwards returns true.
|
||||
SetActivityStreamsAnnounce(v ActivityStreamsAnnounce)
|
||||
// SetActivityStreamsApplication sets the value of this property. Calling
|
||||
// IsActivityStreamsApplication afterwards returns true.
|
||||
SetActivityStreamsApplication(v ActivityStreamsApplication)
|
||||
// SetActivityStreamsArrive sets the value of this property. Calling
|
||||
// IsActivityStreamsArrive afterwards returns true.
|
||||
SetActivityStreamsArrive(v ActivityStreamsArrive)
|
||||
// SetActivityStreamsArticle sets the value of this property. Calling
|
||||
// IsActivityStreamsArticle afterwards returns true.
|
||||
SetActivityStreamsArticle(v ActivityStreamsArticle)
|
||||
// SetActivityStreamsAudio sets the value of this property. Calling
|
||||
// IsActivityStreamsAudio afterwards returns true.
|
||||
SetActivityStreamsAudio(v ActivityStreamsAudio)
|
||||
// SetActivityStreamsBlock sets the value of this property. Calling
|
||||
// IsActivityStreamsBlock afterwards returns true.
|
||||
SetActivityStreamsBlock(v ActivityStreamsBlock)
|
||||
// SetActivityStreamsCollection sets the value of this property. Calling
|
||||
// IsActivityStreamsCollection afterwards returns true.
|
||||
SetActivityStreamsCollection(v ActivityStreamsCollection)
|
||||
// SetActivityStreamsCollectionPage sets the value of this property.
|
||||
// Calling IsActivityStreamsCollectionPage afterwards returns true.
|
||||
SetActivityStreamsCollectionPage(v ActivityStreamsCollectionPage)
|
||||
// SetActivityStreamsCreate sets the value of this property. Calling
|
||||
// IsActivityStreamsCreate afterwards returns true.
|
||||
SetActivityStreamsCreate(v ActivityStreamsCreate)
|
||||
// SetActivityStreamsDelete sets the value of this property. Calling
|
||||
// IsActivityStreamsDelete afterwards returns true.
|
||||
SetActivityStreamsDelete(v ActivityStreamsDelete)
|
||||
// SetActivityStreamsDislike sets the value of this property. Calling
|
||||
// IsActivityStreamsDislike afterwards returns true.
|
||||
SetActivityStreamsDislike(v ActivityStreamsDislike)
|
||||
// SetActivityStreamsDocument sets the value of this property. Calling
|
||||
// IsActivityStreamsDocument afterwards returns true.
|
||||
SetActivityStreamsDocument(v ActivityStreamsDocument)
|
||||
// SetActivityStreamsEvent sets the value of this property. Calling
|
||||
// IsActivityStreamsEvent afterwards returns true.
|
||||
SetActivityStreamsEvent(v ActivityStreamsEvent)
|
||||
// SetActivityStreamsFlag sets the value of this property. Calling
|
||||
// IsActivityStreamsFlag afterwards returns true.
|
||||
SetActivityStreamsFlag(v ActivityStreamsFlag)
|
||||
// SetActivityStreamsFollow sets the value of this property. Calling
|
||||
// IsActivityStreamsFollow afterwards returns true.
|
||||
SetActivityStreamsFollow(v ActivityStreamsFollow)
|
||||
// SetActivityStreamsGroup sets the value of this property. Calling
|
||||
// IsActivityStreamsGroup afterwards returns true.
|
||||
SetActivityStreamsGroup(v ActivityStreamsGroup)
|
||||
// SetActivityStreamsIgnore sets the value of this property. Calling
|
||||
// IsActivityStreamsIgnore afterwards returns true.
|
||||
SetActivityStreamsIgnore(v ActivityStreamsIgnore)
|
||||
// SetActivityStreamsImage sets the value of this property. Calling
|
||||
// IsActivityStreamsImage afterwards returns true.
|
||||
SetActivityStreamsImage(v ActivityStreamsImage)
|
||||
// SetActivityStreamsIntransitiveActivity sets the value of this property.
|
||||
// Calling IsActivityStreamsIntransitiveActivity afterwards returns
|
||||
// true.
|
||||
SetActivityStreamsIntransitiveActivity(v ActivityStreamsIntransitiveActivity)
|
||||
// SetActivityStreamsInvite sets the value of this property. Calling
|
||||
// IsActivityStreamsInvite afterwards returns true.
|
||||
SetActivityStreamsInvite(v ActivityStreamsInvite)
|
||||
// SetActivityStreamsJoin sets the value of this property. Calling
|
||||
// IsActivityStreamsJoin afterwards returns true.
|
||||
SetActivityStreamsJoin(v ActivityStreamsJoin)
|
||||
// SetActivityStreamsLeave sets the value of this property. Calling
|
||||
// IsActivityStreamsLeave afterwards returns true.
|
||||
SetActivityStreamsLeave(v ActivityStreamsLeave)
|
||||
// SetActivityStreamsLike sets the value of this property. Calling
|
||||
// IsActivityStreamsLike afterwards returns true.
|
||||
SetActivityStreamsLike(v ActivityStreamsLike)
|
||||
// SetActivityStreamsListen sets the value of this property. Calling
|
||||
// IsActivityStreamsListen afterwards returns true.
|
||||
SetActivityStreamsListen(v ActivityStreamsListen)
|
||||
// SetActivityStreamsMove sets the value of this property. Calling
|
||||
// IsActivityStreamsMove afterwards returns true.
|
||||
SetActivityStreamsMove(v ActivityStreamsMove)
|
||||
// SetActivityStreamsNote sets the value of this property. Calling
|
||||
// IsActivityStreamsNote afterwards returns true.
|
||||
SetActivityStreamsNote(v ActivityStreamsNote)
|
||||
// SetActivityStreamsObject sets the value of this property. Calling
|
||||
// IsActivityStreamsObject afterwards returns true.
|
||||
SetActivityStreamsObject(v ActivityStreamsObject)
|
||||
// SetActivityStreamsOffer sets the value of this property. Calling
|
||||
// IsActivityStreamsOffer afterwards returns true.
|
||||
SetActivityStreamsOffer(v ActivityStreamsOffer)
|
||||
// SetActivityStreamsOrderedCollection sets the value of this property.
|
||||
// Calling IsActivityStreamsOrderedCollection afterwards returns true.
|
||||
SetActivityStreamsOrderedCollection(v ActivityStreamsOrderedCollection)
|
||||
// SetActivityStreamsOrderedCollectionPage sets the value of this
|
||||
// property. Calling IsActivityStreamsOrderedCollectionPage afterwards
|
||||
// returns true.
|
||||
SetActivityStreamsOrderedCollectionPage(v ActivityStreamsOrderedCollectionPage)
|
||||
// SetActivityStreamsOrganization sets the value of this property. Calling
|
||||
// IsActivityStreamsOrganization afterwards returns true.
|
||||
SetActivityStreamsOrganization(v ActivityStreamsOrganization)
|
||||
// SetActivityStreamsPage sets the value of this property. Calling
|
||||
// IsActivityStreamsPage afterwards returns true.
|
||||
SetActivityStreamsPage(v ActivityStreamsPage)
|
||||
// SetActivityStreamsPerson sets the value of this property. Calling
|
||||
// IsActivityStreamsPerson afterwards returns true.
|
||||
SetActivityStreamsPerson(v ActivityStreamsPerson)
|
||||
// SetActivityStreamsPlace sets the value of this property. Calling
|
||||
// IsActivityStreamsPlace afterwards returns true.
|
||||
SetActivityStreamsPlace(v ActivityStreamsPlace)
|
||||
// SetActivityStreamsProfile sets the value of this property. Calling
|
||||
// IsActivityStreamsProfile afterwards returns true.
|
||||
SetActivityStreamsProfile(v ActivityStreamsProfile)
|
||||
// SetActivityStreamsQuestion sets the value of this property. Calling
|
||||
// IsActivityStreamsQuestion afterwards returns true.
|
||||
SetActivityStreamsQuestion(v ActivityStreamsQuestion)
|
||||
// SetActivityStreamsRead sets the value of this property. Calling
|
||||
// IsActivityStreamsRead afterwards returns true.
|
||||
SetActivityStreamsRead(v ActivityStreamsRead)
|
||||
// SetActivityStreamsReject sets the value of this property. Calling
|
||||
// IsActivityStreamsReject afterwards returns true.
|
||||
SetActivityStreamsReject(v ActivityStreamsReject)
|
||||
// SetActivityStreamsRelationship sets the value of this property. Calling
|
||||
// IsActivityStreamsRelationship afterwards returns true.
|
||||
SetActivityStreamsRelationship(v ActivityStreamsRelationship)
|
||||
// SetActivityStreamsRemove sets the value of this property. Calling
|
||||
// IsActivityStreamsRemove afterwards returns true.
|
||||
SetActivityStreamsRemove(v ActivityStreamsRemove)
|
||||
// SetActivityStreamsService sets the value of this property. Calling
|
||||
// IsActivityStreamsService afterwards returns true.
|
||||
SetActivityStreamsService(v ActivityStreamsService)
|
||||
// SetActivityStreamsTentativeAccept sets the value of this property.
|
||||
// Calling IsActivityStreamsTentativeAccept afterwards returns true.
|
||||
SetActivityStreamsTentativeAccept(v ActivityStreamsTentativeAccept)
|
||||
// SetActivityStreamsTentativeReject sets the value of this property.
|
||||
// Calling IsActivityStreamsTentativeReject afterwards returns true.
|
||||
SetActivityStreamsTentativeReject(v ActivityStreamsTentativeReject)
|
||||
// SetActivityStreamsTombstone sets the value of this property. Calling
|
||||
// IsActivityStreamsTombstone afterwards returns true.
|
||||
SetActivityStreamsTombstone(v ActivityStreamsTombstone)
|
||||
// SetActivityStreamsTravel sets the value of this property. Calling
|
||||
// IsActivityStreamsTravel afterwards returns true.
|
||||
SetActivityStreamsTravel(v ActivityStreamsTravel)
|
||||
// SetActivityStreamsUndo sets the value of this property. Calling
|
||||
// IsActivityStreamsUndo afterwards returns true.
|
||||
SetActivityStreamsUndo(v ActivityStreamsUndo)
|
||||
// SetActivityStreamsUpdate sets the value of this property. Calling
|
||||
// IsActivityStreamsUpdate afterwards returns true.
|
||||
SetActivityStreamsUpdate(v ActivityStreamsUpdate)
|
||||
// SetActivityStreamsVideo sets the value of this property. Calling
|
||||
// IsActivityStreamsVideo afterwards returns true.
|
||||
SetActivityStreamsVideo(v ActivityStreamsVideo)
|
||||
// SetActivityStreamsView sets the value of this property. Calling
|
||||
// IsActivityStreamsView afterwards returns true.
|
||||
SetActivityStreamsView(v ActivityStreamsView)
|
||||
// SetForgeFedBranch sets the value of this property. Calling
|
||||
// IsForgeFedBranch afterwards returns true.
|
||||
SetForgeFedBranch(v ForgeFedBranch)
|
||||
// SetForgeFedCommit sets the value of this property. Calling
|
||||
// IsForgeFedCommit afterwards returns true.
|
||||
SetForgeFedCommit(v ForgeFedCommit)
|
||||
// SetForgeFedPush sets the value of this property. Calling IsForgeFedPush
|
||||
// afterwards returns true.
|
||||
SetForgeFedPush(v ForgeFedPush)
|
||||
// SetForgeFedRepository sets the value of this property. Calling
|
||||
// IsForgeFedRepository afterwards returns true.
|
||||
SetForgeFedRepository(v ForgeFedRepository)
|
||||
// SetForgeFedTicket sets the value of this property. Calling
|
||||
// IsForgeFedTicket afterwards returns true.
|
||||
SetForgeFedTicket(v ForgeFedTicket)
|
||||
// SetForgeFedTicketDependency sets the value of this property. Calling
|
||||
// IsForgeFedTicketDependency afterwards returns true.
|
||||
SetForgeFedTicketDependency(v ForgeFedTicketDependency)
|
||||
// SetIRI sets the value of this property. Calling IsIRI afterwards
|
||||
// returns true.
|
||||
SetIRI(v *url.URL)
|
||||
// SetSchemaPropertyValue sets the value of this property. Calling
|
||||
// IsSchemaPropertyValue afterwards returns true.
|
||||
SetSchemaPropertyValue(v SchemaPropertyValue)
|
||||
// SetTootEmoji sets the value of this property. Calling IsTootEmoji
|
||||
// afterwards returns true.
|
||||
SetTootEmoji(v TootEmoji)
|
||||
// SetTootIdentityProof sets the value of this property. Calling
|
||||
// IsTootIdentityProof afterwards returns true.
|
||||
SetTootIdentityProof(v TootIdentityProof)
|
||||
// SetType attempts to set the property for the arbitrary type. Returns an
|
||||
// error if it is not a valid type to set on this property.
|
||||
SetType(t Type) error
|
||||
}
|
||||
File diff suppressed because it is too large
Load diff
|
|
@ -153,15 +153,6 @@ type ActivityStreamsAccept interface {
|
|||
// GetActivityStreamsUrl returns the "url" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetActivityStreamsUrl() ActivityStreamsUrlProperty
|
||||
// GetForgeFedTeam returns the "team" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetForgeFedTeam() ForgeFedTeamProperty
|
||||
// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
|
||||
// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
|
||||
// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
|
||||
GetJSONLDId() JSONLDIdProperty
|
||||
// GetJSONLDType returns the "type" property if it exists, and nil
|
||||
|
|
@ -263,12 +254,6 @@ type ActivityStreamsAccept interface {
|
|||
SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
|
||||
// SetActivityStreamsUrl sets the "url" property.
|
||||
SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
|
||||
// SetForgeFedTeam sets the "team" property.
|
||||
SetForgeFedTeam(i ForgeFedTeamProperty)
|
||||
// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
|
||||
SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
|
||||
// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
|
||||
SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
|
||||
// SetJSONLDId sets the "id" property.
|
||||
SetJSONLDId(i JSONLDIdProperty)
|
||||
// SetJSONLDType sets the "type" property.
|
||||
|
|
|
|||
|
|
@ -133,15 +133,6 @@ type ActivityStreamsActivity interface {
|
|||
// GetActivityStreamsUrl returns the "url" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetActivityStreamsUrl() ActivityStreamsUrlProperty
|
||||
// GetForgeFedTeam returns the "team" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetForgeFedTeam() ForgeFedTeamProperty
|
||||
// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
|
||||
// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
|
||||
// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
|
||||
GetJSONLDId() JSONLDIdProperty
|
||||
// GetJSONLDType returns the "type" property if it exists, and nil
|
||||
|
|
@ -244,12 +235,6 @@ type ActivityStreamsActivity interface {
|
|||
SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
|
||||
// SetActivityStreamsUrl sets the "url" property.
|
||||
SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
|
||||
// SetForgeFedTeam sets the "team" property.
|
||||
SetForgeFedTeam(i ForgeFedTeamProperty)
|
||||
// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
|
||||
SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
|
||||
// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
|
||||
SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
|
||||
// SetJSONLDId sets the "id" property.
|
||||
SetJSONLDId(i JSONLDIdProperty)
|
||||
// SetJSONLDType sets the "type" property.
|
||||
|
|
|
|||
|
|
@ -153,15 +153,6 @@ type ActivityStreamsAdd interface {
|
|||
// GetActivityStreamsUrl returns the "url" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetActivityStreamsUrl() ActivityStreamsUrlProperty
|
||||
// GetForgeFedTeam returns the "team" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetForgeFedTeam() ForgeFedTeamProperty
|
||||
// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
|
||||
// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
|
||||
// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
|
||||
GetJSONLDId() JSONLDIdProperty
|
||||
// GetJSONLDType returns the "type" property if it exists, and nil
|
||||
|
|
@ -263,12 +254,6 @@ type ActivityStreamsAdd interface {
|
|||
SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
|
||||
// SetActivityStreamsUrl sets the "url" property.
|
||||
SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
|
||||
// SetForgeFedTeam sets the "team" property.
|
||||
SetForgeFedTeam(i ForgeFedTeamProperty)
|
||||
// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
|
||||
SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
|
||||
// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
|
||||
SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
|
||||
// SetJSONLDId sets the "id" property.
|
||||
SetJSONLDId(i JSONLDIdProperty)
|
||||
// SetJSONLDType sets the "type" property.
|
||||
|
|
|
|||
|
|
@ -135,15 +135,6 @@ type ActivityStreamsAnnounce interface {
|
|||
// GetActivityStreamsUrl returns the "url" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetActivityStreamsUrl() ActivityStreamsUrlProperty
|
||||
// GetForgeFedTeam returns the "team" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetForgeFedTeam() ForgeFedTeamProperty
|
||||
// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
|
||||
// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
|
||||
// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
|
||||
GetJSONLDId() JSONLDIdProperty
|
||||
// GetJSONLDType returns the "type" property if it exists, and nil
|
||||
|
|
@ -246,12 +237,6 @@ type ActivityStreamsAnnounce interface {
|
|||
SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
|
||||
// SetActivityStreamsUrl sets the "url" property.
|
||||
SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
|
||||
// SetForgeFedTeam sets the "team" property.
|
||||
SetForgeFedTeam(i ForgeFedTeamProperty)
|
||||
// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
|
||||
SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
|
||||
// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
|
||||
SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
|
||||
// SetJSONLDId sets the "id" property.
|
||||
SetJSONLDId(i JSONLDIdProperty)
|
||||
// SetJSONLDType sets the "type" property.
|
||||
|
|
|
|||
|
|
@ -134,15 +134,6 @@ type ActivityStreamsApplication interface {
|
|||
// GetActivityStreamsUrl returns the "url" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetActivityStreamsUrl() ActivityStreamsUrlProperty
|
||||
// GetForgeFedTeam returns the "team" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetForgeFedTeam() ForgeFedTeamProperty
|
||||
// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
|
||||
// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
|
||||
// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
|
||||
GetJSONLDId() JSONLDIdProperty
|
||||
// GetJSONLDType returns the "type" property if it exists, and nil
|
||||
|
|
@ -264,12 +255,6 @@ type ActivityStreamsApplication interface {
|
|||
SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
|
||||
// SetActivityStreamsUrl sets the "url" property.
|
||||
SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
|
||||
// SetForgeFedTeam sets the "team" property.
|
||||
SetForgeFedTeam(i ForgeFedTeamProperty)
|
||||
// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
|
||||
SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
|
||||
// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
|
||||
SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
|
||||
// SetJSONLDId sets the "id" property.
|
||||
SetJSONLDId(i JSONLDIdProperty)
|
||||
// SetJSONLDType sets the "type" property.
|
||||
|
|
|
|||
|
|
@ -132,15 +132,6 @@ type ActivityStreamsArrive interface {
|
|||
// GetActivityStreamsUrl returns the "url" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetActivityStreamsUrl() ActivityStreamsUrlProperty
|
||||
// GetForgeFedTeam returns the "team" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetForgeFedTeam() ForgeFedTeamProperty
|
||||
// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
|
||||
// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
|
||||
// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
|
||||
GetJSONLDId() JSONLDIdProperty
|
||||
// GetJSONLDType returns the "type" property if it exists, and nil
|
||||
|
|
@ -240,12 +231,6 @@ type ActivityStreamsArrive interface {
|
|||
SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
|
||||
// SetActivityStreamsUrl sets the "url" property.
|
||||
SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
|
||||
// SetForgeFedTeam sets the "team" property.
|
||||
SetForgeFedTeam(i ForgeFedTeamProperty)
|
||||
// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
|
||||
SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
|
||||
// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
|
||||
SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
|
||||
// SetJSONLDId sets the "id" property.
|
||||
SetJSONLDId(i JSONLDIdProperty)
|
||||
// SetJSONLDType sets the "type" property.
|
||||
|
|
|
|||
|
|
@ -109,15 +109,6 @@ type ActivityStreamsArticle interface {
|
|||
// GetActivityStreamsUrl returns the "url" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetActivityStreamsUrl() ActivityStreamsUrlProperty
|
||||
// GetForgeFedTeam returns the "team" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetForgeFedTeam() ForgeFedTeamProperty
|
||||
// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
|
||||
// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
|
||||
// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
|
||||
GetJSONLDId() JSONLDIdProperty
|
||||
// GetJSONLDType returns the "type" property if it exists, and nil
|
||||
|
|
@ -210,12 +201,6 @@ type ActivityStreamsArticle interface {
|
|||
SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
|
||||
// SetActivityStreamsUrl sets the "url" property.
|
||||
SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
|
||||
// SetForgeFedTeam sets the "team" property.
|
||||
SetForgeFedTeam(i ForgeFedTeamProperty)
|
||||
// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
|
||||
SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
|
||||
// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
|
||||
SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
|
||||
// SetJSONLDId sets the "id" property.
|
||||
SetJSONLDId(i JSONLDIdProperty)
|
||||
// SetJSONLDType sets the "type" property.
|
||||
|
|
|
|||
|
|
@ -111,15 +111,6 @@ type ActivityStreamsAudio interface {
|
|||
// GetActivityStreamsUrl returns the "url" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetActivityStreamsUrl() ActivityStreamsUrlProperty
|
||||
// GetForgeFedTeam returns the "team" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetForgeFedTeam() ForgeFedTeamProperty
|
||||
// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
|
||||
// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
|
||||
// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
|
||||
GetJSONLDId() JSONLDIdProperty
|
||||
// GetJSONLDType returns the "type" property if it exists, and nil
|
||||
|
|
@ -214,12 +205,6 @@ type ActivityStreamsAudio interface {
|
|||
SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
|
||||
// SetActivityStreamsUrl sets the "url" property.
|
||||
SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
|
||||
// SetForgeFedTeam sets the "team" property.
|
||||
SetForgeFedTeam(i ForgeFedTeamProperty)
|
||||
// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
|
||||
SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
|
||||
// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
|
||||
SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
|
||||
// SetJSONLDId sets the "id" property.
|
||||
SetJSONLDId(i JSONLDIdProperty)
|
||||
// SetJSONLDType sets the "type" property.
|
||||
|
|
|
|||
|
|
@ -126,15 +126,6 @@ type ActivityStreamsBlock interface {
|
|||
// GetActivityStreamsUrl returns the "url" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetActivityStreamsUrl() ActivityStreamsUrlProperty
|
||||
// GetForgeFedTeam returns the "team" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetForgeFedTeam() ForgeFedTeamProperty
|
||||
// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
|
||||
// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
|
||||
// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
|
||||
GetJSONLDId() JSONLDIdProperty
|
||||
// GetJSONLDType returns the "type" property if it exists, and nil
|
||||
|
|
@ -236,12 +227,6 @@ type ActivityStreamsBlock interface {
|
|||
SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
|
||||
// SetActivityStreamsUrl sets the "url" property.
|
||||
SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
|
||||
// SetForgeFedTeam sets the "team" property.
|
||||
SetForgeFedTeam(i ForgeFedTeamProperty)
|
||||
// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
|
||||
SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
|
||||
// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
|
||||
SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
|
||||
// SetJSONLDId sets the "id" property.
|
||||
SetJSONLDId(i JSONLDIdProperty)
|
||||
// SetJSONLDType sets the "type" property.
|
||||
|
|
|
|||
|
|
@ -134,15 +134,6 @@ type ActivityStreamsCollection interface {
|
|||
// GetActivityStreamsUrl returns the "url" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetActivityStreamsUrl() ActivityStreamsUrlProperty
|
||||
// GetForgeFedTeam returns the "team" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetForgeFedTeam() ForgeFedTeamProperty
|
||||
// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
|
||||
// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
|
||||
// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
|
||||
GetJSONLDId() JSONLDIdProperty
|
||||
// GetJSONLDType returns the "type" property if it exists, and nil
|
||||
|
|
@ -245,12 +236,6 @@ type ActivityStreamsCollection interface {
|
|||
SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
|
||||
// SetActivityStreamsUrl sets the "url" property.
|
||||
SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
|
||||
// SetForgeFedTeam sets the "team" property.
|
||||
SetForgeFedTeam(i ForgeFedTeamProperty)
|
||||
// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
|
||||
SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
|
||||
// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
|
||||
SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
|
||||
// SetJSONLDId sets the "id" property.
|
||||
SetJSONLDId(i JSONLDIdProperty)
|
||||
// SetJSONLDType sets the "type" property.
|
||||
|
|
|
|||
|
|
@ -144,15 +144,6 @@ type ActivityStreamsCollectionPage interface {
|
|||
// GetActivityStreamsUrl returns the "url" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetActivityStreamsUrl() ActivityStreamsUrlProperty
|
||||
// GetForgeFedTeam returns the "team" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetForgeFedTeam() ForgeFedTeamProperty
|
||||
// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
|
||||
// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
|
||||
// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
|
||||
GetJSONLDId() JSONLDIdProperty
|
||||
// GetJSONLDType returns the "type" property if it exists, and nil
|
||||
|
|
@ -261,12 +252,6 @@ type ActivityStreamsCollectionPage interface {
|
|||
SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
|
||||
// SetActivityStreamsUrl sets the "url" property.
|
||||
SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
|
||||
// SetForgeFedTeam sets the "team" property.
|
||||
SetForgeFedTeam(i ForgeFedTeamProperty)
|
||||
// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
|
||||
SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
|
||||
// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
|
||||
SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
|
||||
// SetJSONLDId sets the "id" property.
|
||||
SetJSONLDId(i JSONLDIdProperty)
|
||||
// SetJSONLDType sets the "type" property.
|
||||
|
|
|
|||
|
|
@ -130,15 +130,6 @@ type ActivityStreamsCreate interface {
|
|||
// GetActivityStreamsUrl returns the "url" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetActivityStreamsUrl() ActivityStreamsUrlProperty
|
||||
// GetForgeFedTeam returns the "team" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetForgeFedTeam() ForgeFedTeamProperty
|
||||
// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
|
||||
// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
|
||||
// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
|
||||
GetJSONLDId() JSONLDIdProperty
|
||||
// GetJSONLDType returns the "type" property if it exists, and nil
|
||||
|
|
@ -240,12 +231,6 @@ type ActivityStreamsCreate interface {
|
|||
SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
|
||||
// SetActivityStreamsUrl sets the "url" property.
|
||||
SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
|
||||
// SetForgeFedTeam sets the "team" property.
|
||||
SetForgeFedTeam(i ForgeFedTeamProperty)
|
||||
// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
|
||||
SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
|
||||
// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
|
||||
SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
|
||||
// SetJSONLDId sets the "id" property.
|
||||
SetJSONLDId(i JSONLDIdProperty)
|
||||
// SetJSONLDType sets the "type" property.
|
||||
|
|
|
|||
|
|
@ -131,15 +131,6 @@ type ActivityStreamsDelete interface {
|
|||
// GetActivityStreamsUrl returns the "url" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetActivityStreamsUrl() ActivityStreamsUrlProperty
|
||||
// GetForgeFedTeam returns the "team" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetForgeFedTeam() ForgeFedTeamProperty
|
||||
// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
|
||||
// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
|
||||
// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
|
||||
GetJSONLDId() JSONLDIdProperty
|
||||
// GetJSONLDType returns the "type" property if it exists, and nil
|
||||
|
|
@ -241,12 +232,6 @@ type ActivityStreamsDelete interface {
|
|||
SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
|
||||
// SetActivityStreamsUrl sets the "url" property.
|
||||
SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
|
||||
// SetForgeFedTeam sets the "team" property.
|
||||
SetForgeFedTeam(i ForgeFedTeamProperty)
|
||||
// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
|
||||
SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
|
||||
// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
|
||||
SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
|
||||
// SetJSONLDId sets the "id" property.
|
||||
SetJSONLDId(i JSONLDIdProperty)
|
||||
// SetJSONLDType sets the "type" property.
|
||||
|
|
|
|||
|
|
@ -123,15 +123,6 @@ type ActivityStreamsDislike interface {
|
|||
// GetActivityStreamsUrl returns the "url" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetActivityStreamsUrl() ActivityStreamsUrlProperty
|
||||
// GetForgeFedTeam returns the "team" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetForgeFedTeam() ForgeFedTeamProperty
|
||||
// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
|
||||
// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
|
||||
// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
|
||||
GetJSONLDId() JSONLDIdProperty
|
||||
// GetJSONLDType returns the "type" property if it exists, and nil
|
||||
|
|
@ -234,12 +225,6 @@ type ActivityStreamsDislike interface {
|
|||
SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
|
||||
// SetActivityStreamsUrl sets the "url" property.
|
||||
SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
|
||||
// SetForgeFedTeam sets the "team" property.
|
||||
SetForgeFedTeam(i ForgeFedTeamProperty)
|
||||
// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
|
||||
SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
|
||||
// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
|
||||
SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
|
||||
// SetJSONLDId sets the "id" property.
|
||||
SetJSONLDId(i JSONLDIdProperty)
|
||||
// SetJSONLDType sets the "type" property.
|
||||
|
|
|
|||
|
|
@ -107,15 +107,6 @@ type ActivityStreamsDocument interface {
|
|||
// GetActivityStreamsUrl returns the "url" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetActivityStreamsUrl() ActivityStreamsUrlProperty
|
||||
// GetForgeFedTeam returns the "team" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetForgeFedTeam() ForgeFedTeamProperty
|
||||
// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
|
||||
// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
|
||||
// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
|
||||
GetJSONLDId() JSONLDIdProperty
|
||||
// GetJSONLDType returns the "type" property if it exists, and nil
|
||||
|
|
@ -211,12 +202,6 @@ type ActivityStreamsDocument interface {
|
|||
SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
|
||||
// SetActivityStreamsUrl sets the "url" property.
|
||||
SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
|
||||
// SetForgeFedTeam sets the "team" property.
|
||||
SetForgeFedTeam(i ForgeFedTeamProperty)
|
||||
// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
|
||||
SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
|
||||
// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
|
||||
SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
|
||||
// SetJSONLDId sets the "id" property.
|
||||
SetJSONLDId(i JSONLDIdProperty)
|
||||
// SetJSONLDType sets the "type" property.
|
||||
|
|
|
|||
|
|
@ -108,15 +108,6 @@ type ActivityStreamsEvent interface {
|
|||
// GetActivityStreamsUrl returns the "url" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetActivityStreamsUrl() ActivityStreamsUrlProperty
|
||||
// GetForgeFedTeam returns the "team" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetForgeFedTeam() ForgeFedTeamProperty
|
||||
// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
|
||||
// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
|
||||
// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
|
||||
GetJSONLDId() JSONLDIdProperty
|
||||
// GetJSONLDType returns the "type" property if it exists, and nil
|
||||
|
|
@ -208,12 +199,6 @@ type ActivityStreamsEvent interface {
|
|||
SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
|
||||
// SetActivityStreamsUrl sets the "url" property.
|
||||
SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
|
||||
// SetForgeFedTeam sets the "team" property.
|
||||
SetForgeFedTeam(i ForgeFedTeamProperty)
|
||||
// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
|
||||
SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
|
||||
// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
|
||||
SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
|
||||
// SetJSONLDId sets the "id" property.
|
||||
SetJSONLDId(i JSONLDIdProperty)
|
||||
// SetJSONLDType sets the "type" property.
|
||||
|
|
|
|||
|
|
@ -128,15 +128,6 @@ type ActivityStreamsFlag interface {
|
|||
// GetActivityStreamsUrl returns the "url" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetActivityStreamsUrl() ActivityStreamsUrlProperty
|
||||
// GetForgeFedTeam returns the "team" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetForgeFedTeam() ForgeFedTeamProperty
|
||||
// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
|
||||
// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
|
||||
// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
|
||||
GetJSONLDId() JSONLDIdProperty
|
||||
// GetJSONLDType returns the "type" property if it exists, and nil
|
||||
|
|
@ -238,12 +229,6 @@ type ActivityStreamsFlag interface {
|
|||
SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
|
||||
// SetActivityStreamsUrl sets the "url" property.
|
||||
SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
|
||||
// SetForgeFedTeam sets the "team" property.
|
||||
SetForgeFedTeam(i ForgeFedTeamProperty)
|
||||
// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
|
||||
SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
|
||||
// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
|
||||
SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
|
||||
// SetJSONLDId sets the "id" property.
|
||||
SetJSONLDId(i JSONLDIdProperty)
|
||||
// SetJSONLDType sets the "type" property.
|
||||
|
|
|
|||
|
|
@ -132,15 +132,6 @@ type ActivityStreamsFollow interface {
|
|||
// GetActivityStreamsUrl returns the "url" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetActivityStreamsUrl() ActivityStreamsUrlProperty
|
||||
// GetForgeFedTeam returns the "team" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetForgeFedTeam() ForgeFedTeamProperty
|
||||
// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
|
||||
// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
|
||||
// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
|
||||
GetJSONLDId() JSONLDIdProperty
|
||||
// GetJSONLDType returns the "type" property if it exists, and nil
|
||||
|
|
@ -242,12 +233,6 @@ type ActivityStreamsFollow interface {
|
|||
SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
|
||||
// SetActivityStreamsUrl sets the "url" property.
|
||||
SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
|
||||
// SetForgeFedTeam sets the "team" property.
|
||||
SetForgeFedTeam(i ForgeFedTeamProperty)
|
||||
// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
|
||||
SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
|
||||
// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
|
||||
SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
|
||||
// SetJSONLDId sets the "id" property.
|
||||
SetJSONLDId(i JSONLDIdProperty)
|
||||
// SetJSONLDType sets the "type" property.
|
||||
|
|
|
|||
|
|
@ -134,15 +134,6 @@ type ActivityStreamsGroup interface {
|
|||
// GetActivityStreamsUrl returns the "url" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetActivityStreamsUrl() ActivityStreamsUrlProperty
|
||||
// GetForgeFedTeam returns the "team" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetForgeFedTeam() ForgeFedTeamProperty
|
||||
// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
|
||||
// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
|
||||
// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
|
||||
GetJSONLDId() JSONLDIdProperty
|
||||
// GetJSONLDType returns the "type" property if it exists, and nil
|
||||
|
|
@ -263,12 +254,6 @@ type ActivityStreamsGroup interface {
|
|||
SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
|
||||
// SetActivityStreamsUrl sets the "url" property.
|
||||
SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
|
||||
// SetForgeFedTeam sets the "team" property.
|
||||
SetForgeFedTeam(i ForgeFedTeamProperty)
|
||||
// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
|
||||
SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
|
||||
// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
|
||||
SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
|
||||
// SetJSONLDId sets the "id" property.
|
||||
SetJSONLDId(i JSONLDIdProperty)
|
||||
// SetJSONLDType sets the "type" property.
|
||||
|
|
|
|||
|
|
@ -127,15 +127,6 @@ type ActivityStreamsIgnore interface {
|
|||
// GetActivityStreamsUrl returns the "url" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetActivityStreamsUrl() ActivityStreamsUrlProperty
|
||||
// GetForgeFedTeam returns the "team" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetForgeFedTeam() ForgeFedTeamProperty
|
||||
// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
|
||||
// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
|
||||
// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
|
||||
GetJSONLDId() JSONLDIdProperty
|
||||
// GetJSONLDType returns the "type" property if it exists, and nil
|
||||
|
|
@ -237,12 +228,6 @@ type ActivityStreamsIgnore interface {
|
|||
SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
|
||||
// SetActivityStreamsUrl sets the "url" property.
|
||||
SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
|
||||
// SetForgeFedTeam sets the "team" property.
|
||||
SetForgeFedTeam(i ForgeFedTeamProperty)
|
||||
// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
|
||||
SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
|
||||
// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
|
||||
SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
|
||||
// SetJSONLDId sets the "id" property.
|
||||
SetJSONLDId(i JSONLDIdProperty)
|
||||
// SetJSONLDType sets the "type" property.
|
||||
|
|
|
|||
|
|
@ -124,15 +124,6 @@ type ActivityStreamsImage interface {
|
|||
// GetActivityStreamsWidth returns the "width" property if it exists, and
|
||||
// nil otherwise.
|
||||
GetActivityStreamsWidth() ActivityStreamsWidthProperty
|
||||
// GetForgeFedTeam returns the "team" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetForgeFedTeam() ForgeFedTeamProperty
|
||||
// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
|
||||
// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
|
||||
// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
|
||||
GetJSONLDId() JSONLDIdProperty
|
||||
// GetJSONLDType returns the "type" property if it exists, and nil
|
||||
|
|
@ -231,12 +222,6 @@ type ActivityStreamsImage interface {
|
|||
SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
|
||||
// SetActivityStreamsWidth sets the "width" property.
|
||||
SetActivityStreamsWidth(i ActivityStreamsWidthProperty)
|
||||
// SetForgeFedTeam sets the "team" property.
|
||||
SetForgeFedTeam(i ForgeFedTeamProperty)
|
||||
// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
|
||||
SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
|
||||
// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
|
||||
SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
|
||||
// SetJSONLDId sets the "id" property.
|
||||
SetJSONLDId(i JSONLDIdProperty)
|
||||
// SetJSONLDType sets the "type" property.
|
||||
|
|
|
|||
|
|
@ -128,15 +128,6 @@ type ActivityStreamsIntransitiveActivity interface {
|
|||
// GetActivityStreamsUrl returns the "url" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetActivityStreamsUrl() ActivityStreamsUrlProperty
|
||||
// GetForgeFedTeam returns the "team" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetForgeFedTeam() ForgeFedTeamProperty
|
||||
// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
|
||||
// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
|
||||
// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
|
||||
GetJSONLDId() JSONLDIdProperty
|
||||
// GetJSONLDType returns the "type" property if it exists, and nil
|
||||
|
|
@ -237,12 +228,6 @@ type ActivityStreamsIntransitiveActivity interface {
|
|||
SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
|
||||
// SetActivityStreamsUrl sets the "url" property.
|
||||
SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
|
||||
// SetForgeFedTeam sets the "team" property.
|
||||
SetForgeFedTeam(i ForgeFedTeamProperty)
|
||||
// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
|
||||
SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
|
||||
// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
|
||||
SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
|
||||
// SetJSONLDId sets the "id" property.
|
||||
SetJSONLDId(i JSONLDIdProperty)
|
||||
// SetJSONLDType sets the "type" property.
|
||||
|
|
|
|||
|
|
@ -140,15 +140,6 @@ type ActivityStreamsInvite interface {
|
|||
// GetActivityStreamsUrl returns the "url" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetActivityStreamsUrl() ActivityStreamsUrlProperty
|
||||
// GetForgeFedTeam returns the "team" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetForgeFedTeam() ForgeFedTeamProperty
|
||||
// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
|
||||
// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
|
||||
// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
|
||||
GetJSONLDId() JSONLDIdProperty
|
||||
// GetJSONLDType returns the "type" property if it exists, and nil
|
||||
|
|
@ -250,12 +241,6 @@ type ActivityStreamsInvite interface {
|
|||
SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
|
||||
// SetActivityStreamsUrl sets the "url" property.
|
||||
SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
|
||||
// SetForgeFedTeam sets the "team" property.
|
||||
SetForgeFedTeam(i ForgeFedTeamProperty)
|
||||
// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
|
||||
SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
|
||||
// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
|
||||
SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
|
||||
// SetJSONLDId sets the "id" property.
|
||||
SetJSONLDId(i JSONLDIdProperty)
|
||||
// SetJSONLDType sets the "type" property.
|
||||
|
|
|
|||
|
|
@ -130,15 +130,6 @@ type ActivityStreamsJoin interface {
|
|||
// GetActivityStreamsUrl returns the "url" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetActivityStreamsUrl() ActivityStreamsUrlProperty
|
||||
// GetForgeFedTeam returns the "team" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetForgeFedTeam() ForgeFedTeamProperty
|
||||
// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
|
||||
// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
|
||||
// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
|
||||
GetJSONLDId() JSONLDIdProperty
|
||||
// GetJSONLDType returns the "type" property if it exists, and nil
|
||||
|
|
@ -240,12 +231,6 @@ type ActivityStreamsJoin interface {
|
|||
SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
|
||||
// SetActivityStreamsUrl sets the "url" property.
|
||||
SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
|
||||
// SetForgeFedTeam sets the "team" property.
|
||||
SetForgeFedTeam(i ForgeFedTeamProperty)
|
||||
// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
|
||||
SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
|
||||
// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
|
||||
SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
|
||||
// SetJSONLDId sets the "id" property.
|
||||
SetJSONLDId(i JSONLDIdProperty)
|
||||
// SetJSONLDType sets the "type" property.
|
||||
|
|
|
|||
|
|
@ -144,15 +144,6 @@ type ActivityStreamsLeave interface {
|
|||
// GetActivityStreamsUrl returns the "url" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetActivityStreamsUrl() ActivityStreamsUrlProperty
|
||||
// GetForgeFedTeam returns the "team" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetForgeFedTeam() ForgeFedTeamProperty
|
||||
// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
|
||||
// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
|
||||
// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
|
||||
GetJSONLDId() JSONLDIdProperty
|
||||
// GetJSONLDType returns the "type" property if it exists, and nil
|
||||
|
|
@ -254,12 +245,6 @@ type ActivityStreamsLeave interface {
|
|||
SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
|
||||
// SetActivityStreamsUrl sets the "url" property.
|
||||
SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
|
||||
// SetForgeFedTeam sets the "team" property.
|
||||
SetForgeFedTeam(i ForgeFedTeamProperty)
|
||||
// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
|
||||
SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
|
||||
// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
|
||||
SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
|
||||
// SetJSONLDId sets the "id" property.
|
||||
SetJSONLDId(i JSONLDIdProperty)
|
||||
// SetJSONLDType sets the "type" property.
|
||||
|
|
|
|||
|
|
@ -127,15 +127,6 @@ type ActivityStreamsLike interface {
|
|||
// GetActivityStreamsUrl returns the "url" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetActivityStreamsUrl() ActivityStreamsUrlProperty
|
||||
// GetForgeFedTeam returns the "team" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetForgeFedTeam() ForgeFedTeamProperty
|
||||
// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
|
||||
// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
|
||||
// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
|
||||
GetJSONLDId() JSONLDIdProperty
|
||||
// GetJSONLDType returns the "type" property if it exists, and nil
|
||||
|
|
@ -237,12 +228,6 @@ type ActivityStreamsLike interface {
|
|||
SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
|
||||
// SetActivityStreamsUrl sets the "url" property.
|
||||
SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
|
||||
// SetForgeFedTeam sets the "team" property.
|
||||
SetForgeFedTeam(i ForgeFedTeamProperty)
|
||||
// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
|
||||
SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
|
||||
// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
|
||||
SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
|
||||
// SetJSONLDId sets the "id" property.
|
||||
SetJSONLDId(i JSONLDIdProperty)
|
||||
// SetJSONLDType sets the "type" property.
|
||||
|
|
|
|||
|
|
@ -126,15 +126,6 @@ type ActivityStreamsListen interface {
|
|||
// GetActivityStreamsUrl returns the "url" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetActivityStreamsUrl() ActivityStreamsUrlProperty
|
||||
// GetForgeFedTeam returns the "team" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetForgeFedTeam() ForgeFedTeamProperty
|
||||
// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
|
||||
// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
|
||||
// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
|
||||
GetJSONLDId() JSONLDIdProperty
|
||||
// GetJSONLDType returns the "type" property if it exists, and nil
|
||||
|
|
@ -236,12 +227,6 @@ type ActivityStreamsListen interface {
|
|||
SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
|
||||
// SetActivityStreamsUrl sets the "url" property.
|
||||
SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
|
||||
// SetForgeFedTeam sets the "team" property.
|
||||
SetForgeFedTeam(i ForgeFedTeamProperty)
|
||||
// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
|
||||
SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
|
||||
// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
|
||||
SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
|
||||
// SetJSONLDId sets the "id" property.
|
||||
SetJSONLDId(i JSONLDIdProperty)
|
||||
// SetJSONLDType sets the "type" property.
|
||||
|
|
|
|||
|
|
@ -135,15 +135,6 @@ type ActivityStreamsMove interface {
|
|||
// GetActivityStreamsUrl returns the "url" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetActivityStreamsUrl() ActivityStreamsUrlProperty
|
||||
// GetForgeFedTeam returns the "team" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetForgeFedTeam() ForgeFedTeamProperty
|
||||
// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
|
||||
// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
|
||||
// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
|
||||
GetJSONLDId() JSONLDIdProperty
|
||||
// GetJSONLDType returns the "type" property if it exists, and nil
|
||||
|
|
@ -245,12 +236,6 @@ type ActivityStreamsMove interface {
|
|||
SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
|
||||
// SetActivityStreamsUrl sets the "url" property.
|
||||
SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
|
||||
// SetForgeFedTeam sets the "team" property.
|
||||
SetForgeFedTeam(i ForgeFedTeamProperty)
|
||||
// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
|
||||
SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
|
||||
// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
|
||||
SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
|
||||
// SetJSONLDId sets the "id" property.
|
||||
SetJSONLDId(i JSONLDIdProperty)
|
||||
// SetJSONLDType sets the "type" property.
|
||||
|
|
|
|||
|
|
@ -108,15 +108,6 @@ type ActivityStreamsNote interface {
|
|||
// GetActivityStreamsUrl returns the "url" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetActivityStreamsUrl() ActivityStreamsUrlProperty
|
||||
// GetForgeFedTeam returns the "team" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetForgeFedTeam() ForgeFedTeamProperty
|
||||
// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
|
||||
// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
|
||||
// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
|
||||
GetJSONLDId() JSONLDIdProperty
|
||||
// GetJSONLDType returns the "type" property if it exists, and nil
|
||||
|
|
@ -208,12 +199,6 @@ type ActivityStreamsNote interface {
|
|||
SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
|
||||
// SetActivityStreamsUrl sets the "url" property.
|
||||
SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
|
||||
// SetForgeFedTeam sets the "team" property.
|
||||
SetForgeFedTeam(i ForgeFedTeamProperty)
|
||||
// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
|
||||
SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
|
||||
// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
|
||||
SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
|
||||
// SetJSONLDId sets the "id" property.
|
||||
SetJSONLDId(i JSONLDIdProperty)
|
||||
// SetJSONLDType sets the "type" property.
|
||||
|
|
|
|||
|
|
@ -110,15 +110,6 @@ type ActivityStreamsObject interface {
|
|||
// GetActivityStreamsUrl returns the "url" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetActivityStreamsUrl() ActivityStreamsUrlProperty
|
||||
// GetForgeFedTeam returns the "team" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetForgeFedTeam() ForgeFedTeamProperty
|
||||
// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
|
||||
// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
|
||||
// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
|
||||
GetJSONLDId() JSONLDIdProperty
|
||||
// GetJSONLDType returns the "type" property if it exists, and nil
|
||||
|
|
@ -210,12 +201,6 @@ type ActivityStreamsObject interface {
|
|||
SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
|
||||
// SetActivityStreamsUrl sets the "url" property.
|
||||
SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
|
||||
// SetForgeFedTeam sets the "team" property.
|
||||
SetForgeFedTeam(i ForgeFedTeamProperty)
|
||||
// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
|
||||
SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
|
||||
// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
|
||||
SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
|
||||
// SetJSONLDId sets the "id" property.
|
||||
SetJSONLDId(i JSONLDIdProperty)
|
||||
// SetJSONLDType sets the "type" property.
|
||||
|
|
|
|||
|
|
@ -134,15 +134,6 @@ type ActivityStreamsOffer interface {
|
|||
// GetActivityStreamsUrl returns the "url" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetActivityStreamsUrl() ActivityStreamsUrlProperty
|
||||
// GetForgeFedTeam returns the "team" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetForgeFedTeam() ForgeFedTeamProperty
|
||||
// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
|
||||
// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
|
||||
// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
|
||||
GetJSONLDId() JSONLDIdProperty
|
||||
// GetJSONLDType returns the "type" property if it exists, and nil
|
||||
|
|
@ -244,12 +235,6 @@ type ActivityStreamsOffer interface {
|
|||
SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
|
||||
// SetActivityStreamsUrl sets the "url" property.
|
||||
SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
|
||||
// SetForgeFedTeam sets the "team" property.
|
||||
SetForgeFedTeam(i ForgeFedTeamProperty)
|
||||
// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
|
||||
SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
|
||||
// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
|
||||
SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
|
||||
// SetJSONLDId sets the "id" property.
|
||||
SetJSONLDId(i JSONLDIdProperty)
|
||||
// SetJSONLDType sets the "type" property.
|
||||
|
|
|
|||
|
|
@ -133,18 +133,6 @@ type ActivityStreamsOrderedCollection interface {
|
|||
// GetActivityStreamsUrl returns the "url" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetActivityStreamsUrl() ActivityStreamsUrlProperty
|
||||
// GetForgeFedEarlyItems returns the "earlyItems" property if it exists,
|
||||
// and nil otherwise.
|
||||
GetForgeFedEarlyItems() ForgeFedEarlyItemsProperty
|
||||
// GetForgeFedTeam returns the "team" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetForgeFedTeam() ForgeFedTeamProperty
|
||||
// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
|
||||
// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
|
||||
// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
|
||||
GetJSONLDId() JSONLDIdProperty
|
||||
// GetJSONLDType returns the "type" property if it exists, and nil
|
||||
|
|
@ -247,14 +235,6 @@ type ActivityStreamsOrderedCollection interface {
|
|||
SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
|
||||
// SetActivityStreamsUrl sets the "url" property.
|
||||
SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
|
||||
// SetForgeFedEarlyItems sets the "earlyItems" property.
|
||||
SetForgeFedEarlyItems(i ForgeFedEarlyItemsProperty)
|
||||
// SetForgeFedTeam sets the "team" property.
|
||||
SetForgeFedTeam(i ForgeFedTeamProperty)
|
||||
// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
|
||||
SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
|
||||
// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
|
||||
SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
|
||||
// SetJSONLDId sets the "id" property.
|
||||
SetJSONLDId(i JSONLDIdProperty)
|
||||
// SetJSONLDType sets the "type" property.
|
||||
|
|
|
|||
|
|
@ -147,18 +147,6 @@ type ActivityStreamsOrderedCollectionPage interface {
|
|||
// GetActivityStreamsUrl returns the "url" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetActivityStreamsUrl() ActivityStreamsUrlProperty
|
||||
// GetForgeFedEarlyItems returns the "earlyItems" property if it exists,
|
||||
// and nil otherwise.
|
||||
GetForgeFedEarlyItems() ForgeFedEarlyItemsProperty
|
||||
// GetForgeFedTeam returns the "team" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetForgeFedTeam() ForgeFedTeamProperty
|
||||
// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
|
||||
// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
|
||||
// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
|
||||
GetJSONLDId() JSONLDIdProperty
|
||||
// GetJSONLDType returns the "type" property if it exists, and nil
|
||||
|
|
@ -269,14 +257,6 @@ type ActivityStreamsOrderedCollectionPage interface {
|
|||
SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
|
||||
// SetActivityStreamsUrl sets the "url" property.
|
||||
SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
|
||||
// SetForgeFedEarlyItems sets the "earlyItems" property.
|
||||
SetForgeFedEarlyItems(i ForgeFedEarlyItemsProperty)
|
||||
// SetForgeFedTeam sets the "team" property.
|
||||
SetForgeFedTeam(i ForgeFedTeamProperty)
|
||||
// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
|
||||
SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
|
||||
// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
|
||||
SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
|
||||
// SetJSONLDId sets the "id" property.
|
||||
SetJSONLDId(i JSONLDIdProperty)
|
||||
// SetJSONLDType sets the "type" property.
|
||||
|
|
|
|||
|
|
@ -134,15 +134,6 @@ type ActivityStreamsOrganization interface {
|
|||
// GetActivityStreamsUrl returns the "url" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetActivityStreamsUrl() ActivityStreamsUrlProperty
|
||||
// GetForgeFedTeam returns the "team" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetForgeFedTeam() ForgeFedTeamProperty
|
||||
// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
|
||||
// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
|
||||
// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
|
||||
GetJSONLDId() JSONLDIdProperty
|
||||
// GetJSONLDType returns the "type" property if it exists, and nil
|
||||
|
|
@ -264,12 +255,6 @@ type ActivityStreamsOrganization interface {
|
|||
SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
|
||||
// SetActivityStreamsUrl sets the "url" property.
|
||||
SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
|
||||
// SetForgeFedTeam sets the "team" property.
|
||||
SetForgeFedTeam(i ForgeFedTeamProperty)
|
||||
// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
|
||||
SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
|
||||
// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
|
||||
SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
|
||||
// SetJSONLDId sets the "id" property.
|
||||
SetJSONLDId(i JSONLDIdProperty)
|
||||
// SetJSONLDType sets the "type" property.
|
||||
|
|
|
|||
|
|
@ -107,15 +107,6 @@ type ActivityStreamsPage interface {
|
|||
// GetActivityStreamsUrl returns the "url" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetActivityStreamsUrl() ActivityStreamsUrlProperty
|
||||
// GetForgeFedTeam returns the "team" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetForgeFedTeam() ForgeFedTeamProperty
|
||||
// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
|
||||
// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
|
||||
// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
|
||||
GetJSONLDId() JSONLDIdProperty
|
||||
// GetJSONLDType returns the "type" property if it exists, and nil
|
||||
|
|
@ -210,12 +201,6 @@ type ActivityStreamsPage interface {
|
|||
SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
|
||||
// SetActivityStreamsUrl sets the "url" property.
|
||||
SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
|
||||
// SetForgeFedTeam sets the "team" property.
|
||||
SetForgeFedTeam(i ForgeFedTeamProperty)
|
||||
// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
|
||||
SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
|
||||
// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
|
||||
SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
|
||||
// SetJSONLDId sets the "id" property.
|
||||
SetJSONLDId(i JSONLDIdProperty)
|
||||
// SetJSONLDType sets the "type" property.
|
||||
|
|
|
|||
|
|
@ -134,15 +134,6 @@ type ActivityStreamsPerson interface {
|
|||
// GetActivityStreamsUrl returns the "url" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetActivityStreamsUrl() ActivityStreamsUrlProperty
|
||||
// GetForgeFedTeam returns the "team" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetForgeFedTeam() ForgeFedTeamProperty
|
||||
// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
|
||||
// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
|
||||
// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
|
||||
GetJSONLDId() JSONLDIdProperty
|
||||
// GetJSONLDType returns the "type" property if it exists, and nil
|
||||
|
|
@ -263,12 +254,6 @@ type ActivityStreamsPerson interface {
|
|||
SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
|
||||
// SetActivityStreamsUrl sets the "url" property.
|
||||
SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
|
||||
// SetForgeFedTeam sets the "team" property.
|
||||
SetForgeFedTeam(i ForgeFedTeamProperty)
|
||||
// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
|
||||
SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
|
||||
// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
|
||||
SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
|
||||
// SetJSONLDId sets the "id" property.
|
||||
SetJSONLDId(i JSONLDIdProperty)
|
||||
// SetJSONLDType sets the "type" property.
|
||||
|
|
|
|||
|
|
@ -132,15 +132,6 @@ type ActivityStreamsPlace interface {
|
|||
// GetActivityStreamsUrl returns the "url" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetActivityStreamsUrl() ActivityStreamsUrlProperty
|
||||
// GetForgeFedTeam returns the "team" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetForgeFedTeam() ForgeFedTeamProperty
|
||||
// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
|
||||
// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
|
||||
// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
|
||||
GetJSONLDId() JSONLDIdProperty
|
||||
// GetJSONLDType returns the "type" property if it exists, and nil
|
||||
|
|
@ -242,12 +233,6 @@ type ActivityStreamsPlace interface {
|
|||
SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
|
||||
// SetActivityStreamsUrl sets the "url" property.
|
||||
SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
|
||||
// SetForgeFedTeam sets the "team" property.
|
||||
SetForgeFedTeam(i ForgeFedTeamProperty)
|
||||
// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
|
||||
SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
|
||||
// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
|
||||
SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
|
||||
// SetJSONLDId sets the "id" property.
|
||||
SetJSONLDId(i JSONLDIdProperty)
|
||||
// SetJSONLDType sets the "type" property.
|
||||
|
|
|
|||
|
|
@ -115,15 +115,6 @@ type ActivityStreamsProfile interface {
|
|||
// GetActivityStreamsUrl returns the "url" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetActivityStreamsUrl() ActivityStreamsUrlProperty
|
||||
// GetForgeFedTeam returns the "team" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetForgeFedTeam() ForgeFedTeamProperty
|
||||
// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
|
||||
// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
|
||||
// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
|
||||
GetJSONLDId() JSONLDIdProperty
|
||||
// GetJSONLDType returns the "type" property if it exists, and nil
|
||||
|
|
@ -218,12 +209,6 @@ type ActivityStreamsProfile interface {
|
|||
SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
|
||||
// SetActivityStreamsUrl sets the "url" property.
|
||||
SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
|
||||
// SetForgeFedTeam sets the "team" property.
|
||||
SetForgeFedTeam(i ForgeFedTeamProperty)
|
||||
// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
|
||||
SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
|
||||
// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
|
||||
SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
|
||||
// SetJSONLDId sets the "id" property.
|
||||
SetJSONLDId(i JSONLDIdProperty)
|
||||
// SetJSONLDType sets the "type" property.
|
||||
|
|
|
|||
|
|
@ -149,15 +149,6 @@ type ActivityStreamsQuestion interface {
|
|||
// GetActivityStreamsUrl returns the "url" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetActivityStreamsUrl() ActivityStreamsUrlProperty
|
||||
// GetForgeFedTeam returns the "team" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetForgeFedTeam() ForgeFedTeamProperty
|
||||
// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
|
||||
// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
|
||||
// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
|
||||
GetJSONLDId() JSONLDIdProperty
|
||||
// GetJSONLDType returns the "type" property if it exists, and nil
|
||||
|
|
@ -267,12 +258,6 @@ type ActivityStreamsQuestion interface {
|
|||
SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
|
||||
// SetActivityStreamsUrl sets the "url" property.
|
||||
SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
|
||||
// SetForgeFedTeam sets the "team" property.
|
||||
SetForgeFedTeam(i ForgeFedTeamProperty)
|
||||
// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
|
||||
SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
|
||||
// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
|
||||
SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
|
||||
// SetJSONLDId sets the "id" property.
|
||||
SetJSONLDId(i JSONLDIdProperty)
|
||||
// SetJSONLDType sets the "type" property.
|
||||
|
|
|
|||
|
|
@ -126,15 +126,6 @@ type ActivityStreamsRead interface {
|
|||
// GetActivityStreamsUrl returns the "url" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetActivityStreamsUrl() ActivityStreamsUrlProperty
|
||||
// GetForgeFedTeam returns the "team" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetForgeFedTeam() ForgeFedTeamProperty
|
||||
// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
|
||||
// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
|
||||
// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
|
||||
GetJSONLDId() JSONLDIdProperty
|
||||
// GetJSONLDType returns the "type" property if it exists, and nil
|
||||
|
|
@ -236,12 +227,6 @@ type ActivityStreamsRead interface {
|
|||
SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
|
||||
// SetActivityStreamsUrl sets the "url" property.
|
||||
SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
|
||||
// SetForgeFedTeam sets the "team" property.
|
||||
SetForgeFedTeam(i ForgeFedTeamProperty)
|
||||
// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
|
||||
SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
|
||||
// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
|
||||
SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
|
||||
// SetJSONLDId sets the "id" property.
|
||||
SetJSONLDId(i JSONLDIdProperty)
|
||||
// SetJSONLDType sets the "type" property.
|
||||
|
|
|
|||
|
|
@ -134,15 +134,6 @@ type ActivityStreamsReject interface {
|
|||
// GetActivityStreamsUrl returns the "url" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetActivityStreamsUrl() ActivityStreamsUrlProperty
|
||||
// GetForgeFedTeam returns the "team" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetForgeFedTeam() ForgeFedTeamProperty
|
||||
// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
|
||||
// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
|
||||
// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
|
||||
GetJSONLDId() JSONLDIdProperty
|
||||
// GetJSONLDType returns the "type" property if it exists, and nil
|
||||
|
|
@ -244,12 +235,6 @@ type ActivityStreamsReject interface {
|
|||
SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
|
||||
// SetActivityStreamsUrl sets the "url" property.
|
||||
SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
|
||||
// SetForgeFedTeam sets the "team" property.
|
||||
SetForgeFedTeam(i ForgeFedTeamProperty)
|
||||
// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
|
||||
SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
|
||||
// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
|
||||
SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
|
||||
// SetJSONLDId sets the "id" property.
|
||||
SetJSONLDId(i JSONLDIdProperty)
|
||||
// SetJSONLDType sets the "type" property.
|
||||
|
|
|
|||
|
|
@ -123,15 +123,6 @@ type ActivityStreamsRelationship interface {
|
|||
// GetActivityStreamsUrl returns the "url" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetActivityStreamsUrl() ActivityStreamsUrlProperty
|
||||
// GetForgeFedTeam returns the "team" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetForgeFedTeam() ForgeFedTeamProperty
|
||||
// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
|
||||
// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
|
||||
// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
|
||||
GetJSONLDId() JSONLDIdProperty
|
||||
// GetJSONLDType returns the "type" property if it exists, and nil
|
||||
|
|
@ -228,12 +219,6 @@ type ActivityStreamsRelationship interface {
|
|||
SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
|
||||
// SetActivityStreamsUrl sets the "url" property.
|
||||
SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
|
||||
// SetForgeFedTeam sets the "team" property.
|
||||
SetForgeFedTeam(i ForgeFedTeamProperty)
|
||||
// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
|
||||
SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
|
||||
// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
|
||||
SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
|
||||
// SetJSONLDId sets the "id" property.
|
||||
SetJSONLDId(i JSONLDIdProperty)
|
||||
// SetJSONLDType sets the "type" property.
|
||||
|
|
|
|||
|
|
@ -149,15 +149,6 @@ type ActivityStreamsRemove interface {
|
|||
// GetActivityStreamsUrl returns the "url" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetActivityStreamsUrl() ActivityStreamsUrlProperty
|
||||
// GetForgeFedTeam returns the "team" property if it exists, and nil
|
||||
// otherwise.
|
||||
GetForgeFedTeam() ForgeFedTeamProperty
|
||||
// GetForgeFedTicketsTrackedBy returns the "ticketsTrackedBy" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTicketsTrackedBy() ForgeFedTicketsTrackedByProperty
|
||||
// GetForgeFedTracksTicketsFor returns the "tracksTicketsFor" property if
|
||||
// it exists, and nil otherwise.
|
||||
GetForgeFedTracksTicketsFor() ForgeFedTracksTicketsForProperty
|
||||
// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
|
||||
GetJSONLDId() JSONLDIdProperty
|
||||
// GetJSONLDType returns the "type" property if it exists, and nil
|
||||
|
|
@ -259,12 +250,6 @@ type ActivityStreamsRemove interface {
|
|||
SetActivityStreamsUpdated(i ActivityStreamsUpdatedProperty)
|
||||
// SetActivityStreamsUrl sets the "url" property.
|
||||
SetActivityStreamsUrl(i ActivityStreamsUrlProperty)
|
||||
// SetForgeFedTeam sets the "team" property.
|
||||
SetForgeFedTeam(i ForgeFedTeamProperty)
|
||||
// SetForgeFedTicketsTrackedBy sets the "ticketsTrackedBy" property.
|
||||
SetForgeFedTicketsTrackedBy(i ForgeFedTicketsTrackedByProperty)
|
||||
// SetForgeFedTracksTicketsFor sets the "tracksTicketsFor" property.
|
||||
SetForgeFedTracksTicketsFor(i ForgeFedTracksTicketsForProperty)
|
||||
// SetJSONLDId sets the "id" property.
|
||||
SetJSONLDId(i JSONLDIdProperty)
|
||||
// SetJSONLDType sets the "type" property.
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue