Documentation ¶
Overview ¶
Package propertyimage contains the implementation for the image property. All applications are strongly encouraged to use the interface instead of this concrete definition. The interfaces allow applications to consume only the types and properties needed and be independent of the go-fed implementation if another alternative implementation is created. This package is code-generated and subject to the same license as the go-fed tool used to generate it.
This package is independent of other types' and properties' implementations by having a Manager injected into it to act as a factory for the concrete implementations. The implementations have been generated into their own separate subpackages for each vocabulary.
Strongly consider using the interfaces instead of this package.
Index ¶
- func DeserializeImageProperty(m map[string]interface{}, aliasMap map[string]string) (vocab.ActivityStreamsImageProperty, error)
- func SetManager(m privateManager)
- type ActivityStreamsImageProperty
- func (this *ActivityStreamsImageProperty) AppendActivityStreamsImage(v vocab.ActivityStreamsImage)
- func (this *ActivityStreamsImageProperty) AppendActivityStreamsLink(v vocab.ActivityStreamsLink)
- func (this *ActivityStreamsImageProperty) AppendActivityStreamsMention(v vocab.ActivityStreamsMention)
- func (this *ActivityStreamsImageProperty) AppendIRI(v *url.URL)
- func (this *ActivityStreamsImageProperty) AppendTootHashtag(v vocab.TootHashtag)
- func (this *ActivityStreamsImageProperty) AppendType(t vocab.Type) error
- func (this ActivityStreamsImageProperty) At(index int) vocab.ActivityStreamsImagePropertyIterator
- func (this ActivityStreamsImageProperty) Begin() vocab.ActivityStreamsImagePropertyIterator
- func (this ActivityStreamsImageProperty) Empty() bool
- func (this ActivityStreamsImageProperty) End() vocab.ActivityStreamsImagePropertyIterator
- func (this *ActivityStreamsImageProperty) InsertActivityStreamsImage(idx int, v vocab.ActivityStreamsImage)
- func (this *ActivityStreamsImageProperty) InsertActivityStreamsLink(idx int, v vocab.ActivityStreamsLink)
- func (this *ActivityStreamsImageProperty) InsertActivityStreamsMention(idx int, v vocab.ActivityStreamsMention)
- func (this *ActivityStreamsImageProperty) InsertIRI(idx int, v *url.URL)
- func (this *ActivityStreamsImageProperty) InsertTootHashtag(idx int, v vocab.TootHashtag)
- func (this *ActivityStreamsImageProperty) InsertType(idx int, t vocab.Type) error
- func (this ActivityStreamsImageProperty) JSONLDContext() map[string]string
- func (this ActivityStreamsImageProperty) KindIndex(idx int) int
- func (this ActivityStreamsImageProperty) Len() (length int)
- func (this ActivityStreamsImageProperty) Less(i, j int) bool
- func (this ActivityStreamsImageProperty) LessThan(o vocab.ActivityStreamsImageProperty) bool
- func (this ActivityStreamsImageProperty) Name() string
- func (this *ActivityStreamsImageProperty) PrependActivityStreamsImage(v vocab.ActivityStreamsImage)
- func (this *ActivityStreamsImageProperty) PrependActivityStreamsLink(v vocab.ActivityStreamsLink)
- func (this *ActivityStreamsImageProperty) PrependActivityStreamsMention(v vocab.ActivityStreamsMention)
- func (this *ActivityStreamsImageProperty) PrependIRI(v *url.URL)
- func (this *ActivityStreamsImageProperty) PrependTootHashtag(v vocab.TootHashtag)
- func (this *ActivityStreamsImageProperty) PrependType(t vocab.Type) error
- func (this *ActivityStreamsImageProperty) Remove(idx int)
- func (this ActivityStreamsImageProperty) Serialize() (interface{}, error)
- func (this *ActivityStreamsImageProperty) SetActivityStreamsImage(idx int, v vocab.ActivityStreamsImage)
- func (this *ActivityStreamsImageProperty) SetActivityStreamsLink(idx int, v vocab.ActivityStreamsLink)
- func (this *ActivityStreamsImageProperty) SetActivityStreamsMention(idx int, v vocab.ActivityStreamsMention)
- func (this *ActivityStreamsImageProperty) SetIRI(idx int, v *url.URL)
- func (this *ActivityStreamsImageProperty) SetTootHashtag(idx int, v vocab.TootHashtag)
- func (this *ActivityStreamsImageProperty) SetType(idx int, t vocab.Type) error
- func (this ActivityStreamsImageProperty) Swap(i, j int)
- type ActivityStreamsImagePropertyIterator
- func (this ActivityStreamsImagePropertyIterator) GetActivityStreamsImage() vocab.ActivityStreamsImage
- func (this ActivityStreamsImagePropertyIterator) GetActivityStreamsLink() vocab.ActivityStreamsLink
- func (this ActivityStreamsImagePropertyIterator) GetActivityStreamsMention() vocab.ActivityStreamsMention
- func (this ActivityStreamsImagePropertyIterator) GetIRI() *url.URL
- func (this ActivityStreamsImagePropertyIterator) GetTootHashtag() vocab.TootHashtag
- func (this ActivityStreamsImagePropertyIterator) GetType() vocab.Type
- func (this ActivityStreamsImagePropertyIterator) HasAny() bool
- func (this ActivityStreamsImagePropertyIterator) IsActivityStreamsImage() bool
- func (this ActivityStreamsImagePropertyIterator) IsActivityStreamsLink() bool
- func (this ActivityStreamsImagePropertyIterator) IsActivityStreamsMention() bool
- func (this ActivityStreamsImagePropertyIterator) IsIRI() bool
- func (this ActivityStreamsImagePropertyIterator) IsTootHashtag() bool
- func (this ActivityStreamsImagePropertyIterator) JSONLDContext() map[string]string
- func (this ActivityStreamsImagePropertyIterator) KindIndex() int
- func (this ActivityStreamsImagePropertyIterator) LessThan(o vocab.ActivityStreamsImagePropertyIterator) bool
- func (this ActivityStreamsImagePropertyIterator) Name() string
- func (this ActivityStreamsImagePropertyIterator) Next() vocab.ActivityStreamsImagePropertyIterator
- func (this ActivityStreamsImagePropertyIterator) Prev() vocab.ActivityStreamsImagePropertyIterator
- func (this *ActivityStreamsImagePropertyIterator) SetActivityStreamsImage(v vocab.ActivityStreamsImage)
- func (this *ActivityStreamsImagePropertyIterator) SetActivityStreamsLink(v vocab.ActivityStreamsLink)
- func (this *ActivityStreamsImagePropertyIterator) SetActivityStreamsMention(v vocab.ActivityStreamsMention)
- func (this *ActivityStreamsImagePropertyIterator) SetIRI(v *url.URL)
- func (this *ActivityStreamsImagePropertyIterator) SetTootHashtag(v vocab.TootHashtag)
- func (this *ActivityStreamsImagePropertyIterator) SetType(t vocab.Type) error
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func DeserializeImageProperty ¶
func DeserializeImageProperty(m map[string]interface{}, aliasMap map[string]string) (vocab.ActivityStreamsImageProperty, error)
DeserializeImageProperty creates a "image" property from an interface representation that has been unmarshalled from a text or binary format.
func SetManager ¶
func SetManager(m privateManager)
SetManager sets the manager package-global variable. For internal use only, do not use as part of Application behavior. Must be called at golang init time.
Types ¶
type ActivityStreamsImageProperty ¶
type ActivityStreamsImageProperty struct {
// contains filtered or unexported fields
}
ActivityStreamsImageProperty is the non-functional property "image". It is permitted to have one or more values, and of different value types.
func NewActivityStreamsImageProperty ¶
func NewActivityStreamsImageProperty() *ActivityStreamsImageProperty
NewActivityStreamsImageProperty creates a new image property.
func (*ActivityStreamsImageProperty) AppendActivityStreamsImage ¶
func (this *ActivityStreamsImageProperty) AppendActivityStreamsImage(v vocab.ActivityStreamsImage)
AppendActivityStreamsImage appends a Image value to the back of a list of the property "image". Invalidates iterators that are traversing using Prev.
func (*ActivityStreamsImageProperty) AppendActivityStreamsLink ¶
func (this *ActivityStreamsImageProperty) AppendActivityStreamsLink(v vocab.ActivityStreamsLink)
AppendActivityStreamsLink appends a Link value to the back of a list of the property "image". Invalidates iterators that are traversing using Prev.
func (*ActivityStreamsImageProperty) AppendActivityStreamsMention ¶
func (this *ActivityStreamsImageProperty) AppendActivityStreamsMention(v vocab.ActivityStreamsMention)
AppendActivityStreamsMention appends a Mention value to the back of a list of the property "image". Invalidates iterators that are traversing using Prev.
func (*ActivityStreamsImageProperty) AppendIRI ¶
func (this *ActivityStreamsImageProperty) AppendIRI(v *url.URL)
AppendIRI appends an IRI value to the back of a list of the property "image"
func (*ActivityStreamsImageProperty) AppendTootHashtag ¶
func (this *ActivityStreamsImageProperty) AppendTootHashtag(v vocab.TootHashtag)
AppendTootHashtag appends a Hashtag value to the back of a list of the property "image". Invalidates iterators that are traversing using Prev.
func (*ActivityStreamsImageProperty) AppendType ¶
func (this *ActivityStreamsImageProperty) AppendType(t vocab.Type) error
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 for this property.
func (ActivityStreamsImageProperty) At ¶
func (this ActivityStreamsImageProperty) At(index int) vocab.ActivityStreamsImagePropertyIterator
At returns the property value for the specified index. Panics if the index is out of bounds.
func (ActivityStreamsImageProperty) Begin ¶
func (this ActivityStreamsImageProperty) Begin() vocab.ActivityStreamsImagePropertyIterator
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.
func (ActivityStreamsImageProperty) Empty ¶
func (this ActivityStreamsImageProperty) Empty() bool
Empty returns returns true if there are no elements.
func (ActivityStreamsImageProperty) End ¶
func (this ActivityStreamsImageProperty) End() vocab.ActivityStreamsImagePropertyIterator
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.
func (*ActivityStreamsImageProperty) InsertActivityStreamsImage ¶
func (this *ActivityStreamsImageProperty) InsertActivityStreamsImage(idx int, v vocab.ActivityStreamsImage)
InsertActivityStreamsImage inserts a Image value at the specified index for a property "image". Existing elements at that index and higher are shifted back once. Invalidates all iterators.
func (*ActivityStreamsImageProperty) InsertActivityStreamsLink ¶
func (this *ActivityStreamsImageProperty) InsertActivityStreamsLink(idx int, v vocab.ActivityStreamsLink)
InsertActivityStreamsLink inserts a Link value at the specified index for a property "image". Existing elements at that index and higher are shifted back once. Invalidates all iterators.
func (*ActivityStreamsImageProperty) InsertActivityStreamsMention ¶
func (this *ActivityStreamsImageProperty) InsertActivityStreamsMention(idx int, v vocab.ActivityStreamsMention)
InsertActivityStreamsMention inserts a Mention value at the specified index for a property "image". Existing elements at that index and higher are shifted back once. Invalidates all iterators.
func (*ActivityStreamsImageProperty) InsertIRI ¶
func (this *ActivityStreamsImageProperty) InsertIRI(idx int, v *url.URL)
Insert inserts an IRI value at the specified index for a property "image". Existing elements at that index and higher are shifted back once. Invalidates all iterators.
func (*ActivityStreamsImageProperty) InsertTootHashtag ¶
func (this *ActivityStreamsImageProperty) InsertTootHashtag(idx int, v vocab.TootHashtag)
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.
func (*ActivityStreamsImageProperty) InsertType ¶
func (this *ActivityStreamsImageProperty) InsertType(idx int, t vocab.Type) error
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.
func (ActivityStreamsImageProperty) JSONLDContext ¶
func (this ActivityStreamsImageProperty) JSONLDContext() map[string]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.
func (ActivityStreamsImageProperty) KindIndex ¶
func (this ActivityStreamsImageProperty) KindIndex(idx int) int
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.
func (ActivityStreamsImageProperty) Len ¶
func (this ActivityStreamsImageProperty) Len() (length int)
Len returns the number of values that exist for the "image" property.
func (ActivityStreamsImageProperty) Less ¶
func (this ActivityStreamsImageProperty) Less(i, j int) bool
Less computes whether another property is less than this one. Mixing types results in a consistent but arbitrary ordering
func (ActivityStreamsImageProperty) LessThan ¶
func (this ActivityStreamsImageProperty) LessThan(o vocab.ActivityStreamsImageProperty) 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.
func (ActivityStreamsImageProperty) Name ¶
func (this ActivityStreamsImageProperty) Name() string
Name returns the name of this property ("image") with any alias.
func (*ActivityStreamsImageProperty) PrependActivityStreamsImage ¶
func (this *ActivityStreamsImageProperty) PrependActivityStreamsImage(v vocab.ActivityStreamsImage)
PrependActivityStreamsImage prepends a Image value to the front of a list of the property "image". Invalidates all iterators.
func (*ActivityStreamsImageProperty) PrependActivityStreamsLink ¶
func (this *ActivityStreamsImageProperty) PrependActivityStreamsLink(v vocab.ActivityStreamsLink)
PrependActivityStreamsLink prepends a Link value to the front of a list of the property "image". Invalidates all iterators.
func (*ActivityStreamsImageProperty) PrependActivityStreamsMention ¶
func (this *ActivityStreamsImageProperty) PrependActivityStreamsMention(v vocab.ActivityStreamsMention)
PrependActivityStreamsMention prepends a Mention value to the front of a list of the property "image". Invalidates all iterators.
func (*ActivityStreamsImageProperty) PrependIRI ¶
func (this *ActivityStreamsImageProperty) PrependIRI(v *url.URL)
PrependIRI prepends an IRI value to the front of a list of the property "image".
func (*ActivityStreamsImageProperty) PrependTootHashtag ¶
func (this *ActivityStreamsImageProperty) PrependTootHashtag(v vocab.TootHashtag)
PrependTootHashtag prepends a Hashtag value to the front of a list of the property "image". Invalidates all iterators.
func (*ActivityStreamsImageProperty) PrependType ¶
func (this *ActivityStreamsImageProperty) PrependType(t vocab.Type) error
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.
func (*ActivityStreamsImageProperty) Remove ¶
func (this *ActivityStreamsImageProperty) Remove(idx int)
Remove deletes an element at the specified index from a list of the property "image", regardless of its type. Panics if the index is out of bounds. Invalidates all iterators.
func (ActivityStreamsImageProperty) Serialize ¶
func (this ActivityStreamsImageProperty) Serialize() (interface{}, error)
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.
func (*ActivityStreamsImageProperty) SetActivityStreamsImage ¶
func (this *ActivityStreamsImageProperty) SetActivityStreamsImage(idx int, v vocab.ActivityStreamsImage)
SetActivityStreamsImage sets a Image value to be at the specified index for the property "image". Panics if the index is out of bounds. Invalidates all iterators.
func (*ActivityStreamsImageProperty) SetActivityStreamsLink ¶
func (this *ActivityStreamsImageProperty) SetActivityStreamsLink(idx int, v vocab.ActivityStreamsLink)
SetActivityStreamsLink sets a Link value to be at the specified index for the property "image". Panics if the index is out of bounds. Invalidates all iterators.
func (*ActivityStreamsImageProperty) SetActivityStreamsMention ¶
func (this *ActivityStreamsImageProperty) SetActivityStreamsMention(idx int, v vocab.ActivityStreamsMention)
SetActivityStreamsMention sets a Mention value to be at the specified index for the property "image". Panics if the index is out of bounds. Invalidates all iterators.
func (*ActivityStreamsImageProperty) SetIRI ¶
func (this *ActivityStreamsImageProperty) SetIRI(idx int, v *url.URL)
SetIRI sets an IRI value to be at the specified index for the property "image". Panics if the index is out of bounds.
func (*ActivityStreamsImageProperty) SetTootHashtag ¶
func (this *ActivityStreamsImageProperty) SetTootHashtag(idx int, v vocab.TootHashtag)
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.
func (*ActivityStreamsImageProperty) SetType ¶
func (this *ActivityStreamsImageProperty) SetType(idx int, t vocab.Type) error
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 index is out of bounds.
func (ActivityStreamsImageProperty) Swap ¶
func (this ActivityStreamsImageProperty) Swap(i, j int)
Swap swaps the location of values at two indices for the "image" property.
type ActivityStreamsImagePropertyIterator ¶
type ActivityStreamsImagePropertyIterator struct {
// contains filtered or unexported fields
}
ActivityStreamsImagePropertyIterator is an iterator for a property. It is permitted to be one of multiple value types. At most, one type of value can be present, or none at all. Setting a value will clear the other types of values so that only one of the 'Is' methods will return true. It is possible to clear all values, so that this property is empty.
func NewActivityStreamsImagePropertyIterator ¶
func NewActivityStreamsImagePropertyIterator() *ActivityStreamsImagePropertyIterator
NewActivityStreamsImagePropertyIterator creates a new ActivityStreamsImage property.
func (ActivityStreamsImagePropertyIterator) GetActivityStreamsImage ¶
func (this ActivityStreamsImagePropertyIterator) GetActivityStreamsImage() vocab.ActivityStreamsImage
GetActivityStreamsImage returns the value of this property. When IsActivityStreamsImage returns false, GetActivityStreamsImage will return an arbitrary value.
func (ActivityStreamsImagePropertyIterator) GetActivityStreamsLink ¶
func (this ActivityStreamsImagePropertyIterator) GetActivityStreamsLink() vocab.ActivityStreamsLink
GetActivityStreamsLink returns the value of this property. When IsActivityStreamsLink returns false, GetActivityStreamsLink will return an arbitrary value.
func (ActivityStreamsImagePropertyIterator) GetActivityStreamsMention ¶
func (this ActivityStreamsImagePropertyIterator) GetActivityStreamsMention() vocab.ActivityStreamsMention
GetActivityStreamsMention returns the value of this property. When IsActivityStreamsMention returns false, GetActivityStreamsMention will return an arbitrary value.
func (ActivityStreamsImagePropertyIterator) GetIRI ¶
func (this ActivityStreamsImagePropertyIterator) GetIRI() *url.URL
GetIRI returns the IRI of this property. When IsIRI returns false, GetIRI will return an arbitrary value.
func (ActivityStreamsImagePropertyIterator) GetTootHashtag ¶
func (this ActivityStreamsImagePropertyIterator) GetTootHashtag() vocab.TootHashtag
GetTootHashtag returns the value of this property. When IsTootHashtag returns false, GetTootHashtag will return an arbitrary value.
func (ActivityStreamsImagePropertyIterator) GetType ¶
func (this ActivityStreamsImagePropertyIterator) GetType() vocab.Type
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.
func (ActivityStreamsImagePropertyIterator) HasAny ¶
func (this ActivityStreamsImagePropertyIterator) HasAny() bool
HasAny returns true if any of the different values is set.
func (ActivityStreamsImagePropertyIterator) IsActivityStreamsImage ¶
func (this ActivityStreamsImagePropertyIterator) IsActivityStreamsImage() 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.
func (ActivityStreamsImagePropertyIterator) IsActivityStreamsLink ¶
func (this ActivityStreamsImagePropertyIterator) IsActivityStreamsLink() bool
IsActivityStreamsLink returns true if this property has a type of "Link". When true, use the GetActivityStreamsLink and SetActivityStreamsLink methods to access and set this property.
func (ActivityStreamsImagePropertyIterator) IsActivityStreamsMention ¶
func (this ActivityStreamsImagePropertyIterator) IsActivityStreamsMention() bool
IsActivityStreamsMention returns true if this property has a type of "Mention". When true, use the GetActivityStreamsMention and SetActivityStreamsMention methods to access and set this property.
func (ActivityStreamsImagePropertyIterator) IsIRI ¶
func (this ActivityStreamsImagePropertyIterator) IsIRI() bool
IsIRI returns true if this property is an IRI. When true, use GetIRI and SetIRI to access and set this property
func (ActivityStreamsImagePropertyIterator) IsTootHashtag ¶
func (this ActivityStreamsImagePropertyIterator) IsTootHashtag() 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.
func (ActivityStreamsImagePropertyIterator) JSONLDContext ¶
func (this ActivityStreamsImagePropertyIterator) JSONLDContext() map[string]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.
func (ActivityStreamsImagePropertyIterator) KindIndex ¶
func (this ActivityStreamsImagePropertyIterator) KindIndex() int
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.
func (ActivityStreamsImagePropertyIterator) LessThan ¶
func (this ActivityStreamsImagePropertyIterator) LessThan(o vocab.ActivityStreamsImagePropertyIterator) 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.
func (ActivityStreamsImagePropertyIterator) Name ¶
func (this ActivityStreamsImagePropertyIterator) Name() string
Name returns the name of this property: "ActivityStreamsImage".
func (ActivityStreamsImagePropertyIterator) Next ¶
func (this ActivityStreamsImagePropertyIterator) Next() vocab.ActivityStreamsImagePropertyIterator
Next returns the next iterator, or nil if there is no next iterator.
func (ActivityStreamsImagePropertyIterator) Prev ¶
func (this ActivityStreamsImagePropertyIterator) Prev() vocab.ActivityStreamsImagePropertyIterator
Prev returns the previous iterator, or nil if there is no previous iterator.
func (*ActivityStreamsImagePropertyIterator) SetActivityStreamsImage ¶
func (this *ActivityStreamsImagePropertyIterator) SetActivityStreamsImage(v vocab.ActivityStreamsImage)
SetActivityStreamsImage sets the value of this property. Calling IsActivityStreamsImage afterwards returns true.
func (*ActivityStreamsImagePropertyIterator) SetActivityStreamsLink ¶
func (this *ActivityStreamsImagePropertyIterator) SetActivityStreamsLink(v vocab.ActivityStreamsLink)
SetActivityStreamsLink sets the value of this property. Calling IsActivityStreamsLink afterwards returns true.
func (*ActivityStreamsImagePropertyIterator) SetActivityStreamsMention ¶
func (this *ActivityStreamsImagePropertyIterator) SetActivityStreamsMention(v vocab.ActivityStreamsMention)
SetActivityStreamsMention sets the value of this property. Calling IsActivityStreamsMention afterwards returns true.
func (*ActivityStreamsImagePropertyIterator) SetIRI ¶
func (this *ActivityStreamsImagePropertyIterator) SetIRI(v *url.URL)
SetIRI sets the value of this property. Calling IsIRI afterwards returns true.
func (*ActivityStreamsImagePropertyIterator) SetTootHashtag ¶
func (this *ActivityStreamsImagePropertyIterator) SetTootHashtag(v vocab.TootHashtag)
SetTootHashtag sets the value of this property. Calling IsTootHashtag afterwards returns true.