activity/vocab/gen_article.go

10141 行
287 KiB
Go

//
package vocab
import (
"fmt"
"net/url"
"time"
)
// ArticleType is an interface for accepting types that extend from 'Article'.
type ArticleType interface {
Serializer
Deserializer
IsAltitude() (ok bool)
GetAltitude() (v float64)
SetAltitude(v float64)
IsAltitudeIRI() (ok bool)
GetAltitudeIRI() (v *url.URL)
SetAltitudeIRI(v *url.URL)
AttachmentLen() (l int)
IsAttachmentObject(index int) (ok bool)
GetAttachmentObject(index int) (v ObjectType)
AppendAttachmentObject(v ObjectType)
PrependAttachmentObject(v ObjectType)
RemoveAttachmentObject(index int)
IsAttachmentLink(index int) (ok bool)
GetAttachmentLink(index int) (v LinkType)
AppendAttachmentLink(v LinkType)
PrependAttachmentLink(v LinkType)
RemoveAttachmentLink(index int)
IsAttachmentIRI(index int) (ok bool)
GetAttachmentIRI(index int) (v *url.URL)
AppendAttachmentIRI(v *url.URL)
PrependAttachmentIRI(v *url.URL)
RemoveAttachmentIRI(index int)
AttributedToLen() (l int)
IsAttributedToObject(index int) (ok bool)
GetAttributedToObject(index int) (v ObjectType)
AppendAttributedToObject(v ObjectType)
PrependAttributedToObject(v ObjectType)
RemoveAttributedToObject(index int)
IsAttributedToLink(index int) (ok bool)
GetAttributedToLink(index int) (v LinkType)
AppendAttributedToLink(v LinkType)
PrependAttributedToLink(v LinkType)
RemoveAttributedToLink(index int)
IsAttributedToIRI(index int) (ok bool)
GetAttributedToIRI(index int) (v *url.URL)
AppendAttributedToIRI(v *url.URL)
PrependAttributedToIRI(v *url.URL)
RemoveAttributedToIRI(index int)
AudienceLen() (l int)
IsAudienceObject(index int) (ok bool)
GetAudienceObject(index int) (v ObjectType)
AppendAudienceObject(v ObjectType)
PrependAudienceObject(v ObjectType)
RemoveAudienceObject(index int)
IsAudienceLink(index int) (ok bool)
GetAudienceLink(index int) (v LinkType)
AppendAudienceLink(v LinkType)
PrependAudienceLink(v LinkType)
RemoveAudienceLink(index int)
IsAudienceIRI(index int) (ok bool)
GetAudienceIRI(index int) (v *url.URL)
AppendAudienceIRI(v *url.URL)
PrependAudienceIRI(v *url.URL)
RemoveAudienceIRI(index int)
ContentLen() (l int)
IsContentString(index int) (ok bool)
GetContentString(index int) (v string)
AppendContentString(v string)
PrependContentString(v string)
RemoveContentString(index int)
IsContentLangString(index int) (ok bool)
GetContentLangString(index int) (v string)
AppendContentLangString(v string)
PrependContentLangString(v string)
RemoveContentLangString(index int)
IsContentIRI(index int) (ok bool)
GetContentIRI(index int) (v *url.URL)
AppendContentIRI(v *url.URL)
PrependContentIRI(v *url.URL)
RemoveContentIRI(index int)
ContentMapLanguages() (l []string)
GetContentMap(l string) (v string)
SetContentMap(l string, v string)
ContextLen() (l int)
IsContextObject(index int) (ok bool)
GetContextObject(index int) (v ObjectType)
AppendContextObject(v ObjectType)
PrependContextObject(v ObjectType)
RemoveContextObject(index int)
IsContextLink(index int) (ok bool)
GetContextLink(index int) (v LinkType)
AppendContextLink(v LinkType)
PrependContextLink(v LinkType)
RemoveContextLink(index int)
IsContextIRI(index int) (ok bool)
GetContextIRI(index int) (v *url.URL)
AppendContextIRI(v *url.URL)
PrependContextIRI(v *url.URL)
RemoveContextIRI(index int)
NameLen() (l int)
IsNameString(index int) (ok bool)
GetNameString(index int) (v string)
AppendNameString(v string)
PrependNameString(v string)
RemoveNameString(index int)
IsNameLangString(index int) (ok bool)
GetNameLangString(index int) (v string)
AppendNameLangString(v string)
PrependNameLangString(v string)
RemoveNameLangString(index int)
IsNameIRI(index int) (ok bool)
GetNameIRI(index int) (v *url.URL)
AppendNameIRI(v *url.URL)
PrependNameIRI(v *url.URL)
RemoveNameIRI(index int)
NameMapLanguages() (l []string)
GetNameMap(l string) (v string)
SetNameMap(l string, v string)
IsEndTime() (ok bool)
GetEndTime() (v time.Time)
SetEndTime(v time.Time)
IsEndTimeIRI() (ok bool)
GetEndTimeIRI() (v *url.URL)
SetEndTimeIRI(v *url.URL)
GeneratorLen() (l int)
IsGeneratorObject(index int) (ok bool)
GetGeneratorObject(index int) (v ObjectType)
AppendGeneratorObject(v ObjectType)
PrependGeneratorObject(v ObjectType)
RemoveGeneratorObject(index int)
IsGeneratorLink(index int) (ok bool)
GetGeneratorLink(index int) (v LinkType)
AppendGeneratorLink(v LinkType)
PrependGeneratorLink(v LinkType)
RemoveGeneratorLink(index int)
IsGeneratorIRI(index int) (ok bool)
GetGeneratorIRI(index int) (v *url.URL)
AppendGeneratorIRI(v *url.URL)
PrependGeneratorIRI(v *url.URL)
RemoveGeneratorIRI(index int)
IconLen() (l int)
IsIconImage(index int) (ok bool)
GetIconImage(index int) (v ImageType)
AppendIconImage(v ImageType)
PrependIconImage(v ImageType)
RemoveIconImage(index int)
IsIconLink(index int) (ok bool)
GetIconLink(index int) (v LinkType)
AppendIconLink(v LinkType)
PrependIconLink(v LinkType)
RemoveIconLink(index int)
IsIconIRI(index int) (ok bool)
GetIconIRI(index int) (v *url.URL)
AppendIconIRI(v *url.URL)
PrependIconIRI(v *url.URL)
RemoveIconIRI(index int)
HasId() (ok bool)
GetId() (v *url.URL)
SetId(v *url.URL)
HasUnknownId() (ok bool)
GetUnknownId() (v interface{})
SetUnknownId(i interface{})
ImageLen() (l int)
IsImageImage(index int) (ok bool)
GetImageImage(index int) (v ImageType)
AppendImageImage(v ImageType)
PrependImageImage(v ImageType)
RemoveImageImage(index int)
IsImageLink(index int) (ok bool)
GetImageLink(index int) (v LinkType)
AppendImageLink(v LinkType)
PrependImageLink(v LinkType)
RemoveImageLink(index int)
IsImageIRI(index int) (ok bool)
GetImageIRI(index int) (v *url.URL)
AppendImageIRI(v *url.URL)
PrependImageIRI(v *url.URL)
RemoveImageIRI(index int)
InReplyToLen() (l int)
IsInReplyToObject(index int) (ok bool)
GetInReplyToObject(index int) (v ObjectType)
AppendInReplyToObject(v ObjectType)
PrependInReplyToObject(v ObjectType)
RemoveInReplyToObject(index int)
IsInReplyToLink(index int) (ok bool)
GetInReplyToLink(index int) (v LinkType)
AppendInReplyToLink(v LinkType)
PrependInReplyToLink(v LinkType)
RemoveInReplyToLink(index int)
IsInReplyToIRI(index int) (ok bool)
GetInReplyToIRI(index int) (v *url.URL)
AppendInReplyToIRI(v *url.URL)
PrependInReplyToIRI(v *url.URL)
RemoveInReplyToIRI(index int)
LocationLen() (l int)
IsLocationObject(index int) (ok bool)
GetLocationObject(index int) (v ObjectType)
AppendLocationObject(v ObjectType)
PrependLocationObject(v ObjectType)
RemoveLocationObject(index int)
IsLocationLink(index int) (ok bool)
GetLocationLink(index int) (v LinkType)
AppendLocationLink(v LinkType)
PrependLocationLink(v LinkType)
RemoveLocationLink(index int)
IsLocationIRI(index int) (ok bool)
GetLocationIRI(index int) (v *url.URL)
AppendLocationIRI(v *url.URL)
PrependLocationIRI(v *url.URL)
RemoveLocationIRI(index int)
PreviewLen() (l int)
IsPreviewObject(index int) (ok bool)
GetPreviewObject(index int) (v ObjectType)
AppendPreviewObject(v ObjectType)
PrependPreviewObject(v ObjectType)
RemovePreviewObject(index int)
IsPreviewLink(index int) (ok bool)
GetPreviewLink(index int) (v LinkType)
AppendPreviewLink(v LinkType)
PrependPreviewLink(v LinkType)
RemovePreviewLink(index int)
IsPreviewIRI(index int) (ok bool)
GetPreviewIRI(index int) (v *url.URL)
AppendPreviewIRI(v *url.URL)
PrependPreviewIRI(v *url.URL)
RemovePreviewIRI(index int)
IsPublished() (ok bool)
GetPublished() (v time.Time)
SetPublished(v time.Time)
IsPublishedIRI() (ok bool)
GetPublishedIRI() (v *url.URL)
SetPublishedIRI(v *url.URL)
IsReplies() (ok bool)
GetReplies() (v CollectionType)
SetReplies(v CollectionType)
IsRepliesIRI() (ok bool)
GetRepliesIRI() (v *url.URL)
SetRepliesIRI(v *url.URL)
IsStartTime() (ok bool)
GetStartTime() (v time.Time)
SetStartTime(v time.Time)
IsStartTimeIRI() (ok bool)
GetStartTimeIRI() (v *url.URL)
SetStartTimeIRI(v *url.URL)
SummaryLen() (l int)
IsSummaryString(index int) (ok bool)
GetSummaryString(index int) (v string)
AppendSummaryString(v string)
PrependSummaryString(v string)
RemoveSummaryString(index int)
IsSummaryLangString(index int) (ok bool)
GetSummaryLangString(index int) (v string)
AppendSummaryLangString(v string)
PrependSummaryLangString(v string)
RemoveSummaryLangString(index int)
IsSummaryIRI(index int) (ok bool)
GetSummaryIRI(index int) (v *url.URL)
AppendSummaryIRI(v *url.URL)
PrependSummaryIRI(v *url.URL)
RemoveSummaryIRI(index int)
SummaryMapLanguages() (l []string)
GetSummaryMap(l string) (v string)
SetSummaryMap(l string, v string)
TagLen() (l int)
IsTagObject(index int) (ok bool)
GetTagObject(index int) (v ObjectType)
AppendTagObject(v ObjectType)
PrependTagObject(v ObjectType)
RemoveTagObject(index int)
IsTagLink(index int) (ok bool)
GetTagLink(index int) (v LinkType)
AppendTagLink(v LinkType)
PrependTagLink(v LinkType)
RemoveTagLink(index int)
IsTagIRI(index int) (ok bool)
GetTagIRI(index int) (v *url.URL)
AppendTagIRI(v *url.URL)
PrependTagIRI(v *url.URL)
RemoveTagIRI(index int)
TypeLen() (l int)
GetType(index int) (v interface{})
AppendType(v interface{})
PrependType(v interface{})
RemoveType(index int)
IsUpdated() (ok bool)
GetUpdated() (v time.Time)
SetUpdated(v time.Time)
IsUpdatedIRI() (ok bool)
GetUpdatedIRI() (v *url.URL)
SetUpdatedIRI(v *url.URL)
UrlLen() (l int)
IsUrlAnyURI(index int) (ok bool)
GetUrlAnyURI(index int) (v *url.URL)
AppendUrlAnyURI(v *url.URL)
PrependUrlAnyURI(v *url.URL)
RemoveUrlAnyURI(index int)
IsUrlLink(index int) (ok bool)
GetUrlLink(index int) (v LinkType)
AppendUrlLink(v LinkType)
PrependUrlLink(v LinkType)
RemoveUrlLink(index int)
ToLen() (l int)
IsToObject(index int) (ok bool)
GetToObject(index int) (v ObjectType)
AppendToObject(v ObjectType)
PrependToObject(v ObjectType)
RemoveToObject(index int)
IsToLink(index int) (ok bool)
GetToLink(index int) (v LinkType)
AppendToLink(v LinkType)
PrependToLink(v LinkType)
RemoveToLink(index int)
IsToIRI(index int) (ok bool)
GetToIRI(index int) (v *url.URL)
AppendToIRI(v *url.URL)
PrependToIRI(v *url.URL)
RemoveToIRI(index int)
BtoLen() (l int)
IsBtoObject(index int) (ok bool)
GetBtoObject(index int) (v ObjectType)
AppendBtoObject(v ObjectType)
PrependBtoObject(v ObjectType)
RemoveBtoObject(index int)
IsBtoLink(index int) (ok bool)
GetBtoLink(index int) (v LinkType)
AppendBtoLink(v LinkType)
PrependBtoLink(v LinkType)
RemoveBtoLink(index int)
IsBtoIRI(index int) (ok bool)
GetBtoIRI(index int) (v *url.URL)
AppendBtoIRI(v *url.URL)
PrependBtoIRI(v *url.URL)
RemoveBtoIRI(index int)
CcLen() (l int)
IsCcObject(index int) (ok bool)
GetCcObject(index int) (v ObjectType)
AppendCcObject(v ObjectType)
PrependCcObject(v ObjectType)
RemoveCcObject(index int)
IsCcLink(index int) (ok bool)
GetCcLink(index int) (v LinkType)
AppendCcLink(v LinkType)
PrependCcLink(v LinkType)
RemoveCcLink(index int)
IsCcIRI(index int) (ok bool)
GetCcIRI(index int) (v *url.URL)
AppendCcIRI(v *url.URL)
PrependCcIRI(v *url.URL)
RemoveCcIRI(index int)
BccLen() (l int)
IsBccObject(index int) (ok bool)
GetBccObject(index int) (v ObjectType)
AppendBccObject(v ObjectType)
PrependBccObject(v ObjectType)
RemoveBccObject(index int)
IsBccLink(index int) (ok bool)
GetBccLink(index int) (v LinkType)
AppendBccLink(v LinkType)
PrependBccLink(v LinkType)
RemoveBccLink(index int)
IsBccIRI(index int) (ok bool)
GetBccIRI(index int) (v *url.URL)
AppendBccIRI(v *url.URL)
PrependBccIRI(v *url.URL)
RemoveBccIRI(index int)
IsMediaType() (ok bool)
GetMediaType() (v string)
SetMediaType(v string)
IsMediaTypeIRI() (ok bool)
GetMediaTypeIRI() (v *url.URL)
SetMediaTypeIRI(v *url.URL)
IsDuration() (ok bool)
GetDuration() (v time.Duration)
SetDuration(v time.Duration)
IsDurationIRI() (ok bool)
GetDurationIRI() (v *url.URL)
SetDurationIRI(v *url.URL)
IsSource() (ok bool)
GetSource() (v ObjectType)
SetSource(v ObjectType)
IsSourceIRI() (ok bool)
GetSourceIRI() (v *url.URL)
SetSourceIRI(v *url.URL)
IsInboxOrderedCollection() (ok bool)
GetInboxOrderedCollection() (v OrderedCollectionType)
SetInboxOrderedCollection(v OrderedCollectionType)
IsInboxAnyURI() (ok bool)
GetInboxAnyURI() (v *url.URL)
SetInboxAnyURI(v *url.URL)
IsOutboxOrderedCollection() (ok bool)
GetOutboxOrderedCollection() (v OrderedCollectionType)
SetOutboxOrderedCollection(v OrderedCollectionType)
IsOutboxAnyURI() (ok bool)
GetOutboxAnyURI() (v *url.URL)
SetOutboxAnyURI(v *url.URL)
IsFollowingCollection() (ok bool)
GetFollowingCollection() (v CollectionType)
SetFollowingCollection(v CollectionType)
IsFollowingOrderedCollection() (ok bool)
GetFollowingOrderedCollection() (v OrderedCollectionType)
SetFollowingOrderedCollection(v OrderedCollectionType)
IsFollowingAnyURI() (ok bool)
GetFollowingAnyURI() (v *url.URL)
SetFollowingAnyURI(v *url.URL)
IsFollowersCollection() (ok bool)
GetFollowersCollection() (v CollectionType)
SetFollowersCollection(v CollectionType)
IsFollowersOrderedCollection() (ok bool)
GetFollowersOrderedCollection() (v OrderedCollectionType)
SetFollowersOrderedCollection(v OrderedCollectionType)
IsFollowersAnyURI() (ok bool)
GetFollowersAnyURI() (v *url.URL)
SetFollowersAnyURI(v *url.URL)
IsLikedCollection() (ok bool)
GetLikedCollection() (v CollectionType)
SetLikedCollection(v CollectionType)
IsLikedOrderedCollection() (ok bool)
GetLikedOrderedCollection() (v OrderedCollectionType)
SetLikedOrderedCollection(v OrderedCollectionType)
IsLikedAnyURI() (ok bool)
GetLikedAnyURI() (v *url.URL)
SetLikedAnyURI(v *url.URL)
IsLikesCollection() (ok bool)
GetLikesCollection() (v CollectionType)
SetLikesCollection(v CollectionType)
IsLikesOrderedCollection() (ok bool)
GetLikesOrderedCollection() (v OrderedCollectionType)
SetLikesOrderedCollection(v OrderedCollectionType)
IsLikesAnyURI() (ok bool)
GetLikesAnyURI() (v *url.URL)
SetLikesAnyURI(v *url.URL)
StreamsLen() (l int)
GetStreams(index int) (v *url.URL)
AppendStreams(v *url.URL)
PrependStreams(v *url.URL)
RemoveStreams(index int)
HasUnknownStreams() (ok bool)
GetUnknownStreams() (v interface{})
SetUnknownStreams(i interface{})
IsPreferredUsername() (ok bool)
GetPreferredUsername() (v string)
SetPreferredUsername(v string)
IsPreferredUsernameIRI() (ok bool)
GetPreferredUsernameIRI() (v *url.URL)
SetPreferredUsernameIRI(v *url.URL)
PreferredUsernameMapLanguages() (l []string)
GetPreferredUsernameMap(l string) (v string)
SetPreferredUsernameMap(l string, v string)
IsEndpoints() (ok bool)
GetEndpoints() (v ObjectType)
SetEndpoints(v ObjectType)
IsEndpointsIRI() (ok bool)
GetEndpointsIRI() (v *url.URL)
SetEndpointsIRI(v *url.URL)
HasProxyUrl() (ok bool)
GetProxyUrl() (v *url.URL)
SetProxyUrl(v *url.URL)
HasUnknownProxyUrl() (ok bool)
GetUnknownProxyUrl() (v interface{})
SetUnknownProxyUrl(i interface{})
HasOauthAuthorizationEndpoint() (ok bool)
GetOauthAuthorizationEndpoint() (v *url.URL)
SetOauthAuthorizationEndpoint(v *url.URL)
HasUnknownOauthAuthorizationEndpoint() (ok bool)
GetUnknownOauthAuthorizationEndpoint() (v interface{})
SetUnknownOauthAuthorizationEndpoint(i interface{})
HasOauthTokenEndpoint() (ok bool)
GetOauthTokenEndpoint() (v *url.URL)
SetOauthTokenEndpoint(v *url.URL)
HasUnknownOauthTokenEndpoint() (ok bool)
GetUnknownOauthTokenEndpoint() (v interface{})
SetUnknownOauthTokenEndpoint(i interface{})
HasProvideClientKey() (ok bool)
GetProvideClientKey() (v *url.URL)
SetProvideClientKey(v *url.URL)
HasUnknownProvideClientKey() (ok bool)
GetUnknownProvideClientKey() (v interface{})
SetUnknownProvideClientKey(i interface{})
HasSignClientKey() (ok bool)
GetSignClientKey() (v *url.URL)
SetSignClientKey(v *url.URL)
HasUnknownSignClientKey() (ok bool)
GetUnknownSignClientKey() (v interface{})
SetUnknownSignClientKey(i interface{})
HasSharedInbox() (ok bool)
GetSharedInbox() (v *url.URL)
SetSharedInbox(v *url.URL)
HasUnknownSharedInbox() (ok bool)
GetUnknownSharedInbox() (v interface{})
SetUnknownSharedInbox(i interface{})
}
// Represents any kind of multi-paragraph written work.
type Article struct {
// An unknown value.
unknown_ map[string]interface{}
// The functional 'altitude' value could have multiple types, but only a single value
altitude *altitudeArticleIntermediateType
// The 'attachment' value could have multiple types and values
attachment []*attachmentArticleIntermediateType
// The 'attributedTo' value could have multiple types and values
attributedTo []*attributedToArticleIntermediateType
// The 'audience' value could have multiple types and values
audience []*audienceArticleIntermediateType
// The 'content' value could have multiple types and values
content []*contentArticleIntermediateType
// The 'contentMap' value holds language-specific values for property 'content'
contentMap map[string]string
// The 'context' value could have multiple types and values
context []*contextArticleIntermediateType
// The 'name' value could have multiple types and values
name []*nameArticleIntermediateType
// The 'nameMap' value holds language-specific values for property 'name'
nameMap map[string]string
// The functional 'endTime' value could have multiple types, but only a single value
endTime *endTimeArticleIntermediateType
// The 'generator' value could have multiple types and values
generator []*generatorArticleIntermediateType
// The 'icon' value could have multiple types and values
icon []*iconArticleIntermediateType
// The functional 'id' value holds a single type and a single value
id *url.URL
// The 'image' value could have multiple types and values
image []*imageArticleIntermediateType
// The 'inReplyTo' value could have multiple types and values
inReplyTo []*inReplyToArticleIntermediateType
// The 'location' value could have multiple types and values
location []*locationArticleIntermediateType
// The 'preview' value could have multiple types and values
preview []*previewArticleIntermediateType
// The functional 'published' value could have multiple types, but only a single value
published *publishedArticleIntermediateType
// The functional 'replies' value could have multiple types, but only a single value
replies *repliesArticleIntermediateType
// The functional 'startTime' value could have multiple types, but only a single value
startTime *startTimeArticleIntermediateType
// The 'summary' value could have multiple types and values
summary []*summaryArticleIntermediateType
// The 'summaryMap' value holds language-specific values for property 'summary'
summaryMap map[string]string
// The 'tag' value could have multiple types and values
tag []*tagArticleIntermediateType
// The 'type' value can hold any type and any number of values
typeName []interface{}
// The functional 'updated' value could have multiple types, but only a single value
updated *updatedArticleIntermediateType
// The 'url' value could have multiple types and values
url []*urlArticleIntermediateType
// The 'to' value could have multiple types and values
to []*toArticleIntermediateType
// The 'bto' value could have multiple types and values
bto []*btoArticleIntermediateType
// The 'cc' value could have multiple types and values
cc []*ccArticleIntermediateType
// The 'bcc' value could have multiple types and values
bcc []*bccArticleIntermediateType
// The functional 'mediaType' value could have multiple types, but only a single value
mediaType *mediaTypeArticleIntermediateType
// The functional 'duration' value could have multiple types, but only a single value
duration *durationArticleIntermediateType
// The functional 'source' value could have multiple types, but only a single value
source *sourceArticleIntermediateType
// The functional 'inbox' value could have multiple types, but only a single value
inbox *inboxArticleIntermediateType
// The functional 'outbox' value could have multiple types, but only a single value
outbox *outboxArticleIntermediateType
// The functional 'following' value could have multiple types, but only a single value
following *followingArticleIntermediateType
// The functional 'followers' value could have multiple types, but only a single value
followers *followersArticleIntermediateType
// The functional 'liked' value could have multiple types, but only a single value
liked *likedArticleIntermediateType
// The functional 'likes' value could have multiple types, but only a single value
likes *likesArticleIntermediateType
// The 'streams' value holds a single type and any number of values
streams []*url.URL
// The functional 'preferredUsername' value could have multiple types, but only a single value
preferredUsername *preferredUsernameArticleIntermediateType
// The 'preferredUsernameMap' value holds language-specific values for property 'preferredUsername'
preferredUsernameMap map[string]string
// The functional 'endpoints' value could have multiple types, but only a single value
endpoints *endpointsArticleIntermediateType
// The functional 'proxyUrl' value holds a single type and a single value
proxyUrl *url.URL
// The functional 'oauthAuthorizationEndpoint' value holds a single type and a single value
oauthAuthorizationEndpoint *url.URL
// The functional 'oauthTokenEndpoint' value holds a single type and a single value
oauthTokenEndpoint *url.URL
// The functional 'provideClientKey' value holds a single type and a single value
provideClientKey *url.URL
// The functional 'signClientKey' value holds a single type and a single value
signClientKey *url.URL
// The functional 'sharedInbox' value holds a single type and a single value
sharedInbox *url.URL
}
// IsAltitude determines whether the call to GetAltitude is safe
func (t *Article) IsAltitude() (ok bool) {
return t.altitude != nil && t.altitude.float != nil
}
// GetAltitude returns the value safely if IsAltitude returned true
func (t *Article) GetAltitude() (v float64) {
return *t.altitude.float
}
// SetAltitude sets the value of altitude to be of float64 type
func (t *Article) SetAltitude(v float64) {
t.altitude = &altitudeArticleIntermediateType{float: &v}
}
// IsAltitudeIRI determines whether the call to GetAltitudeIRI is safe
func (t *Article) IsAltitudeIRI() (ok bool) {
return t.altitude != nil && t.altitude.IRI != nil
}
// GetAltitudeIRI returns the value safely if IsAltitudeIRI returned true
func (t *Article) GetAltitudeIRI() (v *url.URL) {
return t.altitude.IRI
}
// SetAltitudeIRI sets the value of altitude to be of *url.URL type
func (t *Article) SetAltitudeIRI(v *url.URL) {
t.altitude = &altitudeArticleIntermediateType{IRI: v}
}
// HasUnknownAltitude determines whether the call to GetUnknownAltitude is safe
func (t *Article) HasUnknownAltitude() (ok bool) {
return t.altitude != nil && t.altitude.unknown_ != nil
}
// GetUnknownAltitude returns the unknown value for altitude
func (t *Article) GetUnknownAltitude() (v interface{}) {
return t.altitude.unknown_
}
// SetUnknownAltitude sets the unknown value of altitude
func (t *Article) SetUnknownAltitude(i interface{}) {
if t.unknown_ == nil {
t.unknown_ = make(map[string]interface{})
}
tmp := &altitudeArticleIntermediateType{}
tmp.unknown_ = i
t.altitude = tmp
}
// AttachmentLen determines the number of elements able to be used for the IsAttachmentObject, GetAttachmentObject, and RemoveAttachmentObject functions
func (t *Article) AttachmentLen() (l int) {
return len(t.attachment)
}
// IsAttachmentObject determines whether the call to GetAttachmentObject is safe for the specified index
func (t *Article) IsAttachmentObject(index int) (ok bool) {
return t.attachment[index].Object != nil
}
// GetAttachmentObject returns the value safely if IsAttachmentObject returned true for the specified index
func (t *Article) GetAttachmentObject(index int) (v ObjectType) {
return t.attachment[index].Object
}
// AppendAttachmentObject adds to the back of attachment a ObjectType type
func (t *Article) AppendAttachmentObject(v ObjectType) {
t.attachment = append(t.attachment, &attachmentArticleIntermediateType{Object: v})
}
// PrependAttachmentObject adds to the front of attachment a ObjectType type
func (t *Article) PrependAttachmentObject(v ObjectType) {
t.attachment = append([]*attachmentArticleIntermediateType{&attachmentArticleIntermediateType{Object: v}}, t.attachment...)
}
// RemoveAttachmentObject deletes the value from the specified index
func (t *Article) RemoveAttachmentObject(index int) {
copy(t.attachment[index:], t.attachment[index+1:])
t.attachment[len(t.attachment)-1] = nil
t.attachment = t.attachment[:len(t.attachment)-1]
}
// IsAttachmentLink determines whether the call to GetAttachmentLink is safe for the specified index
func (t *Article) IsAttachmentLink(index int) (ok bool) {
return t.attachment[index].Link != nil
}
// GetAttachmentLink returns the value safely if IsAttachmentLink returned true for the specified index
func (t *Article) GetAttachmentLink(index int) (v LinkType) {
return t.attachment[index].Link
}
// AppendAttachmentLink adds to the back of attachment a LinkType type
func (t *Article) AppendAttachmentLink(v LinkType) {
t.attachment = append(t.attachment, &attachmentArticleIntermediateType{Link: v})
}
// PrependAttachmentLink adds to the front of attachment a LinkType type
func (t *Article) PrependAttachmentLink(v LinkType) {
t.attachment = append([]*attachmentArticleIntermediateType{&attachmentArticleIntermediateType{Link: v}}, t.attachment...)
}
// RemoveAttachmentLink deletes the value from the specified index
func (t *Article) RemoveAttachmentLink(index int) {
copy(t.attachment[index:], t.attachment[index+1:])
t.attachment[len(t.attachment)-1] = nil
t.attachment = t.attachment[:len(t.attachment)-1]
}
// IsAttachmentIRI determines whether the call to GetAttachmentIRI is safe for the specified index
func (t *Article) IsAttachmentIRI(index int) (ok bool) {
return t.attachment[index].IRI != nil
}
// GetAttachmentIRI returns the value safely if IsAttachmentIRI returned true for the specified index
func (t *Article) GetAttachmentIRI(index int) (v *url.URL) {
return t.attachment[index].IRI
}
// AppendAttachmentIRI adds to the back of attachment a *url.URL type
func (t *Article) AppendAttachmentIRI(v *url.URL) {
t.attachment = append(t.attachment, &attachmentArticleIntermediateType{IRI: v})
}
// PrependAttachmentIRI adds to the front of attachment a *url.URL type
func (t *Article) PrependAttachmentIRI(v *url.URL) {
t.attachment = append([]*attachmentArticleIntermediateType{&attachmentArticleIntermediateType{IRI: v}}, t.attachment...)
}
// RemoveAttachmentIRI deletes the value from the specified index
func (t *Article) RemoveAttachmentIRI(index int) {
copy(t.attachment[index:], t.attachment[index+1:])
t.attachment[len(t.attachment)-1] = nil
t.attachment = t.attachment[:len(t.attachment)-1]
}
// HasUnknownAttachment determines whether the call to GetUnknownAttachment is safe
func (t *Article) HasUnknownAttachment() (ok bool) {
return t.attachment != nil && t.attachment[0].unknown_ != nil
}
// GetUnknownAttachment returns the unknown value for attachment
func (t *Article) GetUnknownAttachment() (v interface{}) {
return t.attachment[0].unknown_
}
// SetUnknownAttachment sets the unknown value of attachment
func (t *Article) SetUnknownAttachment(i interface{}) {
if t.unknown_ == nil {
t.unknown_ = make(map[string]interface{})
}
tmp := &attachmentArticleIntermediateType{}
tmp.unknown_ = i
t.attachment = append(t.attachment, tmp)
}
// AttributedToLen determines the number of elements able to be used for the IsAttributedToObject, GetAttributedToObject, and RemoveAttributedToObject functions
func (t *Article) AttributedToLen() (l int) {
return len(t.attributedTo)
}
// IsAttributedToObject determines whether the call to GetAttributedToObject is safe for the specified index
func (t *Article) IsAttributedToObject(index int) (ok bool) {
return t.attributedTo[index].Object != nil
}
// GetAttributedToObject returns the value safely if IsAttributedToObject returned true for the specified index
func (t *Article) GetAttributedToObject(index int) (v ObjectType) {
return t.attributedTo[index].Object
}
// AppendAttributedToObject adds to the back of attributedTo a ObjectType type
func (t *Article) AppendAttributedToObject(v ObjectType) {
t.attributedTo = append(t.attributedTo, &attributedToArticleIntermediateType{Object: v})
}
// PrependAttributedToObject adds to the front of attributedTo a ObjectType type
func (t *Article) PrependAttributedToObject(v ObjectType) {
t.attributedTo = append([]*attributedToArticleIntermediateType{&attributedToArticleIntermediateType{Object: v}}, t.attributedTo...)
}
// RemoveAttributedToObject deletes the value from the specified index
func (t *Article) RemoveAttributedToObject(index int) {
copy(t.attributedTo[index:], t.attributedTo[index+1:])
t.attributedTo[len(t.attributedTo)-1] = nil
t.attributedTo = t.attributedTo[:len(t.attributedTo)-1]
}
// IsAttributedToLink determines whether the call to GetAttributedToLink is safe for the specified index
func (t *Article) IsAttributedToLink(index int) (ok bool) {
return t.attributedTo[index].Link != nil
}
// GetAttributedToLink returns the value safely if IsAttributedToLink returned true for the specified index
func (t *Article) GetAttributedToLink(index int) (v LinkType) {
return t.attributedTo[index].Link
}
// AppendAttributedToLink adds to the back of attributedTo a LinkType type
func (t *Article) AppendAttributedToLink(v LinkType) {
t.attributedTo = append(t.attributedTo, &attributedToArticleIntermediateType{Link: v})
}
// PrependAttributedToLink adds to the front of attributedTo a LinkType type
func (t *Article) PrependAttributedToLink(v LinkType) {
t.attributedTo = append([]*attributedToArticleIntermediateType{&attributedToArticleIntermediateType{Link: v}}, t.attributedTo...)
}
// RemoveAttributedToLink deletes the value from the specified index
func (t *Article) RemoveAttributedToLink(index int) {
copy(t.attributedTo[index:], t.attributedTo[index+1:])
t.attributedTo[len(t.attributedTo)-1] = nil
t.attributedTo = t.attributedTo[:len(t.attributedTo)-1]
}
// IsAttributedToIRI determines whether the call to GetAttributedToIRI is safe for the specified index
func (t *Article) IsAttributedToIRI(index int) (ok bool) {
return t.attributedTo[index].IRI != nil
}
// GetAttributedToIRI returns the value safely if IsAttributedToIRI returned true for the specified index
func (t *Article) GetAttributedToIRI(index int) (v *url.URL) {
return t.attributedTo[index].IRI
}
// AppendAttributedToIRI adds to the back of attributedTo a *url.URL type
func (t *Article) AppendAttributedToIRI(v *url.URL) {
t.attributedTo = append(t.attributedTo, &attributedToArticleIntermediateType{IRI: v})
}
// PrependAttributedToIRI adds to the front of attributedTo a *url.URL type
func (t *Article) PrependAttributedToIRI(v *url.URL) {
t.attributedTo = append([]*attributedToArticleIntermediateType{&attributedToArticleIntermediateType{IRI: v}}, t.attributedTo...)
}
// RemoveAttributedToIRI deletes the value from the specified index
func (t *Article) RemoveAttributedToIRI(index int) {
copy(t.attributedTo[index:], t.attributedTo[index+1:])
t.attributedTo[len(t.attributedTo)-1] = nil
t.attributedTo = t.attributedTo[:len(t.attributedTo)-1]
}
// HasUnknownAttributedTo determines whether the call to GetUnknownAttributedTo is safe
func (t *Article) HasUnknownAttributedTo() (ok bool) {
return t.attributedTo != nil && t.attributedTo[0].unknown_ != nil
}
// GetUnknownAttributedTo returns the unknown value for attributedTo
func (t *Article) GetUnknownAttributedTo() (v interface{}) {
return t.attributedTo[0].unknown_
}
// SetUnknownAttributedTo sets the unknown value of attributedTo
func (t *Article) SetUnknownAttributedTo(i interface{}) {
if t.unknown_ == nil {
t.unknown_ = make(map[string]interface{})
}
tmp := &attributedToArticleIntermediateType{}
tmp.unknown_ = i
t.attributedTo = append(t.attributedTo, tmp)
}
// AudienceLen determines the number of elements able to be used for the IsAudienceObject, GetAudienceObject, and RemoveAudienceObject functions
func (t *Article) AudienceLen() (l int) {
return len(t.audience)
}
// IsAudienceObject determines whether the call to GetAudienceObject is safe for the specified index
func (t *Article) IsAudienceObject(index int) (ok bool) {
return t.audience[index].Object != nil
}
// GetAudienceObject returns the value safely if IsAudienceObject returned true for the specified index
func (t *Article) GetAudienceObject(index int) (v ObjectType) {
return t.audience[index].Object
}
// AppendAudienceObject adds to the back of audience a ObjectType type
func (t *Article) AppendAudienceObject(v ObjectType) {
t.audience = append(t.audience, &audienceArticleIntermediateType{Object: v})
}
// PrependAudienceObject adds to the front of audience a ObjectType type
func (t *Article) PrependAudienceObject(v ObjectType) {
t.audience = append([]*audienceArticleIntermediateType{&audienceArticleIntermediateType{Object: v}}, t.audience...)
}
// RemoveAudienceObject deletes the value from the specified index
func (t *Article) RemoveAudienceObject(index int) {
copy(t.audience[index:], t.audience[index+1:])
t.audience[len(t.audience)-1] = nil
t.audience = t.audience[:len(t.audience)-1]
}
// IsAudienceLink determines whether the call to GetAudienceLink is safe for the specified index
func (t *Article) IsAudienceLink(index int) (ok bool) {
return t.audience[index].Link != nil
}
// GetAudienceLink returns the value safely if IsAudienceLink returned true for the specified index
func (t *Article) GetAudienceLink(index int) (v LinkType) {
return t.audience[index].Link
}
// AppendAudienceLink adds to the back of audience a LinkType type
func (t *Article) AppendAudienceLink(v LinkType) {
t.audience = append(t.audience, &audienceArticleIntermediateType{Link: v})
}
// PrependAudienceLink adds to the front of audience a LinkType type
func (t *Article) PrependAudienceLink(v LinkType) {
t.audience = append([]*audienceArticleIntermediateType{&audienceArticleIntermediateType{Link: v}}, t.audience...)
}
// RemoveAudienceLink deletes the value from the specified index
func (t *Article) RemoveAudienceLink(index int) {
copy(t.audience[index:], t.audience[index+1:])
t.audience[len(t.audience)-1] = nil
t.audience = t.audience[:len(t.audience)-1]
}
// IsAudienceIRI determines whether the call to GetAudienceIRI is safe for the specified index
func (t *Article) IsAudienceIRI(index int) (ok bool) {
return t.audience[index].IRI != nil
}
// GetAudienceIRI returns the value safely if IsAudienceIRI returned true for the specified index
func (t *Article) GetAudienceIRI(index int) (v *url.URL) {
return t.audience[index].IRI
}
// AppendAudienceIRI adds to the back of audience a *url.URL type
func (t *Article) AppendAudienceIRI(v *url.URL) {
t.audience = append(t.audience, &audienceArticleIntermediateType{IRI: v})
}
// PrependAudienceIRI adds to the front of audience a *url.URL type
func (t *Article) PrependAudienceIRI(v *url.URL) {
t.audience = append([]*audienceArticleIntermediateType{&audienceArticleIntermediateType{IRI: v}}, t.audience...)
}
// RemoveAudienceIRI deletes the value from the specified index
func (t *Article) RemoveAudienceIRI(index int) {
copy(t.audience[index:], t.audience[index+1:])
t.audience[len(t.audience)-1] = nil
t.audience = t.audience[:len(t.audience)-1]
}
// HasUnknownAudience determines whether the call to GetUnknownAudience is safe
func (t *Article) HasUnknownAudience() (ok bool) {
return t.audience != nil && t.audience[0].unknown_ != nil
}
// GetUnknownAudience returns the unknown value for audience
func (t *Article) GetUnknownAudience() (v interface{}) {
return t.audience[0].unknown_
}
// SetUnknownAudience sets the unknown value of audience
func (t *Article) SetUnknownAudience(i interface{}) {
if t.unknown_ == nil {
t.unknown_ = make(map[string]interface{})
}
tmp := &audienceArticleIntermediateType{}
tmp.unknown_ = i
t.audience = append(t.audience, tmp)
}
// ContentLen determines the number of elements able to be used for the IsContentString, GetContentString, and RemoveContentString functions
func (t *Article) ContentLen() (l int) {
return len(t.content)
}
// IsContentString determines whether the call to GetContentString is safe for the specified index
func (t *Article) IsContentString(index int) (ok bool) {
return t.content[index].stringName != nil
}
// GetContentString returns the value safely if IsContentString returned true for the specified index
func (t *Article) GetContentString(index int) (v string) {
return *t.content[index].stringName
}
// AppendContentString adds to the back of content a string type
func (t *Article) AppendContentString(v string) {
t.content = append(t.content, &contentArticleIntermediateType{stringName: &v})
}
// PrependContentString adds to the front of content a string type
func (t *Article) PrependContentString(v string) {
t.content = append([]*contentArticleIntermediateType{&contentArticleIntermediateType{stringName: &v}}, t.content...)
}
// RemoveContentString deletes the value from the specified index
func (t *Article) RemoveContentString(index int) {
copy(t.content[index:], t.content[index+1:])
t.content[len(t.content)-1] = nil
t.content = t.content[:len(t.content)-1]
}
// IsContentLangString determines whether the call to GetContentLangString is safe for the specified index
func (t *Article) IsContentLangString(index int) (ok bool) {
return t.content[index].langString != nil
}
// GetContentLangString returns the value safely if IsContentLangString returned true for the specified index
func (t *Article) GetContentLangString(index int) (v string) {
return *t.content[index].langString
}
// AppendContentLangString adds to the back of content a string type
func (t *Article) AppendContentLangString(v string) {
t.content = append(t.content, &contentArticleIntermediateType{langString: &v})
}
// PrependContentLangString adds to the front of content a string type
func (t *Article) PrependContentLangString(v string) {
t.content = append([]*contentArticleIntermediateType{&contentArticleIntermediateType{langString: &v}}, t.content...)
}
// RemoveContentLangString deletes the value from the specified index
func (t *Article) RemoveContentLangString(index int) {
copy(t.content[index:], t.content[index+1:])
t.content[len(t.content)-1] = nil
t.content = t.content[:len(t.content)-1]
}
// IsContentIRI determines whether the call to GetContentIRI is safe for the specified index
func (t *Article) IsContentIRI(index int) (ok bool) {
return t.content[index].IRI != nil
}
// GetContentIRI returns the value safely if IsContentIRI returned true for the specified index
func (t *Article) GetContentIRI(index int) (v *url.URL) {
return t.content[index].IRI
}
// AppendContentIRI adds to the back of content a *url.URL type
func (t *Article) AppendContentIRI(v *url.URL) {
t.content = append(t.content, &contentArticleIntermediateType{IRI: v})
}
// PrependContentIRI adds to the front of content a *url.URL type
func (t *Article) PrependContentIRI(v *url.URL) {
t.content = append([]*contentArticleIntermediateType{&contentArticleIntermediateType{IRI: v}}, t.content...)
}
// RemoveContentIRI deletes the value from the specified index
func (t *Article) RemoveContentIRI(index int) {
copy(t.content[index:], t.content[index+1:])
t.content[len(t.content)-1] = nil
t.content = t.content[:len(t.content)-1]
}
// HasUnknownContent determines whether the call to GetUnknownContent is safe
func (t *Article) HasUnknownContent() (ok bool) {
return t.content != nil && t.content[0].unknown_ != nil
}
// GetUnknownContent returns the unknown value for content
func (t *Article) GetUnknownContent() (v interface{}) {
return t.content[0].unknown_
}
// SetUnknownContent sets the unknown value of content
func (t *Article) SetUnknownContent(i interface{}) {
if t.unknown_ == nil {
t.unknown_ = make(map[string]interface{})
}
tmp := &contentArticleIntermediateType{}
tmp.unknown_ = i
t.content = append(t.content, tmp)
}
// ContentMapLanguages returns all languages for this property's language mapping, or nil if there are none.
func (t *Article) ContentMapLanguages() (l []string) {
if t.contentMap == nil || len(t.contentMap) == 0 {
return nil
}
for k := range t.contentMap {
l = append(l, k)
}
return
}
// GetContentMap retrieves the value of the property for the specified language, or an empty string if it does not exist
func (t *Article) GetContentMap(l string) (v string) {
if t.contentMap == nil {
return ""
}
ok := false
v, ok = t.contentMap[l]
if !ok {
return ""
}
return v
}
// SetContentMap sets the value of the property for the specified language
func (t *Article) SetContentMap(l string, v string) {
if t.contentMap == nil {
t.contentMap = make(map[string]string)
}
t.contentMap[l] = v
}
// ContextLen determines the number of elements able to be used for the IsContextObject, GetContextObject, and RemoveContextObject functions
func (t *Article) ContextLen() (l int) {
return len(t.context)
}
// IsContextObject determines whether the call to GetContextObject is safe for the specified index
func (t *Article) IsContextObject(index int) (ok bool) {
return t.context[index].Object != nil
}
// GetContextObject returns the value safely if IsContextObject returned true for the specified index
func (t *Article) GetContextObject(index int) (v ObjectType) {
return t.context[index].Object
}
// AppendContextObject adds to the back of context a ObjectType type
func (t *Article) AppendContextObject(v ObjectType) {
t.context = append(t.context, &contextArticleIntermediateType{Object: v})
}
// PrependContextObject adds to the front of context a ObjectType type
func (t *Article) PrependContextObject(v ObjectType) {
t.context = append([]*contextArticleIntermediateType{&contextArticleIntermediateType{Object: v}}, t.context...)
}
// RemoveContextObject deletes the value from the specified index
func (t *Article) RemoveContextObject(index int) {
copy(t.context[index:], t.context[index+1:])
t.context[len(t.context)-1] = nil
t.context = t.context[:len(t.context)-1]
}
// IsContextLink determines whether the call to GetContextLink is safe for the specified index
func (t *Article) IsContextLink(index int) (ok bool) {
return t.context[index].Link != nil
}
// GetContextLink returns the value safely if IsContextLink returned true for the specified index
func (t *Article) GetContextLink(index int) (v LinkType) {
return t.context[index].Link
}
// AppendContextLink adds to the back of context a LinkType type
func (t *Article) AppendContextLink(v LinkType) {
t.context = append(t.context, &contextArticleIntermediateType{Link: v})
}
// PrependContextLink adds to the front of context a LinkType type
func (t *Article) PrependContextLink(v LinkType) {
t.context = append([]*contextArticleIntermediateType{&contextArticleIntermediateType{Link: v}}, t.context...)
}
// RemoveContextLink deletes the value from the specified index
func (t *Article) RemoveContextLink(index int) {
copy(t.context[index:], t.context[index+1:])
t.context[len(t.context)-1] = nil
t.context = t.context[:len(t.context)-1]
}
// IsContextIRI determines whether the call to GetContextIRI is safe for the specified index
func (t *Article) IsContextIRI(index int) (ok bool) {
return t.context[index].IRI != nil
}
// GetContextIRI returns the value safely if IsContextIRI returned true for the specified index
func (t *Article) GetContextIRI(index int) (v *url.URL) {
return t.context[index].IRI
}
// AppendContextIRI adds to the back of context a *url.URL type
func (t *Article) AppendContextIRI(v *url.URL) {
t.context = append(t.context, &contextArticleIntermediateType{IRI: v})
}
// PrependContextIRI adds to the front of context a *url.URL type
func (t *Article) PrependContextIRI(v *url.URL) {
t.context = append([]*contextArticleIntermediateType{&contextArticleIntermediateType{IRI: v}}, t.context...)
}
// RemoveContextIRI deletes the value from the specified index
func (t *Article) RemoveContextIRI(index int) {
copy(t.context[index:], t.context[index+1:])
t.context[len(t.context)-1] = nil
t.context = t.context[:len(t.context)-1]
}
// HasUnknownContext determines whether the call to GetUnknownContext is safe
func (t *Article) HasUnknownContext() (ok bool) {
return t.context != nil && t.context[0].unknown_ != nil
}
// GetUnknownContext returns the unknown value for context
func (t *Article) GetUnknownContext() (v interface{}) {
return t.context[0].unknown_
}
// SetUnknownContext sets the unknown value of context
func (t *Article) SetUnknownContext(i interface{}) {
if t.unknown_ == nil {
t.unknown_ = make(map[string]interface{})
}
tmp := &contextArticleIntermediateType{}
tmp.unknown_ = i
t.context = append(t.context, tmp)
}
// NameLen determines the number of elements able to be used for the IsNameString, GetNameString, and RemoveNameString functions
func (t *Article) NameLen() (l int) {
return len(t.name)
}
// IsNameString determines whether the call to GetNameString is safe for the specified index
func (t *Article) IsNameString(index int) (ok bool) {
return t.name[index].stringName != nil
}
// GetNameString returns the value safely if IsNameString returned true for the specified index
func (t *Article) GetNameString(index int) (v string) {
return *t.name[index].stringName
}
// AppendNameString adds to the back of name a string type
func (t *Article) AppendNameString(v string) {
t.name = append(t.name, &nameArticleIntermediateType{stringName: &v})
}
// PrependNameString adds to the front of name a string type
func (t *Article) PrependNameString(v string) {
t.name = append([]*nameArticleIntermediateType{&nameArticleIntermediateType{stringName: &v}}, t.name...)
}
// RemoveNameString deletes the value from the specified index
func (t *Article) RemoveNameString(index int) {
copy(t.name[index:], t.name[index+1:])
t.name[len(t.name)-1] = nil
t.name = t.name[:len(t.name)-1]
}
// IsNameLangString determines whether the call to GetNameLangString is safe for the specified index
func (t *Article) IsNameLangString(index int) (ok bool) {
return t.name[index].langString != nil
}
// GetNameLangString returns the value safely if IsNameLangString returned true for the specified index
func (t *Article) GetNameLangString(index int) (v string) {
return *t.name[index].langString
}
// AppendNameLangString adds to the back of name a string type
func (t *Article) AppendNameLangString(v string) {
t.name = append(t.name, &nameArticleIntermediateType{langString: &v})
}
// PrependNameLangString adds to the front of name a string type
func (t *Article) PrependNameLangString(v string) {
t.name = append([]*nameArticleIntermediateType{&nameArticleIntermediateType{langString: &v}}, t.name...)
}
// RemoveNameLangString deletes the value from the specified index
func (t *Article) RemoveNameLangString(index int) {
copy(t.name[index:], t.name[index+1:])
t.name[len(t.name)-1] = nil
t.name = t.name[:len(t.name)-1]
}
// IsNameIRI determines whether the call to GetNameIRI is safe for the specified index
func (t *Article) IsNameIRI(index int) (ok bool) {
return t.name[index].IRI != nil
}
// GetNameIRI returns the value safely if IsNameIRI returned true for the specified index
func (t *Article) GetNameIRI(index int) (v *url.URL) {
return t.name[index].IRI
}
// AppendNameIRI adds to the back of name a *url.URL type
func (t *Article) AppendNameIRI(v *url.URL) {
t.name = append(t.name, &nameArticleIntermediateType{IRI: v})
}
// PrependNameIRI adds to the front of name a *url.URL type
func (t *Article) PrependNameIRI(v *url.URL) {
t.name = append([]*nameArticleIntermediateType{&nameArticleIntermediateType{IRI: v}}, t.name...)
}
// RemoveNameIRI deletes the value from the specified index
func (t *Article) RemoveNameIRI(index int) {
copy(t.name[index:], t.name[index+1:])
t.name[len(t.name)-1] = nil
t.name = t.name[:len(t.name)-1]
}
// HasUnknownName determines whether the call to GetUnknownName is safe
func (t *Article) HasUnknownName() (ok bool) {
return t.name != nil && t.name[0].unknown_ != nil
}
// GetUnknownName returns the unknown value for name
func (t *Article) GetUnknownName() (v interface{}) {
return t.name[0].unknown_
}
// SetUnknownName sets the unknown value of name
func (t *Article) SetUnknownName(i interface{}) {
if t.unknown_ == nil {
t.unknown_ = make(map[string]interface{})
}
tmp := &nameArticleIntermediateType{}
tmp.unknown_ = i
t.name = append(t.name, tmp)
}
// NameMapLanguages returns all languages for this property's language mapping, or nil if there are none.
func (t *Article) NameMapLanguages() (l []string) {
if t.nameMap == nil || len(t.nameMap) == 0 {
return nil
}
for k := range t.nameMap {
l = append(l, k)
}
return
}
// GetNameMap retrieves the value of the property for the specified language, or an empty string if it does not exist
func (t *Article) GetNameMap(l string) (v string) {
if t.nameMap == nil {
return ""
}
ok := false
v, ok = t.nameMap[l]
if !ok {
return ""
}
return v
}
// SetNameMap sets the value of the property for the specified language
func (t *Article) SetNameMap(l string, v string) {
if t.nameMap == nil {
t.nameMap = make(map[string]string)
}
t.nameMap[l] = v
}
// IsEndTime determines whether the call to GetEndTime is safe
func (t *Article) IsEndTime() (ok bool) {
return t.endTime != nil && t.endTime.dateTime != nil
}
// GetEndTime returns the value safely if IsEndTime returned true
func (t *Article) GetEndTime() (v time.Time) {
return *t.endTime.dateTime
}
// SetEndTime sets the value of endTime to be of time.Time type
func (t *Article) SetEndTime(v time.Time) {
t.endTime = &endTimeArticleIntermediateType{dateTime: &v}
}
// IsEndTimeIRI determines whether the call to GetEndTimeIRI is safe
func (t *Article) IsEndTimeIRI() (ok bool) {
return t.endTime != nil && t.endTime.IRI != nil
}
// GetEndTimeIRI returns the value safely if IsEndTimeIRI returned true
func (t *Article) GetEndTimeIRI() (v *url.URL) {
return t.endTime.IRI
}
// SetEndTimeIRI sets the value of endTime to be of *url.URL type
func (t *Article) SetEndTimeIRI(v *url.URL) {
t.endTime = &endTimeArticleIntermediateType{IRI: v}
}
// HasUnknownEndTime determines whether the call to GetUnknownEndTime is safe
func (t *Article) HasUnknownEndTime() (ok bool) {
return t.endTime != nil && t.endTime.unknown_ != nil
}
// GetUnknownEndTime returns the unknown value for endTime
func (t *Article) GetUnknownEndTime() (v interface{}) {
return t.endTime.unknown_
}
// SetUnknownEndTime sets the unknown value of endTime
func (t *Article) SetUnknownEndTime(i interface{}) {
if t.unknown_ == nil {
t.unknown_ = make(map[string]interface{})
}
tmp := &endTimeArticleIntermediateType{}
tmp.unknown_ = i
t.endTime = tmp
}
// GeneratorLen determines the number of elements able to be used for the IsGeneratorObject, GetGeneratorObject, and RemoveGeneratorObject functions
func (t *Article) GeneratorLen() (l int) {
return len(t.generator)
}
// IsGeneratorObject determines whether the call to GetGeneratorObject is safe for the specified index
func (t *Article) IsGeneratorObject(index int) (ok bool) {
return t.generator[index].Object != nil
}
// GetGeneratorObject returns the value safely if IsGeneratorObject returned true for the specified index
func (t *Article) GetGeneratorObject(index int) (v ObjectType) {
return t.generator[index].Object
}
// AppendGeneratorObject adds to the back of generator a ObjectType type
func (t *Article) AppendGeneratorObject(v ObjectType) {
t.generator = append(t.generator, &generatorArticleIntermediateType{Object: v})
}
// PrependGeneratorObject adds to the front of generator a ObjectType type
func (t *Article) PrependGeneratorObject(v ObjectType) {
t.generator = append([]*generatorArticleIntermediateType{&generatorArticleIntermediateType{Object: v}}, t.generator...)
}
// RemoveGeneratorObject deletes the value from the specified index
func (t *Article) RemoveGeneratorObject(index int) {
copy(t.generator[index:], t.generator[index+1:])
t.generator[len(t.generator)-1] = nil
t.generator = t.generator[:len(t.generator)-1]
}
// IsGeneratorLink determines whether the call to GetGeneratorLink is safe for the specified index
func (t *Article) IsGeneratorLink(index int) (ok bool) {
return t.generator[index].Link != nil
}
// GetGeneratorLink returns the value safely if IsGeneratorLink returned true for the specified index
func (t *Article) GetGeneratorLink(index int) (v LinkType) {
return t.generator[index].Link
}
// AppendGeneratorLink adds to the back of generator a LinkType type
func (t *Article) AppendGeneratorLink(v LinkType) {
t.generator = append(t.generator, &generatorArticleIntermediateType{Link: v})
}
// PrependGeneratorLink adds to the front of generator a LinkType type
func (t *Article) PrependGeneratorLink(v LinkType) {
t.generator = append([]*generatorArticleIntermediateType{&generatorArticleIntermediateType{Link: v}}, t.generator...)
}
// RemoveGeneratorLink deletes the value from the specified index
func (t *Article) RemoveGeneratorLink(index int) {
copy(t.generator[index:], t.generator[index+1:])
t.generator[len(t.generator)-1] = nil
t.generator = t.generator[:len(t.generator)-1]
}
// IsGeneratorIRI determines whether the call to GetGeneratorIRI is safe for the specified index
func (t *Article) IsGeneratorIRI(index int) (ok bool) {
return t.generator[index].IRI != nil
}
// GetGeneratorIRI returns the value safely if IsGeneratorIRI returned true for the specified index
func (t *Article) GetGeneratorIRI(index int) (v *url.URL) {
return t.generator[index].IRI
}
// AppendGeneratorIRI adds to the back of generator a *url.URL type
func (t *Article) AppendGeneratorIRI(v *url.URL) {
t.generator = append(t.generator, &generatorArticleIntermediateType{IRI: v})
}
// PrependGeneratorIRI adds to the front of generator a *url.URL type
func (t *Article) PrependGeneratorIRI(v *url.URL) {
t.generator = append([]*generatorArticleIntermediateType{&generatorArticleIntermediateType{IRI: v}}, t.generator...)
}
// RemoveGeneratorIRI deletes the value from the specified index
func (t *Article) RemoveGeneratorIRI(index int) {
copy(t.generator[index:], t.generator[index+1:])
t.generator[len(t.generator)-1] = nil
t.generator = t.generator[:len(t.generator)-1]
}
// HasUnknownGenerator determines whether the call to GetUnknownGenerator is safe
func (t *Article) HasUnknownGenerator() (ok bool) {
return t.generator != nil && t.generator[0].unknown_ != nil
}
// GetUnknownGenerator returns the unknown value for generator
func (t *Article) GetUnknownGenerator() (v interface{}) {
return t.generator[0].unknown_
}
// SetUnknownGenerator sets the unknown value of generator
func (t *Article) SetUnknownGenerator(i interface{}) {
if t.unknown_ == nil {
t.unknown_ = make(map[string]interface{})
}
tmp := &generatorArticleIntermediateType{}
tmp.unknown_ = i
t.generator = append(t.generator, tmp)
}
// IconLen determines the number of elements able to be used for the IsIconImage, GetIconImage, and RemoveIconImage functions
func (t *Article) IconLen() (l int) {
return len(t.icon)
}
// IsIconImage determines whether the call to GetIconImage is safe for the specified index
func (t *Article) IsIconImage(index int) (ok bool) {
return t.icon[index].Image != nil
}
// GetIconImage returns the value safely if IsIconImage returned true for the specified index
func (t *Article) GetIconImage(index int) (v ImageType) {
return t.icon[index].Image
}
// AppendIconImage adds to the back of icon a ImageType type
func (t *Article) AppendIconImage(v ImageType) {
t.icon = append(t.icon, &iconArticleIntermediateType{Image: v})
}
// PrependIconImage adds to the front of icon a ImageType type
func (t *Article) PrependIconImage(v ImageType) {
t.icon = append([]*iconArticleIntermediateType{&iconArticleIntermediateType{Image: v}}, t.icon...)
}
// RemoveIconImage deletes the value from the specified index
func (t *Article) RemoveIconImage(index int) {
copy(t.icon[index:], t.icon[index+1:])
t.icon[len(t.icon)-1] = nil
t.icon = t.icon[:len(t.icon)-1]
}
// IsIconLink determines whether the call to GetIconLink is safe for the specified index
func (t *Article) IsIconLink(index int) (ok bool) {
return t.icon[index].Link != nil
}
// GetIconLink returns the value safely if IsIconLink returned true for the specified index
func (t *Article) GetIconLink(index int) (v LinkType) {
return t.icon[index].Link
}
// AppendIconLink adds to the back of icon a LinkType type
func (t *Article) AppendIconLink(v LinkType) {
t.icon = append(t.icon, &iconArticleIntermediateType{Link: v})
}
// PrependIconLink adds to the front of icon a LinkType type
func (t *Article) PrependIconLink(v LinkType) {
t.icon = append([]*iconArticleIntermediateType{&iconArticleIntermediateType{Link: v}}, t.icon...)
}
// RemoveIconLink deletes the value from the specified index
func (t *Article) RemoveIconLink(index int) {
copy(t.icon[index:], t.icon[index+1:])
t.icon[len(t.icon)-1] = nil
t.icon = t.icon[:len(t.icon)-1]
}
// IsIconIRI determines whether the call to GetIconIRI is safe for the specified index
func (t *Article) IsIconIRI(index int) (ok bool) {
return t.icon[index].IRI != nil
}
// GetIconIRI returns the value safely if IsIconIRI returned true for the specified index
func (t *Article) GetIconIRI(index int) (v *url.URL) {
return t.icon[index].IRI
}
// AppendIconIRI adds to the back of icon a *url.URL type
func (t *Article) AppendIconIRI(v *url.URL) {
t.icon = append(t.icon, &iconArticleIntermediateType{IRI: v})
}
// PrependIconIRI adds to the front of icon a *url.URL type
func (t *Article) PrependIconIRI(v *url.URL) {
t.icon = append([]*iconArticleIntermediateType{&iconArticleIntermediateType{IRI: v}}, t.icon...)
}
// RemoveIconIRI deletes the value from the specified index
func (t *Article) RemoveIconIRI(index int) {
copy(t.icon[index:], t.icon[index+1:])
t.icon[len(t.icon)-1] = nil
t.icon = t.icon[:len(t.icon)-1]
}
// HasUnknownIcon determines whether the call to GetUnknownIcon is safe
func (t *Article) HasUnknownIcon() (ok bool) {
return t.icon != nil && t.icon[0].unknown_ != nil
}
// GetUnknownIcon returns the unknown value for icon
func (t *Article) GetUnknownIcon() (v interface{}) {
return t.icon[0].unknown_
}
// SetUnknownIcon sets the unknown value of icon
func (t *Article) SetUnknownIcon(i interface{}) {
if t.unknown_ == nil {
t.unknown_ = make(map[string]interface{})
}
tmp := &iconArticleIntermediateType{}
tmp.unknown_ = i
t.icon = append(t.icon, tmp)
}
// HasId determines whether the call to GetId is safe
func (t *Article) HasId() (ok bool) {
return t.id != nil
}
// GetId returns the value for id
func (t *Article) GetId() (v *url.URL) {
return t.id
}
// SetId sets the value of id
func (t *Article) SetId(v *url.URL) {
t.id = v
}
// HasUnknownId determines whether the call to GetUnknownId is safe
func (t *Article) HasUnknownId() (ok bool) {
return t.unknown_ != nil && t.unknown_["id"] != nil
}
// GetUnknownId returns the unknown value for id
func (t *Article) GetUnknownId() (v interface{}) {
return t.unknown_["id"]
}
// SetUnknownId sets the unknown value of id
func (t *Article) SetUnknownId(i interface{}) {
if t.unknown_ == nil {
t.unknown_ = make(map[string]interface{})
}
t.unknown_["id"] = i
}
// ImageLen determines the number of elements able to be used for the IsImageImage, GetImageImage, and RemoveImageImage functions
func (t *Article) ImageLen() (l int) {
return len(t.image)
}
// IsImageImage determines whether the call to GetImageImage is safe for the specified index
func (t *Article) IsImageImage(index int) (ok bool) {
return t.image[index].Image != nil
}
// GetImageImage returns the value safely if IsImageImage returned true for the specified index
func (t *Article) GetImageImage(index int) (v ImageType) {
return t.image[index].Image
}
// AppendImageImage adds to the back of image a ImageType type
func (t *Article) AppendImageImage(v ImageType) {
t.image = append(t.image, &imageArticleIntermediateType{Image: v})
}
// PrependImageImage adds to the front of image a ImageType type
func (t *Article) PrependImageImage(v ImageType) {
t.image = append([]*imageArticleIntermediateType{&imageArticleIntermediateType{Image: v}}, t.image...)
}
// RemoveImageImage deletes the value from the specified index
func (t *Article) RemoveImageImage(index int) {
copy(t.image[index:], t.image[index+1:])
t.image[len(t.image)-1] = nil
t.image = t.image[:len(t.image)-1]
}
// IsImageLink determines whether the call to GetImageLink is safe for the specified index
func (t *Article) IsImageLink(index int) (ok bool) {
return t.image[index].Link != nil
}
// GetImageLink returns the value safely if IsImageLink returned true for the specified index
func (t *Article) GetImageLink(index int) (v LinkType) {
return t.image[index].Link
}
// AppendImageLink adds to the back of image a LinkType type
func (t *Article) AppendImageLink(v LinkType) {
t.image = append(t.image, &imageArticleIntermediateType{Link: v})
}
// PrependImageLink adds to the front of image a LinkType type
func (t *Article) PrependImageLink(v LinkType) {
t.image = append([]*imageArticleIntermediateType{&imageArticleIntermediateType{Link: v}}, t.image...)
}
// RemoveImageLink deletes the value from the specified index
func (t *Article) RemoveImageLink(index int) {
copy(t.image[index:], t.image[index+1:])
t.image[len(t.image)-1] = nil
t.image = t.image[:len(t.image)-1]
}
// IsImageIRI determines whether the call to GetImageIRI is safe for the specified index
func (t *Article) IsImageIRI(index int) (ok bool) {
return t.image[index].IRI != nil
}
// GetImageIRI returns the value safely if IsImageIRI returned true for the specified index
func (t *Article) GetImageIRI(index int) (v *url.URL) {
return t.image[index].IRI
}
// AppendImageIRI adds to the back of image a *url.URL type
func (t *Article) AppendImageIRI(v *url.URL) {
t.image = append(t.image, &imageArticleIntermediateType{IRI: v})
}
// PrependImageIRI adds to the front of image a *url.URL type
func (t *Article) PrependImageIRI(v *url.URL) {
t.image = append([]*imageArticleIntermediateType{&imageArticleIntermediateType{IRI: v}}, t.image...)
}
// RemoveImageIRI deletes the value from the specified index
func (t *Article) RemoveImageIRI(index int) {
copy(t.image[index:], t.image[index+1:])
t.image[len(t.image)-1] = nil
t.image = t.image[:len(t.image)-1]
}
// HasUnknownImage determines whether the call to GetUnknownImage is safe
func (t *Article) HasUnknownImage() (ok bool) {
return t.image != nil && t.image[0].unknown_ != nil
}
// GetUnknownImage returns the unknown value for image
func (t *Article) GetUnknownImage() (v interface{}) {
return t.image[0].unknown_
}
// SetUnknownImage sets the unknown value of image
func (t *Article) SetUnknownImage(i interface{}) {
if t.unknown_ == nil {
t.unknown_ = make(map[string]interface{})
}
tmp := &imageArticleIntermediateType{}
tmp.unknown_ = i
t.image = append(t.image, tmp)
}
// InReplyToLen determines the number of elements able to be used for the IsInReplyToObject, GetInReplyToObject, and RemoveInReplyToObject functions
func (t *Article) InReplyToLen() (l int) {
return len(t.inReplyTo)
}
// IsInReplyToObject determines whether the call to GetInReplyToObject is safe for the specified index
func (t *Article) IsInReplyToObject(index int) (ok bool) {
return t.inReplyTo[index].Object != nil
}
// GetInReplyToObject returns the value safely if IsInReplyToObject returned true for the specified index
func (t *Article) GetInReplyToObject(index int) (v ObjectType) {
return t.inReplyTo[index].Object
}
// AppendInReplyToObject adds to the back of inReplyTo a ObjectType type
func (t *Article) AppendInReplyToObject(v ObjectType) {
t.inReplyTo = append(t.inReplyTo, &inReplyToArticleIntermediateType{Object: v})
}
// PrependInReplyToObject adds to the front of inReplyTo a ObjectType type
func (t *Article) PrependInReplyToObject(v ObjectType) {
t.inReplyTo = append([]*inReplyToArticleIntermediateType{&inReplyToArticleIntermediateType{Object: v}}, t.inReplyTo...)
}
// RemoveInReplyToObject deletes the value from the specified index
func (t *Article) RemoveInReplyToObject(index int) {
copy(t.inReplyTo[index:], t.inReplyTo[index+1:])
t.inReplyTo[len(t.inReplyTo)-1] = nil
t.inReplyTo = t.inReplyTo[:len(t.inReplyTo)-1]
}
// IsInReplyToLink determines whether the call to GetInReplyToLink is safe for the specified index
func (t *Article) IsInReplyToLink(index int) (ok bool) {
return t.inReplyTo[index].Link != nil
}
// GetInReplyToLink returns the value safely if IsInReplyToLink returned true for the specified index
func (t *Article) GetInReplyToLink(index int) (v LinkType) {
return t.inReplyTo[index].Link
}
// AppendInReplyToLink adds to the back of inReplyTo a LinkType type
func (t *Article) AppendInReplyToLink(v LinkType) {
t.inReplyTo = append(t.inReplyTo, &inReplyToArticleIntermediateType{Link: v})
}
// PrependInReplyToLink adds to the front of inReplyTo a LinkType type
func (t *Article) PrependInReplyToLink(v LinkType) {
t.inReplyTo = append([]*inReplyToArticleIntermediateType{&inReplyToArticleIntermediateType{Link: v}}, t.inReplyTo...)
}
// RemoveInReplyToLink deletes the value from the specified index
func (t *Article) RemoveInReplyToLink(index int) {
copy(t.inReplyTo[index:], t.inReplyTo[index+1:])
t.inReplyTo[len(t.inReplyTo)-1] = nil
t.inReplyTo = t.inReplyTo[:len(t.inReplyTo)-1]
}
// IsInReplyToIRI determines whether the call to GetInReplyToIRI is safe for the specified index
func (t *Article) IsInReplyToIRI(index int) (ok bool) {
return t.inReplyTo[index].IRI != nil
}
// GetInReplyToIRI returns the value safely if IsInReplyToIRI returned true for the specified index
func (t *Article) GetInReplyToIRI(index int) (v *url.URL) {
return t.inReplyTo[index].IRI
}
// AppendInReplyToIRI adds to the back of inReplyTo a *url.URL type
func (t *Article) AppendInReplyToIRI(v *url.URL) {
t.inReplyTo = append(t.inReplyTo, &inReplyToArticleIntermediateType{IRI: v})
}
// PrependInReplyToIRI adds to the front of inReplyTo a *url.URL type
func (t *Article) PrependInReplyToIRI(v *url.URL) {
t.inReplyTo = append([]*inReplyToArticleIntermediateType{&inReplyToArticleIntermediateType{IRI: v}}, t.inReplyTo...)
}
// RemoveInReplyToIRI deletes the value from the specified index
func (t *Article) RemoveInReplyToIRI(index int) {
copy(t.inReplyTo[index:], t.inReplyTo[index+1:])
t.inReplyTo[len(t.inReplyTo)-1] = nil
t.inReplyTo = t.inReplyTo[:len(t.inReplyTo)-1]
}
// HasUnknownInReplyTo determines whether the call to GetUnknownInReplyTo is safe
func (t *Article) HasUnknownInReplyTo() (ok bool) {
return t.inReplyTo != nil && t.inReplyTo[0].unknown_ != nil
}
// GetUnknownInReplyTo returns the unknown value for inReplyTo
func (t *Article) GetUnknownInReplyTo() (v interface{}) {
return t.inReplyTo[0].unknown_
}
// SetUnknownInReplyTo sets the unknown value of inReplyTo
func (t *Article) SetUnknownInReplyTo(i interface{}) {
if t.unknown_ == nil {
t.unknown_ = make(map[string]interface{})
}
tmp := &inReplyToArticleIntermediateType{}
tmp.unknown_ = i
t.inReplyTo = append(t.inReplyTo, tmp)
}
// LocationLen determines the number of elements able to be used for the IsLocationObject, GetLocationObject, and RemoveLocationObject functions
func (t *Article) LocationLen() (l int) {
return len(t.location)
}
// IsLocationObject determines whether the call to GetLocationObject is safe for the specified index
func (t *Article) IsLocationObject(index int) (ok bool) {
return t.location[index].Object != nil
}
// GetLocationObject returns the value safely if IsLocationObject returned true for the specified index
func (t *Article) GetLocationObject(index int) (v ObjectType) {
return t.location[index].Object
}
// AppendLocationObject adds to the back of location a ObjectType type
func (t *Article) AppendLocationObject(v ObjectType) {
t.location = append(t.location, &locationArticleIntermediateType{Object: v})
}
// PrependLocationObject adds to the front of location a ObjectType type
func (t *Article) PrependLocationObject(v ObjectType) {
t.location = append([]*locationArticleIntermediateType{&locationArticleIntermediateType{Object: v}}, t.location...)
}
// RemoveLocationObject deletes the value from the specified index
func (t *Article) RemoveLocationObject(index int) {
copy(t.location[index:], t.location[index+1:])
t.location[len(t.location)-1] = nil
t.location = t.location[:len(t.location)-1]
}
// IsLocationLink determines whether the call to GetLocationLink is safe for the specified index
func (t *Article) IsLocationLink(index int) (ok bool) {
return t.location[index].Link != nil
}
// GetLocationLink returns the value safely if IsLocationLink returned true for the specified index
func (t *Article) GetLocationLink(index int) (v LinkType) {
return t.location[index].Link
}
// AppendLocationLink adds to the back of location a LinkType type
func (t *Article) AppendLocationLink(v LinkType) {
t.location = append(t.location, &locationArticleIntermediateType{Link: v})
}
// PrependLocationLink adds to the front of location a LinkType type
func (t *Article) PrependLocationLink(v LinkType) {
t.location = append([]*locationArticleIntermediateType{&locationArticleIntermediateType{Link: v}}, t.location...)
}
// RemoveLocationLink deletes the value from the specified index
func (t *Article) RemoveLocationLink(index int) {
copy(t.location[index:], t.location[index+1:])
t.location[len(t.location)-1] = nil
t.location = t.location[:len(t.location)-1]
}
// IsLocationIRI determines whether the call to GetLocationIRI is safe for the specified index
func (t *Article) IsLocationIRI(index int) (ok bool) {
return t.location[index].IRI != nil
}
// GetLocationIRI returns the value safely if IsLocationIRI returned true for the specified index
func (t *Article) GetLocationIRI(index int) (v *url.URL) {
return t.location[index].IRI
}
// AppendLocationIRI adds to the back of location a *url.URL type
func (t *Article) AppendLocationIRI(v *url.URL) {
t.location = append(t.location, &locationArticleIntermediateType{IRI: v})
}
// PrependLocationIRI adds to the front of location a *url.URL type
func (t *Article) PrependLocationIRI(v *url.URL) {
t.location = append([]*locationArticleIntermediateType{&locationArticleIntermediateType{IRI: v}}, t.location...)
}
// RemoveLocationIRI deletes the value from the specified index
func (t *Article) RemoveLocationIRI(index int) {
copy(t.location[index:], t.location[index+1:])
t.location[len(t.location)-1] = nil
t.location = t.location[:len(t.location)-1]
}
// HasUnknownLocation determines whether the call to GetUnknownLocation is safe
func (t *Article) HasUnknownLocation() (ok bool) {
return t.location != nil && t.location[0].unknown_ != nil
}
// GetUnknownLocation returns the unknown value for location
func (t *Article) GetUnknownLocation() (v interface{}) {
return t.location[0].unknown_
}
// SetUnknownLocation sets the unknown value of location
func (t *Article) SetUnknownLocation(i interface{}) {
if t.unknown_ == nil {
t.unknown_ = make(map[string]interface{})
}
tmp := &locationArticleIntermediateType{}
tmp.unknown_ = i
t.location = append(t.location, tmp)
}
// PreviewLen determines the number of elements able to be used for the IsPreviewObject, GetPreviewObject, and RemovePreviewObject functions
func (t *Article) PreviewLen() (l int) {
return len(t.preview)
}
// IsPreviewObject determines whether the call to GetPreviewObject is safe for the specified index
func (t *Article) IsPreviewObject(index int) (ok bool) {
return t.preview[index].Object != nil
}
// GetPreviewObject returns the value safely if IsPreviewObject returned true for the specified index
func (t *Article) GetPreviewObject(index int) (v ObjectType) {
return t.preview[index].Object
}
// AppendPreviewObject adds to the back of preview a ObjectType type
func (t *Article) AppendPreviewObject(v ObjectType) {
t.preview = append(t.preview, &previewArticleIntermediateType{Object: v})
}
// PrependPreviewObject adds to the front of preview a ObjectType type
func (t *Article) PrependPreviewObject(v ObjectType) {
t.preview = append([]*previewArticleIntermediateType{&previewArticleIntermediateType{Object: v}}, t.preview...)
}
// RemovePreviewObject deletes the value from the specified index
func (t *Article) RemovePreviewObject(index int) {
copy(t.preview[index:], t.preview[index+1:])
t.preview[len(t.preview)-1] = nil
t.preview = t.preview[:len(t.preview)-1]
}
// IsPreviewLink determines whether the call to GetPreviewLink is safe for the specified index
func (t *Article) IsPreviewLink(index int) (ok bool) {
return t.preview[index].Link != nil
}
// GetPreviewLink returns the value safely if IsPreviewLink returned true for the specified index
func (t *Article) GetPreviewLink(index int) (v LinkType) {
return t.preview[index].Link
}
// AppendPreviewLink adds to the back of preview a LinkType type
func (t *Article) AppendPreviewLink(v LinkType) {
t.preview = append(t.preview, &previewArticleIntermediateType{Link: v})
}
// PrependPreviewLink adds to the front of preview a LinkType type
func (t *Article) PrependPreviewLink(v LinkType) {
t.preview = append([]*previewArticleIntermediateType{&previewArticleIntermediateType{Link: v}}, t.preview...)
}
// RemovePreviewLink deletes the value from the specified index
func (t *Article) RemovePreviewLink(index int) {
copy(t.preview[index:], t.preview[index+1:])
t.preview[len(t.preview)-1] = nil
t.preview = t.preview[:len(t.preview)-1]
}
// IsPreviewIRI determines whether the call to GetPreviewIRI is safe for the specified index
func (t *Article) IsPreviewIRI(index int) (ok bool) {
return t.preview[index].IRI != nil
}
// GetPreviewIRI returns the value safely if IsPreviewIRI returned true for the specified index
func (t *Article) GetPreviewIRI(index int) (v *url.URL) {
return t.preview[index].IRI
}
// AppendPreviewIRI adds to the back of preview a *url.URL type
func (t *Article) AppendPreviewIRI(v *url.URL) {
t.preview = append(t.preview, &previewArticleIntermediateType{IRI: v})
}
// PrependPreviewIRI adds to the front of preview a *url.URL type
func (t *Article) PrependPreviewIRI(v *url.URL) {
t.preview = append([]*previewArticleIntermediateType{&previewArticleIntermediateType{IRI: v}}, t.preview...)
}
// RemovePreviewIRI deletes the value from the specified index
func (t *Article) RemovePreviewIRI(index int) {
copy(t.preview[index:], t.preview[index+1:])
t.preview[len(t.preview)-1] = nil
t.preview = t.preview[:len(t.preview)-1]
}
// HasUnknownPreview determines whether the call to GetUnknownPreview is safe
func (t *Article) HasUnknownPreview() (ok bool) {
return t.preview != nil && t.preview[0].unknown_ != nil
}
// GetUnknownPreview returns the unknown value for preview
func (t *Article) GetUnknownPreview() (v interface{}) {
return t.preview[0].unknown_
}
// SetUnknownPreview sets the unknown value of preview
func (t *Article) SetUnknownPreview(i interface{}) {
if t.unknown_ == nil {
t.unknown_ = make(map[string]interface{})
}
tmp := &previewArticleIntermediateType{}
tmp.unknown_ = i
t.preview = append(t.preview, tmp)
}
// IsPublished determines whether the call to GetPublished is safe
func (t *Article) IsPublished() (ok bool) {
return t.published != nil && t.published.dateTime != nil
}
// GetPublished returns the value safely if IsPublished returned true
func (t *Article) GetPublished() (v time.Time) {
return *t.published.dateTime
}
// SetPublished sets the value of published to be of time.Time type
func (t *Article) SetPublished(v time.Time) {
t.published = &publishedArticleIntermediateType{dateTime: &v}
}
// IsPublishedIRI determines whether the call to GetPublishedIRI is safe
func (t *Article) IsPublishedIRI() (ok bool) {
return t.published != nil && t.published.IRI != nil
}
// GetPublishedIRI returns the value safely if IsPublishedIRI returned true
func (t *Article) GetPublishedIRI() (v *url.URL) {
return t.published.IRI
}
// SetPublishedIRI sets the value of published to be of *url.URL type
func (t *Article) SetPublishedIRI(v *url.URL) {
t.published = &publishedArticleIntermediateType{IRI: v}
}
// HasUnknownPublished determines whether the call to GetUnknownPublished is safe
func (t *Article) HasUnknownPublished() (ok bool) {
return t.published != nil && t.published.unknown_ != nil
}
// GetUnknownPublished returns the unknown value for published
func (t *Article) GetUnknownPublished() (v interface{}) {
return t.published.unknown_
}
// SetUnknownPublished sets the unknown value of published
func (t *Article) SetUnknownPublished(i interface{}) {
if t.unknown_ == nil {
t.unknown_ = make(map[string]interface{})
}
tmp := &publishedArticleIntermediateType{}
tmp.unknown_ = i
t.published = tmp
}
// IsReplies determines whether the call to GetReplies is safe
func (t *Article) IsReplies() (ok bool) {
return t.replies != nil && t.replies.Collection != nil
}
// GetReplies returns the value safely if IsReplies returned true
func (t *Article) GetReplies() (v CollectionType) {
return t.replies.Collection
}
// SetReplies sets the value of replies to be of CollectionType type
func (t *Article) SetReplies(v CollectionType) {
t.replies = &repliesArticleIntermediateType{Collection: v}
}
// IsRepliesIRI determines whether the call to GetRepliesIRI is safe
func (t *Article) IsRepliesIRI() (ok bool) {
return t.replies != nil && t.replies.IRI != nil
}
// GetRepliesIRI returns the value safely if IsRepliesIRI returned true
func (t *Article) GetRepliesIRI() (v *url.URL) {
return t.replies.IRI
}
// SetRepliesIRI sets the value of replies to be of *url.URL type
func (t *Article) SetRepliesIRI(v *url.URL) {
t.replies = &repliesArticleIntermediateType{IRI: v}
}
// HasUnknownReplies determines whether the call to GetUnknownReplies is safe
func (t *Article) HasUnknownReplies() (ok bool) {
return t.replies != nil && t.replies.unknown_ != nil
}
// GetUnknownReplies returns the unknown value for replies
func (t *Article) GetUnknownReplies() (v interface{}) {
return t.replies.unknown_
}
// SetUnknownReplies sets the unknown value of replies
func (t *Article) SetUnknownReplies(i interface{}) {
if t.unknown_ == nil {
t.unknown_ = make(map[string]interface{})
}
tmp := &repliesArticleIntermediateType{}
tmp.unknown_ = i
t.replies = tmp
}
// IsStartTime determines whether the call to GetStartTime is safe
func (t *Article) IsStartTime() (ok bool) {
return t.startTime != nil && t.startTime.dateTime != nil
}
// GetStartTime returns the value safely if IsStartTime returned true
func (t *Article) GetStartTime() (v time.Time) {
return *t.startTime.dateTime
}
// SetStartTime sets the value of startTime to be of time.Time type
func (t *Article) SetStartTime(v time.Time) {
t.startTime = &startTimeArticleIntermediateType{dateTime: &v}
}
// IsStartTimeIRI determines whether the call to GetStartTimeIRI is safe
func (t *Article) IsStartTimeIRI() (ok bool) {
return t.startTime != nil && t.startTime.IRI != nil
}
// GetStartTimeIRI returns the value safely if IsStartTimeIRI returned true
func (t *Article) GetStartTimeIRI() (v *url.URL) {
return t.startTime.IRI
}
// SetStartTimeIRI sets the value of startTime to be of *url.URL type
func (t *Article) SetStartTimeIRI(v *url.URL) {
t.startTime = &startTimeArticleIntermediateType{IRI: v}
}
// HasUnknownStartTime determines whether the call to GetUnknownStartTime is safe
func (t *Article) HasUnknownStartTime() (ok bool) {
return t.startTime != nil && t.startTime.unknown_ != nil
}
// GetUnknownStartTime returns the unknown value for startTime
func (t *Article) GetUnknownStartTime() (v interface{}) {
return t.startTime.unknown_
}
// SetUnknownStartTime sets the unknown value of startTime
func (t *Article) SetUnknownStartTime(i interface{}) {
if t.unknown_ == nil {
t.unknown_ = make(map[string]interface{})
}
tmp := &startTimeArticleIntermediateType{}
tmp.unknown_ = i
t.startTime = tmp
}
// SummaryLen determines the number of elements able to be used for the IsSummaryString, GetSummaryString, and RemoveSummaryString functions
func (t *Article) SummaryLen() (l int) {
return len(t.summary)
}
// IsSummaryString determines whether the call to GetSummaryString is safe for the specified index
func (t *Article) IsSummaryString(index int) (ok bool) {
return t.summary[index].stringName != nil
}
// GetSummaryString returns the value safely if IsSummaryString returned true for the specified index
func (t *Article) GetSummaryString(index int) (v string) {
return *t.summary[index].stringName
}
// AppendSummaryString adds to the back of summary a string type
func (t *Article) AppendSummaryString(v string) {
t.summary = append(t.summary, &summaryArticleIntermediateType{stringName: &v})
}
// PrependSummaryString adds to the front of summary a string type
func (t *Article) PrependSummaryString(v string) {
t.summary = append([]*summaryArticleIntermediateType{&summaryArticleIntermediateType{stringName: &v}}, t.summary...)
}
// RemoveSummaryString deletes the value from the specified index
func (t *Article) RemoveSummaryString(index int) {
copy(t.summary[index:], t.summary[index+1:])
t.summary[len(t.summary)-1] = nil
t.summary = t.summary[:len(t.summary)-1]
}
// IsSummaryLangString determines whether the call to GetSummaryLangString is safe for the specified index
func (t *Article) IsSummaryLangString(index int) (ok bool) {
return t.summary[index].langString != nil
}
// GetSummaryLangString returns the value safely if IsSummaryLangString returned true for the specified index
func (t *Article) GetSummaryLangString(index int) (v string) {
return *t.summary[index].langString
}
// AppendSummaryLangString adds to the back of summary a string type
func (t *Article) AppendSummaryLangString(v string) {
t.summary = append(t.summary, &summaryArticleIntermediateType{langString: &v})
}
// PrependSummaryLangString adds to the front of summary a string type
func (t *Article) PrependSummaryLangString(v string) {
t.summary = append([]*summaryArticleIntermediateType{&summaryArticleIntermediateType{langString: &v}}, t.summary...)
}
// RemoveSummaryLangString deletes the value from the specified index
func (t *Article) RemoveSummaryLangString(index int) {
copy(t.summary[index:], t.summary[index+1:])
t.summary[len(t.summary)-1] = nil
t.summary = t.summary[:len(t.summary)-1]
}
// IsSummaryIRI determines whether the call to GetSummaryIRI is safe for the specified index
func (t *Article) IsSummaryIRI(index int) (ok bool) {
return t.summary[index].IRI != nil
}
// GetSummaryIRI returns the value safely if IsSummaryIRI returned true for the specified index
func (t *Article) GetSummaryIRI(index int) (v *url.URL) {
return t.summary[index].IRI
}
// AppendSummaryIRI adds to the back of summary a *url.URL type
func (t *Article) AppendSummaryIRI(v *url.URL) {
t.summary = append(t.summary, &summaryArticleIntermediateType{IRI: v})
}
// PrependSummaryIRI adds to the front of summary a *url.URL type
func (t *Article) PrependSummaryIRI(v *url.URL) {
t.summary = append([]*summaryArticleIntermediateType{&summaryArticleIntermediateType{IRI: v}}, t.summary...)
}
// RemoveSummaryIRI deletes the value from the specified index
func (t *Article) RemoveSummaryIRI(index int) {
copy(t.summary[index:], t.summary[index+1:])
t.summary[len(t.summary)-1] = nil
t.summary = t.summary[:len(t.summary)-1]
}
// HasUnknownSummary determines whether the call to GetUnknownSummary is safe
func (t *Article) HasUnknownSummary() (ok bool) {
return t.summary != nil && t.summary[0].unknown_ != nil
}
// GetUnknownSummary returns the unknown value for summary
func (t *Article) GetUnknownSummary() (v interface{}) {
return t.summary[0].unknown_
}
// SetUnknownSummary sets the unknown value of summary
func (t *Article) SetUnknownSummary(i interface{}) {
if t.unknown_ == nil {
t.unknown_ = make(map[string]interface{})
}
tmp := &summaryArticleIntermediateType{}
tmp.unknown_ = i
t.summary = append(t.summary, tmp)
}
// SummaryMapLanguages returns all languages for this property's language mapping, or nil if there are none.
func (t *Article) SummaryMapLanguages() (l []string) {
if t.summaryMap == nil || len(t.summaryMap) == 0 {
return nil
}
for k := range t.summaryMap {
l = append(l, k)
}
return
}
// GetSummaryMap retrieves the value of the property for the specified language, or an empty string if it does not exist
func (t *Article) GetSummaryMap(l string) (v string) {
if t.summaryMap == nil {
return ""
}
ok := false
v, ok = t.summaryMap[l]
if !ok {
return ""
}
return v
}
// SetSummaryMap sets the value of the property for the specified language
func (t *Article) SetSummaryMap(l string, v string) {
if t.summaryMap == nil {
t.summaryMap = make(map[string]string)
}
t.summaryMap[l] = v
}
// TagLen determines the number of elements able to be used for the IsTagObject, GetTagObject, and RemoveTagObject functions
func (t *Article) TagLen() (l int) {
return len(t.tag)
}
// IsTagObject determines whether the call to GetTagObject is safe for the specified index
func (t *Article) IsTagObject(index int) (ok bool) {
return t.tag[index].Object != nil
}
// GetTagObject returns the value safely if IsTagObject returned true for the specified index
func (t *Article) GetTagObject(index int) (v ObjectType) {
return t.tag[index].Object
}
// AppendTagObject adds to the back of tag a ObjectType type
func (t *Article) AppendTagObject(v ObjectType) {
t.tag = append(t.tag, &tagArticleIntermediateType{Object: v})
}
// PrependTagObject adds to the front of tag a ObjectType type
func (t *Article) PrependTagObject(v ObjectType) {
t.tag = append([]*tagArticleIntermediateType{&tagArticleIntermediateType{Object: v}}, t.tag...)
}
// RemoveTagObject deletes the value from the specified index
func (t *Article) RemoveTagObject(index int) {
copy(t.tag[index:], t.tag[index+1:])
t.tag[len(t.tag)-1] = nil
t.tag = t.tag[:len(t.tag)-1]
}
// IsTagLink determines whether the call to GetTagLink is safe for the specified index
func (t *Article) IsTagLink(index int) (ok bool) {
return t.tag[index].Link != nil
}
// GetTagLink returns the value safely if IsTagLink returned true for the specified index
func (t *Article) GetTagLink(index int) (v LinkType) {
return t.tag[index].Link
}
// AppendTagLink adds to the back of tag a LinkType type
func (t *Article) AppendTagLink(v LinkType) {
t.tag = append(t.tag, &tagArticleIntermediateType{Link: v})
}
// PrependTagLink adds to the front of tag a LinkType type
func (t *Article) PrependTagLink(v LinkType) {
t.tag = append([]*tagArticleIntermediateType{&tagArticleIntermediateType{Link: v}}, t.tag...)
}
// RemoveTagLink deletes the value from the specified index
func (t *Article) RemoveTagLink(index int) {
copy(t.tag[index:], t.tag[index+1:])
t.tag[len(t.tag)-1] = nil
t.tag = t.tag[:len(t.tag)-1]
}
// IsTagIRI determines whether the call to GetTagIRI is safe for the specified index
func (t *Article) IsTagIRI(index int) (ok bool) {
return t.tag[index].IRI != nil
}
// GetTagIRI returns the value safely if IsTagIRI returned true for the specified index
func (t *Article) GetTagIRI(index int) (v *url.URL) {
return t.tag[index].IRI
}
// AppendTagIRI adds to the back of tag a *url.URL type
func (t *Article) AppendTagIRI(v *url.URL) {
t.tag = append(t.tag, &tagArticleIntermediateType{IRI: v})
}
// PrependTagIRI adds to the front of tag a *url.URL type
func (t *Article) PrependTagIRI(v *url.URL) {
t.tag = append([]*tagArticleIntermediateType{&tagArticleIntermediateType{IRI: v}}, t.tag...)
}
// RemoveTagIRI deletes the value from the specified index
func (t *Article) RemoveTagIRI(index int) {
copy(t.tag[index:], t.tag[index+1:])
t.tag[len(t.tag)-1] = nil
t.tag = t.tag[:len(t.tag)-1]
}
// HasUnknownTag determines whether the call to GetUnknownTag is safe
func (t *Article) HasUnknownTag() (ok bool) {
return t.tag != nil && t.tag[0].unknown_ != nil
}
// GetUnknownTag returns the unknown value for tag
func (t *Article) GetUnknownTag() (v interface{}) {
return t.tag[0].unknown_
}
// SetUnknownTag sets the unknown value of tag
func (t *Article) SetUnknownTag(i interface{}) {
if t.unknown_ == nil {
t.unknown_ = make(map[string]interface{})
}
tmp := &tagArticleIntermediateType{}
tmp.unknown_ = i
t.tag = append(t.tag, tmp)
}
// TypeLen determines the number of elements able to be used for the GetType and RemoveType functions
func (t *Article) TypeLen() (l int) {
return len(t.typeName)
}
// GetType returns the value for the specified index
func (t *Article) GetType(index int) (v interface{}) {
return t.typeName[index]
}
// AppendType adds a value to the back of type
func (t *Article) AppendType(v interface{}) {
t.typeName = append(t.typeName, v)
}
// PrependType adds a value to the front of type
func (t *Article) PrependType(v interface{}) {
t.typeName = append([]interface{}{v}, t.typeName...)
}
// RemoveType deletes the value from the specified index
func (t *Article) RemoveType(index int) {
copy(t.typeName[index:], t.typeName[index+1:])
t.typeName[len(t.typeName)-1] = nil
t.typeName = t.typeName[:len(t.typeName)-1]
}
// IsUpdated determines whether the call to GetUpdated is safe
func (t *Article) IsUpdated() (ok bool) {
return t.updated != nil && t.updated.dateTime != nil
}
// GetUpdated returns the value safely if IsUpdated returned true
func (t *Article) GetUpdated() (v time.Time) {
return *t.updated.dateTime
}
// SetUpdated sets the value of updated to be of time.Time type
func (t *Article) SetUpdated(v time.Time) {
t.updated = &updatedArticleIntermediateType{dateTime: &v}
}
// IsUpdatedIRI determines whether the call to GetUpdatedIRI is safe
func (t *Article) IsUpdatedIRI() (ok bool) {
return t.updated != nil && t.updated.IRI != nil
}
// GetUpdatedIRI returns the value safely if IsUpdatedIRI returned true
func (t *Article) GetUpdatedIRI() (v *url.URL) {
return t.updated.IRI
}
// SetUpdatedIRI sets the value of updated to be of *url.URL type
func (t *Article) SetUpdatedIRI(v *url.URL) {
t.updated = &updatedArticleIntermediateType{IRI: v}
}
// HasUnknownUpdated determines whether the call to GetUnknownUpdated is safe
func (t *Article) HasUnknownUpdated() (ok bool) {
return t.updated != nil && t.updated.unknown_ != nil
}
// GetUnknownUpdated returns the unknown value for updated
func (t *Article) GetUnknownUpdated() (v interface{}) {
return t.updated.unknown_
}
// SetUnknownUpdated sets the unknown value of updated
func (t *Article) SetUnknownUpdated(i interface{}) {
if t.unknown_ == nil {
t.unknown_ = make(map[string]interface{})
}
tmp := &updatedArticleIntermediateType{}
tmp.unknown_ = i
t.updated = tmp
}
// UrlLen determines the number of elements able to be used for the IsUrlAnyURI, GetUrlAnyURI, and RemoveUrlAnyURI functions
func (t *Article) UrlLen() (l int) {
return len(t.url)
}
// IsUrlAnyURI determines whether the call to GetUrlAnyURI is safe for the specified index
func (t *Article) IsUrlAnyURI(index int) (ok bool) {
return t.url[index].anyURI != nil
}
// GetUrlAnyURI returns the value safely if IsUrlAnyURI returned true for the specified index
func (t *Article) GetUrlAnyURI(index int) (v *url.URL) {
return t.url[index].anyURI
}
// AppendUrlAnyURI adds to the back of url a *url.URL type
func (t *Article) AppendUrlAnyURI(v *url.URL) {
t.url = append(t.url, &urlArticleIntermediateType{anyURI: v})
}
// PrependUrlAnyURI adds to the front of url a *url.URL type
func (t *Article) PrependUrlAnyURI(v *url.URL) {
t.url = append([]*urlArticleIntermediateType{&urlArticleIntermediateType{anyURI: v}}, t.url...)
}
// RemoveUrlAnyURI deletes the value from the specified index
func (t *Article) RemoveUrlAnyURI(index int) {
copy(t.url[index:], t.url[index+1:])
t.url[len(t.url)-1] = nil
t.url = t.url[:len(t.url)-1]
}
// IsUrlLink determines whether the call to GetUrlLink is safe for the specified index
func (t *Article) IsUrlLink(index int) (ok bool) {
return t.url[index].Link != nil
}
// GetUrlLink returns the value safely if IsUrlLink returned true for the specified index
func (t *Article) GetUrlLink(index int) (v LinkType) {
return t.url[index].Link
}
// AppendUrlLink adds to the back of url a LinkType type
func (t *Article) AppendUrlLink(v LinkType) {
t.url = append(t.url, &urlArticleIntermediateType{Link: v})
}
// PrependUrlLink adds to the front of url a LinkType type
func (t *Article) PrependUrlLink(v LinkType) {
t.url = append([]*urlArticleIntermediateType{&urlArticleIntermediateType{Link: v}}, t.url...)
}
// RemoveUrlLink deletes the value from the specified index
func (t *Article) RemoveUrlLink(index int) {
copy(t.url[index:], t.url[index+1:])
t.url[len(t.url)-1] = nil
t.url = t.url[:len(t.url)-1]
}
// HasUnknownUrl determines whether the call to GetUnknownUrl is safe
func (t *Article) HasUnknownUrl() (ok bool) {
return t.url != nil && t.url[0].unknown_ != nil
}
// GetUnknownUrl returns the unknown value for url
func (t *Article) GetUnknownUrl() (v interface{}) {
return t.url[0].unknown_
}
// SetUnknownUrl sets the unknown value of url
func (t *Article) SetUnknownUrl(i interface{}) {
if t.unknown_ == nil {
t.unknown_ = make(map[string]interface{})
}
tmp := &urlArticleIntermediateType{}
tmp.unknown_ = i
t.url = append(t.url, tmp)
}
// ToLen determines the number of elements able to be used for the IsToObject, GetToObject, and RemoveToObject functions
func (t *Article) ToLen() (l int) {
return len(t.to)
}
// IsToObject determines whether the call to GetToObject is safe for the specified index
func (t *Article) IsToObject(index int) (ok bool) {
return t.to[index].Object != nil
}
// GetToObject returns the value safely if IsToObject returned true for the specified index
func (t *Article) GetToObject(index int) (v ObjectType) {
return t.to[index].Object
}
// AppendToObject adds to the back of to a ObjectType type
func (t *Article) AppendToObject(v ObjectType) {
t.to = append(t.to, &toArticleIntermediateType{Object: v})
}
// PrependToObject adds to the front of to a ObjectType type
func (t *Article) PrependToObject(v ObjectType) {
t.to = append([]*toArticleIntermediateType{&toArticleIntermediateType{Object: v}}, t.to...)
}
// RemoveToObject deletes the value from the specified index
func (t *Article) RemoveToObject(index int) {
copy(t.to[index:], t.to[index+1:])
t.to[len(t.to)-1] = nil
t.to = t.to[:len(t.to)-1]
}
// IsToLink determines whether the call to GetToLink is safe for the specified index
func (t *Article) IsToLink(index int) (ok bool) {
return t.to[index].Link != nil
}
// GetToLink returns the value safely if IsToLink returned true for the specified index
func (t *Article) GetToLink(index int) (v LinkType) {
return t.to[index].Link
}
// AppendToLink adds to the back of to a LinkType type
func (t *Article) AppendToLink(v LinkType) {
t.to = append(t.to, &toArticleIntermediateType{Link: v})
}
// PrependToLink adds to the front of to a LinkType type
func (t *Article) PrependToLink(v LinkType) {
t.to = append([]*toArticleIntermediateType{&toArticleIntermediateType{Link: v}}, t.to...)
}
// RemoveToLink deletes the value from the specified index
func (t *Article) RemoveToLink(index int) {
copy(t.to[index:], t.to[index+1:])
t.to[len(t.to)-1] = nil
t.to = t.to[:len(t.to)-1]
}
// IsToIRI determines whether the call to GetToIRI is safe for the specified index
func (t *Article) IsToIRI(index int) (ok bool) {
return t.to[index].IRI != nil
}
// GetToIRI returns the value safely if IsToIRI returned true for the specified index
func (t *Article) GetToIRI(index int) (v *url.URL) {
return t.to[index].IRI
}
// AppendToIRI adds to the back of to a *url.URL type
func (t *Article) AppendToIRI(v *url.URL) {
t.to = append(t.to, &toArticleIntermediateType{IRI: v})
}
// PrependToIRI adds to the front of to a *url.URL type
func (t *Article) PrependToIRI(v *url.URL) {
t.to = append([]*toArticleIntermediateType{&toArticleIntermediateType{IRI: v}}, t.to...)
}
// RemoveToIRI deletes the value from the specified index
func (t *Article) RemoveToIRI(index int) {
copy(t.to[index:], t.to[index+1:])
t.to[len(t.to)-1] = nil
t.to = t.to[:len(t.to)-1]
}
// HasUnknownTo determines whether the call to GetUnknownTo is safe
func (t *Article) HasUnknownTo() (ok bool) {
return t.to != nil && t.to[0].unknown_ != nil
}
// GetUnknownTo returns the unknown value for to
func (t *Article) GetUnknownTo() (v interface{}) {
return t.to[0].unknown_
}
// SetUnknownTo sets the unknown value of to
func (t *Article) SetUnknownTo(i interface{}) {
if t.unknown_ == nil {
t.unknown_ = make(map[string]interface{})
}
tmp := &toArticleIntermediateType{}
tmp.unknown_ = i
t.to = append(t.to, tmp)
}
// BtoLen determines the number of elements able to be used for the IsBtoObject, GetBtoObject, and RemoveBtoObject functions
func (t *Article) BtoLen() (l int) {
return len(t.bto)
}
// IsBtoObject determines whether the call to GetBtoObject is safe for the specified index
func (t *Article) IsBtoObject(index int) (ok bool) {
return t.bto[index].Object != nil
}
// GetBtoObject returns the value safely if IsBtoObject returned true for the specified index
func (t *Article) GetBtoObject(index int) (v ObjectType) {
return t.bto[index].Object
}
// AppendBtoObject adds to the back of bto a ObjectType type
func (t *Article) AppendBtoObject(v ObjectType) {
t.bto = append(t.bto, &btoArticleIntermediateType{Object: v})
}
// PrependBtoObject adds to the front of bto a ObjectType type
func (t *Article) PrependBtoObject(v ObjectType) {
t.bto = append([]*btoArticleIntermediateType{&btoArticleIntermediateType{Object: v}}, t.bto...)
}
// RemoveBtoObject deletes the value from the specified index
func (t *Article) RemoveBtoObject(index int) {
copy(t.bto[index:], t.bto[index+1:])
t.bto[len(t.bto)-1] = nil
t.bto = t.bto[:len(t.bto)-1]
}
// IsBtoLink determines whether the call to GetBtoLink is safe for the specified index
func (t *Article) IsBtoLink(index int) (ok bool) {
return t.bto[index].Link != nil
}
// GetBtoLink returns the value safely if IsBtoLink returned true for the specified index
func (t *Article) GetBtoLink(index int) (v LinkType) {
return t.bto[index].Link
}
// AppendBtoLink adds to the back of bto a LinkType type
func (t *Article) AppendBtoLink(v LinkType) {
t.bto = append(t.bto, &btoArticleIntermediateType{Link: v})
}
// PrependBtoLink adds to the front of bto a LinkType type
func (t *Article) PrependBtoLink(v LinkType) {
t.bto = append([]*btoArticleIntermediateType{&btoArticleIntermediateType{Link: v}}, t.bto...)
}
// RemoveBtoLink deletes the value from the specified index
func (t *Article) RemoveBtoLink(index int) {
copy(t.bto[index:], t.bto[index+1:])
t.bto[len(t.bto)-1] = nil
t.bto = t.bto[:len(t.bto)-1]
}
// IsBtoIRI determines whether the call to GetBtoIRI is safe for the specified index
func (t *Article) IsBtoIRI(index int) (ok bool) {
return t.bto[index].IRI != nil
}
// GetBtoIRI returns the value safely if IsBtoIRI returned true for the specified index
func (t *Article) GetBtoIRI(index int) (v *url.URL) {
return t.bto[index].IRI
}
// AppendBtoIRI adds to the back of bto a *url.URL type
func (t *Article) AppendBtoIRI(v *url.URL) {
t.bto = append(t.bto, &btoArticleIntermediateType{IRI: v})
}
// PrependBtoIRI adds to the front of bto a *url.URL type
func (t *Article) PrependBtoIRI(v *url.URL) {
t.bto = append([]*btoArticleIntermediateType{&btoArticleIntermediateType{IRI: v}}, t.bto...)
}
// RemoveBtoIRI deletes the value from the specified index
func (t *Article) RemoveBtoIRI(index int) {
copy(t.bto[index:], t.bto[index+1:])
t.bto[len(t.bto)-1] = nil
t.bto = t.bto[:len(t.bto)-1]
}
// HasUnknownBto determines whether the call to GetUnknownBto is safe
func (t *Article) HasUnknownBto() (ok bool) {
return t.bto != nil && t.bto[0].unknown_ != nil
}
// GetUnknownBto returns the unknown value for bto
func (t *Article) GetUnknownBto() (v interface{}) {
return t.bto[0].unknown_
}
// SetUnknownBto sets the unknown value of bto
func (t *Article) SetUnknownBto(i interface{}) {
if t.unknown_ == nil {
t.unknown_ = make(map[string]interface{})
}
tmp := &btoArticleIntermediateType{}
tmp.unknown_ = i
t.bto = append(t.bto, tmp)
}
// CcLen determines the number of elements able to be used for the IsCcObject, GetCcObject, and RemoveCcObject functions
func (t *Article) CcLen() (l int) {
return len(t.cc)
}
// IsCcObject determines whether the call to GetCcObject is safe for the specified index
func (t *Article) IsCcObject(index int) (ok bool) {
return t.cc[index].Object != nil
}
// GetCcObject returns the value safely if IsCcObject returned true for the specified index
func (t *Article) GetCcObject(index int) (v ObjectType) {
return t.cc[index].Object
}
// AppendCcObject adds to the back of cc a ObjectType type
func (t *Article) AppendCcObject(v ObjectType) {
t.cc = append(t.cc, &ccArticleIntermediateType{Object: v})
}
// PrependCcObject adds to the front of cc a ObjectType type
func (t *Article) PrependCcObject(v ObjectType) {
t.cc = append([]*ccArticleIntermediateType{&ccArticleIntermediateType{Object: v}}, t.cc...)
}
// RemoveCcObject deletes the value from the specified index
func (t *Article) RemoveCcObject(index int) {
copy(t.cc[index:], t.cc[index+1:])
t.cc[len(t.cc)-1] = nil
t.cc = t.cc[:len(t.cc)-1]
}
// IsCcLink determines whether the call to GetCcLink is safe for the specified index
func (t *Article) IsCcLink(index int) (ok bool) {
return t.cc[index].Link != nil
}
// GetCcLink returns the value safely if IsCcLink returned true for the specified index
func (t *Article) GetCcLink(index int) (v LinkType) {
return t.cc[index].Link
}
// AppendCcLink adds to the back of cc a LinkType type
func (t *Article) AppendCcLink(v LinkType) {
t.cc = append(t.cc, &ccArticleIntermediateType{Link: v})
}
// PrependCcLink adds to the front of cc a LinkType type
func (t *Article) PrependCcLink(v LinkType) {
t.cc = append([]*ccArticleIntermediateType{&ccArticleIntermediateType{Link: v}}, t.cc...)
}
// RemoveCcLink deletes the value from the specified index
func (t *Article) RemoveCcLink(index int) {
copy(t.cc[index:], t.cc[index+1:])
t.cc[len(t.cc)-1] = nil
t.cc = t.cc[:len(t.cc)-1]
}
// IsCcIRI determines whether the call to GetCcIRI is safe for the specified index
func (t *Article) IsCcIRI(index int) (ok bool) {
return t.cc[index].IRI != nil
}
// GetCcIRI returns the value safely if IsCcIRI returned true for the specified index
func (t *Article) GetCcIRI(index int) (v *url.URL) {
return t.cc[index].IRI
}
// AppendCcIRI adds to the back of cc a *url.URL type
func (t *Article) AppendCcIRI(v *url.URL) {
t.cc = append(t.cc, &ccArticleIntermediateType{IRI: v})
}
// PrependCcIRI adds to the front of cc a *url.URL type
func (t *Article) PrependCcIRI(v *url.URL) {
t.cc = append([]*ccArticleIntermediateType{&ccArticleIntermediateType{IRI: v}}, t.cc...)
}
// RemoveCcIRI deletes the value from the specified index
func (t *Article) RemoveCcIRI(index int) {
copy(t.cc[index:], t.cc[index+1:])
t.cc[len(t.cc)-1] = nil
t.cc = t.cc[:len(t.cc)-1]
}
// HasUnknownCc determines whether the call to GetUnknownCc is safe
func (t *Article) HasUnknownCc() (ok bool) {
return t.cc != nil && t.cc[0].unknown_ != nil
}
// GetUnknownCc returns the unknown value for cc
func (t *Article) GetUnknownCc() (v interface{}) {
return t.cc[0].unknown_
}
// SetUnknownCc sets the unknown value of cc
func (t *Article) SetUnknownCc(i interface{}) {
if t.unknown_ == nil {
t.unknown_ = make(map[string]interface{})
}
tmp := &ccArticleIntermediateType{}
tmp.unknown_ = i
t.cc = append(t.cc, tmp)
}
// BccLen determines the number of elements able to be used for the IsBccObject, GetBccObject, and RemoveBccObject functions
func (t *Article) BccLen() (l int) {
return len(t.bcc)
}
// IsBccObject determines whether the call to GetBccObject is safe for the specified index
func (t *Article) IsBccObject(index int) (ok bool) {
return t.bcc[index].Object != nil
}
// GetBccObject returns the value safely if IsBccObject returned true for the specified index
func (t *Article) GetBccObject(index int) (v ObjectType) {
return t.bcc[index].Object
}
// AppendBccObject adds to the back of bcc a ObjectType type
func (t *Article) AppendBccObject(v ObjectType) {
t.bcc = append(t.bcc, &bccArticleIntermediateType{Object: v})
}
// PrependBccObject adds to the front of bcc a ObjectType type
func (t *Article) PrependBccObject(v ObjectType) {
t.bcc = append([]*bccArticleIntermediateType{&bccArticleIntermediateType{Object: v}}, t.bcc...)
}
// RemoveBccObject deletes the value from the specified index
func (t *Article) RemoveBccObject(index int) {
copy(t.bcc[index:], t.bcc[index+1:])
t.bcc[len(t.bcc)-1] = nil
t.bcc = t.bcc[:len(t.bcc)-1]
}
// IsBccLink determines whether the call to GetBccLink is safe for the specified index
func (t *Article) IsBccLink(index int) (ok bool) {
return t.bcc[index].Link != nil
}
// GetBccLink returns the value safely if IsBccLink returned true for the specified index
func (t *Article) GetBccLink(index int) (v LinkType) {
return t.bcc[index].Link
}
// AppendBccLink adds to the back of bcc a LinkType type
func (t *Article) AppendBccLink(v LinkType) {
t.bcc = append(t.bcc, &bccArticleIntermediateType{Link: v})
}
// PrependBccLink adds to the front of bcc a LinkType type
func (t *Article) PrependBccLink(v LinkType) {
t.bcc = append([]*bccArticleIntermediateType{&bccArticleIntermediateType{Link: v}}, t.bcc...)
}
// RemoveBccLink deletes the value from the specified index
func (t *Article) RemoveBccLink(index int) {
copy(t.bcc[index:], t.bcc[index+1:])
t.bcc[len(t.bcc)-1] = nil
t.bcc = t.bcc[:len(t.bcc)-1]
}
// IsBccIRI determines whether the call to GetBccIRI is safe for the specified index
func (t *Article) IsBccIRI(index int) (ok bool) {
return t.bcc[index].IRI != nil
}
// GetBccIRI returns the value safely if IsBccIRI returned true for the specified index
func (t *Article) GetBccIRI(index int) (v *url.URL) {
return t.bcc[index].IRI
}
// AppendBccIRI adds to the back of bcc a *url.URL type
func (t *Article) AppendBccIRI(v *url.URL) {
t.bcc = append(t.bcc, &bccArticleIntermediateType{IRI: v})
}
// PrependBccIRI adds to the front of bcc a *url.URL type
func (t *Article) PrependBccIRI(v *url.URL) {
t.bcc = append([]*bccArticleIntermediateType{&bccArticleIntermediateType{IRI: v}}, t.bcc...)
}
// RemoveBccIRI deletes the value from the specified index
func (t *Article) RemoveBccIRI(index int) {
copy(t.bcc[index:], t.bcc[index+1:])
t.bcc[len(t.bcc)-1] = nil
t.bcc = t.bcc[:len(t.bcc)-1]
}
// HasUnknownBcc determines whether the call to GetUnknownBcc is safe
func (t *Article) HasUnknownBcc() (ok bool) {
return t.bcc != nil && t.bcc[0].unknown_ != nil
}
// GetUnknownBcc returns the unknown value for bcc
func (t *Article) GetUnknownBcc() (v interface{}) {
return t.bcc[0].unknown_
}
// SetUnknownBcc sets the unknown value of bcc
func (t *Article) SetUnknownBcc(i interface{}) {
if t.unknown_ == nil {
t.unknown_ = make(map[string]interface{})
}
tmp := &bccArticleIntermediateType{}
tmp.unknown_ = i
t.bcc = append(t.bcc, tmp)
}
// IsMediaType determines whether the call to GetMediaType is safe
func (t *Article) IsMediaType() (ok bool) {
return t.mediaType != nil && t.mediaType.mimeMediaTypeValue != nil
}
// GetMediaType returns the value safely if IsMediaType returned true
func (t *Article) GetMediaType() (v string) {
return *t.mediaType.mimeMediaTypeValue
}
// SetMediaType sets the value of mediaType to be of string type
func (t *Article) SetMediaType(v string) {
t.mediaType = &mediaTypeArticleIntermediateType{mimeMediaTypeValue: &v}
}
// IsMediaTypeIRI determines whether the call to GetMediaTypeIRI is safe
func (t *Article) IsMediaTypeIRI() (ok bool) {
return t.mediaType != nil && t.mediaType.IRI != nil
}
// GetMediaTypeIRI returns the value safely if IsMediaTypeIRI returned true
func (t *Article) GetMediaTypeIRI() (v *url.URL) {
return t.mediaType.IRI
}
// SetMediaTypeIRI sets the value of mediaType to be of *url.URL type
func (t *Article) SetMediaTypeIRI(v *url.URL) {
t.mediaType = &mediaTypeArticleIntermediateType{IRI: v}
}
// HasUnknownMediaType determines whether the call to GetUnknownMediaType is safe
func (t *Article) HasUnknownMediaType() (ok bool) {
return t.mediaType != nil && t.mediaType.unknown_ != nil
}
// GetUnknownMediaType returns the unknown value for mediaType
func (t *Article) GetUnknownMediaType() (v interface{}) {
return t.mediaType.unknown_
}
// SetUnknownMediaType sets the unknown value of mediaType
func (t *Article) SetUnknownMediaType(i interface{}) {
if t.unknown_ == nil {
t.unknown_ = make(map[string]interface{})
}
tmp := &mediaTypeArticleIntermediateType{}
tmp.unknown_ = i
t.mediaType = tmp
}
// IsDuration determines whether the call to GetDuration is safe
func (t *Article) IsDuration() (ok bool) {
return t.duration != nil && t.duration.duration != nil
}
// GetDuration returns the value safely if IsDuration returned true
func (t *Article) GetDuration() (v time.Duration) {
return *t.duration.duration
}
// SetDuration sets the value of duration to be of time.Duration type
func (t *Article) SetDuration(v time.Duration) {
t.duration = &durationArticleIntermediateType{duration: &v}
}
// IsDurationIRI determines whether the call to GetDurationIRI is safe
func (t *Article) IsDurationIRI() (ok bool) {
return t.duration != nil && t.duration.IRI != nil
}
// GetDurationIRI returns the value safely if IsDurationIRI returned true
func (t *Article) GetDurationIRI() (v *url.URL) {
return t.duration.IRI
}
// SetDurationIRI sets the value of duration to be of *url.URL type
func (t *Article) SetDurationIRI(v *url.URL) {
t.duration = &durationArticleIntermediateType{IRI: v}
}
// HasUnknownDuration determines whether the call to GetUnknownDuration is safe
func (t *Article) HasUnknownDuration() (ok bool) {
return t.duration != nil && t.duration.unknown_ != nil
}
// GetUnknownDuration returns the unknown value for duration
func (t *Article) GetUnknownDuration() (v interface{}) {
return t.duration.unknown_
}
// SetUnknownDuration sets the unknown value of duration
func (t *Article) SetUnknownDuration(i interface{}) {
if t.unknown_ == nil {
t.unknown_ = make(map[string]interface{})
}
tmp := &durationArticleIntermediateType{}
tmp.unknown_ = i
t.duration = tmp
}
// IsSource determines whether the call to GetSource is safe
func (t *Article) IsSource() (ok bool) {
return t.source != nil && t.source.Object != nil
}
// GetSource returns the value safely if IsSource returned true
func (t *Article) GetSource() (v ObjectType) {
return t.source.Object
}
// SetSource sets the value of source to be of ObjectType type
func (t *Article) SetSource(v ObjectType) {
t.source = &sourceArticleIntermediateType{Object: v}
}
// IsSourceIRI determines whether the call to GetSourceIRI is safe
func (t *Article) IsSourceIRI() (ok bool) {
return t.source != nil && t.source.IRI != nil
}
// GetSourceIRI returns the value safely if IsSourceIRI returned true
func (t *Article) GetSourceIRI() (v *url.URL) {
return t.source.IRI
}
// SetSourceIRI sets the value of source to be of *url.URL type
func (t *Article) SetSourceIRI(v *url.URL) {
t.source = &sourceArticleIntermediateType{IRI: v}
}
// HasUnknownSource determines whether the call to GetUnknownSource is safe
func (t *Article) HasUnknownSource() (ok bool) {
return t.source != nil && t.source.unknown_ != nil
}
// GetUnknownSource returns the unknown value for source
func (t *Article) GetUnknownSource() (v interface{}) {
return t.source.unknown_
}
// SetUnknownSource sets the unknown value of source
func (t *Article) SetUnknownSource(i interface{}) {
if t.unknown_ == nil {
t.unknown_ = make(map[string]interface{})
}
tmp := &sourceArticleIntermediateType{}
tmp.unknown_ = i
t.source = tmp
}
// IsInboxOrderedCollection determines whether the call to GetInboxOrderedCollection is safe
func (t *Article) IsInboxOrderedCollection() (ok bool) {
return t.inbox != nil && t.inbox.OrderedCollection != nil
}
// GetInboxOrderedCollection returns the value safely if IsInboxOrderedCollection returned true
func (t *Article) GetInboxOrderedCollection() (v OrderedCollectionType) {
return t.inbox.OrderedCollection
}
// SetInboxOrderedCollection sets the value of inbox to be of OrderedCollectionType type
func (t *Article) SetInboxOrderedCollection(v OrderedCollectionType) {
t.inbox = &inboxArticleIntermediateType{OrderedCollection: v}
}
// IsInboxAnyURI determines whether the call to GetInboxAnyURI is safe
func (t *Article) IsInboxAnyURI() (ok bool) {
return t.inbox != nil && t.inbox.anyURI != nil
}
// GetInboxAnyURI returns the value safely if IsInboxAnyURI returned true
func (t *Article) GetInboxAnyURI() (v *url.URL) {
return t.inbox.anyURI
}
// SetInboxAnyURI sets the value of inbox to be of *url.URL type
func (t *Article) SetInboxAnyURI(v *url.URL) {
t.inbox = &inboxArticleIntermediateType{anyURI: v}
}
// HasUnknownInbox determines whether the call to GetUnknownInbox is safe
func (t *Article) HasUnknownInbox() (ok bool) {
return t.inbox != nil && t.inbox.unknown_ != nil
}
// GetUnknownInbox returns the unknown value for inbox
func (t *Article) GetUnknownInbox() (v interface{}) {
return t.inbox.unknown_
}
// SetUnknownInbox sets the unknown value of inbox
func (t *Article) SetUnknownInbox(i interface{}) {
if t.unknown_ == nil {
t.unknown_ = make(map[string]interface{})
}
tmp := &inboxArticleIntermediateType{}
tmp.unknown_ = i
t.inbox = tmp
}
// IsOutboxOrderedCollection determines whether the call to GetOutboxOrderedCollection is safe
func (t *Article) IsOutboxOrderedCollection() (ok bool) {
return t.outbox != nil && t.outbox.OrderedCollection != nil
}
// GetOutboxOrderedCollection returns the value safely if IsOutboxOrderedCollection returned true
func (t *Article) GetOutboxOrderedCollection() (v OrderedCollectionType) {
return t.outbox.OrderedCollection
}
// SetOutboxOrderedCollection sets the value of outbox to be of OrderedCollectionType type
func (t *Article) SetOutboxOrderedCollection(v OrderedCollectionType) {
t.outbox = &outboxArticleIntermediateType{OrderedCollection: v}
}
// IsOutboxAnyURI determines whether the call to GetOutboxAnyURI is safe
func (t *Article) IsOutboxAnyURI() (ok bool) {
return t.outbox != nil && t.outbox.anyURI != nil
}
// GetOutboxAnyURI returns the value safely if IsOutboxAnyURI returned true
func (t *Article) GetOutboxAnyURI() (v *url.URL) {
return t.outbox.anyURI
}
// SetOutboxAnyURI sets the value of outbox to be of *url.URL type
func (t *Article) SetOutboxAnyURI(v *url.URL) {
t.outbox = &outboxArticleIntermediateType{anyURI: v}
}
// HasUnknownOutbox determines whether the call to GetUnknownOutbox is safe
func (t *Article) HasUnknownOutbox() (ok bool) {
return t.outbox != nil && t.outbox.unknown_ != nil
}
// GetUnknownOutbox returns the unknown value for outbox
func (t *Article) GetUnknownOutbox() (v interface{}) {
return t.outbox.unknown_
}
// SetUnknownOutbox sets the unknown value of outbox
func (t *Article) SetUnknownOutbox(i interface{}) {
if t.unknown_ == nil {
t.unknown_ = make(map[string]interface{})
}
tmp := &outboxArticleIntermediateType{}
tmp.unknown_ = i
t.outbox = tmp
}
// IsFollowingCollection determines whether the call to GetFollowingCollection is safe
func (t *Article) IsFollowingCollection() (ok bool) {
return t.following != nil && t.following.Collection != nil
}
// GetFollowingCollection returns the value safely if IsFollowingCollection returned true
func (t *Article) GetFollowingCollection() (v CollectionType) {
return t.following.Collection
}
// SetFollowingCollection sets the value of following to be of CollectionType type
func (t *Article) SetFollowingCollection(v CollectionType) {
t.following = &followingArticleIntermediateType{Collection: v}
}
// IsFollowingOrderedCollection determines whether the call to GetFollowingOrderedCollection is safe
func (t *Article) IsFollowingOrderedCollection() (ok bool) {
return t.following != nil && t.following.OrderedCollection != nil
}
// GetFollowingOrderedCollection returns the value safely if IsFollowingOrderedCollection returned true
func (t *Article) GetFollowingOrderedCollection() (v OrderedCollectionType) {
return t.following.OrderedCollection
}
// SetFollowingOrderedCollection sets the value of following to be of OrderedCollectionType type
func (t *Article) SetFollowingOrderedCollection(v OrderedCollectionType) {
t.following = &followingArticleIntermediateType{OrderedCollection: v}
}
// IsFollowingAnyURI determines whether the call to GetFollowingAnyURI is safe
func (t *Article) IsFollowingAnyURI() (ok bool) {
return t.following != nil && t.following.anyURI != nil
}
// GetFollowingAnyURI returns the value safely if IsFollowingAnyURI returned true
func (t *Article) GetFollowingAnyURI() (v *url.URL) {
return t.following.anyURI
}
// SetFollowingAnyURI sets the value of following to be of *url.URL type
func (t *Article) SetFollowingAnyURI(v *url.URL) {
t.following = &followingArticleIntermediateType{anyURI: v}
}
// HasUnknownFollowing determines whether the call to GetUnknownFollowing is safe
func (t *Article) HasUnknownFollowing() (ok bool) {
return t.following != nil && t.following.unknown_ != nil
}
// GetUnknownFollowing returns the unknown value for following
func (t *Article) GetUnknownFollowing() (v interface{}) {
return t.following.unknown_
}
// SetUnknownFollowing sets the unknown value of following
func (t *Article) SetUnknownFollowing(i interface{}) {
if t.unknown_ == nil {
t.unknown_ = make(map[string]interface{})
}
tmp := &followingArticleIntermediateType{}
tmp.unknown_ = i
t.following = tmp
}
// IsFollowersCollection determines whether the call to GetFollowersCollection is safe
func (t *Article) IsFollowersCollection() (ok bool) {
return t.followers != nil && t.followers.Collection != nil
}
// GetFollowersCollection returns the value safely if IsFollowersCollection returned true
func (t *Article) GetFollowersCollection() (v CollectionType) {
return t.followers.Collection
}
// SetFollowersCollection sets the value of followers to be of CollectionType type
func (t *Article) SetFollowersCollection(v CollectionType) {
t.followers = &followersArticleIntermediateType{Collection: v}
}
// IsFollowersOrderedCollection determines whether the call to GetFollowersOrderedCollection is safe
func (t *Article) IsFollowersOrderedCollection() (ok bool) {
return t.followers != nil && t.followers.OrderedCollection != nil
}
// GetFollowersOrderedCollection returns the value safely if IsFollowersOrderedCollection returned true
func (t *Article) GetFollowersOrderedCollection() (v OrderedCollectionType) {
return t.followers.OrderedCollection
}
// SetFollowersOrderedCollection sets the value of followers to be of OrderedCollectionType type
func (t *Article) SetFollowersOrderedCollection(v OrderedCollectionType) {
t.followers = &followersArticleIntermediateType{OrderedCollection: v}
}
// IsFollowersAnyURI determines whether the call to GetFollowersAnyURI is safe
func (t *Article) IsFollowersAnyURI() (ok bool) {
return t.followers != nil && t.followers.anyURI != nil
}
// GetFollowersAnyURI returns the value safely if IsFollowersAnyURI returned true
func (t *Article) GetFollowersAnyURI() (v *url.URL) {
return t.followers.anyURI
}
// SetFollowersAnyURI sets the value of followers to be of *url.URL type
func (t *Article) SetFollowersAnyURI(v *url.URL) {
t.followers = &followersArticleIntermediateType{anyURI: v}
}
// HasUnknownFollowers determines whether the call to GetUnknownFollowers is safe
func (t *Article) HasUnknownFollowers() (ok bool) {
return t.followers != nil && t.followers.unknown_ != nil
}
// GetUnknownFollowers returns the unknown value for followers
func (t *Article) GetUnknownFollowers() (v interface{}) {
return t.followers.unknown_
}
// SetUnknownFollowers sets the unknown value of followers
func (t *Article) SetUnknownFollowers(i interface{}) {
if t.unknown_ == nil {
t.unknown_ = make(map[string]interface{})
}
tmp := &followersArticleIntermediateType{}
tmp.unknown_ = i
t.followers = tmp
}
// IsLikedCollection determines whether the call to GetLikedCollection is safe
func (t *Article) IsLikedCollection() (ok bool) {
return t.liked != nil && t.liked.Collection != nil
}
// GetLikedCollection returns the value safely if IsLikedCollection returned true
func (t *Article) GetLikedCollection() (v CollectionType) {
return t.liked.Collection
}
// SetLikedCollection sets the value of liked to be of CollectionType type
func (t *Article) SetLikedCollection(v CollectionType) {
t.liked = &likedArticleIntermediateType{Collection: v}
}
// IsLikedOrderedCollection determines whether the call to GetLikedOrderedCollection is safe
func (t *Article) IsLikedOrderedCollection() (ok bool) {
return t.liked != nil && t.liked.OrderedCollection != nil
}
// GetLikedOrderedCollection returns the value safely if IsLikedOrderedCollection returned true
func (t *Article) GetLikedOrderedCollection() (v OrderedCollectionType) {
return t.liked.OrderedCollection
}
// SetLikedOrderedCollection sets the value of liked to be of OrderedCollectionType type
func (t *Article) SetLikedOrderedCollection(v OrderedCollectionType) {
t.liked = &likedArticleIntermediateType{OrderedCollection: v}
}
// IsLikedAnyURI determines whether the call to GetLikedAnyURI is safe
func (t *Article) IsLikedAnyURI() (ok bool) {
return t.liked != nil && t.liked.anyURI != nil
}
// GetLikedAnyURI returns the value safely if IsLikedAnyURI returned true
func (t *Article) GetLikedAnyURI() (v *url.URL) {
return t.liked.anyURI
}
// SetLikedAnyURI sets the value of liked to be of *url.URL type
func (t *Article) SetLikedAnyURI(v *url.URL) {
t.liked = &likedArticleIntermediateType{anyURI: v}
}
// HasUnknownLiked determines whether the call to GetUnknownLiked is safe
func (t *Article) HasUnknownLiked() (ok bool) {
return t.liked != nil && t.liked.unknown_ != nil
}
// GetUnknownLiked returns the unknown value for liked
func (t *Article) GetUnknownLiked() (v interface{}) {
return t.liked.unknown_
}
// SetUnknownLiked sets the unknown value of liked
func (t *Article) SetUnknownLiked(i interface{}) {
if t.unknown_ == nil {
t.unknown_ = make(map[string]interface{})
}
tmp := &likedArticleIntermediateType{}
tmp.unknown_ = i
t.liked = tmp
}
// IsLikesCollection determines whether the call to GetLikesCollection is safe
func (t *Article) IsLikesCollection() (ok bool) {
return t.likes != nil && t.likes.Collection != nil
}
// GetLikesCollection returns the value safely if IsLikesCollection returned true
func (t *Article) GetLikesCollection() (v CollectionType) {
return t.likes.Collection
}
// SetLikesCollection sets the value of likes to be of CollectionType type
func (t *Article) SetLikesCollection(v CollectionType) {
t.likes = &likesArticleIntermediateType{Collection: v}
}
// IsLikesOrderedCollection determines whether the call to GetLikesOrderedCollection is safe
func (t *Article) IsLikesOrderedCollection() (ok bool) {
return t.likes != nil && t.likes.OrderedCollection != nil
}
// GetLikesOrderedCollection returns the value safely if IsLikesOrderedCollection returned true
func (t *Article) GetLikesOrderedCollection() (v OrderedCollectionType) {
return t.likes.OrderedCollection
}
// SetLikesOrderedCollection sets the value of likes to be of OrderedCollectionType type
func (t *Article) SetLikesOrderedCollection(v OrderedCollectionType) {
t.likes = &likesArticleIntermediateType{OrderedCollection: v}
}
// IsLikesAnyURI determines whether the call to GetLikesAnyURI is safe
func (t *Article) IsLikesAnyURI() (ok bool) {
return t.likes != nil && t.likes.anyURI != nil
}
// GetLikesAnyURI returns the value safely if IsLikesAnyURI returned true
func (t *Article) GetLikesAnyURI() (v *url.URL) {
return t.likes.anyURI
}
// SetLikesAnyURI sets the value of likes to be of *url.URL type
func (t *Article) SetLikesAnyURI(v *url.URL) {
t.likes = &likesArticleIntermediateType{anyURI: v}
}
// HasUnknownLikes determines whether the call to GetUnknownLikes is safe
func (t *Article) HasUnknownLikes() (ok bool) {
return t.likes != nil && t.likes.unknown_ != nil
}
// GetUnknownLikes returns the unknown value for likes
func (t *Article) GetUnknownLikes() (v interface{}) {
return t.likes.unknown_
}
// SetUnknownLikes sets the unknown value of likes
func (t *Article) SetUnknownLikes(i interface{}) {
if t.unknown_ == nil {
t.unknown_ = make(map[string]interface{})
}
tmp := &likesArticleIntermediateType{}
tmp.unknown_ = i
t.likes = tmp
}
// StreamsLen determines the number of elements able to be used for the GetStreams and RemoveStreams functions
func (t *Article) StreamsLen() (l int) {
return len(t.streams)
}
// GetStreams returns the value for the specified index
func (t *Article) GetStreams(index int) (v *url.URL) {
return t.streams[index]
}
// AppendStreams adds a value to the back of streams
func (t *Article) AppendStreams(v *url.URL) {
t.streams = append(t.streams, v)
}
// PrependStreams adds a value to the front of streams
func (t *Article) PrependStreams(v *url.URL) {
t.streams = append([]*url.URL{v}, t.streams...)
}
// RemoveStreams deletes the value from the specified index
func (t *Article) RemoveStreams(index int) {
copy(t.streams[index:], t.streams[index+1:])
t.streams[len(t.streams)-1] = nil
t.streams = t.streams[:len(t.streams)-1]
}
// HasUnknownStreams determines whether the call to GetUnknownStreams is safe
func (t *Article) HasUnknownStreams() (ok bool) {
return t.unknown_ != nil && t.unknown_["streams"] != nil
}
// GetUnknownStreams returns the unknown value for streams
func (t *Article) GetUnknownStreams() (v interface{}) {
return t.unknown_["streams"]
}
// SetUnknownStreams sets the unknown value of streams
func (t *Article) SetUnknownStreams(i interface{}) {
if t.unknown_ == nil {
t.unknown_ = make(map[string]interface{})
}
t.unknown_["streams"] = i
}
// IsPreferredUsername determines whether the call to GetPreferredUsername is safe
func (t *Article) IsPreferredUsername() (ok bool) {
return t.preferredUsername != nil && t.preferredUsername.stringName != nil
}
// GetPreferredUsername returns the value safely if IsPreferredUsername returned true
func (t *Article) GetPreferredUsername() (v string) {
return *t.preferredUsername.stringName
}
// SetPreferredUsername sets the value of preferredUsername to be of string type
func (t *Article) SetPreferredUsername(v string) {
t.preferredUsername = &preferredUsernameArticleIntermediateType{stringName: &v}
}
// IsPreferredUsernameIRI determines whether the call to GetPreferredUsernameIRI is safe
func (t *Article) IsPreferredUsernameIRI() (ok bool) {
return t.preferredUsername != nil && t.preferredUsername.IRI != nil
}
// GetPreferredUsernameIRI returns the value safely if IsPreferredUsernameIRI returned true
func (t *Article) GetPreferredUsernameIRI() (v *url.URL) {
return t.preferredUsername.IRI
}
// SetPreferredUsernameIRI sets the value of preferredUsername to be of *url.URL type
func (t *Article) SetPreferredUsernameIRI(v *url.URL) {
t.preferredUsername = &preferredUsernameArticleIntermediateType{IRI: v}
}
// HasUnknownPreferredUsername determines whether the call to GetUnknownPreferredUsername is safe
func (t *Article) HasUnknownPreferredUsername() (ok bool) {
return t.preferredUsername != nil && t.preferredUsername.unknown_ != nil
}
// GetUnknownPreferredUsername returns the unknown value for preferredUsername
func (t *Article) GetUnknownPreferredUsername() (v interface{}) {
return t.preferredUsername.unknown_
}
// SetUnknownPreferredUsername sets the unknown value of preferredUsername
func (t *Article) SetUnknownPreferredUsername(i interface{}) {
if t.unknown_ == nil {
t.unknown_ = make(map[string]interface{})
}
tmp := &preferredUsernameArticleIntermediateType{}
tmp.unknown_ = i
t.preferredUsername = tmp
}
// PreferredUsernameMapLanguages returns all languages for this property's language mapping, or nil if there are none.
func (t *Article) PreferredUsernameMapLanguages() (l []string) {
if t.preferredUsernameMap == nil || len(t.preferredUsernameMap) == 0 {
return nil
}
for k := range t.preferredUsernameMap {
l = append(l, k)
}
return
}
// GetPreferredUsernameMap retrieves the value of the property for the specified language, or an empty string if it does not exist
func (t *Article) GetPreferredUsernameMap(l string) (v string) {
if t.preferredUsernameMap == nil {
return ""
}
ok := false
v, ok = t.preferredUsernameMap[l]
if !ok {
return ""
}
return v
}
// SetPreferredUsernameMap sets the value of the property for the specified language
func (t *Article) SetPreferredUsernameMap(l string, v string) {
if t.preferredUsernameMap == nil {
t.preferredUsernameMap = make(map[string]string)
}
t.preferredUsernameMap[l] = v
}
// IsEndpoints determines whether the call to GetEndpoints is safe
func (t *Article) IsEndpoints() (ok bool) {
return t.endpoints != nil && t.endpoints.Object != nil
}
// GetEndpoints returns the value safely if IsEndpoints returned true
func (t *Article) GetEndpoints() (v ObjectType) {
return t.endpoints.Object
}
// SetEndpoints sets the value of endpoints to be of ObjectType type
func (t *Article) SetEndpoints(v ObjectType) {
t.endpoints = &endpointsArticleIntermediateType{Object: v}
}
// IsEndpointsIRI determines whether the call to GetEndpointsIRI is safe
func (t *Article) IsEndpointsIRI() (ok bool) {
return t.endpoints != nil && t.endpoints.IRI != nil
}
// GetEndpointsIRI returns the value safely if IsEndpointsIRI returned true
func (t *Article) GetEndpointsIRI() (v *url.URL) {
return t.endpoints.IRI
}
// SetEndpointsIRI sets the value of endpoints to be of *url.URL type
func (t *Article) SetEndpointsIRI(v *url.URL) {
t.endpoints = &endpointsArticleIntermediateType{IRI: v}
}
// HasUnknownEndpoints determines whether the call to GetUnknownEndpoints is safe
func (t *Article) HasUnknownEndpoints() (ok bool) {
return t.endpoints != nil && t.endpoints.unknown_ != nil
}
// GetUnknownEndpoints returns the unknown value for endpoints
func (t *Article) GetUnknownEndpoints() (v interface{}) {
return t.endpoints.unknown_
}
// SetUnknownEndpoints sets the unknown value of endpoints
func (t *Article) SetUnknownEndpoints(i interface{}) {
if t.unknown_ == nil {
t.unknown_ = make(map[string]interface{})
}
tmp := &endpointsArticleIntermediateType{}
tmp.unknown_ = i
t.endpoints = tmp
}
// HasProxyUrl determines whether the call to GetProxyUrl is safe
func (t *Article) HasProxyUrl() (ok bool) {
return t.proxyUrl != nil
}
// GetProxyUrl returns the value for proxyUrl
func (t *Article) GetProxyUrl() (v *url.URL) {
return t.proxyUrl
}
// SetProxyUrl sets the value of proxyUrl
func (t *Article) SetProxyUrl(v *url.URL) {
t.proxyUrl = v
}
// HasUnknownProxyUrl determines whether the call to GetUnknownProxyUrl is safe
func (t *Article) HasUnknownProxyUrl() (ok bool) {
return t.unknown_ != nil && t.unknown_["proxyUrl"] != nil
}
// GetUnknownProxyUrl returns the unknown value for proxyUrl
func (t *Article) GetUnknownProxyUrl() (v interface{}) {
return t.unknown_["proxyUrl"]
}
// SetUnknownProxyUrl sets the unknown value of proxyUrl
func (t *Article) SetUnknownProxyUrl(i interface{}) {
if t.unknown_ == nil {
t.unknown_ = make(map[string]interface{})
}
t.unknown_["proxyUrl"] = i
}
// HasOauthAuthorizationEndpoint determines whether the call to GetOauthAuthorizationEndpoint is safe
func (t *Article) HasOauthAuthorizationEndpoint() (ok bool) {
return t.oauthAuthorizationEndpoint != nil
}
// GetOauthAuthorizationEndpoint returns the value for oauthAuthorizationEndpoint
func (t *Article) GetOauthAuthorizationEndpoint() (v *url.URL) {
return t.oauthAuthorizationEndpoint
}
// SetOauthAuthorizationEndpoint sets the value of oauthAuthorizationEndpoint
func (t *Article) SetOauthAuthorizationEndpoint(v *url.URL) {
t.oauthAuthorizationEndpoint = v
}
// HasUnknownOauthAuthorizationEndpoint determines whether the call to GetUnknownOauthAuthorizationEndpoint is safe
func (t *Article) HasUnknownOauthAuthorizationEndpoint() (ok bool) {
return t.unknown_ != nil && t.unknown_["oauthAuthorizationEndpoint"] != nil
}
// GetUnknownOauthAuthorizationEndpoint returns the unknown value for oauthAuthorizationEndpoint
func (t *Article) GetUnknownOauthAuthorizationEndpoint() (v interface{}) {
return t.unknown_["oauthAuthorizationEndpoint"]
}
// SetUnknownOauthAuthorizationEndpoint sets the unknown value of oauthAuthorizationEndpoint
func (t *Article) SetUnknownOauthAuthorizationEndpoint(i interface{}) {
if t.unknown_ == nil {
t.unknown_ = make(map[string]interface{})
}
t.unknown_["oauthAuthorizationEndpoint"] = i
}
// HasOauthTokenEndpoint determines whether the call to GetOauthTokenEndpoint is safe
func (t *Article) HasOauthTokenEndpoint() (ok bool) {
return t.oauthTokenEndpoint != nil
}
// GetOauthTokenEndpoint returns the value for oauthTokenEndpoint
func (t *Article) GetOauthTokenEndpoint() (v *url.URL) {
return t.oauthTokenEndpoint
}
// SetOauthTokenEndpoint sets the value of oauthTokenEndpoint
func (t *Article) SetOauthTokenEndpoint(v *url.URL) {
t.oauthTokenEndpoint = v
}
// HasUnknownOauthTokenEndpoint determines whether the call to GetUnknownOauthTokenEndpoint is safe
func (t *Article) HasUnknownOauthTokenEndpoint() (ok bool) {
return t.unknown_ != nil && t.unknown_["oauthTokenEndpoint"] != nil
}
// GetUnknownOauthTokenEndpoint returns the unknown value for oauthTokenEndpoint
func (t *Article) GetUnknownOauthTokenEndpoint() (v interface{}) {
return t.unknown_["oauthTokenEndpoint"]
}
// SetUnknownOauthTokenEndpoint sets the unknown value of oauthTokenEndpoint
func (t *Article) SetUnknownOauthTokenEndpoint(i interface{}) {
if t.unknown_ == nil {
t.unknown_ = make(map[string]interface{})
}
t.unknown_["oauthTokenEndpoint"] = i
}
// HasProvideClientKey determines whether the call to GetProvideClientKey is safe
func (t *Article) HasProvideClientKey() (ok bool) {
return t.provideClientKey != nil
}
// GetProvideClientKey returns the value for provideClientKey
func (t *Article) GetProvideClientKey() (v *url.URL) {
return t.provideClientKey
}
// SetProvideClientKey sets the value of provideClientKey
func (t *Article) SetProvideClientKey(v *url.URL) {
t.provideClientKey = v
}
// HasUnknownProvideClientKey determines whether the call to GetUnknownProvideClientKey is safe
func (t *Article) HasUnknownProvideClientKey() (ok bool) {
return t.unknown_ != nil && t.unknown_["provideClientKey"] != nil
}
// GetUnknownProvideClientKey returns the unknown value for provideClientKey
func (t *Article) GetUnknownProvideClientKey() (v interface{}) {
return t.unknown_["provideClientKey"]
}
// SetUnknownProvideClientKey sets the unknown value of provideClientKey
func (t *Article) SetUnknownProvideClientKey(i interface{}) {
if t.unknown_ == nil {
t.unknown_ = make(map[string]interface{})
}
t.unknown_["provideClientKey"] = i
}
// HasSignClientKey determines whether the call to GetSignClientKey is safe
func (t *Article) HasSignClientKey() (ok bool) {
return t.signClientKey != nil
}
// GetSignClientKey returns the value for signClientKey
func (t *Article) GetSignClientKey() (v *url.URL) {
return t.signClientKey
}
// SetSignClientKey sets the value of signClientKey
func (t *Article) SetSignClientKey(v *url.URL) {
t.signClientKey = v
}
// HasUnknownSignClientKey determines whether the call to GetUnknownSignClientKey is safe
func (t *Article) HasUnknownSignClientKey() (ok bool) {
return t.unknown_ != nil && t.unknown_["signClientKey"] != nil
}
// GetUnknownSignClientKey returns the unknown value for signClientKey
func (t *Article) GetUnknownSignClientKey() (v interface{}) {
return t.unknown_["signClientKey"]
}
// SetUnknownSignClientKey sets the unknown value of signClientKey
func (t *Article) SetUnknownSignClientKey(i interface{}) {
if t.unknown_ == nil {
t.unknown_ = make(map[string]interface{})
}
t.unknown_["signClientKey"] = i
}
// HasSharedInbox determines whether the call to GetSharedInbox is safe
func (t *Article) HasSharedInbox() (ok bool) {
return t.sharedInbox != nil
}
// GetSharedInbox returns the value for sharedInbox
func (t *Article) GetSharedInbox() (v *url.URL) {
return t.sharedInbox
}
// SetSharedInbox sets the value of sharedInbox
func (t *Article) SetSharedInbox(v *url.URL) {
t.sharedInbox = v
}
// HasUnknownSharedInbox determines whether the call to GetUnknownSharedInbox is safe
func (t *Article) HasUnknownSharedInbox() (ok bool) {
return t.unknown_ != nil && t.unknown_["sharedInbox"] != nil
}
// GetUnknownSharedInbox returns the unknown value for sharedInbox
func (t *Article) GetUnknownSharedInbox() (v interface{}) {
return t.unknown_["sharedInbox"]
}
// SetUnknownSharedInbox sets the unknown value of sharedInbox
func (t *Article) SetUnknownSharedInbox(i interface{}) {
if t.unknown_ == nil {
t.unknown_ = make(map[string]interface{})
}
t.unknown_["sharedInbox"] = i
}
// AddUnknown adds a raw extension to this object with the specified key
func (t *Article) AddUnknown(k string, i interface{}) (this *Article) {
if t.unknown_ == nil {
t.unknown_ = make(map[string]interface{})
}
t.unknown_[k] = i
return t
}
// HasUnknown returns true if there is an unknown object with the specified key
func (t *Article) HasUnknown(k string) (b bool) {
if t.unknown_ == nil {
return false
}
_, ok := t.unknown_[k]
return ok
}
// RemoveUnknown removes a raw extension from this object with the specified key
func (t *Article) RemoveUnknown(k string) (this *Article) {
delete(t.unknown_, k)
return t
}
// Serialize turns this object into a map[string]interface{}. Note that the "type" property will automatically be populated with "Article" if not manually set by the caller
func (t *Article) Serialize() (m map[string]interface{}, err error) {
m = make(map[string]interface{})
for k, v := range t.unknown_ {
m[k] = unknownValueSerialize(v)
}
var typeAlreadySet bool
for _, k := range t.typeName {
if ks, ok := k.(string); ok {
if ks == "Article" {
typeAlreadySet = true
break
}
}
}
if !typeAlreadySet {
t.typeName = append(t.typeName, "Article")
}
// Begin generation by generateFunctionalMultiTypeDefinition
if t.altitude != nil {
if v, err := serializeAltitudeArticleIntermediateType(t.altitude); err == nil {
m["altitude"] = v
} else {
return m, err
}
}
// End generation by generateFunctionalMultiTypeDefinition
// Begin generation by generateNonFunctionalMultiTypeDefinition
if v, err := serializeSliceAttachmentArticleIntermediateType(t.attachment); err == nil && v != nil {
if len(v) == 1 {
m["attachment"] = v[0]
} else {
m["attachment"] = v
}
} else if err != nil {
return m, err
}
// End generation by generateNonFunctionalMultiTypeDefinition
// Begin generation by generateNonFunctionalMultiTypeDefinition
if v, err := serializeSliceAttributedToArticleIntermediateType(t.attributedTo); err == nil && v != nil {
if len(v) == 1 {
m["attributedTo"] = v[0]
} else {
m["attributedTo"] = v
}
} else if err != nil {
return m, err
}
// End generation by generateNonFunctionalMultiTypeDefinition
// Begin generation by generateNonFunctionalMultiTypeDefinition
if v, err := serializeSliceAudienceArticleIntermediateType(t.audience); err == nil && v != nil {
if len(v) == 1 {
m["audience"] = v[0]
} else {
m["audience"] = v
}
} else if err != nil {
return m, err
}
// End generation by generateNonFunctionalMultiTypeDefinition
// Begin generation by generateNonFunctionalMultiTypeDefinition
if v, err := serializeSliceContentArticleIntermediateType(t.content); err == nil && v != nil {
if len(v) == 1 {
m["content"] = v[0]
} else {
m["content"] = v
}
} else if err != nil {
return m, err
}
// End generation by generateNonFunctionalMultiTypeDefinition
// Begin generation by generateNaturalLanguageMap
if t.contentMap != nil && len(t.contentMap) >= 0 {
m["contentMap"] = t.contentMap
}
// End generation by generateNaturalLanguageMap
// Begin generation by generateNonFunctionalMultiTypeDefinition
if v, err := serializeSliceContextArticleIntermediateType(t.context); err == nil && v != nil {
if len(v) == 1 {
m["context"] = v[0]
} else {
m["context"] = v
}
} else if err != nil {
return m, err
}
// End generation by generateNonFunctionalMultiTypeDefinition
// Begin generation by generateNonFunctionalMultiTypeDefinition
if v, err := serializeSliceNameArticleIntermediateType(t.name); err == nil && v != nil {
if len(v) == 1 {
m["name"] = v[0]
} else {
m["name"] = v
}
} else if err != nil {
return m, err
}
// End generation by generateNonFunctionalMultiTypeDefinition
// Begin generation by generateNaturalLanguageMap
if t.nameMap != nil && len(t.nameMap) >= 0 {
m["nameMap"] = t.nameMap
}
// End generation by generateNaturalLanguageMap
// Begin generation by generateFunctionalMultiTypeDefinition
if t.endTime != nil {
if v, err := serializeEndTimeArticleIntermediateType(t.endTime); err == nil {
m["endTime"] = v
} else {
return m, err
}
}
// End generation by generateFunctionalMultiTypeDefinition
// Begin generation by generateNonFunctionalMultiTypeDefinition
if v, err := serializeSliceGeneratorArticleIntermediateType(t.generator); err == nil && v != nil {
if len(v) == 1 {
m["generator"] = v[0]
} else {
m["generator"] = v
}
} else if err != nil {
return m, err
}
// End generation by generateNonFunctionalMultiTypeDefinition
// Begin generation by generateNonFunctionalMultiTypeDefinition
if v, err := serializeSliceIconArticleIntermediateType(t.icon); err == nil && v != nil {
if len(v) == 1 {
m["icon"] = v[0]
} else {
m["icon"] = v
}
} else if err != nil {
return m, err
}
// End generation by generateNonFunctionalMultiTypeDefinition
// Begin generation by RangeReference.Serialize for Value
if t.id != nil {
idSerializeFunc := func() (interface{}, error) {
v := t.id
tmp := anyURISerialize(v)
return tmp, nil
}
idResult, err := idSerializeFunc()
if err == nil {
m["id"] = idResult
} else {
return m, err
}
}
// End generation by RangeReference.Serialize for Value
// Begin generation by generateNonFunctionalMultiTypeDefinition
if v, err := serializeSliceImageArticleIntermediateType(t.image); err == nil && v != nil {
if len(v) == 1 {
m["image"] = v[0]
} else {
m["image"] = v
}
} else if err != nil {
return m, err
}
// End generation by generateNonFunctionalMultiTypeDefinition
// Begin generation by generateNonFunctionalMultiTypeDefinition
if v, err := serializeSliceInReplyToArticleIntermediateType(t.inReplyTo); err == nil && v != nil {
if len(v) == 1 {
m["inReplyTo"] = v[0]
} else {
m["inReplyTo"] = v
}
} else if err != nil {
return m, err
}
// End generation by generateNonFunctionalMultiTypeDefinition
// Begin generation by generateNonFunctionalMultiTypeDefinition
if v, err := serializeSliceLocationArticleIntermediateType(t.location); err == nil && v != nil {
if len(v) == 1 {
m["location"] = v[0]
} else {
m["location"] = v
}
} else if err != nil {
return m, err
}
// End generation by generateNonFunctionalMultiTypeDefinition
// Begin generation by generateNonFunctionalMultiTypeDefinition
if v, err := serializeSlicePreviewArticleIntermediateType(t.preview); err == nil && v != nil {
if len(v) == 1 {
m["preview"] = v[0]
} else {
m["preview"] = v
}
} else if err != nil {
return m, err
}
// End generation by generateNonFunctionalMultiTypeDefinition
// Begin generation by generateFunctionalMultiTypeDefinition
if t.published != nil {
if v, err := serializePublishedArticleIntermediateType(t.published); err == nil {
m["published"] = v
} else {
return m, err
}
}
// End generation by generateFunctionalMultiTypeDefinition
// Begin generation by generateFunctionalMultiTypeDefinition
if t.replies != nil {
if v, err := serializeRepliesArticleIntermediateType(t.replies); err == nil {
m["replies"] = v
} else {
return m, err
}
}
// End generation by generateFunctionalMultiTypeDefinition
// Begin generation by generateFunctionalMultiTypeDefinition
if t.startTime != nil {
if v, err := serializeStartTimeArticleIntermediateType(t.startTime); err == nil {
m["startTime"] = v
} else {
return m, err
}
}
// End generation by generateFunctionalMultiTypeDefinition
// Begin generation by generateNonFunctionalMultiTypeDefinition
if v, err := serializeSliceSummaryArticleIntermediateType(t.summary); err == nil && v != nil {
if len(v) == 1 {
m["summary"] = v[0]
} else {
m["summary"] = v
}
} else if err != nil {
return m, err
}
// End generation by generateNonFunctionalMultiTypeDefinition
// Begin generation by generateNaturalLanguageMap
if t.summaryMap != nil && len(t.summaryMap) >= 0 {
m["summaryMap"] = t.summaryMap
}
// End generation by generateNaturalLanguageMap
// Begin generation by generateNonFunctionalMultiTypeDefinition
if v, err := serializeSliceTagArticleIntermediateType(t.tag); err == nil && v != nil {
if len(v) == 1 {
m["tag"] = v[0]
} else {
m["tag"] = v
}
} else if err != nil {
return m, err
}
// End generation by generateNonFunctionalMultiTypeDefinition
// Begin generation by generateNonFunctionalAnyDefinition
if t.typeName != nil {
if len(t.typeName) == 1 {
m["type"] = t.typeName[0]
} else {
m["type"] = t.typeName
}
}
// End generation by generateNonFunctionalAnyDefinition
// Begin generation by generateFunctionalMultiTypeDefinition
if t.updated != nil {
if v, err := serializeUpdatedArticleIntermediateType(t.updated); err == nil {
m["updated"] = v
} else {
return m, err
}
}
// End generation by generateFunctionalMultiTypeDefinition
// Begin generation by generateNonFunctionalMultiTypeDefinition
if v, err := serializeSliceUrlArticleIntermediateType(t.url); err == nil && v != nil {
if len(v) == 1 {
m["url"] = v[0]
} else {
m["url"] = v
}
} else if err != nil {
return m, err
}
// End generation by generateNonFunctionalMultiTypeDefinition
// Begin generation by generateNonFunctionalMultiTypeDefinition
if v, err := serializeSliceToArticleIntermediateType(t.to); err == nil && v != nil {
if len(v) == 1 {
m["to"] = v[0]
} else {
m["to"] = v
}
} else if err != nil {
return m, err
}
// End generation by generateNonFunctionalMultiTypeDefinition
// Begin generation by generateNonFunctionalMultiTypeDefinition
if v, err := serializeSliceBtoArticleIntermediateType(t.bto); err == nil && v != nil {
if len(v) == 1 {
m["bto"] = v[0]
} else {
m["bto"] = v
}
} else if err != nil {
return m, err
}
// End generation by generateNonFunctionalMultiTypeDefinition
// Begin generation by generateNonFunctionalMultiTypeDefinition
if v, err := serializeSliceCcArticleIntermediateType(t.cc); err == nil && v != nil {
if len(v) == 1 {
m["cc"] = v[0]
} else {
m["cc"] = v
}
} else if err != nil {
return m, err
}
// End generation by generateNonFunctionalMultiTypeDefinition
// Begin generation by generateNonFunctionalMultiTypeDefinition
if v, err := serializeSliceBccArticleIntermediateType(t.bcc); err == nil && v != nil {
if len(v) == 1 {
m["bcc"] = v[0]
} else {
m["bcc"] = v
}
} else if err != nil {
return m, err
}
// End generation by generateNonFunctionalMultiTypeDefinition
// Begin generation by generateFunctionalMultiTypeDefinition
if t.mediaType != nil {
if v, err := serializeMediaTypeArticleIntermediateType(t.mediaType); err == nil {
m["mediaType"] = v
} else {
return m, err
}
}
// End generation by generateFunctionalMultiTypeDefinition
// Begin generation by generateFunctionalMultiTypeDefinition
if t.duration != nil {
if v, err := serializeDurationArticleIntermediateType(t.duration); err == nil {
m["duration"] = v
} else {
return m, err
}
}
// End generation by generateFunctionalMultiTypeDefinition
// Begin generation by generateFunctionalMultiTypeDefinition
if t.source != nil {
if v, err := serializeSourceArticleIntermediateType(t.source); err == nil {
m["source"] = v
} else {
return m, err
}
}
// End generation by generateFunctionalMultiTypeDefinition
// Begin generation by generateFunctionalMultiTypeDefinition
if t.inbox != nil {
if v, err := serializeInboxArticleIntermediateType(t.inbox); err == nil {
m["inbox"] = v
} else {
return m, err
}
}
// End generation by generateFunctionalMultiTypeDefinition
// Begin generation by generateFunctionalMultiTypeDefinition
if t.outbox != nil {
if v, err := serializeOutboxArticleIntermediateType(t.outbox); err == nil {
m["outbox"] = v
} else {
return m, err
}
}
// End generation by generateFunctionalMultiTypeDefinition
// Begin generation by generateFunctionalMultiTypeDefinition
if t.following != nil {
if v, err := serializeFollowingArticleIntermediateType(t.following); err == nil {
m["following"] = v
} else {
return m, err
}
}
// End generation by generateFunctionalMultiTypeDefinition
// Begin generation by generateFunctionalMultiTypeDefinition
if t.followers != nil {
if v, err := serializeFollowersArticleIntermediateType(t.followers); err == nil {
m["followers"] = v
} else {
return m, err
}
}
// End generation by generateFunctionalMultiTypeDefinition
// Begin generation by generateFunctionalMultiTypeDefinition
if t.liked != nil {
if v, err := serializeLikedArticleIntermediateType(t.liked); err == nil {
m["liked"] = v
} else {
return m, err
}
}
// End generation by generateFunctionalMultiTypeDefinition
// Begin generation by generateFunctionalMultiTypeDefinition
if t.likes != nil {
if v, err := serializeLikesArticleIntermediateType(t.likes); err == nil {
m["likes"] = v
} else {
return m, err
}
}
// End generation by generateFunctionalMultiTypeDefinition
// Begin generation by RangeReference.Serialize for Value
var streamsTemp []interface{}
for _, v := range t.streams {
tmp := anyURISerialize(v)
streamsTemp = append(streamsTemp, tmp)
}
if streamsTemp != nil {
if len(streamsTemp) == 1 {
m["streams"] = streamsTemp[0]
} else {
m["streams"] = streamsTemp
}
}
// End generation by RangeReference.Serialize for Value
// Begin generation by generateFunctionalMultiTypeDefinition
if t.preferredUsername != nil {
if v, err := serializePreferredUsernameArticleIntermediateType(t.preferredUsername); err == nil {
m["preferredUsername"] = v
} else {
return m, err
}
}
// End generation by generateFunctionalMultiTypeDefinition
// Begin generation by generateNaturalLanguageMap
if t.preferredUsernameMap != nil && len(t.preferredUsernameMap) >= 0 {
m["preferredUsernameMap"] = t.preferredUsernameMap
}
// End generation by generateNaturalLanguageMap
// Begin generation by generateFunctionalMultiTypeDefinition
if t.endpoints != nil {
if v, err := serializeEndpointsArticleIntermediateType(t.endpoints); err == nil {
m["endpoints"] = v
} else {
return m, err
}
}
// End generation by generateFunctionalMultiTypeDefinition
// Begin generation by RangeReference.Serialize for Value
if t.proxyUrl != nil {
proxyUrlSerializeFunc := func() (interface{}, error) {
v := t.proxyUrl
tmp := anyURISerialize(v)
return tmp, nil
}
proxyUrlResult, err := proxyUrlSerializeFunc()
if err == nil {
m["proxyUrl"] = proxyUrlResult
} else {
return m, err
}
}
// End generation by RangeReference.Serialize for Value
// Begin generation by RangeReference.Serialize for Value
if t.oauthAuthorizationEndpoint != nil {
oauthAuthorizationEndpointSerializeFunc := func() (interface{}, error) {
v := t.oauthAuthorizationEndpoint
tmp := anyURISerialize(v)
return tmp, nil
}
oauthAuthorizationEndpointResult, err := oauthAuthorizationEndpointSerializeFunc()
if err == nil {
m["oauthAuthorizationEndpoint"] = oauthAuthorizationEndpointResult
} else {
return m, err
}
}
// End generation by RangeReference.Serialize for Value
// Begin generation by RangeReference.Serialize for Value
if t.oauthTokenEndpoint != nil {
oauthTokenEndpointSerializeFunc := func() (interface{}, error) {
v := t.oauthTokenEndpoint
tmp := anyURISerialize(v)
return tmp, nil
}
oauthTokenEndpointResult, err := oauthTokenEndpointSerializeFunc()
if err == nil {
m["oauthTokenEndpoint"] = oauthTokenEndpointResult
} else {
return m, err
}
}
// End generation by RangeReference.Serialize for Value
// Begin generation by RangeReference.Serialize for Value
if t.provideClientKey != nil {
provideClientKeySerializeFunc := func() (interface{}, error) {
v := t.provideClientKey
tmp := anyURISerialize(v)
return tmp, nil
}
provideClientKeyResult, err := provideClientKeySerializeFunc()
if err == nil {
m["provideClientKey"] = provideClientKeyResult
} else {
return m, err
}
}
// End generation by RangeReference.Serialize for Value
// Begin generation by RangeReference.Serialize for Value
if t.signClientKey != nil {
signClientKeySerializeFunc := func() (interface{}, error) {
v := t.signClientKey
tmp := anyURISerialize(v)
return tmp, nil
}
signClientKeyResult, err := signClientKeySerializeFunc()
if err == nil {
m["signClientKey"] = signClientKeyResult
} else {
return m, err
}
}
// End generation by RangeReference.Serialize for Value
// Begin generation by RangeReference.Serialize for Value
if t.sharedInbox != nil {
sharedInboxSerializeFunc := func() (interface{}, error) {
v := t.sharedInbox
tmp := anyURISerialize(v)
return tmp, nil
}
sharedInboxResult, err := sharedInboxSerializeFunc()
if err == nil {
m["sharedInbox"] = sharedInboxResult
} else {
return m, err
}
}
// End generation by RangeReference.Serialize for Value
return
}
// Deserialize populates this object from a map[string]interface{}
func (t *Article) Deserialize(m map[string]interface{}) (err error) {
for k, v := range m {
handled := false
if !handled {
// Begin generation by generateFunctionalMultiTypeDefinition
if k == "altitude" {
t.altitude, err = deserializeAltitudeArticleIntermediateType(v)
if err != nil {
return err
}
handled = true
}
// End generation by generateFunctionalMultiTypeDefinition
}
if !handled {
// Begin generation by generateNonFunctionalMultiTypeDefinition
if k == "attachment" {
if tmpMap, ok := v.(map[string]interface{}); ok {
tmp, err := deserializeAttachmentArticleIntermediateType(tmpMap)
if err != nil {
return err
}
t.attachment = []*attachmentArticleIntermediateType{tmp}
handled = true
} else if tmpSlice, ok := v.([]interface{}); ok {
t.attachment, err = deserializeSliceAttachmentArticleIntermediateType(tmpSlice)
if err != nil {
return err
}
handled = true
} else {
tmp := &attachmentArticleIntermediateType{}
err = tmp.Deserialize(v)
if err != nil {
return err
}
t.attachment = []*attachmentArticleIntermediateType{tmp}
handled = true
}
}
// End generation by generateNonFunctionalMultiTypeDefinition
}
if !handled {
// Begin generation by generateNonFunctionalMultiTypeDefinition
if k == "attributedTo" {
if tmpMap, ok := v.(map[string]interface{}); ok {
tmp, err := deserializeAttributedToArticleIntermediateType(tmpMap)
if err != nil {
return err
}
t.attributedTo = []*attributedToArticleIntermediateType{tmp}
handled = true
} else if tmpSlice, ok := v.([]interface{}); ok {
t.attributedTo, err = deserializeSliceAttributedToArticleIntermediateType(tmpSlice)
if err != nil {
return err
}
handled = true
} else {
tmp := &attributedToArticleIntermediateType{}
err = tmp.Deserialize(v)
if err != nil {
return err
}
t.attributedTo = []*attributedToArticleIntermediateType{tmp}
handled = true
}
}
// End generation by generateNonFunctionalMultiTypeDefinition
}
if !handled {
// Begin generation by generateNonFunctionalMultiTypeDefinition
if k == "audience" {
if tmpMap, ok := v.(map[string]interface{}); ok {
tmp, err := deserializeAudienceArticleIntermediateType(tmpMap)
if err != nil {
return err
}
t.audience = []*audienceArticleIntermediateType{tmp}
handled = true
} else if tmpSlice, ok := v.([]interface{}); ok {
t.audience, err = deserializeSliceAudienceArticleIntermediateType(tmpSlice)
if err != nil {
return err
}
handled = true
} else {
tmp := &audienceArticleIntermediateType{}
err = tmp.Deserialize(v)
if err != nil {
return err
}
t.audience = []*audienceArticleIntermediateType{tmp}
handled = true
}
}
// End generation by generateNonFunctionalMultiTypeDefinition
}
if !handled {
// Begin generation by generateNonFunctionalMultiTypeDefinition
if k == "content" {
if tmpMap, ok := v.(map[string]interface{}); ok {
tmp, err := deserializeContentArticleIntermediateType(tmpMap)
if err != nil {
return err
}
t.content = []*contentArticleIntermediateType{tmp}
handled = true
} else if tmpSlice, ok := v.([]interface{}); ok {
t.content, err = deserializeSliceContentArticleIntermediateType(tmpSlice)
if err != nil {
return err
}
handled = true
} else {
tmp := &contentArticleIntermediateType{}
err = tmp.Deserialize(v)
if err != nil {
return err
}
t.content = []*contentArticleIntermediateType{tmp}
handled = true
}
}
// End generation by generateNonFunctionalMultiTypeDefinition
// Begin generation by generateNaturalLanguageMap
if k == "contentMap" {
if vMap, ok := v.(map[string]interface{}); ok {
val := make(map[string]string)
for k, iVal := range vMap {
if sVal, ok := iVal.(string); ok {
val[k] = sVal
}
}
t.contentMap = val
handled = true
}
}
// End generation by generateNaturalLanguageMap
}
if !handled {
// Begin generation by generateNonFunctionalMultiTypeDefinition
if k == "context" {
if tmpMap, ok := v.(map[string]interface{}); ok {
tmp, err := deserializeContextArticleIntermediateType(tmpMap)
if err != nil {
return err
}
t.context = []*contextArticleIntermediateType{tmp}
handled = true
} else if tmpSlice, ok := v.([]interface{}); ok {
t.context, err = deserializeSliceContextArticleIntermediateType(tmpSlice)
if err != nil {
return err
}
handled = true
} else {
tmp := &contextArticleIntermediateType{}
err = tmp.Deserialize(v)
if err != nil {
return err
}
t.context = []*contextArticleIntermediateType{tmp}
handled = true
}
}
// End generation by generateNonFunctionalMultiTypeDefinition
}
if !handled {
// Begin generation by generateNonFunctionalMultiTypeDefinition
if k == "name" {
if tmpMap, ok := v.(map[string]interface{}); ok {
tmp, err := deserializeNameArticleIntermediateType(tmpMap)
if err != nil {
return err
}
t.name = []*nameArticleIntermediateType{tmp}
handled = true
} else if tmpSlice, ok := v.([]interface{}); ok {
t.name, err = deserializeSliceNameArticleIntermediateType(tmpSlice)
if err != nil {
return err
}
handled = true
} else {
tmp := &nameArticleIntermediateType{}
err = tmp.Deserialize(v)
if err != nil {
return err
}
t.name = []*nameArticleIntermediateType{tmp}
handled = true
}
}
// End generation by generateNonFunctionalMultiTypeDefinition
// Begin generation by generateNaturalLanguageMap
if k == "nameMap" {
if vMap, ok := v.(map[string]interface{}); ok {
val := make(map[string]string)
for k, iVal := range vMap {
if sVal, ok := iVal.(string); ok {
val[k] = sVal
}
}
t.nameMap = val
handled = true
}
}
// End generation by generateNaturalLanguageMap
}
if !handled {
// Begin generation by generateFunctionalMultiTypeDefinition
if k == "endTime" {
t.endTime, err = deserializeEndTimeArticleIntermediateType(v)
if err != nil {
return err
}
handled = true
}
// End generation by generateFunctionalMultiTypeDefinition
}
if !handled {
// Begin generation by generateNonFunctionalMultiTypeDefinition
if k == "generator" {
if tmpMap, ok := v.(map[string]interface{}); ok {
tmp, err := deserializeGeneratorArticleIntermediateType(tmpMap)
if err != nil {
return err
}
t.generator = []*generatorArticleIntermediateType{tmp}
handled = true
} else if tmpSlice, ok := v.([]interface{}); ok {
t.generator, err = deserializeSliceGeneratorArticleIntermediateType(tmpSlice)
if err != nil {
return err
}
handled = true
} else {
tmp := &generatorArticleIntermediateType{}
err = tmp.Deserialize(v)
if err != nil {
return err
}
t.generator = []*generatorArticleIntermediateType{tmp}
handled = true
}
}
// End generation by generateNonFunctionalMultiTypeDefinition
}
if !handled {
// Begin generation by generateNonFunctionalMultiTypeDefinition
if k == "icon" {
if tmpMap, ok := v.(map[string]interface{}); ok {
tmp, err := deserializeIconArticleIntermediateType(tmpMap)
if err != nil {
return err
}
t.icon = []*iconArticleIntermediateType{tmp}
handled = true
} else if tmpSlice, ok := v.([]interface{}); ok {
t.icon, err = deserializeSliceIconArticleIntermediateType(tmpSlice)
if err != nil {
return err
}
handled = true
} else {
tmp := &iconArticleIntermediateType{}
err = tmp.Deserialize(v)
if err != nil {
return err
}
t.icon = []*iconArticleIntermediateType{tmp}
handled = true
}
}
// End generation by generateNonFunctionalMultiTypeDefinition
}
if !handled {
// Begin generation by RangeReference.Deserialize for Value
if k == "id" {
if v, ok := v.(interface{}); ok {
tmp, err := anyURIDeserialize(v)
if err != nil {
return err
}
t.id = tmp
handled = true
}
}
// End generation by RangeReference.Deserialize for Value
}
if !handled {
// Begin generation by generateNonFunctionalMultiTypeDefinition
if k == "image" {
if tmpMap, ok := v.(map[string]interface{}); ok {
tmp, err := deserializeImageArticleIntermediateType(tmpMap)
if err != nil {
return err
}
t.image = []*imageArticleIntermediateType{tmp}
handled = true
} else if tmpSlice, ok := v.([]interface{}); ok {
t.image, err = deserializeSliceImageArticleIntermediateType(tmpSlice)
if err != nil {
return err
}
handled = true
} else {
tmp := &imageArticleIntermediateType{}
err = tmp.Deserialize(v)
if err != nil {
return err
}
t.image = []*imageArticleIntermediateType{tmp}
handled = true
}
}
// End generation by generateNonFunctionalMultiTypeDefinition
}
if !handled {
// Begin generation by generateNonFunctionalMultiTypeDefinition
if k == "inReplyTo" {
if tmpMap, ok := v.(map[string]interface{}); ok {
tmp, err := deserializeInReplyToArticleIntermediateType(tmpMap)
if err != nil {
return err
}
t.inReplyTo = []*inReplyToArticleIntermediateType{tmp}
handled = true
} else if tmpSlice, ok := v.([]interface{}); ok {
t.inReplyTo, err = deserializeSliceInReplyToArticleIntermediateType(tmpSlice)
if err != nil {
return err
}
handled = true
} else {
tmp := &inReplyToArticleIntermediateType{}
err = tmp.Deserialize(v)
if err != nil {
return err
}
t.inReplyTo = []*inReplyToArticleIntermediateType{tmp}
handled = true
}
}
// End generation by generateNonFunctionalMultiTypeDefinition
}
if !handled {
// Begin generation by generateNonFunctionalMultiTypeDefinition
if k == "location" {
if tmpMap, ok := v.(map[string]interface{}); ok {
tmp, err := deserializeLocationArticleIntermediateType(tmpMap)
if err != nil {
return err
}
t.location = []*locationArticleIntermediateType{tmp}
handled = true
} else if tmpSlice, ok := v.([]interface{}); ok {
t.location, err = deserializeSliceLocationArticleIntermediateType(tmpSlice)
if err != nil {
return err
}
handled = true
} else {
tmp := &locationArticleIntermediateType{}
err = tmp.Deserialize(v)
if err != nil {
return err
}
t.location = []*locationArticleIntermediateType{tmp}
handled = true
}
}
// End generation by generateNonFunctionalMultiTypeDefinition
}
if !handled {
// Begin generation by generateNonFunctionalMultiTypeDefinition
if k == "preview" {
if tmpMap, ok := v.(map[string]interface{}); ok {
tmp, err := deserializePreviewArticleIntermediateType(tmpMap)
if err != nil {
return err
}
t.preview = []*previewArticleIntermediateType{tmp}
handled = true
} else if tmpSlice, ok := v.([]interface{}); ok {
t.preview, err = deserializeSlicePreviewArticleIntermediateType(tmpSlice)
if err != nil {
return err
}
handled = true
} else {
tmp := &previewArticleIntermediateType{}
err = tmp.Deserialize(v)
if err != nil {
return err
}
t.preview = []*previewArticleIntermediateType{tmp}
handled = true
}
}
// End generation by generateNonFunctionalMultiTypeDefinition
}
if !handled {
// Begin generation by generateFunctionalMultiTypeDefinition
if k == "published" {
t.published, err = deserializePublishedArticleIntermediateType(v)
if err != nil {
return err
}
handled = true
}
// End generation by generateFunctionalMultiTypeDefinition
}
if !handled {
// Begin generation by generateFunctionalMultiTypeDefinition
if k == "replies" {
t.replies, err = deserializeRepliesArticleIntermediateType(v)
if err != nil {
return err
}
handled = true
}
// End generation by generateFunctionalMultiTypeDefinition
}
if !handled {
// Begin generation by generateFunctionalMultiTypeDefinition
if k == "startTime" {
t.startTime, err = deserializeStartTimeArticleIntermediateType(v)
if err != nil {
return err
}
handled = true
}
// End generation by generateFunctionalMultiTypeDefinition
}
if !handled {
// Begin generation by generateNonFunctionalMultiTypeDefinition
if k == "summary" {
if tmpMap, ok := v.(map[string]interface{}); ok {
tmp, err := deserializeSummaryArticleIntermediateType(tmpMap)
if err != nil {
return err
}
t.summary = []*summaryArticleIntermediateType{tmp}
handled = true
} else if tmpSlice, ok := v.([]interface{}); ok {
t.summary, err = deserializeSliceSummaryArticleIntermediateType(tmpSlice)
if err != nil {
return err
}
handled = true
} else {
tmp := &summaryArticleIntermediateType{}
err = tmp.Deserialize(v)
if err != nil {
return err
}
t.summary = []*summaryArticleIntermediateType{tmp}
handled = true
}
}
// End generation by generateNonFunctionalMultiTypeDefinition
// Begin generation by generateNaturalLanguageMap
if k == "summaryMap" {
if vMap, ok := v.(map[string]interface{}); ok {
val := make(map[string]string)
for k, iVal := range vMap {
if sVal, ok := iVal.(string); ok {
val[k] = sVal
}
}
t.summaryMap = val
handled = true
}
}
// End generation by generateNaturalLanguageMap
}
if !handled {
// Begin generation by generateNonFunctionalMultiTypeDefinition
if k == "tag" {
if tmpMap, ok := v.(map[string]interface{}); ok {
tmp, err := deserializeTagArticleIntermediateType(tmpMap)
if err != nil {
return err
}
t.tag = []*tagArticleIntermediateType{tmp}
handled = true
} else if tmpSlice, ok := v.([]interface{}); ok {
t.tag, err = deserializeSliceTagArticleIntermediateType(tmpSlice)
if err != nil {
return err
}
handled = true
} else {
tmp := &tagArticleIntermediateType{}
err = tmp.Deserialize(v)
if err != nil {
return err
}
t.tag = []*tagArticleIntermediateType{tmp}
handled = true
}
}
// End generation by generateNonFunctionalMultiTypeDefinition
}
if !handled {
// Begin generation by generateNonFunctionalAnyDefinition
if k == "type" {
if tmpTypeSlice, ok := v.([]interface{}); ok {
t.typeName = tmpTypeSlice
handled = true
} else {
t.typeName = []interface{}{v}
handled = true
}
}
// End generation by generateNonFunctionalAnyDefinition
}
if !handled {
// Begin generation by generateFunctionalMultiTypeDefinition
if k == "updated" {
t.updated, err = deserializeUpdatedArticleIntermediateType(v)
if err != nil {
return err
}
handled = true
}
// End generation by generateFunctionalMultiTypeDefinition
}
if !handled {
// Begin generation by generateNonFunctionalMultiTypeDefinition
if k == "url" {
if tmpMap, ok := v.(map[string]interface{}); ok {
tmp, err := deserializeUrlArticleIntermediateType(tmpMap)
if err != nil {
return err
}
t.url = []*urlArticleIntermediateType{tmp}
handled = true
} else if tmpSlice, ok := v.([]interface{}); ok {
t.url, err = deserializeSliceUrlArticleIntermediateType(tmpSlice)
if err != nil {
return err
}
handled = true
} else {
tmp := &urlArticleIntermediateType{}
err = tmp.Deserialize(v)
if err != nil {
return err
}
t.url = []*urlArticleIntermediateType{tmp}
handled = true
}
}
// End generation by generateNonFunctionalMultiTypeDefinition
}
if !handled {
// Begin generation by generateNonFunctionalMultiTypeDefinition
if k == "to" {
if tmpMap, ok := v.(map[string]interface{}); ok {
tmp, err := deserializeToArticleIntermediateType(tmpMap)
if err != nil {
return err
}
t.to = []*toArticleIntermediateType{tmp}
handled = true
} else if tmpSlice, ok := v.([]interface{}); ok {
t.to, err = deserializeSliceToArticleIntermediateType(tmpSlice)
if err != nil {
return err
}
handled = true
} else {
tmp := &toArticleIntermediateType{}
err = tmp.Deserialize(v)
if err != nil {
return err
}
t.to = []*toArticleIntermediateType{tmp}
handled = true
}
}
// End generation by generateNonFunctionalMultiTypeDefinition
}
if !handled {
// Begin generation by generateNonFunctionalMultiTypeDefinition
if k == "bto" {
if tmpMap, ok := v.(map[string]interface{}); ok {
tmp, err := deserializeBtoArticleIntermediateType(tmpMap)
if err != nil {
return err
}
t.bto = []*btoArticleIntermediateType{tmp}
handled = true
} else if tmpSlice, ok := v.([]interface{}); ok {
t.bto, err = deserializeSliceBtoArticleIntermediateType(tmpSlice)
if err != nil {
return err
}
handled = true
} else {
tmp := &btoArticleIntermediateType{}
err = tmp.Deserialize(v)
if err != nil {
return err
}
t.bto = []*btoArticleIntermediateType{tmp}
handled = true
}
}
// End generation by generateNonFunctionalMultiTypeDefinition
}
if !handled {
// Begin generation by generateNonFunctionalMultiTypeDefinition
if k == "cc" {
if tmpMap, ok := v.(map[string]interface{}); ok {
tmp, err := deserializeCcArticleIntermediateType(tmpMap)
if err != nil {
return err
}
t.cc = []*ccArticleIntermediateType{tmp}
handled = true
} else if tmpSlice, ok := v.([]interface{}); ok {
t.cc, err = deserializeSliceCcArticleIntermediateType(tmpSlice)
if err != nil {
return err
}
handled = true
} else {
tmp := &ccArticleIntermediateType{}
err = tmp.Deserialize(v)
if err != nil {
return err
}
t.cc = []*ccArticleIntermediateType{tmp}
handled = true
}
}
// End generation by generateNonFunctionalMultiTypeDefinition
}
if !handled {
// Begin generation by generateNonFunctionalMultiTypeDefinition
if k == "bcc" {
if tmpMap, ok := v.(map[string]interface{}); ok {
tmp, err := deserializeBccArticleIntermediateType(tmpMap)
if err != nil {
return err
}
t.bcc = []*bccArticleIntermediateType{tmp}
handled = true
} else if tmpSlice, ok := v.([]interface{}); ok {
t.bcc, err = deserializeSliceBccArticleIntermediateType(tmpSlice)
if err != nil {
return err
}
handled = true
} else {
tmp := &bccArticleIntermediateType{}
err = tmp.Deserialize(v)
if err != nil {
return err
}
t.bcc = []*bccArticleIntermediateType{tmp}
handled = true
}
}
// End generation by generateNonFunctionalMultiTypeDefinition
}
if !handled {
// Begin generation by generateFunctionalMultiTypeDefinition
if k == "mediaType" {
t.mediaType, err = deserializeMediaTypeArticleIntermediateType(v)
if err != nil {
return err
}
handled = true
}
// End generation by generateFunctionalMultiTypeDefinition
}
if !handled {
// Begin generation by generateFunctionalMultiTypeDefinition
if k == "duration" {
t.duration, err = deserializeDurationArticleIntermediateType(v)
if err != nil {
return err
}
handled = true
}
// End generation by generateFunctionalMultiTypeDefinition
}
if !handled {
// Begin generation by generateFunctionalMultiTypeDefinition
if k == "source" {
t.source, err = deserializeSourceArticleIntermediateType(v)
if err != nil {
return err
}
handled = true
}
// End generation by generateFunctionalMultiTypeDefinition
}
if !handled {
// Begin generation by generateFunctionalMultiTypeDefinition
if k == "inbox" {
t.inbox, err = deserializeInboxArticleIntermediateType(v)
if err != nil {
return err
}
handled = true
}
// End generation by generateFunctionalMultiTypeDefinition
}
if !handled {
// Begin generation by generateFunctionalMultiTypeDefinition
if k == "outbox" {
t.outbox, err = deserializeOutboxArticleIntermediateType(v)
if err != nil {
return err
}
handled = true
}
// End generation by generateFunctionalMultiTypeDefinition
}
if !handled {
// Begin generation by generateFunctionalMultiTypeDefinition
if k == "following" {
t.following, err = deserializeFollowingArticleIntermediateType(v)
if err != nil {
return err
}
handled = true
}
// End generation by generateFunctionalMultiTypeDefinition
}
if !handled {
// Begin generation by generateFunctionalMultiTypeDefinition
if k == "followers" {
t.followers, err = deserializeFollowersArticleIntermediateType(v)
if err != nil {
return err
}
handled = true
}
// End generation by generateFunctionalMultiTypeDefinition
}
if !handled {
// Begin generation by generateFunctionalMultiTypeDefinition
if k == "liked" {
t.liked, err = deserializeLikedArticleIntermediateType(v)
if err != nil {
return err
}
handled = true
}
// End generation by generateFunctionalMultiTypeDefinition
}
if !handled {
// Begin generation by generateFunctionalMultiTypeDefinition
if k == "likes" {
t.likes, err = deserializeLikesArticleIntermediateType(v)
if err != nil {
return err
}
handled = true
}
// End generation by generateFunctionalMultiTypeDefinition
}
if !handled {
// Begin generation by RangeReference.Deserialize for Value
if k == "streams" {
if tmpSlice, ok := v.([]interface{}); ok {
for _, tmpElem := range tmpSlice {
if v, ok := tmpElem.(interface{}); ok {
tmp, err := anyURIDeserialize(v)
if err != nil {
return err
}
t.streams = append(t.streams, tmp)
handled = true
}
}
} else if v, ok := v.(interface{}); ok {
tmp, err := anyURIDeserialize(v)
if err != nil {
return err
}
t.streams = append(t.streams, tmp)
handled = true
}
}
// End generation by RangeReference.Deserialize for Value
}
if !handled {
// Begin generation by generateFunctionalMultiTypeDefinition
if k == "preferredUsername" {
t.preferredUsername, err = deserializePreferredUsernameArticleIntermediateType(v)
if err != nil {
return err
}
handled = true
}
// End generation by generateFunctionalMultiTypeDefinition
// Begin generation by generateNaturalLanguageMap
if k == "preferredUsernameMap" {
if vMap, ok := v.(map[string]interface{}); ok {
val := make(map[string]string)
for k, iVal := range vMap {
if sVal, ok := iVal.(string); ok {
val[k] = sVal
}
}
t.preferredUsernameMap = val
handled = true
}
}
// End generation by generateNaturalLanguageMap
}
if !handled {
// Begin generation by generateFunctionalMultiTypeDefinition
if k == "endpoints" {
t.endpoints, err = deserializeEndpointsArticleIntermediateType(v)
if err != nil {
return err
}
handled = true
}
// End generation by generateFunctionalMultiTypeDefinition
}
if !handled {
// Begin generation by RangeReference.Deserialize for Value
if k == "proxyUrl" {
if v, ok := v.(interface{}); ok {
tmp, err := anyURIDeserialize(v)
if err != nil {
return err
}
t.proxyUrl = tmp
handled = true
}
}
// End generation by RangeReference.Deserialize for Value
}
if !handled {
// Begin generation by RangeReference.Deserialize for Value
if k == "oauthAuthorizationEndpoint" {
if v, ok := v.(interface{}); ok {
tmp, err := anyURIDeserialize(v)
if err != nil {
return err
}
t.oauthAuthorizationEndpoint = tmp
handled = true
}
}
// End generation by RangeReference.Deserialize for Value
}
if !handled {
// Begin generation by RangeReference.Deserialize for Value
if k == "oauthTokenEndpoint" {
if v, ok := v.(interface{}); ok {
tmp, err := anyURIDeserialize(v)
if err != nil {
return err
}
t.oauthTokenEndpoint = tmp
handled = true
}
}
// End generation by RangeReference.Deserialize for Value
}
if !handled {
// Begin generation by RangeReference.Deserialize for Value
if k == "provideClientKey" {
if v, ok := v.(interface{}); ok {
tmp, err := anyURIDeserialize(v)
if err != nil {
return err
}
t.provideClientKey = tmp
handled = true
}
}
// End generation by RangeReference.Deserialize for Value
}
if !handled {
// Begin generation by RangeReference.Deserialize for Value
if k == "signClientKey" {
if v, ok := v.(interface{}); ok {
tmp, err := anyURIDeserialize(v)
if err != nil {
return err
}
t.signClientKey = tmp
handled = true
}
}
// End generation by RangeReference.Deserialize for Value
}
if !handled {
// Begin generation by RangeReference.Deserialize for Value
if k == "sharedInbox" {
if v, ok := v.(interface{}); ok {
tmp, err := anyURIDeserialize(v)
if err != nil {
return err
}
t.sharedInbox = tmp
handled = true
}
}
// End generation by RangeReference.Deserialize for Value
}
if !handled && k != "@context" {
if t.unknown_ == nil {
t.unknown_ = make(map[string]interface{})
}
t.unknown_[k] = unknownValueDeserialize(v)
}
}
return
}
// altitudeArticleIntermediateType will only have one of its values set at most
type altitudeArticleIntermediateType struct {
// An unknown value.
unknown_ interface{}
// Stores possible *float64 type for altitude property
float *float64
// Stores possible *url.URL type for altitude property
IRI *url.URL
}
// Deserialize takes an interface{} and attempts to create a valid intermediate type.
func (t *altitudeArticleIntermediateType) Deserialize(i interface{}) (err error) {
matched := false
if m, ok := i.(map[string]interface{}); ok {
err = fmt.Errorf("Given map but nothing to do with it for this type: %v", m)
} else if i != nil {
if !matched {
t.float, err = floatDeserialize(i)
if err != nil {
t.float = nil
} else {
matched = true
}
}
if !matched {
t.IRI, err = IRIDeserialize(i)
if err != nil {
t.IRI = nil
} else {
matched = true
}
}
}
if !matched {
t.unknown_ = unknownValueDeserialize(i)
}
return
}
// Serialize turns this object into an interface{}.
func (t *altitudeArticleIntermediateType) Serialize() (i interface{}, err error) {
if t.float != nil {
i = floatSerialize(*t.float)
return
}
if t.IRI != nil {
i = IRISerialize(t.IRI)
return
}
i = unknownValueSerialize(t.unknown_)
return
}
// attachmentArticleIntermediateType will only have one of its values set at most
type attachmentArticleIntermediateType struct {
// An unknown value.
unknown_ interface{}
// Stores possible ObjectType type for attachment property
Object ObjectType
// Stores possible LinkType type for attachment property
Link LinkType
// Stores possible *url.URL type for attachment property
IRI *url.URL
}
// Deserialize takes an interface{} and attempts to create a valid intermediate type.
func (t *attachmentArticleIntermediateType) Deserialize(i interface{}) (err error) {
matched := false
if m, ok := i.(map[string]interface{}); ok {
if tv, ok := m["type"]; ok {
var types []string
if tvs, ok := tv.([]interface{}); ok {
for _, tvi := range tvs {
if typeString, ok := tvi.(string); ok {
types = append(types, typeString)
}
}
} else if typeString, ok := tv.(string); ok {
types = append(types, typeString)
}
if !matched {
for _, kind := range types {
if t.Object, ok = resolveObject(kind).(ObjectType); t.Object != nil && ok {
err = t.Object.Deserialize(m)
matched = true
break
}
}
}
if !matched {
for _, kind := range types {
if t.Link, ok = resolveLink(kind).(LinkType); t.Link != nil && ok {
err = t.Link.Deserialize(m)
matched = true
break
}
}
}
} else {
t.unknown_ = m
}
} else if i != nil {
if !matched {
t.IRI, err = IRIDeserialize(i)
if err != nil {
t.IRI = nil
} else {
matched = true
}
}
}
if !matched {
t.unknown_ = unknownValueDeserialize(i)
}
return
}
// Serialize turns this object into an interface{}.
func (t *attachmentArticleIntermediateType) Serialize() (i interface{}, err error) {
if t.Object != nil {
i, err = t.Object.Serialize()
return
}
if t.Link != nil {
i, err = t.Link.Serialize()
return
}
if t.IRI != nil {
i = IRISerialize(t.IRI)
return
}
i = unknownValueSerialize(t.unknown_)
return
}
// attributedToArticleIntermediateType will only have one of its values set at most
type attributedToArticleIntermediateType struct {
// An unknown value.
unknown_ interface{}
// Stores possible ObjectType type for attributedTo property
Object ObjectType
// Stores possible LinkType type for attributedTo property
Link LinkType
// Stores possible *url.URL type for attributedTo property
IRI *url.URL
}
// Deserialize takes an interface{} and attempts to create a valid intermediate type.
func (t *attributedToArticleIntermediateType) Deserialize(i interface{}) (err error) {
matched := false
if m, ok := i.(map[string]interface{}); ok {
if tv, ok := m["type"]; ok {
var types []string
if tvs, ok := tv.([]interface{}); ok {
for _, tvi := range tvs {
if typeString, ok := tvi.(string); ok {
types = append(types, typeString)
}
}
} else if typeString, ok := tv.(string); ok {
types = append(types, typeString)
}
if !matched {
for _, kind := range types {
if t.Object, ok = resolveObject(kind).(ObjectType); t.Object != nil && ok {
err = t.Object.Deserialize(m)
matched = true
break
}
}
}
if !matched {
for _, kind := range types {
if t.Link, ok = resolveLink(kind).(LinkType); t.Link != nil && ok {
err = t.Link.Deserialize(m)
matched = true
break
}
}
}
} else {
t.unknown_ = m
}
} else if i != nil {
if !matched {
t.IRI, err = IRIDeserialize(i)
if err != nil {
t.IRI = nil
} else {
matched = true
}
}
}
if !matched {
t.unknown_ = unknownValueDeserialize(i)
}
return
}
// Serialize turns this object into an interface{}.
func (t *attributedToArticleIntermediateType) Serialize() (i interface{}, err error) {
if t.Object != nil {
i, err = t.Object.Serialize()
return
}
if t.Link != nil {
i, err = t.Link.Serialize()
return
}
if t.IRI != nil {
i = IRISerialize(t.IRI)
return
}
i = unknownValueSerialize(t.unknown_)
return
}
// audienceArticleIntermediateType will only have one of its values set at most
type audienceArticleIntermediateType struct {
// An unknown value.
unknown_ interface{}
// Stores possible ObjectType type for audience property
Object ObjectType
// Stores possible LinkType type for audience property
Link LinkType
// Stores possible *url.URL type for audience property
IRI *url.URL
}
// Deserialize takes an interface{} and attempts to create a valid intermediate type.
func (t *audienceArticleIntermediateType) Deserialize(i interface{}) (err error) {
matched := false
if m, ok := i.(map[string]interface{}); ok {
if tv, ok := m["type"]; ok {
var types []string
if tvs, ok := tv.([]interface{}); ok {
for _, tvi := range tvs {
if typeString, ok := tvi.(string); ok {
types = append(types, typeString)
}
}
} else if typeString, ok := tv.(string); ok {
types = append(types, typeString)
}
if !matched {
for _, kind := range types {
if t.Object, ok = resolveObject(kind).(ObjectType); t.Object != nil && ok {
err = t.Object.Deserialize(m)
matched = true
break
}
}
}
if !matched {
for _, kind := range types {
if t.Link, ok = resolveLink(kind).(LinkType); t.Link != nil && ok {
err = t.Link.Deserialize(m)
matched = true
break
}
}
}
} else {
t.unknown_ = m
}
} else if i != nil {
if !matched {
t.IRI, err = IRIDeserialize(i)
if err != nil {
t.IRI = nil
} else {
matched = true
}
}
}
if !matched {
t.unknown_ = unknownValueDeserialize(i)
}
return
}
// Serialize turns this object into an interface{}.
func (t *audienceArticleIntermediateType) Serialize() (i interface{}, err error) {
if t.Object != nil {
i, err = t.Object.Serialize()
return
}
if t.Link != nil {
i, err = t.Link.Serialize()
return
}
if t.IRI != nil {
i = IRISerialize(t.IRI)
return
}
i = unknownValueSerialize(t.unknown_)
return
}
// contentArticleIntermediateType will only have one of its values set at most
type contentArticleIntermediateType struct {
// An unknown value.
unknown_ interface{}
// Stores possible *string type for content property
stringName *string
// Stores possible *string type for content property
langString *string
// Stores possible *url.URL type for content property
IRI *url.URL
}
// Deserialize takes an interface{} and attempts to create a valid intermediate type.
func (t *contentArticleIntermediateType) Deserialize(i interface{}) (err error) {
matched := false
if m, ok := i.(map[string]interface{}); ok {
err = fmt.Errorf("Given map but nothing to do with it for this type: %v", m)
} else if i != nil {
if !matched {
t.stringName, err = stringDeserialize(i)
if err != nil {
t.stringName = nil
} else {
matched = true
}
}
if !matched {
t.langString, err = langStringDeserialize(i)
if err != nil {
t.langString = nil
} else {
matched = true
}
}
if !matched {
t.IRI, err = IRIDeserialize(i)
if err != nil {
t.IRI = nil
} else {
matched = true
}
}
}
if !matched {
t.unknown_ = unknownValueDeserialize(i)
}
return
}
// Serialize turns this object into an interface{}.
func (t *contentArticleIntermediateType) Serialize() (i interface{}, err error) {
if t.stringName != nil {
i = stringSerialize(*t.stringName)
return
}
if t.langString != nil {
i = langStringSerialize(*t.langString)
return
}
if t.IRI != nil {
i = IRISerialize(t.IRI)
return
}
i = unknownValueSerialize(t.unknown_)
return
}
// contextArticleIntermediateType will only have one of its values set at most
type contextArticleIntermediateType struct {
// An unknown value.
unknown_ interface{}
// Stores possible ObjectType type for context property
Object ObjectType
// Stores possible LinkType type for context property
Link LinkType
// Stores possible *url.URL type for context property
IRI *url.URL
}
// Deserialize takes an interface{} and attempts to create a valid intermediate type.
func (t *contextArticleIntermediateType) Deserialize(i interface{}) (err error) {
matched := false
if m, ok := i.(map[string]interface{}); ok {
if tv, ok := m["type"]; ok {
var types []string
if tvs, ok := tv.([]interface{}); ok {
for _, tvi := range tvs {
if typeString, ok := tvi.(string); ok {
types = append(types, typeString)
}
}
} else if typeString, ok := tv.(string); ok {
types = append(types, typeString)
}
if !matched {
for _, kind := range types {
if t.Object, ok = resolveObject(kind).(ObjectType); t.Object != nil && ok {
err = t.Object.Deserialize(m)
matched = true
break
}
}
}
if !matched {
for _, kind := range types {
if t.Link, ok = resolveLink(kind).(LinkType); t.Link != nil && ok {
err = t.Link.Deserialize(m)
matched = true
break
}
}
}
} else {
t.unknown_ = m
}
} else if i != nil {
if !matched {
t.IRI, err = IRIDeserialize(i)
if err != nil {
t.IRI = nil
} else {
matched = true
}
}
}
if !matched {
t.unknown_ = unknownValueDeserialize(i)
}
return
}
// Serialize turns this object into an interface{}.
func (t *contextArticleIntermediateType) Serialize() (i interface{}, err error) {
if t.Object != nil {
i, err = t.Object.Serialize()
return
}
if t.Link != nil {
i, err = t.Link.Serialize()
return
}
if t.IRI != nil {
i = IRISerialize(t.IRI)
return
}
i = unknownValueSerialize(t.unknown_)
return
}
// nameArticleIntermediateType will only have one of its values set at most
type nameArticleIntermediateType struct {
// An unknown value.
unknown_ interface{}
// Stores possible *string type for name property
stringName *string
// Stores possible *string type for name property
langString *string
// Stores possible *url.URL type for name property
IRI *url.URL
}
// Deserialize takes an interface{} and attempts to create a valid intermediate type.
func (t *nameArticleIntermediateType) Deserialize(i interface{}) (err error) {
matched := false
if m, ok := i.(map[string]interface{}); ok {
err = fmt.Errorf("Given map but nothing to do with it for this type: %v", m)
} else if i != nil {
if !matched {
t.stringName, err = stringDeserialize(i)
if err != nil {
t.stringName = nil
} else {
matched = true
}
}
if !matched {
t.langString, err = langStringDeserialize(i)
if err != nil {
t.langString = nil
} else {
matched = true
}
}
if !matched {
t.IRI, err = IRIDeserialize(i)
if err != nil {
t.IRI = nil
} else {
matched = true
}
}
}
if !matched {
t.unknown_ = unknownValueDeserialize(i)
}
return
}
// Serialize turns this object into an interface{}.
func (t *nameArticleIntermediateType) Serialize() (i interface{}, err error) {
if t.stringName != nil {
i = stringSerialize(*t.stringName)
return
}
if t.langString != nil {
i = langStringSerialize(*t.langString)
return
}
if t.IRI != nil {
i = IRISerialize(t.IRI)
return
}
i = unknownValueSerialize(t.unknown_)
return
}
// endTimeArticleIntermediateType will only have one of its values set at most
type endTimeArticleIntermediateType struct {
// An unknown value.
unknown_ interface{}
// Stores possible *time.Time type for endTime property
dateTime *time.Time
// Stores possible *url.URL type for endTime property
IRI *url.URL
}
// Deserialize takes an interface{} and attempts to create a valid intermediate type.
func (t *endTimeArticleIntermediateType) Deserialize(i interface{}) (err error) {
matched := false
if m, ok := i.(map[string]interface{}); ok {
err = fmt.Errorf("Given map but nothing to do with it for this type: %v", m)
} else if i != nil {
if !matched {
t.dateTime, err = dateTimeDeserialize(i)
if err != nil {
t.dateTime = nil
} else {
matched = true
}
}
if !matched {
t.IRI, err = IRIDeserialize(i)
if err != nil {
t.IRI = nil
} else {
matched = true
}
}
}
if !matched {
t.unknown_ = unknownValueDeserialize(i)
}
return
}
// Serialize turns this object into an interface{}.
func (t *endTimeArticleIntermediateType) Serialize() (i interface{}, err error) {
if t.dateTime != nil {
i = dateTimeSerialize(*t.dateTime)
return
}
if t.IRI != nil {
i = IRISerialize(t.IRI)
return
}
i = unknownValueSerialize(t.unknown_)
return
}
// generatorArticleIntermediateType will only have one of its values set at most
type generatorArticleIntermediateType struct {
// An unknown value.
unknown_ interface{}
// Stores possible ObjectType type for generator property
Object ObjectType
// Stores possible LinkType type for generator property
Link LinkType
// Stores possible *url.URL type for generator property
IRI *url.URL
}
// Deserialize takes an interface{} and attempts to create a valid intermediate type.
func (t *generatorArticleIntermediateType) Deserialize(i interface{}) (err error) {
matched := false
if m, ok := i.(map[string]interface{}); ok {
if tv, ok := m["type"]; ok {
var types []string
if tvs, ok := tv.([]interface{}); ok {
for _, tvi := range tvs {
if typeString, ok := tvi.(string); ok {
types = append(types, typeString)
}
}
} else if typeString, ok := tv.(string); ok {
types = append(types, typeString)
}
if !matched {
for _, kind := range types {
if t.Object, ok = resolveObject(kind).(ObjectType); t.Object != nil && ok {
err = t.Object.Deserialize(m)
matched = true
break
}
}
}
if !matched {
for _, kind := range types {
if t.Link, ok = resolveLink(kind).(LinkType); t.Link != nil && ok {
err = t.Link.Deserialize(m)
matched = true
break
}
}
}
} else {
t.unknown_ = m
}
} else if i != nil {
if !matched {
t.IRI, err = IRIDeserialize(i)
if err != nil {
t.IRI = nil
} else {
matched = true
}
}
}
if !matched {
t.unknown_ = unknownValueDeserialize(i)
}
return
}
// Serialize turns this object into an interface{}.
func (t *generatorArticleIntermediateType) Serialize() (i interface{}, err error) {
if t.Object != nil {
i, err = t.Object.Serialize()
return
}
if t.Link != nil {
i, err = t.Link.Serialize()
return
}
if t.IRI != nil {
i = IRISerialize(t.IRI)
return
}
i = unknownValueSerialize(t.unknown_)
return
}
// iconArticleIntermediateType will only have one of its values set at most
type iconArticleIntermediateType struct {
// An unknown value.
unknown_ interface{}
// Stores possible ImageType type for icon property
Image ImageType
// Stores possible LinkType type for icon property
Link LinkType
// Stores possible *url.URL type for icon property
IRI *url.URL
}
// Deserialize takes an interface{} and attempts to create a valid intermediate type.
func (t *iconArticleIntermediateType) Deserialize(i interface{}) (err error) {
matched := false
if m, ok := i.(map[string]interface{}); ok {
if tv, ok := m["type"]; ok {
var types []string
if tvs, ok := tv.([]interface{}); ok {
for _, tvi := range tvs {
if typeString, ok := tvi.(string); ok {
types = append(types, typeString)
}
}
} else if typeString, ok := tv.(string); ok {
types = append(types, typeString)
}
if !matched {
for _, kind := range types {
if t.Image, ok = resolveObject(kind).(ImageType); t.Image != nil && ok {
err = t.Image.Deserialize(m)
matched = true
break
}
}
}
if !matched {
for _, kind := range types {
if t.Link, ok = resolveLink(kind).(LinkType); t.Link != nil && ok {
err = t.Link.Deserialize(m)
matched = true
break
}
}
}
} else {
t.unknown_ = m
}
} else if i != nil {
if !matched {
t.IRI, err = IRIDeserialize(i)
if err != nil {
t.IRI = nil
} else {
matched = true
}
}
}
if !matched {
t.unknown_ = unknownValueDeserialize(i)
}
return
}
// Serialize turns this object into an interface{}.
func (t *iconArticleIntermediateType) Serialize() (i interface{}, err error) {
if t.Image != nil {
i, err = t.Image.Serialize()
return
}
if t.Link != nil {
i, err = t.Link.Serialize()
return
}
if t.IRI != nil {
i = IRISerialize(t.IRI)
return
}
i = unknownValueSerialize(t.unknown_)
return
}
// imageArticleIntermediateType will only have one of its values set at most
type imageArticleIntermediateType struct {
// An unknown value.
unknown_ interface{}
// Stores possible ImageType type for image property
Image ImageType
// Stores possible LinkType type for image property
Link LinkType
// Stores possible *url.URL type for image property
IRI *url.URL
}
// Deserialize takes an interface{} and attempts to create a valid intermediate type.
func (t *imageArticleIntermediateType) Deserialize(i interface{}) (err error) {
matched := false
if m, ok := i.(map[string]interface{}); ok {
if tv, ok := m["type"]; ok {
var types []string
if tvs, ok := tv.([]interface{}); ok {
for _, tvi := range tvs {
if typeString, ok := tvi.(string); ok {
types = append(types, typeString)
}
}
} else if typeString, ok := tv.(string); ok {
types = append(types, typeString)
}
if !matched {
for _, kind := range types {
if t.Image, ok = resolveObject(kind).(ImageType); t.Image != nil && ok {
err = t.Image.Deserialize(m)
matched = true
break
}
}
}
if !matched {
for _, kind := range types {
if t.Link, ok = resolveLink(kind).(LinkType); t.Link != nil && ok {
err = t.Link.Deserialize(m)
matched = true
break
}
}
}
} else {
t.unknown_ = m
}
} else if i != nil {
if !matched {
t.IRI, err = IRIDeserialize(i)
if err != nil {
t.IRI = nil
} else {
matched = true
}
}
}
if !matched {
t.unknown_ = unknownValueDeserialize(i)
}
return
}
// Serialize turns this object into an interface{}.
func (t *imageArticleIntermediateType) Serialize() (i interface{}, err error) {
if t.Image != nil {
i, err = t.Image.Serialize()
return
}
if t.Link != nil {
i, err = t.Link.Serialize()
return
}
if t.IRI != nil {
i = IRISerialize(t.IRI)
return
}
i = unknownValueSerialize(t.unknown_)
return
}
// inReplyToArticleIntermediateType will only have one of its values set at most
type inReplyToArticleIntermediateType struct {
// An unknown value.
unknown_ interface{}
// Stores possible ObjectType type for inReplyTo property
Object ObjectType
// Stores possible LinkType type for inReplyTo property
Link LinkType
// Stores possible *url.URL type for inReplyTo property
IRI *url.URL
}
// Deserialize takes an interface{} and attempts to create a valid intermediate type.
func (t *inReplyToArticleIntermediateType) Deserialize(i interface{}) (err error) {
matched := false
if m, ok := i.(map[string]interface{}); ok {
if tv, ok := m["type"]; ok {
var types []string
if tvs, ok := tv.([]interface{}); ok {
for _, tvi := range tvs {
if typeString, ok := tvi.(string); ok {
types = append(types, typeString)
}
}
} else if typeString, ok := tv.(string); ok {
types = append(types, typeString)
}
if !matched {
for _, kind := range types {
if t.Object, ok = resolveObject(kind).(ObjectType); t.Object != nil && ok {
err = t.Object.Deserialize(m)
matched = true
break
}
}
}
if !matched {
for _, kind := range types {
if t.Link, ok = resolveLink(kind).(LinkType); t.Link != nil && ok {
err = t.Link.Deserialize(m)
matched = true
break
}
}
}
} else {
t.unknown_ = m
}
} else if i != nil {
if !matched {
t.IRI, err = IRIDeserialize(i)
if err != nil {
t.IRI = nil
} else {
matched = true
}
}
}
if !matched {
t.unknown_ = unknownValueDeserialize(i)
}
return
}
// Serialize turns this object into an interface{}.
func (t *inReplyToArticleIntermediateType) Serialize() (i interface{}, err error) {
if t.Object != nil {
i, err = t.Object.Serialize()
return
}
if t.Link != nil {
i, err = t.Link.Serialize()
return
}
if t.IRI != nil {
i = IRISerialize(t.IRI)
return
}
i = unknownValueSerialize(t.unknown_)
return
}
// locationArticleIntermediateType will only have one of its values set at most
type locationArticleIntermediateType struct {
// An unknown value.
unknown_ interface{}
// Stores possible ObjectType type for location property
Object ObjectType
// Stores possible LinkType type for location property
Link LinkType
// Stores possible *url.URL type for location property
IRI *url.URL
}
// Deserialize takes an interface{} and attempts to create a valid intermediate type.
func (t *locationArticleIntermediateType) Deserialize(i interface{}) (err error) {
matched := false
if m, ok := i.(map[string]interface{}); ok {
if tv, ok := m["type"]; ok {
var types []string
if tvs, ok := tv.([]interface{}); ok {
for _, tvi := range tvs {
if typeString, ok := tvi.(string); ok {
types = append(types, typeString)
}
}
} else if typeString, ok := tv.(string); ok {
types = append(types, typeString)
}
if !matched {
for _, kind := range types {
if t.Object, ok = resolveObject(kind).(ObjectType); t.Object != nil && ok {
err = t.Object.Deserialize(m)
matched = true
break
}
}
}
if !matched {
for _, kind := range types {
if t.Link, ok = resolveLink(kind).(LinkType); t.Link != nil && ok {
err = t.Link.Deserialize(m)
matched = true
break
}
}
}
} else {
t.unknown_ = m
}
} else if i != nil {
if !matched {
t.IRI, err = IRIDeserialize(i)
if err != nil {
t.IRI = nil
} else {
matched = true
}
}
}
if !matched {
t.unknown_ = unknownValueDeserialize(i)
}
return
}
// Serialize turns this object into an interface{}.
func (t *locationArticleIntermediateType) Serialize() (i interface{}, err error) {
if t.Object != nil {
i, err = t.Object.Serialize()
return
}
if t.Link != nil {
i, err = t.Link.Serialize()
return
}
if t.IRI != nil {
i = IRISerialize(t.IRI)
return
}
i = unknownValueSerialize(t.unknown_)
return
}
// previewArticleIntermediateType will only have one of its values set at most
type previewArticleIntermediateType struct {
// An unknown value.
unknown_ interface{}
// Stores possible ObjectType type for preview property
Object ObjectType
// Stores possible LinkType type for preview property
Link LinkType
// Stores possible *url.URL type for preview property
IRI *url.URL
}
// Deserialize takes an interface{} and attempts to create a valid intermediate type.
func (t *previewArticleIntermediateType) Deserialize(i interface{}) (err error) {
matched := false
if m, ok := i.(map[string]interface{}); ok {
if tv, ok := m["type"]; ok {
var types []string
if tvs, ok := tv.([]interface{}); ok {
for _, tvi := range tvs {
if typeString, ok := tvi.(string); ok {
types = append(types, typeString)
}
}
} else if typeString, ok := tv.(string); ok {
types = append(types, typeString)
}
if !matched {
for _, kind := range types {
if t.Object, ok = resolveObject(kind).(ObjectType); t.Object != nil && ok {
err = t.Object.Deserialize(m)
matched = true
break
}
}
}
if !matched {
for _, kind := range types {
if t.Link, ok = resolveLink(kind).(LinkType); t.Link != nil && ok {
err = t.Link.Deserialize(m)
matched = true
break
}
}
}
} else {
t.unknown_ = m
}
} else if i != nil {
if !matched {
t.IRI, err = IRIDeserialize(i)
if err != nil {
t.IRI = nil
} else {
matched = true
}
}
}
if !matched {
t.unknown_ = unknownValueDeserialize(i)
}
return
}
// Serialize turns this object into an interface{}.
func (t *previewArticleIntermediateType) Serialize() (i interface{}, err error) {
if t.Object != nil {
i, err = t.Object.Serialize()
return
}
if t.Link != nil {
i, err = t.Link.Serialize()
return
}
if t.IRI != nil {
i = IRISerialize(t.IRI)
return
}
i = unknownValueSerialize(t.unknown_)
return
}
// publishedArticleIntermediateType will only have one of its values set at most
type publishedArticleIntermediateType struct {
// An unknown value.
unknown_ interface{}
// Stores possible *time.Time type for published property
dateTime *time.Time
// Stores possible *url.URL type for published property
IRI *url.URL
}
// Deserialize takes an interface{} and attempts to create a valid intermediate type.
func (t *publishedArticleIntermediateType) Deserialize(i interface{}) (err error) {
matched := false
if m, ok := i.(map[string]interface{}); ok {
err = fmt.Errorf("Given map but nothing to do with it for this type: %v", m)
} else if i != nil {
if !matched {
t.dateTime, err = dateTimeDeserialize(i)
if err != nil {
t.dateTime = nil
} else {
matched = true
}
}
if !matched {
t.IRI, err = IRIDeserialize(i)
if err != nil {
t.IRI = nil
} else {
matched = true
}
}
}
if !matched {
t.unknown_ = unknownValueDeserialize(i)
}
return
}
// Serialize turns this object into an interface{}.
func (t *publishedArticleIntermediateType) Serialize() (i interface{}, err error) {
if t.dateTime != nil {
i = dateTimeSerialize(*t.dateTime)
return
}
if t.IRI != nil {
i = IRISerialize(t.IRI)
return
}
i = unknownValueSerialize(t.unknown_)
return
}
// repliesArticleIntermediateType will only have one of its values set at most
type repliesArticleIntermediateType struct {
// An unknown value.
unknown_ interface{}
// Stores possible CollectionType type for replies property
Collection CollectionType
// Stores possible *url.URL type for replies property
IRI *url.URL
}
// Deserialize takes an interface{} and attempts to create a valid intermediate type.
func (t *repliesArticleIntermediateType) Deserialize(i interface{}) (err error) {
matched := false
if m, ok := i.(map[string]interface{}); ok {
if tv, ok := m["type"]; ok {
var types []string
if tvs, ok := tv.([]interface{}); ok {
for _, tvi := range tvs {
if typeString, ok := tvi.(string); ok {
types = append(types, typeString)
}
}
} else if typeString, ok := tv.(string); ok {
types = append(types, typeString)
}
if !matched {
for _, kind := range types {
if t.Collection, ok = resolveObject(kind).(CollectionType); t.Collection != nil && ok {
err = t.Collection.Deserialize(m)
matched = true
break
}
}
}
} else {
t.unknown_ = m
}
} else if i != nil {
if !matched {
t.IRI, err = IRIDeserialize(i)
if err != nil {
t.IRI = nil
} else {
matched = true
}
}
}
if !matched {
t.unknown_ = unknownValueDeserialize(i)
}
return
}
// Serialize turns this object into an interface{}.
func (t *repliesArticleIntermediateType) Serialize() (i interface{}, err error) {
if t.Collection != nil {
i, err = t.Collection.Serialize()
return
}
if t.IRI != nil {
i = IRISerialize(t.IRI)
return
}
i = unknownValueSerialize(t.unknown_)
return
}
// startTimeArticleIntermediateType will only have one of its values set at most
type startTimeArticleIntermediateType struct {
// An unknown value.
unknown_ interface{}
// Stores possible *time.Time type for startTime property
dateTime *time.Time
// Stores possible *url.URL type for startTime property
IRI *url.URL
}
// Deserialize takes an interface{} and attempts to create a valid intermediate type.
func (t *startTimeArticleIntermediateType) Deserialize(i interface{}) (err error) {
matched := false
if m, ok := i.(map[string]interface{}); ok {
err = fmt.Errorf("Given map but nothing to do with it for this type: %v", m)
} else if i != nil {
if !matched {
t.dateTime, err = dateTimeDeserialize(i)
if err != nil {
t.dateTime = nil
} else {
matched = true
}
}
if !matched {
t.IRI, err = IRIDeserialize(i)
if err != nil {
t.IRI = nil
} else {
matched = true
}
}
}
if !matched {
t.unknown_ = unknownValueDeserialize(i)
}
return
}
// Serialize turns this object into an interface{}.
func (t *startTimeArticleIntermediateType) Serialize() (i interface{}, err error) {
if t.dateTime != nil {
i = dateTimeSerialize(*t.dateTime)
return
}
if t.IRI != nil {
i = IRISerialize(t.IRI)
return
}
i = unknownValueSerialize(t.unknown_)
return
}
// summaryArticleIntermediateType will only have one of its values set at most
type summaryArticleIntermediateType struct {
// An unknown value.
unknown_ interface{}
// Stores possible *string type for summary property
stringName *string
// Stores possible *string type for summary property
langString *string
// Stores possible *url.URL type for summary property
IRI *url.URL
}
// Deserialize takes an interface{} and attempts to create a valid intermediate type.
func (t *summaryArticleIntermediateType) Deserialize(i interface{}) (err error) {
matched := false
if m, ok := i.(map[string]interface{}); ok {
err = fmt.Errorf("Given map but nothing to do with it for this type: %v", m)
} else if i != nil {
if !matched {
t.stringName, err = stringDeserialize(i)
if err != nil {
t.stringName = nil
} else {
matched = true
}
}
if !matched {
t.langString, err = langStringDeserialize(i)
if err != nil {
t.langString = nil
} else {
matched = true
}
}
if !matched {
t.IRI, err = IRIDeserialize(i)
if err != nil {
t.IRI = nil
} else {
matched = true
}
}
}
if !matched {
t.unknown_ = unknownValueDeserialize(i)
}
return
}
// Serialize turns this object into an interface{}.
func (t *summaryArticleIntermediateType) Serialize() (i interface{}, err error) {
if t.stringName != nil {
i = stringSerialize(*t.stringName)
return
}
if t.langString != nil {
i = langStringSerialize(*t.langString)
return
}
if t.IRI != nil {
i = IRISerialize(t.IRI)
return
}
i = unknownValueSerialize(t.unknown_)
return
}
// tagArticleIntermediateType will only have one of its values set at most
type tagArticleIntermediateType struct {
// An unknown value.
unknown_ interface{}
// Stores possible ObjectType type for tag property
Object ObjectType
// Stores possible LinkType type for tag property
Link LinkType
// Stores possible *url.URL type for tag property
IRI *url.URL
}
// Deserialize takes an interface{} and attempts to create a valid intermediate type.
func (t *tagArticleIntermediateType) Deserialize(i interface{}) (err error) {
matched := false
if m, ok := i.(map[string]interface{}); ok {
if tv, ok := m["type"]; ok {
var types []string
if tvs, ok := tv.([]interface{}); ok {
for _, tvi := range tvs {
if typeString, ok := tvi.(string); ok {
types = append(types, typeString)
}
}
} else if typeString, ok := tv.(string); ok {
types = append(types, typeString)
}
if !matched {
for _, kind := range types {
if t.Object, ok = resolveObject(kind).(ObjectType); t.Object != nil && ok {
err = t.Object.Deserialize(m)
matched = true
break
}
}
}
if !matched {
for _, kind := range types {
if t.Link, ok = resolveLink(kind).(LinkType); t.Link != nil && ok {
err = t.Link.Deserialize(m)
matched = true
break
}
}
}
} else {
t.unknown_ = m
}
} else if i != nil {
if !matched {
t.IRI, err = IRIDeserialize(i)
if err != nil {
t.IRI = nil
} else {
matched = true
}
}
}
if !matched {
t.unknown_ = unknownValueDeserialize(i)
}
return
}
// Serialize turns this object into an interface{}.
func (t *tagArticleIntermediateType) Serialize() (i interface{}, err error) {
if t.Object != nil {
i, err = t.Object.Serialize()
return
}
if t.Link != nil {
i, err = t.Link.Serialize()
return
}
if t.IRI != nil {
i = IRISerialize(t.IRI)
return
}
i = unknownValueSerialize(t.unknown_)
return
}
// updatedArticleIntermediateType will only have one of its values set at most
type updatedArticleIntermediateType struct {
// An unknown value.
unknown_ interface{}
// Stores possible *time.Time type for updated property
dateTime *time.Time
// Stores possible *url.URL type for updated property
IRI *url.URL
}
// Deserialize takes an interface{} and attempts to create a valid intermediate type.
func (t *updatedArticleIntermediateType) Deserialize(i interface{}) (err error) {
matched := false
if m, ok := i.(map[string]interface{}); ok {
err = fmt.Errorf("Given map but nothing to do with it for this type: %v", m)
} else if i != nil {
if !matched {
t.dateTime, err = dateTimeDeserialize(i)
if err != nil {
t.dateTime = nil
} else {
matched = true
}
}
if !matched {
t.IRI, err = IRIDeserialize(i)
if err != nil {
t.IRI = nil
} else {
matched = true
}
}
}
if !matched {
t.unknown_ = unknownValueDeserialize(i)
}
return
}
// Serialize turns this object into an interface{}.
func (t *updatedArticleIntermediateType) Serialize() (i interface{}, err error) {
if t.dateTime != nil {
i = dateTimeSerialize(*t.dateTime)
return
}
if t.IRI != nil {
i = IRISerialize(t.IRI)
return
}
i = unknownValueSerialize(t.unknown_)
return
}
// urlArticleIntermediateType will only have one of its values set at most
type urlArticleIntermediateType struct {
// An unknown value.
unknown_ interface{}
// Stores possible *url.URL type for url property
anyURI *url.URL
// Stores possible LinkType type for url property
Link LinkType
}
// Deserialize takes an interface{} and attempts to create a valid intermediate type.
func (t *urlArticleIntermediateType) Deserialize(i interface{}) (err error) {
matched := false
if m, ok := i.(map[string]interface{}); ok {
if tv, ok := m["type"]; ok {
var types []string
if tvs, ok := tv.([]interface{}); ok {
for _, tvi := range tvs {
if typeString, ok := tvi.(string); ok {
types = append(types, typeString)
}
}
} else if typeString, ok := tv.(string); ok {
types = append(types, typeString)
}
if !matched {
for _, kind := range types {
if t.Link, ok = resolveLink(kind).(LinkType); t.Link != nil && ok {
err = t.Link.Deserialize(m)
matched = true
break
}
}
}
} else {
t.unknown_ = m
}
} else if i != nil {
if !matched {
t.anyURI, err = anyURIDeserialize(i)
if err != nil {
t.anyURI = nil
} else {
matched = true
}
}
}
if !matched {
t.unknown_ = unknownValueDeserialize(i)
}
return
}
// Serialize turns this object into an interface{}.
func (t *urlArticleIntermediateType) Serialize() (i interface{}, err error) {
if t.anyURI != nil {
i = anyURISerialize(t.anyURI)
return
}
if t.Link != nil {
i, err = t.Link.Serialize()
return
}
i = unknownValueSerialize(t.unknown_)
return
}
// toArticleIntermediateType will only have one of its values set at most
type toArticleIntermediateType struct {
// An unknown value.
unknown_ interface{}
// Stores possible ObjectType type for to property
Object ObjectType
// Stores possible LinkType type for to property
Link LinkType
// Stores possible *url.URL type for to property
IRI *url.URL
}
// Deserialize takes an interface{} and attempts to create a valid intermediate type.
func (t *toArticleIntermediateType) Deserialize(i interface{}) (err error) {
matched := false
if m, ok := i.(map[string]interface{}); ok {
if tv, ok := m["type"]; ok {
var types []string
if tvs, ok := tv.([]interface{}); ok {
for _, tvi := range tvs {
if typeString, ok := tvi.(string); ok {
types = append(types, typeString)
}
}
} else if typeString, ok := tv.(string); ok {
types = append(types, typeString)
}
if !matched {
for _, kind := range types {
if t.Object, ok = resolveObject(kind).(ObjectType); t.Object != nil && ok {
err = t.Object.Deserialize(m)
matched = true
break
}
}
}
if !matched {
for _, kind := range types {
if t.Link, ok = resolveLink(kind).(LinkType); t.Link != nil && ok {
err = t.Link.Deserialize(m)
matched = true
break
}
}
}
} else {
t.unknown_ = m
}
} else if i != nil {
if !matched {
t.IRI, err = IRIDeserialize(i)
if err != nil {
t.IRI = nil
} else {
matched = true
}
}
}
if !matched {
t.unknown_ = unknownValueDeserialize(i)
}
return
}
// Serialize turns this object into an interface{}.
func (t *toArticleIntermediateType) Serialize() (i interface{}, err error) {
if t.Object != nil {
i, err = t.Object.Serialize()
return
}
if t.Link != nil {
i, err = t.Link.Serialize()
return
}
if t.IRI != nil {
i = IRISerialize(t.IRI)
return
}
i = unknownValueSerialize(t.unknown_)
return
}
// btoArticleIntermediateType will only have one of its values set at most
type btoArticleIntermediateType struct {
// An unknown value.
unknown_ interface{}
// Stores possible ObjectType type for bto property
Object ObjectType
// Stores possible LinkType type for bto property
Link LinkType
// Stores possible *url.URL type for bto property
IRI *url.URL
}
// Deserialize takes an interface{} and attempts to create a valid intermediate type.
func (t *btoArticleIntermediateType) Deserialize(i interface{}) (err error) {
matched := false
if m, ok := i.(map[string]interface{}); ok {
if tv, ok := m["type"]; ok {
var types []string
if tvs, ok := tv.([]interface{}); ok {
for _, tvi := range tvs {
if typeString, ok := tvi.(string); ok {
types = append(types, typeString)
}
}
} else if typeString, ok := tv.(string); ok {
types = append(types, typeString)
}
if !matched {
for _, kind := range types {
if t.Object, ok = resolveObject(kind).(ObjectType); t.Object != nil && ok {
err = t.Object.Deserialize(m)
matched = true
break
}
}
}
if !matched {
for _, kind := range types {
if t.Link, ok = resolveLink(kind).(LinkType); t.Link != nil && ok {
err = t.Link.Deserialize(m)
matched = true
break
}
}
}
} else {
t.unknown_ = m
}
} else if i != nil {
if !matched {
t.IRI, err = IRIDeserialize(i)
if err != nil {
t.IRI = nil
} else {
matched = true
}
}
}
if !matched {
t.unknown_ = unknownValueDeserialize(i)
}
return
}
// Serialize turns this object into an interface{}.
func (t *btoArticleIntermediateType) Serialize() (i interface{}, err error) {
if t.Object != nil {
i, err = t.Object.Serialize()
return
}
if t.Link != nil {
i, err = t.Link.Serialize()
return
}
if t.IRI != nil {
i = IRISerialize(t.IRI)
return
}
i = unknownValueSerialize(t.unknown_)
return
}
// ccArticleIntermediateType will only have one of its values set at most
type ccArticleIntermediateType struct {
// An unknown value.
unknown_ interface{}
// Stores possible ObjectType type for cc property
Object ObjectType
// Stores possible LinkType type for cc property
Link LinkType
// Stores possible *url.URL type for cc property
IRI *url.URL
}
// Deserialize takes an interface{} and attempts to create a valid intermediate type.
func (t *ccArticleIntermediateType) Deserialize(i interface{}) (err error) {
matched := false
if m, ok := i.(map[string]interface{}); ok {
if tv, ok := m["type"]; ok {
var types []string
if tvs, ok := tv.([]interface{}); ok {
for _, tvi := range tvs {
if typeString, ok := tvi.(string); ok {
types = append(types, typeString)
}
}
} else if typeString, ok := tv.(string); ok {
types = append(types, typeString)
}
if !matched {
for _, kind := range types {
if t.Object, ok = resolveObject(kind).(ObjectType); t.Object != nil && ok {
err = t.Object.Deserialize(m)
matched = true
break
}
}
}
if !matched {
for _, kind := range types {
if t.Link, ok = resolveLink(kind).(LinkType); t.Link != nil && ok {
err = t.Link.Deserialize(m)
matched = true
break
}
}
}
} else {
t.unknown_ = m
}
} else if i != nil {
if !matched {
t.IRI, err = IRIDeserialize(i)
if err != nil {
t.IRI = nil
} else {
matched = true
}
}
}
if !matched {
t.unknown_ = unknownValueDeserialize(i)
}
return
}
// Serialize turns this object into an interface{}.
func (t *ccArticleIntermediateType) Serialize() (i interface{}, err error) {
if t.Object != nil {
i, err = t.Object.Serialize()
return
}
if t.Link != nil {
i, err = t.Link.Serialize()
return
}
if t.IRI != nil {
i = IRISerialize(t.IRI)
return
}
i = unknownValueSerialize(t.unknown_)
return
}
// bccArticleIntermediateType will only have one of its values set at most
type bccArticleIntermediateType struct {
// An unknown value.
unknown_ interface{}
// Stores possible ObjectType type for bcc property
Object ObjectType
// Stores possible LinkType type for bcc property
Link LinkType
// Stores possible *url.URL type for bcc property
IRI *url.URL
}
// Deserialize takes an interface{} and attempts to create a valid intermediate type.
func (t *bccArticleIntermediateType) Deserialize(i interface{}) (err error) {
matched := false
if m, ok := i.(map[string]interface{}); ok {
if tv, ok := m["type"]; ok {
var types []string
if tvs, ok := tv.([]interface{}); ok {
for _, tvi := range tvs {
if typeString, ok := tvi.(string); ok {
types = append(types, typeString)
}
}
} else if typeString, ok := tv.(string); ok {
types = append(types, typeString)
}
if !matched {
for _, kind := range types {
if t.Object, ok = resolveObject(kind).(ObjectType); t.Object != nil && ok {
err = t.Object.Deserialize(m)
matched = true
break
}
}
}
if !matched {
for _, kind := range types {
if t.Link, ok = resolveLink(kind).(LinkType); t.Link != nil && ok {
err = t.Link.Deserialize(m)
matched = true
break
}
}
}
} else {
t.unknown_ = m
}
} else if i != nil {
if !matched {
t.IRI, err = IRIDeserialize(i)
if err != nil {
t.IRI = nil
} else {
matched = true
}
}
}
if !matched {
t.unknown_ = unknownValueDeserialize(i)
}
return
}
// Serialize turns this object into an interface{}.
func (t *bccArticleIntermediateType) Serialize() (i interface{}, err error) {
if t.Object != nil {
i, err = t.Object.Serialize()
return
}
if t.Link != nil {
i, err = t.Link.Serialize()
return
}
if t.IRI != nil {
i = IRISerialize(t.IRI)
return
}
i = unknownValueSerialize(t.unknown_)
return
}
// mediaTypeArticleIntermediateType will only have one of its values set at most
type mediaTypeArticleIntermediateType struct {
// An unknown value.
unknown_ interface{}
// Stores possible *string type for mediaType property
mimeMediaTypeValue *string
// Stores possible *url.URL type for mediaType property
IRI *url.URL
}
// Deserialize takes an interface{} and attempts to create a valid intermediate type.
func (t *mediaTypeArticleIntermediateType) Deserialize(i interface{}) (err error) {
matched := false
if m, ok := i.(map[string]interface{}); ok {
err = fmt.Errorf("Given map but nothing to do with it for this type: %v", m)
} else if i != nil {
if !matched {
t.mimeMediaTypeValue, err = mimeMediaTypeValueDeserialize(i)
if err != nil {
t.mimeMediaTypeValue = nil
} else {
matched = true
}
}
if !matched {
t.IRI, err = IRIDeserialize(i)
if err != nil {
t.IRI = nil
} else {
matched = true
}
}
}
if !matched {
t.unknown_ = unknownValueDeserialize(i)
}
return
}
// Serialize turns this object into an interface{}.
func (t *mediaTypeArticleIntermediateType) Serialize() (i interface{}, err error) {
if t.mimeMediaTypeValue != nil {
i = mimeMediaTypeValueSerialize(*t.mimeMediaTypeValue)
return
}
if t.IRI != nil {
i = IRISerialize(t.IRI)
return
}
i = unknownValueSerialize(t.unknown_)
return
}
// durationArticleIntermediateType will only have one of its values set at most
type durationArticleIntermediateType struct {
// An unknown value.
unknown_ interface{}
// Stores possible *time.Duration type for duration property
duration *time.Duration
// Stores possible *url.URL type for duration property
IRI *url.URL
}
// Deserialize takes an interface{} and attempts to create a valid intermediate type.
func (t *durationArticleIntermediateType) Deserialize(i interface{}) (err error) {
matched := false
if m, ok := i.(map[string]interface{}); ok {
err = fmt.Errorf("Given map but nothing to do with it for this type: %v", m)
} else if i != nil {
if !matched {
t.duration, err = durationDeserialize(i)
if err != nil {
t.duration = nil
} else {
matched = true
}
}
if !matched {
t.IRI, err = IRIDeserialize(i)
if err != nil {
t.IRI = nil
} else {
matched = true
}
}
}
if !matched {
t.unknown_ = unknownValueDeserialize(i)
}
return
}
// Serialize turns this object into an interface{}.
func (t *durationArticleIntermediateType) Serialize() (i interface{}, err error) {
if t.duration != nil {
i = durationSerialize(*t.duration)
return
}
if t.IRI != nil {
i = IRISerialize(t.IRI)
return
}
i = unknownValueSerialize(t.unknown_)
return
}
// sourceArticleIntermediateType will only have one of its values set at most
type sourceArticleIntermediateType struct {
// An unknown value.
unknown_ interface{}
// Stores possible ObjectType type for source property
Object ObjectType
// Stores possible *url.URL type for source property
IRI *url.URL
}
// Deserialize takes an interface{} and attempts to create a valid intermediate type.
func (t *sourceArticleIntermediateType) Deserialize(i interface{}) (err error) {
matched := false
if m, ok := i.(map[string]interface{}); ok {
if tv, ok := m["type"]; ok {
var types []string
if tvs, ok := tv.([]interface{}); ok {
for _, tvi := range tvs {
if typeString, ok := tvi.(string); ok {
types = append(types, typeString)
}
}
} else if typeString, ok := tv.(string); ok {
types = append(types, typeString)
}
if !matched {
for _, kind := range types {
if t.Object, ok = resolveObject(kind).(ObjectType); t.Object != nil && ok {
err = t.Object.Deserialize(m)
matched = true
break
}
}
}
} else {
t.unknown_ = m
}
} else if i != nil {
if !matched {
t.IRI, err = IRIDeserialize(i)
if err != nil {
t.IRI = nil
} else {
matched = true
}
}
}
if !matched {
t.unknown_ = unknownValueDeserialize(i)
}
return
}
// Serialize turns this object into an interface{}.
func (t *sourceArticleIntermediateType) Serialize() (i interface{}, err error) {
if t.Object != nil {
i, err = t.Object.Serialize()
return
}
if t.IRI != nil {
i = IRISerialize(t.IRI)
return
}
i = unknownValueSerialize(t.unknown_)
return
}
// inboxArticleIntermediateType will only have one of its values set at most
type inboxArticleIntermediateType struct {
// An unknown value.
unknown_ interface{}
// Stores possible OrderedCollectionType type for inbox property
OrderedCollection OrderedCollectionType
// Stores possible *url.URL type for inbox property
anyURI *url.URL
}
// Deserialize takes an interface{} and attempts to create a valid intermediate type.
func (t *inboxArticleIntermediateType) Deserialize(i interface{}) (err error) {
matched := false
if m, ok := i.(map[string]interface{}); ok {
if tv, ok := m["type"]; ok {
var types []string
if tvs, ok := tv.([]interface{}); ok {
for _, tvi := range tvs {
if typeString, ok := tvi.(string); ok {
types = append(types, typeString)
}
}
} else if typeString, ok := tv.(string); ok {
types = append(types, typeString)
}
if !matched {
for _, kind := range types {
if t.OrderedCollection, ok = resolveObject(kind).(OrderedCollectionType); t.OrderedCollection != nil && ok {
err = t.OrderedCollection.Deserialize(m)
matched = true
break
}
}
}
} else {
t.unknown_ = m
}
} else if i != nil {
if !matched {
t.anyURI, err = anyURIDeserialize(i)
if err != nil {
t.anyURI = nil
} else {
matched = true
}
}
}
if !matched {
t.unknown_ = unknownValueDeserialize(i)
}
return
}
// Serialize turns this object into an interface{}.
func (t *inboxArticleIntermediateType) Serialize() (i interface{}, err error) {
if t.OrderedCollection != nil {
i, err = t.OrderedCollection.Serialize()
return
}
if t.anyURI != nil {
i = anyURISerialize(t.anyURI)
return
}
i = unknownValueSerialize(t.unknown_)
return
}
// outboxArticleIntermediateType will only have one of its values set at most
type outboxArticleIntermediateType struct {
// An unknown value.
unknown_ interface{}
// Stores possible OrderedCollectionType type for outbox property
OrderedCollection OrderedCollectionType
// Stores possible *url.URL type for outbox property
anyURI *url.URL
}
// Deserialize takes an interface{} and attempts to create a valid intermediate type.
func (t *outboxArticleIntermediateType) Deserialize(i interface{}) (err error) {
matched := false
if m, ok := i.(map[string]interface{}); ok {
if tv, ok := m["type"]; ok {
var types []string
if tvs, ok := tv.([]interface{}); ok {
for _, tvi := range tvs {
if typeString, ok := tvi.(string); ok {
types = append(types, typeString)
}
}
} else if typeString, ok := tv.(string); ok {
types = append(types, typeString)
}
if !matched {
for _, kind := range types {
if t.OrderedCollection, ok = resolveObject(kind).(OrderedCollectionType); t.OrderedCollection != nil && ok {
err = t.OrderedCollection.Deserialize(m)
matched = true
break
}
}
}
} else {
t.unknown_ = m
}
} else if i != nil {
if !matched {
t.anyURI, err = anyURIDeserialize(i)
if err != nil {
t.anyURI = nil
} else {
matched = true
}
}
}
if !matched {
t.unknown_ = unknownValueDeserialize(i)
}
return
}
// Serialize turns this object into an interface{}.
func (t *outboxArticleIntermediateType) Serialize() (i interface{}, err error) {
if t.OrderedCollection != nil {
i, err = t.OrderedCollection.Serialize()
return
}
if t.anyURI != nil {
i = anyURISerialize(t.anyURI)
return
}
i = unknownValueSerialize(t.unknown_)
return
}
// followingArticleIntermediateType will only have one of its values set at most
type followingArticleIntermediateType struct {
// An unknown value.
unknown_ interface{}
// Stores possible CollectionType type for following property
Collection CollectionType
// Stores possible OrderedCollectionType type for following property
OrderedCollection OrderedCollectionType
// Stores possible *url.URL type for following property
anyURI *url.URL
}
// Deserialize takes an interface{} and attempts to create a valid intermediate type.
func (t *followingArticleIntermediateType) Deserialize(i interface{}) (err error) {
matched := false
if m, ok := i.(map[string]interface{}); ok {
if tv, ok := m["type"]; ok {
var types []string
if tvs, ok := tv.([]interface{}); ok {
for _, tvi := range tvs {
if typeString, ok := tvi.(string); ok {
types = append(types, typeString)
}
}
} else if typeString, ok := tv.(string); ok {
types = append(types, typeString)
}
if !matched {
for _, kind := range types {
if t.Collection, ok = resolveObject(kind).(CollectionType); t.Collection != nil && ok {
err = t.Collection.Deserialize(m)
matched = true
break
}
}
}
if !matched {
for _, kind := range types {
if t.OrderedCollection, ok = resolveObject(kind).(OrderedCollectionType); t.OrderedCollection != nil && ok {
err = t.OrderedCollection.Deserialize(m)
matched = true
break
}
}
}
} else {
t.unknown_ = m
}
} else if i != nil {
if !matched {
t.anyURI, err = anyURIDeserialize(i)
if err != nil {
t.anyURI = nil
} else {
matched = true
}
}
}
if !matched {
t.unknown_ = unknownValueDeserialize(i)
}
return
}
// Serialize turns this object into an interface{}.
func (t *followingArticleIntermediateType) Serialize() (i interface{}, err error) {
if t.Collection != nil {
i, err = t.Collection.Serialize()
return
}
if t.OrderedCollection != nil {
i, err = t.OrderedCollection.Serialize()
return
}
if t.anyURI != nil {
i = anyURISerialize(t.anyURI)
return
}
i = unknownValueSerialize(t.unknown_)
return
}
// followersArticleIntermediateType will only have one of its values set at most
type followersArticleIntermediateType struct {
// An unknown value.
unknown_ interface{}
// Stores possible CollectionType type for followers property
Collection CollectionType
// Stores possible OrderedCollectionType type for followers property
OrderedCollection OrderedCollectionType
// Stores possible *url.URL type for followers property
anyURI *url.URL
}
// Deserialize takes an interface{} and attempts to create a valid intermediate type.
func (t *followersArticleIntermediateType) Deserialize(i interface{}) (err error) {
matched := false
if m, ok := i.(map[string]interface{}); ok {
if tv, ok := m["type"]; ok {
var types []string
if tvs, ok := tv.([]interface{}); ok {
for _, tvi := range tvs {
if typeString, ok := tvi.(string); ok {
types = append(types, typeString)
}
}
} else if typeString, ok := tv.(string); ok {
types = append(types, typeString)
}
if !matched {
for _, kind := range types {
if t.Collection, ok = resolveObject(kind).(CollectionType); t.Collection != nil && ok {
err = t.Collection.Deserialize(m)
matched = true
break
}
}
}
if !matched {
for _, kind := range types {
if t.OrderedCollection, ok = resolveObject(kind).(OrderedCollectionType); t.OrderedCollection != nil && ok {
err = t.OrderedCollection.Deserialize(m)
matched = true
break
}
}
}
} else {
t.unknown_ = m
}
} else if i != nil {
if !matched {
t.anyURI, err = anyURIDeserialize(i)
if err != nil {
t.anyURI = nil
} else {
matched = true
}
}
}
if !matched {
t.unknown_ = unknownValueDeserialize(i)
}
return
}
// Serialize turns this object into an interface{}.
func (t *followersArticleIntermediateType) Serialize() (i interface{}, err error) {
if t.Collection != nil {
i, err = t.Collection.Serialize()
return
}
if t.OrderedCollection != nil {
i, err = t.OrderedCollection.Serialize()
return
}
if t.anyURI != nil {
i = anyURISerialize(t.anyURI)
return
}
i = unknownValueSerialize(t.unknown_)
return
}
// likedArticleIntermediateType will only have one of its values set at most
type likedArticleIntermediateType struct {
// An unknown value.
unknown_ interface{}
// Stores possible CollectionType type for liked property
Collection CollectionType
// Stores possible OrderedCollectionType type for liked property
OrderedCollection OrderedCollectionType
// Stores possible *url.URL type for liked property
anyURI *url.URL
}
// Deserialize takes an interface{} and attempts to create a valid intermediate type.
func (t *likedArticleIntermediateType) Deserialize(i interface{}) (err error) {
matched := false
if m, ok := i.(map[string]interface{}); ok {
if tv, ok := m["type"]; ok {
var types []string
if tvs, ok := tv.([]interface{}); ok {
for _, tvi := range tvs {
if typeString, ok := tvi.(string); ok {
types = append(types, typeString)
}
}
} else if typeString, ok := tv.(string); ok {
types = append(types, typeString)
}
if !matched {
for _, kind := range types {
if t.Collection, ok = resolveObject(kind).(CollectionType); t.Collection != nil && ok {
err = t.Collection.Deserialize(m)
matched = true
break
}
}
}
if !matched {
for _, kind := range types {
if t.OrderedCollection, ok = resolveObject(kind).(OrderedCollectionType); t.OrderedCollection != nil && ok {
err = t.OrderedCollection.Deserialize(m)
matched = true
break
}
}
}
} else {
t.unknown_ = m
}
} else if i != nil {
if !matched {
t.anyURI, err = anyURIDeserialize(i)
if err != nil {
t.anyURI = nil
} else {
matched = true
}
}
}
if !matched {
t.unknown_ = unknownValueDeserialize(i)
}
return
}
// Serialize turns this object into an interface{}.
func (t *likedArticleIntermediateType) Serialize() (i interface{}, err error) {
if t.Collection != nil {
i, err = t.Collection.Serialize()
return
}
if t.OrderedCollection != nil {
i, err = t.OrderedCollection.Serialize()
return
}
if t.anyURI != nil {
i = anyURISerialize(t.anyURI)
return
}
i = unknownValueSerialize(t.unknown_)
return
}
// likesArticleIntermediateType will only have one of its values set at most
type likesArticleIntermediateType struct {
// An unknown value.
unknown_ interface{}
// Stores possible CollectionType type for likes property
Collection CollectionType
// Stores possible OrderedCollectionType type for likes property
OrderedCollection OrderedCollectionType
// Stores possible *url.URL type for likes property
anyURI *url.URL
}
// Deserialize takes an interface{} and attempts to create a valid intermediate type.
func (t *likesArticleIntermediateType) Deserialize(i interface{}) (err error) {
matched := false
if m, ok := i.(map[string]interface{}); ok {
if tv, ok := m["type"]; ok {
var types []string
if tvs, ok := tv.([]interface{}); ok {
for _, tvi := range tvs {
if typeString, ok := tvi.(string); ok {
types = append(types, typeString)
}
}
} else if typeString, ok := tv.(string); ok {
types = append(types, typeString)
}
if !matched {
for _, kind := range types {
if t.Collection, ok = resolveObject(kind).(CollectionType); t.Collection != nil && ok {
err = t.Collection.Deserialize(m)
matched = true
break
}
}
}
if !matched {
for _, kind := range types {
if t.OrderedCollection, ok = resolveObject(kind).(OrderedCollectionType); t.OrderedCollection != nil && ok {
err = t.OrderedCollection.Deserialize(m)
matched = true
break
}
}
}
} else {
t.unknown_ = m
}
} else if i != nil {
if !matched {
t.anyURI, err = anyURIDeserialize(i)
if err != nil {
t.anyURI = nil
} else {
matched = true
}
}
}
if !matched {
t.unknown_ = unknownValueDeserialize(i)
}
return
}
// Serialize turns this object into an interface{}.
func (t *likesArticleIntermediateType) Serialize() (i interface{}, err error) {
if t.Collection != nil {
i, err = t.Collection.Serialize()
return
}
if t.OrderedCollection != nil {
i, err = t.OrderedCollection.Serialize()
return
}
if t.anyURI != nil {
i = anyURISerialize(t.anyURI)
return
}
i = unknownValueSerialize(t.unknown_)
return
}
// preferredUsernameArticleIntermediateType will only have one of its values set at most
type preferredUsernameArticleIntermediateType struct {
// An unknown value.
unknown_ interface{}
// Stores possible *string type for preferredUsername property
stringName *string
// Stores possible *url.URL type for preferredUsername property
IRI *url.URL
}
// Deserialize takes an interface{} and attempts to create a valid intermediate type.
func (t *preferredUsernameArticleIntermediateType) Deserialize(i interface{}) (err error) {
matched := false
if m, ok := i.(map[string]interface{}); ok {
err = fmt.Errorf("Given map but nothing to do with it for this type: %v", m)
} else if i != nil {
if !matched {
t.stringName, err = stringDeserialize(i)
if err != nil {
t.stringName = nil
} else {
matched = true
}
}
if !matched {
t.IRI, err = IRIDeserialize(i)
if err != nil {
t.IRI = nil
} else {
matched = true
}
}
}
if !matched {
t.unknown_ = unknownValueDeserialize(i)
}
return
}
// Serialize turns this object into an interface{}.
func (t *preferredUsernameArticleIntermediateType) Serialize() (i interface{}, err error) {
if t.stringName != nil {
i = stringSerialize(*t.stringName)
return
}
if t.IRI != nil {
i = IRISerialize(t.IRI)
return
}
i = unknownValueSerialize(t.unknown_)
return
}
// endpointsArticleIntermediateType will only have one of its values set at most
type endpointsArticleIntermediateType struct {
// An unknown value.
unknown_ interface{}
// Stores possible ObjectType type for endpoints property
Object ObjectType
// Stores possible *url.URL type for endpoints property
IRI *url.URL
}
// Deserialize takes an interface{} and attempts to create a valid intermediate type.
func (t *endpointsArticleIntermediateType) Deserialize(i interface{}) (err error) {
matched := false
if m, ok := i.(map[string]interface{}); ok {
if tv, ok := m["type"]; ok {
var types []string
if tvs, ok := tv.([]interface{}); ok {
for _, tvi := range tvs {
if typeString, ok := tvi.(string); ok {
types = append(types, typeString)
}
}
} else if typeString, ok := tv.(string); ok {
types = append(types, typeString)
}
if !matched {
for _, kind := range types {
if t.Object, ok = resolveObject(kind).(ObjectType); t.Object != nil && ok {
err = t.Object.Deserialize(m)
matched = true
break
}
}
}
} else {
t.unknown_ = m
}
} else if i != nil {
if !matched {
t.IRI, err = IRIDeserialize(i)
if err != nil {
t.IRI = nil
} else {
matched = true
}
}
}
if !matched {
t.unknown_ = unknownValueDeserialize(i)
}
return
}
// Serialize turns this object into an interface{}.
func (t *endpointsArticleIntermediateType) Serialize() (i interface{}, err error) {
if t.Object != nil {
i, err = t.Object.Serialize()
return
}
if t.IRI != nil {
i = IRISerialize(t.IRI)
return
}
i = unknownValueSerialize(t.unknown_)
return
}
// deserializealtitudeArticleIntermediateType will accept a map to create a altitudeArticleIntermediateType
func deserializeAltitudeArticleIntermediateType(in interface{}) (t *altitudeArticleIntermediateType, err error) {
tmp := &altitudeArticleIntermediateType{}
err = tmp.Deserialize(in)
return tmp, err
}
// deserializeSlice altitudeArticleIntermediateType will accept a slice to create a slice of altitudeArticleIntermediateType
func deserializeSliceAltitudeArticleIntermediateType(in []interface{}) (t []*altitudeArticleIntermediateType, err error) {
for _, i := range in {
tmp := &altitudeArticleIntermediateType{}
err = tmp.Deserialize(i)
if err != nil {
return
}
t = append(t, tmp)
}
return
}
// serializealtitudeArticleIntermediateType will accept a altitudeArticleIntermediateType to create a map
func serializeAltitudeArticleIntermediateType(t *altitudeArticleIntermediateType) (i interface{}, err error) {
i, err = t.Serialize()
return
}
// serializeSlicealtitudeArticleIntermediateType will accept a slice of altitudeArticleIntermediateType to create a slice result
func serializeSliceAltitudeArticleIntermediateType(s []*altitudeArticleIntermediateType) (out []interface{}, err error) {
for _, t := range s {
v, err := t.Serialize()
if err != nil {
return nil, err
}
out = append(out, v)
}
return
}
// deserializeattachmentArticleIntermediateType will accept a map to create a attachmentArticleIntermediateType
func deserializeAttachmentArticleIntermediateType(in interface{}) (t *attachmentArticleIntermediateType, err error) {
tmp := &attachmentArticleIntermediateType{}
err = tmp.Deserialize(in)
return tmp, err
}
// deserializeSlice attachmentArticleIntermediateType will accept a slice to create a slice of attachmentArticleIntermediateType
func deserializeSliceAttachmentArticleIntermediateType(in []interface{}) (t []*attachmentArticleIntermediateType, err error) {
for _, i := range in {
tmp := &attachmentArticleIntermediateType{}
err = tmp.Deserialize(i)
if err != nil {
return
}
t = append(t, tmp)
}
return
}
// serializeattachmentArticleIntermediateType will accept a attachmentArticleIntermediateType to create a map
func serializeAttachmentArticleIntermediateType(t *attachmentArticleIntermediateType) (i interface{}, err error) {
i, err = t.Serialize()
return
}
// serializeSliceattachmentArticleIntermediateType will accept a slice of attachmentArticleIntermediateType to create a slice result
func serializeSliceAttachmentArticleIntermediateType(s []*attachmentArticleIntermediateType) (out []interface{}, err error) {
for _, t := range s {
v, err := t.Serialize()
if err != nil {
return nil, err
}
out = append(out, v)
}
return
}
// deserializeattributedToArticleIntermediateType will accept a map to create a attributedToArticleIntermediateType
func deserializeAttributedToArticleIntermediateType(in interface{}) (t *attributedToArticleIntermediateType, err error) {
tmp := &attributedToArticleIntermediateType{}
err = tmp.Deserialize(in)
return tmp, err
}
// deserializeSlice attributedToArticleIntermediateType will accept a slice to create a slice of attributedToArticleIntermediateType
func deserializeSliceAttributedToArticleIntermediateType(in []interface{}) (t []*attributedToArticleIntermediateType, err error) {
for _, i := range in {
tmp := &attributedToArticleIntermediateType{}
err = tmp.Deserialize(i)
if err != nil {
return
}
t = append(t, tmp)
}
return
}
// serializeattributedToArticleIntermediateType will accept a attributedToArticleIntermediateType to create a map
func serializeAttributedToArticleIntermediateType(t *attributedToArticleIntermediateType) (i interface{}, err error) {
i, err = t.Serialize()
return
}
// serializeSliceattributedToArticleIntermediateType will accept a slice of attributedToArticleIntermediateType to create a slice result
func serializeSliceAttributedToArticleIntermediateType(s []*attributedToArticleIntermediateType) (out []interface{}, err error) {
for _, t := range s {
v, err := t.Serialize()
if err != nil {
return nil, err
}
out = append(out, v)
}
return
}
// deserializeaudienceArticleIntermediateType will accept a map to create a audienceArticleIntermediateType
func deserializeAudienceArticleIntermediateType(in interface{}) (t *audienceArticleIntermediateType, err error) {
tmp := &audienceArticleIntermediateType{}
err = tmp.Deserialize(in)
return tmp, err
}
// deserializeSlice audienceArticleIntermediateType will accept a slice to create a slice of audienceArticleIntermediateType
func deserializeSliceAudienceArticleIntermediateType(in []interface{}) (t []*audienceArticleIntermediateType, err error) {
for _, i := range in {
tmp := &audienceArticleIntermediateType{}
err = tmp.Deserialize(i)
if err != nil {
return
}
t = append(t, tmp)
}
return
}
// serializeaudienceArticleIntermediateType will accept a audienceArticleIntermediateType to create a map
func serializeAudienceArticleIntermediateType(t *audienceArticleIntermediateType) (i interface{}, err error) {
i, err = t.Serialize()
return
}
// serializeSliceaudienceArticleIntermediateType will accept a slice of audienceArticleIntermediateType to create a slice result
func serializeSliceAudienceArticleIntermediateType(s []*audienceArticleIntermediateType) (out []interface{}, err error) {
for _, t := range s {
v, err := t.Serialize()
if err != nil {
return nil, err
}
out = append(out, v)
}
return
}
// deserializecontentArticleIntermediateType will accept a map to create a contentArticleIntermediateType
func deserializeContentArticleIntermediateType(in interface{}) (t *contentArticleIntermediateType, err error) {
tmp := &contentArticleIntermediateType{}
err = tmp.Deserialize(in)
return tmp, err
}
// deserializeSlice contentArticleIntermediateType will accept a slice to create a slice of contentArticleIntermediateType
func deserializeSliceContentArticleIntermediateType(in []interface{}) (t []*contentArticleIntermediateType, err error) {
for _, i := range in {
tmp := &contentArticleIntermediateType{}
err = tmp.Deserialize(i)
if err != nil {
return
}
t = append(t, tmp)
}
return
}
// serializecontentArticleIntermediateType will accept a contentArticleIntermediateType to create a map
func serializeContentArticleIntermediateType(t *contentArticleIntermediateType) (i interface{}, err error) {
i, err = t.Serialize()
return
}
// serializeSlicecontentArticleIntermediateType will accept a slice of contentArticleIntermediateType to create a slice result
func serializeSliceContentArticleIntermediateType(s []*contentArticleIntermediateType) (out []interface{}, err error) {
for _, t := range s {
v, err := t.Serialize()
if err != nil {
return nil, err
}
out = append(out, v)
}
return
}
// deserializecontextArticleIntermediateType will accept a map to create a contextArticleIntermediateType
func deserializeContextArticleIntermediateType(in interface{}) (t *contextArticleIntermediateType, err error) {
tmp := &contextArticleIntermediateType{}
err = tmp.Deserialize(in)
return tmp, err
}
// deserializeSlice contextArticleIntermediateType will accept a slice to create a slice of contextArticleIntermediateType
func deserializeSliceContextArticleIntermediateType(in []interface{}) (t []*contextArticleIntermediateType, err error) {
for _, i := range in {
tmp := &contextArticleIntermediateType{}
err = tmp.Deserialize(i)
if err != nil {
return
}
t = append(t, tmp)
}
return
}
// serializecontextArticleIntermediateType will accept a contextArticleIntermediateType to create a map
func serializeContextArticleIntermediateType(t *contextArticleIntermediateType) (i interface{}, err error) {
i, err = t.Serialize()
return
}
// serializeSlicecontextArticleIntermediateType will accept a slice of contextArticleIntermediateType to create a slice result
func serializeSliceContextArticleIntermediateType(s []*contextArticleIntermediateType) (out []interface{}, err error) {
for _, t := range s {
v, err := t.Serialize()
if err != nil {
return nil, err
}
out = append(out, v)
}
return
}
// deserializenameArticleIntermediateType will accept a map to create a nameArticleIntermediateType
func deserializeNameArticleIntermediateType(in interface{}) (t *nameArticleIntermediateType, err error) {
tmp := &nameArticleIntermediateType{}
err = tmp.Deserialize(in)
return tmp, err
}
// deserializeSlice nameArticleIntermediateType will accept a slice to create a slice of nameArticleIntermediateType
func deserializeSliceNameArticleIntermediateType(in []interface{}) (t []*nameArticleIntermediateType, err error) {
for _, i := range in {
tmp := &nameArticleIntermediateType{}
err = tmp.Deserialize(i)
if err != nil {
return
}
t = append(t, tmp)
}
return
}
// serializenameArticleIntermediateType will accept a nameArticleIntermediateType to create a map
func serializeNameArticleIntermediateType(t *nameArticleIntermediateType) (i interface{}, err error) {
i, err = t.Serialize()
return
}
// serializeSlicenameArticleIntermediateType will accept a slice of nameArticleIntermediateType to create a slice result
func serializeSliceNameArticleIntermediateType(s []*nameArticleIntermediateType) (out []interface{}, err error) {
for _, t := range s {
v, err := t.Serialize()
if err != nil {
return nil, err
}
out = append(out, v)
}
return
}
// deserializeendTimeArticleIntermediateType will accept a map to create a endTimeArticleIntermediateType
func deserializeEndTimeArticleIntermediateType(in interface{}) (t *endTimeArticleIntermediateType, err error) {
tmp := &endTimeArticleIntermediateType{}
err = tmp.Deserialize(in)
return tmp, err
}
// deserializeSlice endTimeArticleIntermediateType will accept a slice to create a slice of endTimeArticleIntermediateType
func deserializeSliceEndTimeArticleIntermediateType(in []interface{}) (t []*endTimeArticleIntermediateType, err error) {
for _, i := range in {
tmp := &endTimeArticleIntermediateType{}
err = tmp.Deserialize(i)
if err != nil {
return
}
t = append(t, tmp)
}
return
}
// serializeendTimeArticleIntermediateType will accept a endTimeArticleIntermediateType to create a map
func serializeEndTimeArticleIntermediateType(t *endTimeArticleIntermediateType) (i interface{}, err error) {
i, err = t.Serialize()
return
}
// serializeSliceendTimeArticleIntermediateType will accept a slice of endTimeArticleIntermediateType to create a slice result
func serializeSliceEndTimeArticleIntermediateType(s []*endTimeArticleIntermediateType) (out []interface{}, err error) {
for _, t := range s {
v, err := t.Serialize()
if err != nil {
return nil, err
}
out = append(out, v)
}
return
}
// deserializegeneratorArticleIntermediateType will accept a map to create a generatorArticleIntermediateType
func deserializeGeneratorArticleIntermediateType(in interface{}) (t *generatorArticleIntermediateType, err error) {
tmp := &generatorArticleIntermediateType{}
err = tmp.Deserialize(in)
return tmp, err
}
// deserializeSlice generatorArticleIntermediateType will accept a slice to create a slice of generatorArticleIntermediateType
func deserializeSliceGeneratorArticleIntermediateType(in []interface{}) (t []*generatorArticleIntermediateType, err error) {
for _, i := range in {
tmp := &generatorArticleIntermediateType{}
err = tmp.Deserialize(i)
if err != nil {
return
}
t = append(t, tmp)
}
return
}
// serializegeneratorArticleIntermediateType will accept a generatorArticleIntermediateType to create a map
func serializeGeneratorArticleIntermediateType(t *generatorArticleIntermediateType) (i interface{}, err error) {
i, err = t.Serialize()
return
}
// serializeSlicegeneratorArticleIntermediateType will accept a slice of generatorArticleIntermediateType to create a slice result
func serializeSliceGeneratorArticleIntermediateType(s []*generatorArticleIntermediateType) (out []interface{}, err error) {
for _, t := range s {
v, err := t.Serialize()
if err != nil {
return nil, err
}
out = append(out, v)
}
return
}
// deserializeiconArticleIntermediateType will accept a map to create a iconArticleIntermediateType
func deserializeIconArticleIntermediateType(in interface{}) (t *iconArticleIntermediateType, err error) {
tmp := &iconArticleIntermediateType{}
err = tmp.Deserialize(in)
return tmp, err
}
// deserializeSlice iconArticleIntermediateType will accept a slice to create a slice of iconArticleIntermediateType
func deserializeSliceIconArticleIntermediateType(in []interface{}) (t []*iconArticleIntermediateType, err error) {
for _, i := range in {
tmp := &iconArticleIntermediateType{}
err = tmp.Deserialize(i)
if err != nil {
return
}
t = append(t, tmp)
}
return
}
// serializeiconArticleIntermediateType will accept a iconArticleIntermediateType to create a map
func serializeIconArticleIntermediateType(t *iconArticleIntermediateType) (i interface{}, err error) {
i, err = t.Serialize()
return
}
// serializeSliceiconArticleIntermediateType will accept a slice of iconArticleIntermediateType to create a slice result
func serializeSliceIconArticleIntermediateType(s []*iconArticleIntermediateType) (out []interface{}, err error) {
for _, t := range s {
v, err := t.Serialize()
if err != nil {
return nil, err
}
out = append(out, v)
}
return
}
// deserializeimageArticleIntermediateType will accept a map to create a imageArticleIntermediateType
func deserializeImageArticleIntermediateType(in interface{}) (t *imageArticleIntermediateType, err error) {
tmp := &imageArticleIntermediateType{}
err = tmp.Deserialize(in)
return tmp, err
}
// deserializeSlice imageArticleIntermediateType will accept a slice to create a slice of imageArticleIntermediateType
func deserializeSliceImageArticleIntermediateType(in []interface{}) (t []*imageArticleIntermediateType, err error) {
for _, i := range in {
tmp := &imageArticleIntermediateType{}
err = tmp.Deserialize(i)
if err != nil {
return
}
t = append(t, tmp)
}
return
}
// serializeimageArticleIntermediateType will accept a imageArticleIntermediateType to create a map
func serializeImageArticleIntermediateType(t *imageArticleIntermediateType) (i interface{}, err error) {
i, err = t.Serialize()
return
}
// serializeSliceimageArticleIntermediateType will accept a slice of imageArticleIntermediateType to create a slice result
func serializeSliceImageArticleIntermediateType(s []*imageArticleIntermediateType) (out []interface{}, err error) {
for _, t := range s {
v, err := t.Serialize()
if err != nil {
return nil, err
}
out = append(out, v)
}
return
}
// deserializeinReplyToArticleIntermediateType will accept a map to create a inReplyToArticleIntermediateType
func deserializeInReplyToArticleIntermediateType(in interface{}) (t *inReplyToArticleIntermediateType, err error) {
tmp := &inReplyToArticleIntermediateType{}
err = tmp.Deserialize(in)
return tmp, err
}
// deserializeSlice inReplyToArticleIntermediateType will accept a slice to create a slice of inReplyToArticleIntermediateType
func deserializeSliceInReplyToArticleIntermediateType(in []interface{}) (t []*inReplyToArticleIntermediateType, err error) {
for _, i := range in {
tmp := &inReplyToArticleIntermediateType{}
err = tmp.Deserialize(i)
if err != nil {
return
}
t = append(t, tmp)
}
return
}
// serializeinReplyToArticleIntermediateType will accept a inReplyToArticleIntermediateType to create a map
func serializeInReplyToArticleIntermediateType(t *inReplyToArticleIntermediateType) (i interface{}, err error) {
i, err = t.Serialize()
return
}
// serializeSliceinReplyToArticleIntermediateType will accept a slice of inReplyToArticleIntermediateType to create a slice result
func serializeSliceInReplyToArticleIntermediateType(s []*inReplyToArticleIntermediateType) (out []interface{}, err error) {
for _, t := range s {
v, err := t.Serialize()
if err != nil {
return nil, err
}
out = append(out, v)
}
return
}
// deserializelocationArticleIntermediateType will accept a map to create a locationArticleIntermediateType
func deserializeLocationArticleIntermediateType(in interface{}) (t *locationArticleIntermediateType, err error) {
tmp := &locationArticleIntermediateType{}
err = tmp.Deserialize(in)
return tmp, err
}
// deserializeSlice locationArticleIntermediateType will accept a slice to create a slice of locationArticleIntermediateType
func deserializeSliceLocationArticleIntermediateType(in []interface{}) (t []*locationArticleIntermediateType, err error) {
for _, i := range in {
tmp := &locationArticleIntermediateType{}
err = tmp.Deserialize(i)
if err != nil {
return
}
t = append(t, tmp)
}
return
}
// serializelocationArticleIntermediateType will accept a locationArticleIntermediateType to create a map
func serializeLocationArticleIntermediateType(t *locationArticleIntermediateType) (i interface{}, err error) {
i, err = t.Serialize()
return
}
// serializeSlicelocationArticleIntermediateType will accept a slice of locationArticleIntermediateType to create a slice result
func serializeSliceLocationArticleIntermediateType(s []*locationArticleIntermediateType) (out []interface{}, err error) {
for _, t := range s {
v, err := t.Serialize()
if err != nil {
return nil, err
}
out = append(out, v)
}
return
}
// deserializepreviewArticleIntermediateType will accept a map to create a previewArticleIntermediateType
func deserializePreviewArticleIntermediateType(in interface{}) (t *previewArticleIntermediateType, err error) {
tmp := &previewArticleIntermediateType{}
err = tmp.Deserialize(in)
return tmp, err
}
// deserializeSlice previewArticleIntermediateType will accept a slice to create a slice of previewArticleIntermediateType
func deserializeSlicePreviewArticleIntermediateType(in []interface{}) (t []*previewArticleIntermediateType, err error) {
for _, i := range in {
tmp := &previewArticleIntermediateType{}
err = tmp.Deserialize(i)
if err != nil {
return
}
t = append(t, tmp)
}
return
}
// serializepreviewArticleIntermediateType will accept a previewArticleIntermediateType to create a map
func serializePreviewArticleIntermediateType(t *previewArticleIntermediateType) (i interface{}, err error) {
i, err = t.Serialize()
return
}
// serializeSlicepreviewArticleIntermediateType will accept a slice of previewArticleIntermediateType to create a slice result
func serializeSlicePreviewArticleIntermediateType(s []*previewArticleIntermediateType) (out []interface{}, err error) {
for _, t := range s {
v, err := t.Serialize()
if err != nil {
return nil, err
}
out = append(out, v)
}
return
}
// deserializepublishedArticleIntermediateType will accept a map to create a publishedArticleIntermediateType
func deserializePublishedArticleIntermediateType(in interface{}) (t *publishedArticleIntermediateType, err error) {
tmp := &publishedArticleIntermediateType{}
err = tmp.Deserialize(in)
return tmp, err
}
// deserializeSlice publishedArticleIntermediateType will accept a slice to create a slice of publishedArticleIntermediateType
func deserializeSlicePublishedArticleIntermediateType(in []interface{}) (t []*publishedArticleIntermediateType, err error) {
for _, i := range in {
tmp := &publishedArticleIntermediateType{}
err = tmp.Deserialize(i)
if err != nil {
return
}
t = append(t, tmp)
}
return
}
// serializepublishedArticleIntermediateType will accept a publishedArticleIntermediateType to create a map
func serializePublishedArticleIntermediateType(t *publishedArticleIntermediateType) (i interface{}, err error) {
i, err = t.Serialize()
return
}
// serializeSlicepublishedArticleIntermediateType will accept a slice of publishedArticleIntermediateType to create a slice result
func serializeSlicePublishedArticleIntermediateType(s []*publishedArticleIntermediateType) (out []interface{}, err error) {
for _, t := range s {
v, err := t.Serialize()
if err != nil {
return nil, err
}
out = append(out, v)
}
return
}
// deserializerepliesArticleIntermediateType will accept a map to create a repliesArticleIntermediateType
func deserializeRepliesArticleIntermediateType(in interface{}) (t *repliesArticleIntermediateType, err error) {
tmp := &repliesArticleIntermediateType{}
err = tmp.Deserialize(in)
return tmp, err
}
// deserializeSlice repliesArticleIntermediateType will accept a slice to create a slice of repliesArticleIntermediateType
func deserializeSliceRepliesArticleIntermediateType(in []interface{}) (t []*repliesArticleIntermediateType, err error) {
for _, i := range in {
tmp := &repliesArticleIntermediateType{}
err = tmp.Deserialize(i)
if err != nil {
return
}
t = append(t, tmp)
}
return
}
// serializerepliesArticleIntermediateType will accept a repliesArticleIntermediateType to create a map
func serializeRepliesArticleIntermediateType(t *repliesArticleIntermediateType) (i interface{}, err error) {
i, err = t.Serialize()
return
}
// serializeSlicerepliesArticleIntermediateType will accept a slice of repliesArticleIntermediateType to create a slice result
func serializeSliceRepliesArticleIntermediateType(s []*repliesArticleIntermediateType) (out []interface{}, err error) {
for _, t := range s {
v, err := t.Serialize()
if err != nil {
return nil, err
}
out = append(out, v)
}
return
}
// deserializestartTimeArticleIntermediateType will accept a map to create a startTimeArticleIntermediateType
func deserializeStartTimeArticleIntermediateType(in interface{}) (t *startTimeArticleIntermediateType, err error) {
tmp := &startTimeArticleIntermediateType{}
err = tmp.Deserialize(in)
return tmp, err
}
// deserializeSlice startTimeArticleIntermediateType will accept a slice to create a slice of startTimeArticleIntermediateType
func deserializeSliceStartTimeArticleIntermediateType(in []interface{}) (t []*startTimeArticleIntermediateType, err error) {
for _, i := range in {
tmp := &startTimeArticleIntermediateType{}
err = tmp.Deserialize(i)
if err != nil {
return
}
t = append(t, tmp)
}
return
}
// serializestartTimeArticleIntermediateType will accept a startTimeArticleIntermediateType to create a map
func serializeStartTimeArticleIntermediateType(t *startTimeArticleIntermediateType) (i interface{}, err error) {
i, err = t.Serialize()
return
}
// serializeSlicestartTimeArticleIntermediateType will accept a slice of startTimeArticleIntermediateType to create a slice result
func serializeSliceStartTimeArticleIntermediateType(s []*startTimeArticleIntermediateType) (out []interface{}, err error) {
for _, t := range s {
v, err := t.Serialize()
if err != nil {
return nil, err
}
out = append(out, v)
}
return
}
// deserializesummaryArticleIntermediateType will accept a map to create a summaryArticleIntermediateType
func deserializeSummaryArticleIntermediateType(in interface{}) (t *summaryArticleIntermediateType, err error) {
tmp := &summaryArticleIntermediateType{}
err = tmp.Deserialize(in)
return tmp, err
}
// deserializeSlice summaryArticleIntermediateType will accept a slice to create a slice of summaryArticleIntermediateType
func deserializeSliceSummaryArticleIntermediateType(in []interface{}) (t []*summaryArticleIntermediateType, err error) {
for _, i := range in {
tmp := &summaryArticleIntermediateType{}
err = tmp.Deserialize(i)
if err != nil {
return
}
t = append(t, tmp)
}
return
}
// serializesummaryArticleIntermediateType will accept a summaryArticleIntermediateType to create a map
func serializeSummaryArticleIntermediateType(t *summaryArticleIntermediateType) (i interface{}, err error) {
i, err = t.Serialize()
return
}
// serializeSlicesummaryArticleIntermediateType will accept a slice of summaryArticleIntermediateType to create a slice result
func serializeSliceSummaryArticleIntermediateType(s []*summaryArticleIntermediateType) (out []interface{}, err error) {
for _, t := range s {
v, err := t.Serialize()
if err != nil {
return nil, err
}
out = append(out, v)
}
return
}
// deserializetagArticleIntermediateType will accept a map to create a tagArticleIntermediateType
func deserializeTagArticleIntermediateType(in interface{}) (t *tagArticleIntermediateType, err error) {
tmp := &tagArticleIntermediateType{}
err = tmp.Deserialize(in)
return tmp, err
}
// deserializeSlice tagArticleIntermediateType will accept a slice to create a slice of tagArticleIntermediateType
func deserializeSliceTagArticleIntermediateType(in []interface{}) (t []*tagArticleIntermediateType, err error) {
for _, i := range in {
tmp := &tagArticleIntermediateType{}
err = tmp.Deserialize(i)
if err != nil {
return
}
t = append(t, tmp)
}
return
}
// serializetagArticleIntermediateType will accept a tagArticleIntermediateType to create a map
func serializeTagArticleIntermediateType(t *tagArticleIntermediateType) (i interface{}, err error) {
i, err = t.Serialize()
return
}
// serializeSlicetagArticleIntermediateType will accept a slice of tagArticleIntermediateType to create a slice result
func serializeSliceTagArticleIntermediateType(s []*tagArticleIntermediateType) (out []interface{}, err error) {
for _, t := range s {
v, err := t.Serialize()
if err != nil {
return nil, err
}
out = append(out, v)
}
return
}
// deserializeupdatedArticleIntermediateType will accept a map to create a updatedArticleIntermediateType
func deserializeUpdatedArticleIntermediateType(in interface{}) (t *updatedArticleIntermediateType, err error) {
tmp := &updatedArticleIntermediateType{}
err = tmp.Deserialize(in)
return tmp, err
}
// deserializeSlice updatedArticleIntermediateType will accept a slice to create a slice of updatedArticleIntermediateType
func deserializeSliceUpdatedArticleIntermediateType(in []interface{}) (t []*updatedArticleIntermediateType, err error) {
for _, i := range in {
tmp := &updatedArticleIntermediateType{}
err = tmp.Deserialize(i)
if err != nil {
return
}
t = append(t, tmp)
}
return
}
// serializeupdatedArticleIntermediateType will accept a updatedArticleIntermediateType to create a map
func serializeUpdatedArticleIntermediateType(t *updatedArticleIntermediateType) (i interface{}, err error) {
i, err = t.Serialize()
return
}
// serializeSliceupdatedArticleIntermediateType will accept a slice of updatedArticleIntermediateType to create a slice result
func serializeSliceUpdatedArticleIntermediateType(s []*updatedArticleIntermediateType) (out []interface{}, err error) {
for _, t := range s {
v, err := t.Serialize()
if err != nil {
return nil, err
}
out = append(out, v)
}
return
}
// deserializeurlArticleIntermediateType will accept a map to create a urlArticleIntermediateType
func deserializeUrlArticleIntermediateType(in interface{}) (t *urlArticleIntermediateType, err error) {
tmp := &urlArticleIntermediateType{}
err = tmp.Deserialize(in)
return tmp, err
}
// deserializeSlice urlArticleIntermediateType will accept a slice to create a slice of urlArticleIntermediateType
func deserializeSliceUrlArticleIntermediateType(in []interface{}) (t []*urlArticleIntermediateType, err error) {
for _, i := range in {
tmp := &urlArticleIntermediateType{}
err = tmp.Deserialize(i)
if err != nil {
return
}
t = append(t, tmp)
}
return
}
// serializeurlArticleIntermediateType will accept a urlArticleIntermediateType to create a map
func serializeUrlArticleIntermediateType(t *urlArticleIntermediateType) (i interface{}, err error) {
i, err = t.Serialize()
return
}
// serializeSliceurlArticleIntermediateType will accept a slice of urlArticleIntermediateType to create a slice result
func serializeSliceUrlArticleIntermediateType(s []*urlArticleIntermediateType) (out []interface{}, err error) {
for _, t := range s {
v, err := t.Serialize()
if err != nil {
return nil, err
}
out = append(out, v)
}
return
}
// deserializetoArticleIntermediateType will accept a map to create a toArticleIntermediateType
func deserializeToArticleIntermediateType(in interface{}) (t *toArticleIntermediateType, err error) {
tmp := &toArticleIntermediateType{}
err = tmp.Deserialize(in)
return tmp, err
}
// deserializeSlice toArticleIntermediateType will accept a slice to create a slice of toArticleIntermediateType
func deserializeSliceToArticleIntermediateType(in []interface{}) (t []*toArticleIntermediateType, err error) {
for _, i := range in {
tmp := &toArticleIntermediateType{}
err = tmp.Deserialize(i)
if err != nil {
return
}
t = append(t, tmp)
}
return
}
// serializetoArticleIntermediateType will accept a toArticleIntermediateType to create a map
func serializeToArticleIntermediateType(t *toArticleIntermediateType) (i interface{}, err error) {
i, err = t.Serialize()
return
}
// serializeSlicetoArticleIntermediateType will accept a slice of toArticleIntermediateType to create a slice result
func serializeSliceToArticleIntermediateType(s []*toArticleIntermediateType) (out []interface{}, err error) {
for _, t := range s {
v, err := t.Serialize()
if err != nil {
return nil, err
}
out = append(out, v)
}
return
}
// deserializebtoArticleIntermediateType will accept a map to create a btoArticleIntermediateType
func deserializeBtoArticleIntermediateType(in interface{}) (t *btoArticleIntermediateType, err error) {
tmp := &btoArticleIntermediateType{}
err = tmp.Deserialize(in)
return tmp, err
}
// deserializeSlice btoArticleIntermediateType will accept a slice to create a slice of btoArticleIntermediateType
func deserializeSliceBtoArticleIntermediateType(in []interface{}) (t []*btoArticleIntermediateType, err error) {
for _, i := range in {
tmp := &btoArticleIntermediateType{}
err = tmp.Deserialize(i)
if err != nil {
return
}
t = append(t, tmp)
}
return
}
// serializebtoArticleIntermediateType will accept a btoArticleIntermediateType to create a map
func serializeBtoArticleIntermediateType(t *btoArticleIntermediateType) (i interface{}, err error) {
i, err = t.Serialize()
return
}
// serializeSlicebtoArticleIntermediateType will accept a slice of btoArticleIntermediateType to create a slice result
func serializeSliceBtoArticleIntermediateType(s []*btoArticleIntermediateType) (out []interface{}, err error) {
for _, t := range s {
v, err := t.Serialize()
if err != nil {
return nil, err
}
out = append(out, v)
}
return
}
// deserializeccArticleIntermediateType will accept a map to create a ccArticleIntermediateType
func deserializeCcArticleIntermediateType(in interface{}) (t *ccArticleIntermediateType, err error) {
tmp := &ccArticleIntermediateType{}
err = tmp.Deserialize(in)
return tmp, err
}
// deserializeSlice ccArticleIntermediateType will accept a slice to create a slice of ccArticleIntermediateType
func deserializeSliceCcArticleIntermediateType(in []interface{}) (t []*ccArticleIntermediateType, err error) {
for _, i := range in {
tmp := &ccArticleIntermediateType{}
err = tmp.Deserialize(i)
if err != nil {
return
}
t = append(t, tmp)
}
return
}
// serializeccArticleIntermediateType will accept a ccArticleIntermediateType to create a map
func serializeCcArticleIntermediateType(t *ccArticleIntermediateType) (i interface{}, err error) {
i, err = t.Serialize()
return
}
// serializeSliceccArticleIntermediateType will accept a slice of ccArticleIntermediateType to create a slice result
func serializeSliceCcArticleIntermediateType(s []*ccArticleIntermediateType) (out []interface{}, err error) {
for _, t := range s {
v, err := t.Serialize()
if err != nil {
return nil, err
}
out = append(out, v)
}
return
}
// deserializebccArticleIntermediateType will accept a map to create a bccArticleIntermediateType
func deserializeBccArticleIntermediateType(in interface{}) (t *bccArticleIntermediateType, err error) {
tmp := &bccArticleIntermediateType{}
err = tmp.Deserialize(in)
return tmp, err
}
// deserializeSlice bccArticleIntermediateType will accept a slice to create a slice of bccArticleIntermediateType
func deserializeSliceBccArticleIntermediateType(in []interface{}) (t []*bccArticleIntermediateType, err error) {
for _, i := range in {
tmp := &bccArticleIntermediateType{}
err = tmp.Deserialize(i)
if err != nil {
return
}
t = append(t, tmp)
}
return
}
// serializebccArticleIntermediateType will accept a bccArticleIntermediateType to create a map
func serializeBccArticleIntermediateType(t *bccArticleIntermediateType) (i interface{}, err error) {
i, err = t.Serialize()
return
}
// serializeSlicebccArticleIntermediateType will accept a slice of bccArticleIntermediateType to create a slice result
func serializeSliceBccArticleIntermediateType(s []*bccArticleIntermediateType) (out []interface{}, err error) {
for _, t := range s {
v, err := t.Serialize()
if err != nil {
return nil, err
}
out = append(out, v)
}
return
}
// deserializemediaTypeArticleIntermediateType will accept a map to create a mediaTypeArticleIntermediateType
func deserializeMediaTypeArticleIntermediateType(in interface{}) (t *mediaTypeArticleIntermediateType, err error) {
tmp := &mediaTypeArticleIntermediateType{}
err = tmp.Deserialize(in)
return tmp, err
}
// deserializeSlice mediaTypeArticleIntermediateType will accept a slice to create a slice of mediaTypeArticleIntermediateType
func deserializeSliceMediaTypeArticleIntermediateType(in []interface{}) (t []*mediaTypeArticleIntermediateType, err error) {
for _, i := range in {
tmp := &mediaTypeArticleIntermediateType{}
err = tmp.Deserialize(i)
if err != nil {
return
}
t = append(t, tmp)
}
return
}
// serializemediaTypeArticleIntermediateType will accept a mediaTypeArticleIntermediateType to create a map
func serializeMediaTypeArticleIntermediateType(t *mediaTypeArticleIntermediateType) (i interface{}, err error) {
i, err = t.Serialize()
return
}
// serializeSlicemediaTypeArticleIntermediateType will accept a slice of mediaTypeArticleIntermediateType to create a slice result
func serializeSliceMediaTypeArticleIntermediateType(s []*mediaTypeArticleIntermediateType) (out []interface{}, err error) {
for _, t := range s {
v, err := t.Serialize()
if err != nil {
return nil, err
}
out = append(out, v)
}
return
}
// deserializedurationArticleIntermediateType will accept a map to create a durationArticleIntermediateType
func deserializeDurationArticleIntermediateType(in interface{}) (t *durationArticleIntermediateType, err error) {
tmp := &durationArticleIntermediateType{}
err = tmp.Deserialize(in)
return tmp, err
}
// deserializeSlice durationArticleIntermediateType will accept a slice to create a slice of durationArticleIntermediateType
func deserializeSliceDurationArticleIntermediateType(in []interface{}) (t []*durationArticleIntermediateType, err error) {
for _, i := range in {
tmp := &durationArticleIntermediateType{}
err = tmp.Deserialize(i)
if err != nil {
return
}
t = append(t, tmp)
}
return
}
// serializedurationArticleIntermediateType will accept a durationArticleIntermediateType to create a map
func serializeDurationArticleIntermediateType(t *durationArticleIntermediateType) (i interface{}, err error) {
i, err = t.Serialize()
return
}
// serializeSlicedurationArticleIntermediateType will accept a slice of durationArticleIntermediateType to create a slice result
func serializeSliceDurationArticleIntermediateType(s []*durationArticleIntermediateType) (out []interface{}, err error) {
for _, t := range s {
v, err := t.Serialize()
if err != nil {
return nil, err
}
out = append(out, v)
}
return
}
// deserializesourceArticleIntermediateType will accept a map to create a sourceArticleIntermediateType
func deserializeSourceArticleIntermediateType(in interface{}) (t *sourceArticleIntermediateType, err error) {
tmp := &sourceArticleIntermediateType{}
err = tmp.Deserialize(in)
return tmp, err
}
// deserializeSlice sourceArticleIntermediateType will accept a slice to create a slice of sourceArticleIntermediateType
func deserializeSliceSourceArticleIntermediateType(in []interface{}) (t []*sourceArticleIntermediateType, err error) {
for _, i := range in {
tmp := &sourceArticleIntermediateType{}
err = tmp.Deserialize(i)
if err != nil {
return
}
t = append(t, tmp)
}
return
}
// serializesourceArticleIntermediateType will accept a sourceArticleIntermediateType to create a map
func serializeSourceArticleIntermediateType(t *sourceArticleIntermediateType) (i interface{}, err error) {
i, err = t.Serialize()
return
}
// serializeSlicesourceArticleIntermediateType will accept a slice of sourceArticleIntermediateType to create a slice result
func serializeSliceSourceArticleIntermediateType(s []*sourceArticleIntermediateType) (out []interface{}, err error) {
for _, t := range s {
v, err := t.Serialize()
if err != nil {
return nil, err
}
out = append(out, v)
}
return
}
// deserializeinboxArticleIntermediateType will accept a map to create a inboxArticleIntermediateType
func deserializeInboxArticleIntermediateType(in interface{}) (t *inboxArticleIntermediateType, err error) {
tmp := &inboxArticleIntermediateType{}
err = tmp.Deserialize(in)
return tmp, err
}
// deserializeSlice inboxArticleIntermediateType will accept a slice to create a slice of inboxArticleIntermediateType
func deserializeSliceInboxArticleIntermediateType(in []interface{}) (t []*inboxArticleIntermediateType, err error) {
for _, i := range in {
tmp := &inboxArticleIntermediateType{}
err = tmp.Deserialize(i)
if err != nil {
return
}
t = append(t, tmp)
}
return
}
// serializeinboxArticleIntermediateType will accept a inboxArticleIntermediateType to create a map
func serializeInboxArticleIntermediateType(t *inboxArticleIntermediateType) (i interface{}, err error) {
i, err = t.Serialize()
return
}
// serializeSliceinboxArticleIntermediateType will accept a slice of inboxArticleIntermediateType to create a slice result
func serializeSliceInboxArticleIntermediateType(s []*inboxArticleIntermediateType) (out []interface{}, err error) {
for _, t := range s {
v, err := t.Serialize()
if err != nil {
return nil, err
}
out = append(out, v)
}
return
}
// deserializeoutboxArticleIntermediateType will accept a map to create a outboxArticleIntermediateType
func deserializeOutboxArticleIntermediateType(in interface{}) (t *outboxArticleIntermediateType, err error) {
tmp := &outboxArticleIntermediateType{}
err = tmp.Deserialize(in)
return tmp, err
}
// deserializeSlice outboxArticleIntermediateType will accept a slice to create a slice of outboxArticleIntermediateType
func deserializeSliceOutboxArticleIntermediateType(in []interface{}) (t []*outboxArticleIntermediateType, err error) {
for _, i := range in {
tmp := &outboxArticleIntermediateType{}
err = tmp.Deserialize(i)
if err != nil {
return
}
t = append(t, tmp)
}
return
}
// serializeoutboxArticleIntermediateType will accept a outboxArticleIntermediateType to create a map
func serializeOutboxArticleIntermediateType(t *outboxArticleIntermediateType) (i interface{}, err error) {
i, err = t.Serialize()
return
}
// serializeSliceoutboxArticleIntermediateType will accept a slice of outboxArticleIntermediateType to create a slice result
func serializeSliceOutboxArticleIntermediateType(s []*outboxArticleIntermediateType) (out []interface{}, err error) {
for _, t := range s {
v, err := t.Serialize()
if err != nil {
return nil, err
}
out = append(out, v)
}
return
}
// deserializefollowingArticleIntermediateType will accept a map to create a followingArticleIntermediateType
func deserializeFollowingArticleIntermediateType(in interface{}) (t *followingArticleIntermediateType, err error) {
tmp := &followingArticleIntermediateType{}
err = tmp.Deserialize(in)
return tmp, err
}
// deserializeSlice followingArticleIntermediateType will accept a slice to create a slice of followingArticleIntermediateType
func deserializeSliceFollowingArticleIntermediateType(in []interface{}) (t []*followingArticleIntermediateType, err error) {
for _, i := range in {
tmp := &followingArticleIntermediateType{}
err = tmp.Deserialize(i)
if err != nil {
return
}
t = append(t, tmp)
}
return
}
// serializefollowingArticleIntermediateType will accept a followingArticleIntermediateType to create a map
func serializeFollowingArticleIntermediateType(t *followingArticleIntermediateType) (i interface{}, err error) {
i, err = t.Serialize()
return
}
// serializeSlicefollowingArticleIntermediateType will accept a slice of followingArticleIntermediateType to create a slice result
func serializeSliceFollowingArticleIntermediateType(s []*followingArticleIntermediateType) (out []interface{}, err error) {
for _, t := range s {
v, err := t.Serialize()
if err != nil {
return nil, err
}
out = append(out, v)
}
return
}
// deserializefollowersArticleIntermediateType will accept a map to create a followersArticleIntermediateType
func deserializeFollowersArticleIntermediateType(in interface{}) (t *followersArticleIntermediateType, err error) {
tmp := &followersArticleIntermediateType{}
err = tmp.Deserialize(in)
return tmp, err
}
// deserializeSlice followersArticleIntermediateType will accept a slice to create a slice of followersArticleIntermediateType
func deserializeSliceFollowersArticleIntermediateType(in []interface{}) (t []*followersArticleIntermediateType, err error) {
for _, i := range in {
tmp := &followersArticleIntermediateType{}
err = tmp.Deserialize(i)
if err != nil {
return
}
t = append(t, tmp)
}
return
}
// serializefollowersArticleIntermediateType will accept a followersArticleIntermediateType to create a map
func serializeFollowersArticleIntermediateType(t *followersArticleIntermediateType) (i interface{}, err error) {
i, err = t.Serialize()
return
}
// serializeSlicefollowersArticleIntermediateType will accept a slice of followersArticleIntermediateType to create a slice result
func serializeSliceFollowersArticleIntermediateType(s []*followersArticleIntermediateType) (out []interface{}, err error) {
for _, t := range s {
v, err := t.Serialize()
if err != nil {
return nil, err
}
out = append(out, v)
}
return
}
// deserializelikedArticleIntermediateType will accept a map to create a likedArticleIntermediateType
func deserializeLikedArticleIntermediateType(in interface{}) (t *likedArticleIntermediateType, err error) {
tmp := &likedArticleIntermediateType{}
err = tmp.Deserialize(in)
return tmp, err
}
// deserializeSlice likedArticleIntermediateType will accept a slice to create a slice of likedArticleIntermediateType
func deserializeSliceLikedArticleIntermediateType(in []interface{}) (t []*likedArticleIntermediateType, err error) {
for _, i := range in {
tmp := &likedArticleIntermediateType{}
err = tmp.Deserialize(i)
if err != nil {
return
}
t = append(t, tmp)
}
return
}
// serializelikedArticleIntermediateType will accept a likedArticleIntermediateType to create a map
func serializeLikedArticleIntermediateType(t *likedArticleIntermediateType) (i interface{}, err error) {
i, err = t.Serialize()
return
}
// serializeSlicelikedArticleIntermediateType will accept a slice of likedArticleIntermediateType to create a slice result
func serializeSliceLikedArticleIntermediateType(s []*likedArticleIntermediateType) (out []interface{}, err error) {
for _, t := range s {
v, err := t.Serialize()
if err != nil {
return nil, err
}
out = append(out, v)
}
return
}
// deserializelikesArticleIntermediateType will accept a map to create a likesArticleIntermediateType
func deserializeLikesArticleIntermediateType(in interface{}) (t *likesArticleIntermediateType, err error) {
tmp := &likesArticleIntermediateType{}
err = tmp.Deserialize(in)
return tmp, err
}
// deserializeSlice likesArticleIntermediateType will accept a slice to create a slice of likesArticleIntermediateType
func deserializeSliceLikesArticleIntermediateType(in []interface{}) (t []*likesArticleIntermediateType, err error) {
for _, i := range in {
tmp := &likesArticleIntermediateType{}
err = tmp.Deserialize(i)
if err != nil {
return
}
t = append(t, tmp)
}
return
}
// serializelikesArticleIntermediateType will accept a likesArticleIntermediateType to create a map
func serializeLikesArticleIntermediateType(t *likesArticleIntermediateType) (i interface{}, err error) {
i, err = t.Serialize()
return
}
// serializeSlicelikesArticleIntermediateType will accept a slice of likesArticleIntermediateType to create a slice result
func serializeSliceLikesArticleIntermediateType(s []*likesArticleIntermediateType) (out []interface{}, err error) {
for _, t := range s {
v, err := t.Serialize()
if err != nil {
return nil, err
}
out = append(out, v)
}
return
}
// deserializepreferredUsernameArticleIntermediateType will accept a map to create a preferredUsernameArticleIntermediateType
func deserializePreferredUsernameArticleIntermediateType(in interface{}) (t *preferredUsernameArticleIntermediateType, err error) {
tmp := &preferredUsernameArticleIntermediateType{}
err = tmp.Deserialize(in)
return tmp, err
}
// deserializeSlice preferredUsernameArticleIntermediateType will accept a slice to create a slice of preferredUsernameArticleIntermediateType
func deserializeSlicePreferredUsernameArticleIntermediateType(in []interface{}) (t []*preferredUsernameArticleIntermediateType, err error) {
for _, i := range in {
tmp := &preferredUsernameArticleIntermediateType{}
err = tmp.Deserialize(i)
if err != nil {
return
}
t = append(t, tmp)
}
return
}
// serializepreferredUsernameArticleIntermediateType will accept a preferredUsernameArticleIntermediateType to create a map
func serializePreferredUsernameArticleIntermediateType(t *preferredUsernameArticleIntermediateType) (i interface{}, err error) {
i, err = t.Serialize()
return
}
// serializeSlicepreferredUsernameArticleIntermediateType will accept a slice of preferredUsernameArticleIntermediateType to create a slice result
func serializeSlicePreferredUsernameArticleIntermediateType(s []*preferredUsernameArticleIntermediateType) (out []interface{}, err error) {
for _, t := range s {
v, err := t.Serialize()
if err != nil {
return nil, err
}
out = append(out, v)
}
return
}
// deserializeendpointsArticleIntermediateType will accept a map to create a endpointsArticleIntermediateType
func deserializeEndpointsArticleIntermediateType(in interface{}) (t *endpointsArticleIntermediateType, err error) {
tmp := &endpointsArticleIntermediateType{}
err = tmp.Deserialize(in)
return tmp, err
}
// deserializeSlice endpointsArticleIntermediateType will accept a slice to create a slice of endpointsArticleIntermediateType
func deserializeSliceEndpointsArticleIntermediateType(in []interface{}) (t []*endpointsArticleIntermediateType, err error) {
for _, i := range in {
tmp := &endpointsArticleIntermediateType{}
err = tmp.Deserialize(i)
if err != nil {
return
}
t = append(t, tmp)
}
return
}
// serializeendpointsArticleIntermediateType will accept a endpointsArticleIntermediateType to create a map
func serializeEndpointsArticleIntermediateType(t *endpointsArticleIntermediateType) (i interface{}, err error) {
i, err = t.Serialize()
return
}
// serializeSliceendpointsArticleIntermediateType will accept a slice of endpointsArticleIntermediateType to create a slice result
func serializeSliceEndpointsArticleIntermediateType(s []*endpointsArticleIntermediateType) (out []interface{}, err error) {
for _, t := range s {
v, err := t.Serialize()
if err != nil {
return nil, err
}
out = append(out, v)
}
return
}